diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/README.md b/Surgical/turin/mitic_lerobot_ex_vivo/meta/README.md new file mode 100644 index 0000000000000000000000000000000000000000..d78facfdb1d3b51093ef708e64ed2c238bc75d97 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/README.md @@ -0,0 +1,160 @@ +# DVRK Suturing Subtasks Dataset - README + +--- + +## At a Glance + +Teleoperated demonstrations of a dVRK robot performing suturing subtasksk, like tissue lifting, needle insertion, needle extraction, knot tying on ex vivo porcine colon and stomach. + +--- + +## Dataset Overview + +| | | +| :--- | :--- | +| **Total Trajectories** | 800 | +| **Total Hours** | [TO be filled] | +| **Data Type** | Ex-Vivo | +| **License** | CC BY 4.0 | +| **Version** | 1.0 | + +--- + +## Tasks & Domain + +### Domain + +- [x] **Surgical Robotics** +- [ ] **Ultrasound Robotics** +- [ ] **Other Healthcare Robotics** + +### Demonstrated Skills + +- Bimanual manipulation +- Pick and place +- Needle handling +- Knot tying +- Soft and ex-vivo tissue manipulation + +--- + +## Data Collection Details + +### Collection Method + +- [x] **Human Teleoperation** +- [ ] **Programmatic/State-Machine** +- [ ] **AI Policy / Autonomous** +- [ ] **Other** + +### Operator Details + +| | Description | +| :--- | :--- | +| **Operator Count** | 5 operators | +| **Operator Skill Level** | Expert (Surgeons) and Novice (ML researchers with minimal surgical experience) | +| **Collection Period** | [To be filled] | + +### Recovery Demonstrations + +- [x] **Yes** +- [] **No** + +For each task, recovery demonstrations and errors are recorded. + +--- + +## Diversity Dimensions + +- [x] **Target Object** (different wounds for suturing and different anatomical specimens) +- [] **Spatial Layout** +- [x] **Camera Position / Angle** (different position and orientations) +- [x] **Lighting Conditions** +- [ ] **Robot Embodiment** +- [x] **Task Execution** (different operators performed the tasks differently) +- [x] **Background / Scene** (different background conditions) + +We have recorded tasks both on porcine colon and stomach. Camera position and lighting condition were changed after every 20 episodes circa. We recruited 3 expert surgeons and 2 ML researchers that performed the tasks according to their expertise and own techniques. The background conditions change between colon and stomach episodes. + +--- + +## Equipment & Setup + +### Robotic Platform(s) + +- **Robot 1:** dVRK (da Vinci Research Kit) + +### Sensors & Cameras + +| Type | Model/Details | +| :--- | :--- | +| **Primary Camera** | Stereo Endoscope (left), 1920x1080 @ 30 fps | +| **Secondary Camera** | Stereo Endoscope (right), 1920x1080 @ 30 fps | + +--- + +## Action & State Space Representation + +### Action Space Representation + +**Primary Action Representation:** +- [x] **Absolute Cartesian** (position/orientation relative to robot base) + +**Orientation Representation:** +- [x] **Quaternions** (x, y, z, w) + +**Action Dimensions:** +``` +action: [psm1_x, psm1_y, psm1_z, psm1_qx, psm1_qy, psm1_qz, psm1_qw, + psm2_x, psm2_y, psm2_z, psm2_qx, psm2_qy, psm2_qz, psm2_qw] +- psm1_x, psm1_y, psm1_z: PSM1 absolute cartesian positions +- psm1_qx, psm1_qy, psm1_qz, psm1_qw: PSM1 absolute cartesian orientations +- psm2_x, psm2_y, psm2_z: PSM2 absolute cartesian positions +- psm2_qx, psm2_qy, psm2_qz, psm2_qw: PSM2 absolute cartesian orientations +``` + +### State Space Representation + +**State Information Included:** +- [x] **Joint Positions** (all articulated joints) + +**State Dimensions:** +``` +observation.state: [psm1_j1, psm1_j2, psm1_j3, psm1_j4, psm1_j5, psm1_j6, + psm2_j1, psm2_j2, psm2_j3, psm2_j4, psm2_j5, psm2_j6] +- psm1_j1-j6: PSM1 6-DOF joint positions (radians) +- psm2_j1-j6: PSM2 6-DOF joint positions (radians) +``` + +--- + +## Data Synchronization Approach + +All data are acquired using rosbag and all ROS messages are stamped with their header.stamp fields. +Data is synchronized offline post collection. The right camera serves as the reference timestamp source. For each frame acquired, only the (time) closest data is saved from robot kinematics, with a tolerance of 0.1 secs. + +**Synchronization Method:** +- Reference stream: `/decklink/right/image_raw/compressed` (right stereo camera) +- Tolerance: 0.1 seconds +- Framework: ROS (Robot Operating System) + +Messages from the following topics are synchronized: +- `/decklink/left/image_raw/compressed` - Left camera images +- `/decklink/right/image_raw/compressed` - Right camera images +- `/PSM1/measured_js` - PSM1 joint states +- `/PSM1/measured_cp` - PSM1 absolute cartesian position +- `/PSM2/measured_js` - PSM2 joint states +- `/PSM2/measured_cp` - PSM2 absolute cartesian position + +--- + +## Attribution & Contact + +| | | +| :--- | :--- | +| **Dataset Lead** | Matteo Pescio, Francesco Marzola, Luigi Muratore, Federica Barontini, Giovanni Distefano, Federico Lavagno, Giulio Dagnino, Alberto Arezzo | +| **Institution** | MITIC Lab - Università degli Studi di Torino | +| **Contact Email** | matteo.pescio@unito.it, francesco.marzola@unito.it, luigi.muratore@studenti.polito.it, federica.barontini@unito.it, giovanni.distefano@unito.it, federico.lavagno@unito.it, giulio.dagnino@unito.it, alberto.arezzo@unito.it | +| **Citation (BibTeX)** |
@misc{dvrk_suturing_subtasks_2025,
author = {Pescio, Matteo and Marzola, Francesco and Muratore, Luigi and Barontini, Federica and Distefano, Giovanni and Lavagno, Federico and Dagnino, Giulio and Arezzo, Alberto},
title = {DVRK Suturing Subtasks Dataset},
year = {2025},
publisher = {Open-H-Embodiment},
}
| + +--- diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/episodes.jsonl b/Surgical/turin/mitic_lerobot_ex_vivo/meta/episodes.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..24c2bb236910c0a815585d0269042db24beb213a --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/episodes.jsonl @@ -0,0 +1,799 @@ +{"episode_index": 0, "tasks": ["Knot_tying_base"], "length": 849} +{"episode_index": 1, "tasks": ["Knot_tying_base"], "length": 1115} +{"episode_index": 2, "tasks": ["Knot_tying_base"], "length": 498} +{"episode_index": 3, "tasks": ["Knot_tying_base"], "length": 336} +{"episode_index": 4, "tasks": ["Knot_tying_base"], "length": 484} +{"episode_index": 5, "tasks": ["Knot_tying_base"], "length": 480} +{"episode_index": 6, "tasks": ["Knot_tying_base"], "length": 429} +{"episode_index": 7, "tasks": ["Knot_tying_base"], "length": 411} +{"episode_index": 8, "tasks": ["Knot_tying_base"], "length": 650} +{"episode_index": 9, "tasks": ["Knot_tying_base"], "length": 638} +{"episode_index": 10, "tasks": ["Knot_tying_base"], "length": 719} +{"episode_index": 11, "tasks": ["Knot_tying_base"], "length": 396} +{"episode_index": 12, "tasks": ["Knot_tying_base"], "length": 464} +{"episode_index": 13, "tasks": ["Knot_tying_base"], "length": 407} +{"episode_index": 14, "tasks": ["Knot_tying_base"], "length": 496} +{"episode_index": 15, "tasks": ["Knot_tying_base"], "length": 766} +{"episode_index": 16, "tasks": ["Knot_tying_base"], "length": 484} +{"episode_index": 17, "tasks": ["Knot_tying_base"], "length": 420} +{"episode_index": 18, "tasks": ["Knot_tying_base"], "length": 467} +{"episode_index": 19, "tasks": ["Knot_tying_base"], "length": 409} +{"episode_index": 20, "tasks": ["Knot_tying_base"], "length": 486} +{"episode_index": 21, "tasks": ["Knot_tying_base"], "length": 377} +{"episode_index": 22, "tasks": ["Knot_tying_base"], "length": 754} +{"episode_index": 23, "tasks": ["Knot_tying_base"], "length": 635} +{"episode_index": 24, "tasks": ["Knot_tying_base"], "length": 440} +{"episode_index": 25, "tasks": ["Knot_tying_base"], "length": 473} +{"episode_index": 26, "tasks": ["Knot_tying_base"], "length": 818} +{"episode_index": 27, "tasks": ["Knot_tying_base"], "length": 617} +{"episode_index": 28, "tasks": ["Knot_tying_base"], "length": 552} +{"episode_index": 29, "tasks": ["Knot_tying_base"], "length": 1616} +{"episode_index": 30, "tasks": ["Knot_tying_base"], "length": 1014} +{"episode_index": 31, "tasks": ["Knot_tying_base"], "length": 679} +{"episode_index": 32, "tasks": ["Knot_tying_base"], "length": 848} +{"episode_index": 33, "tasks": ["Knot_tying_base"], "length": 586} +{"episode_index": 34, "tasks": ["Knot_tying_base"], "length": 465} +{"episode_index": 35, "tasks": ["Knot_tying_base"], "length": 459} +{"episode_index": 36, "tasks": ["Knot_tying_base"], "length": 582} +{"episode_index": 37, "tasks": ["Knot_tying_base"], "length": 491} +{"episode_index": 38, "tasks": ["Knot_tying_base"], "length": 786} +{"episode_index": 39, "tasks": ["Knot_tying_base"], "length": 890} +{"episode_index": 40, "tasks": ["Knot_tying_base"], "length": 946} +{"episode_index": 41, "tasks": ["Knot_tying_base"], "length": 794} +{"episode_index": 42, "tasks": ["Knot_tying_base"], "length": 735} +{"episode_index": 43, "tasks": ["Knot_tying_base"], "length": 592} +{"episode_index": 44, "tasks": ["Knot_tying_base"], "length": 639} +{"episode_index": 45, "tasks": ["Knot_tying_base"], "length": 594} +{"episode_index": 46, "tasks": ["Knot_tying_base"], "length": 524} +{"episode_index": 47, "tasks": ["Knot_tying_base"], "length": 1669} +{"episode_index": 48, "tasks": ["Knot_tying_base"], "length": 2006} +{"episode_index": 49, "tasks": ["Knot_tying_base"], "length": 718} +{"episode_index": 50, "tasks": ["Knot_tying_base"], "length": 659} +{"episode_index": 51, "tasks": ["Knot_tying_base"], "length": 390} +{"episode_index": 52, "tasks": ["Knot_tying_base"], "length": 353} +{"episode_index": 53, "tasks": ["Knot_tying_base"], "length": 379} +{"episode_index": 54, "tasks": ["Knot_tying_base"], "length": 367} +{"episode_index": 55, "tasks": ["Knot_tying_base"], "length": 611} +{"episode_index": 56, "tasks": ["Knot_tying_base"], "length": 656} +{"episode_index": 57, "tasks": ["Knot_tying_base"], "length": 567} +{"episode_index": 58, "tasks": ["Knot_tying_base"], "length": 520} +{"episode_index": 59, "tasks": ["Knot_tying_base"], "length": 877} +{"episode_index": 60, "tasks": ["Knot_tying_base"], "length": 555} +{"episode_index": 61, "tasks": ["Knot_tying_base"], "length": 760} +{"episode_index": 62, "tasks": ["Knot_tying_base"], "length": 433} +{"episode_index": 63, "tasks": ["Knot_tying_base"], "length": 790} +{"episode_index": 64, "tasks": ["Knot_tying_base"], "length": 532} +{"episode_index": 65, "tasks": ["Knot_tying_base"], "length": 439} +{"episode_index": 66, "tasks": ["Knot_tying_base"], "length": 435} +{"episode_index": 67, "tasks": ["Knot_tying_base"], "length": 714} +{"episode_index": 68, "tasks": ["Knot_tying_base"], "length": 594} +{"episode_index": 69, "tasks": ["Knot_tying_base"], "length": 500} +{"episode_index": 70, "tasks": ["Knot_tying_base"], "length": 570} +{"episode_index": 71, "tasks": ["Knot_tying_base"], "length": 612} +{"episode_index": 72, "tasks": ["Knot_tying_base"], "length": 657} +{"episode_index": 73, "tasks": ["Knot_tying_base"], "length": 960} +{"episode_index": 74, "tasks": ["Knot_tying_base"], "length": 964} +{"episode_index": 75, "tasks": ["Knot_tying_base"], "length": 998} +{"episode_index": 76, "tasks": ["Knot_tying_base"], "length": 678} +{"episode_index": 77, "tasks": ["Knot_tying_base"], "length": 1173} +{"episode_index": 78, "tasks": ["Knot_tying_base"], "length": 690} +{"episode_index": 79, "tasks": ["Knot_tying_base"], "length": 460} +{"episode_index": 80, "tasks": ["Knot_tying_base"], "length": 519} +{"episode_index": 81, "tasks": ["Knot_tying_base"], "length": 486} +{"episode_index": 82, "tasks": ["Knot_tying_base"], "length": 396} +{"episode_index": 83, "tasks": ["Knot_tying_base"], "length": 413} +{"episode_index": 84, "tasks": ["Knot_tying_base"], "length": 470} +{"episode_index": 85, "tasks": ["Knot_tying_base"], "length": 534} +{"episode_index": 86, "tasks": ["Knot_tying_base"], "length": 506} +{"episode_index": 87, "tasks": ["Knot_tying_base"], "length": 459} +{"episode_index": 88, "tasks": ["Knot_tying_base"], "length": 450} +{"episode_index": 89, "tasks": ["Knot_tying_base"], "length": 482} +{"episode_index": 90, "tasks": ["Knot_tying_base"], "length": 364} +{"episode_index": 91, "tasks": ["Knot_tying_base"], "length": 328} +{"episode_index": 92, "tasks": ["Knot_tying_base"], "length": 428} +{"episode_index": 93, "tasks": ["Knot_tying_base"], "length": 554} +{"episode_index": 94, "tasks": ["Knot_tying_base"], "length": 373} +{"episode_index": 95, "tasks": ["Knot_tying_base"], "length": 293} +{"episode_index": 96, "tasks": ["Knot_tying_base"], "length": 391} +{"episode_index": 97, "tasks": ["Knot_tying_base"], "length": 319} +{"episode_index": 98, "tasks": ["Knot_tying_base"], "length": 523} +{"episode_index": 99, "tasks": ["Knot_tying_base"], "length": 585} +{"episode_index": 100, "tasks": ["Knot_tying_base"], "length": 578} +{"episode_index": 101, "tasks": ["Knot_tying_base"], "length": 511} +{"episode_index": 102, "tasks": ["Knot_tying_base"], "length": 590} +{"episode_index": 103, "tasks": ["Knot_tying_base"], "length": 468} +{"episode_index": 104, "tasks": ["Knot_tying_base"], "length": 955} +{"episode_index": 105, "tasks": ["Knot_tying_base"], "length": 1978} +{"episode_index": 106, "tasks": ["Knot_tying_base"], "length": 666} +{"episode_index": 107, "tasks": ["Knot_tying_base"], "length": 1006} +{"episode_index": 108, "tasks": ["Knot_tying_base"], "length": 689} +{"episode_index": 109, "tasks": ["Knot_tying_base"], "length": 441} +{"episode_index": 110, "tasks": ["Knot_tying_base"], "length": 877} +{"episode_index": 111, "tasks": ["Knot_tying_base"], "length": 571} +{"episode_index": 112, "tasks": ["Knot_tying_base"], "length": 767} +{"episode_index": 113, "tasks": ["Knot_tying_base"], "length": 635} +{"episode_index": 114, "tasks": ["Knot_tying_base"], "length": 920} +{"episode_index": 115, "tasks": ["Knot_tying_base"], "length": 513} +{"episode_index": 116, "tasks": ["Knot_tying_base"], "length": 706} +{"episode_index": 117, "tasks": ["Knot_tying_base"], "length": 612} +{"episode_index": 118, "tasks": ["Knot_tying_base"], "length": 814} +{"episode_index": 119, "tasks": ["Knot_tying_base"], "length": 832} +{"episode_index": 120, "tasks": ["Knot_tying_final"], "length": 3562} +{"episode_index": 121, "tasks": ["Knot_tying_final"], "length": 886} +{"episode_index": 122, "tasks": ["Knot_tying_final"], "length": 1057} +{"episode_index": 123, "tasks": ["Knot_tying_final"], "length": 937} +{"episode_index": 124, "tasks": ["Knot_tying_final"], "length": 943} +{"episode_index": 125, "tasks": ["Knot_tying_final"], "length": 1079} +{"episode_index": 126, "tasks": ["Knot_tying_final"], "length": 743} +{"episode_index": 127, "tasks": ["Knot_tying_final"], "length": 973} +{"episode_index": 128, "tasks": ["Knot_tying_final"], "length": 834} +{"episode_index": 129, "tasks": ["Knot_tying_final"], "length": 766} +{"episode_index": 130, "tasks": ["Knot_tying_final"], "length": 722} +{"episode_index": 131, "tasks": ["Knot_tying_final"], "length": 1155} +{"episode_index": 132, "tasks": ["Knot_tying_final"], "length": 883} +{"episode_index": 133, "tasks": ["Knot_tying_final"], "length": 1025} +{"episode_index": 134, "tasks": ["Knot_tying_final"], "length": 1017} +{"episode_index": 135, "tasks": ["Knot_tying_final"], "length": 705} +{"episode_index": 136, "tasks": ["Knot_tying_final"], "length": 795} +{"episode_index": 137, "tasks": ["Knot_tying_final"], "length": 1400} +{"episode_index": 138, "tasks": ["Knot_tying_final"], "length": 1009} +{"episode_index": 139, "tasks": ["Knot_tying_final"], "length": 736} +{"episode_index": 140, "tasks": ["Knot_tying_final"], "length": 1402} +{"episode_index": 141, "tasks": ["Knot_tying_final"], "length": 841} +{"episode_index": 142, "tasks": ["Knot_tying_final"], "length": 798} +{"episode_index": 143, "tasks": ["Knot_tying_final"], "length": 765} +{"episode_index": 144, "tasks": ["Knot_tying_final"], "length": 681} +{"episode_index": 145, "tasks": ["Knot_tying_final"], "length": 634} +{"episode_index": 146, "tasks": ["Knot_tying_final"], "length": 789} +{"episode_index": 147, "tasks": ["Knot_tying_final"], "length": 879} +{"episode_index": 148, "tasks": ["Knot_tying_final"], "length": 1070} +{"episode_index": 149, "tasks": ["Knot_tying_final"], "length": 564} +{"episode_index": 150, "tasks": ["Knot_tying_final"], "length": 1140} +{"episode_index": 151, "tasks": ["Knot_tying_final"], "length": 586} +{"episode_index": 152, "tasks": ["Knot_tying_final"], "length": 1101} +{"episode_index": 153, "tasks": ["Knot_tying_final"], "length": 732} +{"episode_index": 154, "tasks": ["Knot_tying_final"], "length": 718} +{"episode_index": 155, "tasks": ["Knot_tying_final"], "length": 721} +{"episode_index": 156, "tasks": ["Knot_tying_final"], "length": 1164} +{"episode_index": 157, "tasks": ["Knot_tying_final"], "length": 665} +{"episode_index": 158, "tasks": ["Knot_tying_final"], "length": 771} +{"episode_index": 159, "tasks": ["Knot_tying_final"], "length": 941} +{"episode_index": 160, "tasks": ["Knot_tying_final"], "length": 920} +{"episode_index": 161, "tasks": ["Knot_tying_final"], "length": 747} +{"episode_index": 162, "tasks": ["Knot_tying_final"], "length": 840} +{"episode_index": 163, "tasks": ["Knot_tying_final"], "length": 938} +{"episode_index": 164, "tasks": ["Knot_tying_final"], "length": 678} +{"episode_index": 165, "tasks": ["Knot_tying_final"], "length": 885} +{"episode_index": 166, "tasks": ["Knot_tying_final"], "length": 1020} +{"episode_index": 167, "tasks": ["Knot_tying_final"], "length": 746} +{"episode_index": 168, "tasks": ["Knot_tying_final"], "length": 1036} +{"episode_index": 169, "tasks": ["Knot_tying_final"], "length": 632} +{"episode_index": 170, "tasks": ["Knot_tying_final"], "length": 1074} +{"episode_index": 171, "tasks": ["Knot_tying_final"], "length": 857} +{"episode_index": 172, "tasks": ["Knot_tying_final"], "length": 900} +{"episode_index": 173, "tasks": ["Knot_tying_final"], "length": 724} +{"episode_index": 174, "tasks": ["Knot_tying_final"], "length": 890} +{"episode_index": 175, "tasks": ["Knot_tying_final"], "length": 914} +{"episode_index": 176, "tasks": ["Knot_tying_final"], "length": 837} +{"episode_index": 177, "tasks": ["Knot_tying_final"], "length": 1073} +{"episode_index": 178, "tasks": ["Knot_tying_final"], "length": 840} +{"episode_index": 179, "tasks": ["Knot_tying_final"], "length": 794} +{"episode_index": 180, "tasks": ["Knot_tying_final"], "length": 659} +{"episode_index": 181, "tasks": ["Knot_tying_final"], "length": 794} +{"episode_index": 182, "tasks": ["Knot_tying_final"], "length": 830} +{"episode_index": 183, "tasks": ["Knot_tying_final"], "length": 700} +{"episode_index": 184, "tasks": ["Knot_tying_final"], "length": 1248} +{"episode_index": 185, "tasks": ["Knot_tying_final"], "length": 1411} +{"episode_index": 186, "tasks": ["Knot_tying_final"], "length": 919} +{"episode_index": 187, "tasks": ["Knot_tying_final"], "length": 1232} +{"episode_index": 188, "tasks": ["Knot_tying_final"], "length": 761} +{"episode_index": 189, "tasks": ["Knot_tying_final"], "length": 674} +{"episode_index": 190, "tasks": ["Knot_tying_final"], "length": 742} +{"episode_index": 191, "tasks": ["Knot_tying_final"], "length": 868} +{"episode_index": 192, "tasks": ["Knot_tying_final"], "length": 651} +{"episode_index": 193, "tasks": ["Knot_tying_final"], "length": 553} +{"episode_index": 194, "tasks": ["Knot_tying_final"], "length": 684} +{"episode_index": 195, "tasks": ["Knot_tying_final"], "length": 1187} +{"episode_index": 196, "tasks": ["Knot_tying_final"], "length": 861} +{"episode_index": 197, "tasks": ["Knot_tying_final"], "length": 778} +{"episode_index": 198, "tasks": ["Knot_tying_final"], "length": 771} +{"episode_index": 199, "tasks": ["Knot_tying_final"], "length": 618} +{"episode_index": 200, "tasks": ["Knot_tying_final"], "length": 677} +{"episode_index": 201, "tasks": ["Knot_tying_final"], "length": 754} +{"episode_index": 202, "tasks": ["Knot_tying_final"], "length": 735} +{"episode_index": 203, "tasks": ["Knot_tying_final"], "length": 766} +{"episode_index": 204, "tasks": ["Knot_tying_final"], "length": 1076} +{"episode_index": 205, "tasks": ["Knot_tying_final"], "length": 886} +{"episode_index": 206, "tasks": ["Knot_tying_final"], "length": 651} +{"episode_index": 207, "tasks": ["Knot_tying_final"], "length": 862} +{"episode_index": 208, "tasks": ["Knot_tying_final"], "length": 574} +{"episode_index": 209, "tasks": ["Knot_tying_final"], "length": 1187} +{"episode_index": 210, "tasks": ["Knot_tying_final"], "length": 714} +{"episode_index": 211, "tasks": ["Knot_tying_final"], "length": 825} +{"episode_index": 212, "tasks": ["Knot_tying_final"], "length": 922} +{"episode_index": 213, "tasks": ["Knot_tying_final"], "length": 544} +{"episode_index": 214, "tasks": ["Knot_tying_final"], "length": 1415} +{"episode_index": 215, "tasks": ["Knot_tying_final"], "length": 1085} +{"episode_index": 216, "tasks": ["Knot_tying_final"], "length": 1159} +{"episode_index": 217, "tasks": ["Knot_tying_final"], "length": 687} +{"episode_index": 218, "tasks": ["Knot_tying_final"], "length": 698} +{"episode_index": 219, "tasks": ["Knot_tying_final"], "length": 1447} +{"episode_index": 220, "tasks": ["Knot_tying_final"], "length": 407} +{"episode_index": 221, "tasks": ["Knot_tying_final"], "length": 472} +{"episode_index": 222, "tasks": ["Knot_tying_final"], "length": 272} +{"episode_index": 223, "tasks": ["Knot_tying_final"], "length": 370} +{"episode_index": 224, "tasks": ["Knot_tying_final"], "length": 412} +{"episode_index": 225, "tasks": ["Knot_tying_final"], "length": 431} +{"episode_index": 226, "tasks": ["Knot_tying_final"], "length": 423} +{"episode_index": 227, "tasks": ["Knot_tying_final"], "length": 525} +{"episode_index": 228, "tasks": ["Knot_tying_final"], "length": 283} +{"episode_index": 229, "tasks": ["Knot_tying_final"], "length": 280} +{"episode_index": 230, "tasks": ["Knot_tying_final"], "length": 1044} +{"episode_index": 231, "tasks": ["Knot_tying_final"], "length": 486} +{"episode_index": 232, "tasks": ["Knot_tying_final"], "length": 607} +{"episode_index": 233, "tasks": ["Knot_tying_final"], "length": 410} +{"episode_index": 234, "tasks": ["Knot_tying_final"], "length": 487} +{"episode_index": 235, "tasks": ["Knot_tying_final"], "length": 366} +{"episode_index": 236, "tasks": ["Knot_tying_final"], "length": 564} +{"episode_index": 237, "tasks": ["Knot_tying_final"], "length": 595} +{"episode_index": 238, "tasks": ["Knot_tying_final"], "length": 321} +{"episode_index": 239, "tasks": ["Knot_tying_final"], "length": 628} +{"episode_index": 240, "tasks": ["Needle_extraction"], "length": 765} +{"episode_index": 241, "tasks": ["Needle_extraction"], "length": 535} +{"episode_index": 242, "tasks": ["Needle_extraction"], "length": 682} +{"episode_index": 243, "tasks": ["Needle_extraction"], "length": 597} +{"episode_index": 244, "tasks": ["Needle_extraction"], "length": 539} +{"episode_index": 245, "tasks": ["Needle_extraction"], "length": 541} +{"episode_index": 246, "tasks": ["Needle_extraction"], "length": 584} +{"episode_index": 247, "tasks": ["Needle_extraction"], "length": 700} +{"episode_index": 248, "tasks": ["Needle_extraction"], "length": 502} +{"episode_index": 249, "tasks": ["Needle_extraction"], "length": 564} +{"episode_index": 250, "tasks": ["Needle_extraction"], "length": 462} +{"episode_index": 251, "tasks": ["Needle_extraction"], "length": 525} +{"episode_index": 252, "tasks": ["Needle_extraction"], "length": 568} +{"episode_index": 253, "tasks": ["Needle_extraction"], "length": 598} +{"episode_index": 254, "tasks": ["Needle_extraction"], "length": 559} +{"episode_index": 255, "tasks": ["Needle_extraction"], "length": 656} +{"episode_index": 256, "tasks": ["Needle_extraction"], "length": 390} +{"episode_index": 257, "tasks": ["Needle_extraction"], "length": 451} +{"episode_index": 258, "tasks": ["Needle_extraction"], "length": 648} +{"episode_index": 259, "tasks": ["Needle_extraction"], "length": 675} +{"episode_index": 260, "tasks": ["Needle_extraction"], "length": 517} +{"episode_index": 261, "tasks": ["Needle_extraction"], "length": 367} +{"episode_index": 262, "tasks": ["Needle_extraction"], "length": 355} +{"episode_index": 263, "tasks": ["Needle_extraction"], "length": 476} +{"episode_index": 264, "tasks": ["Needle_extraction"], "length": 316} +{"episode_index": 265, "tasks": ["Needle_extraction"], "length": 256} +{"episode_index": 266, "tasks": ["Needle_extraction"], "length": 302} +{"episode_index": 267, "tasks": ["Needle_extraction"], "length": 426} +{"episode_index": 268, "tasks": ["Needle_extraction"], "length": 379} +{"episode_index": 269, "tasks": ["Needle_extraction"], "length": 261} +{"episode_index": 270, "tasks": ["Needle_extraction"], "length": 517} +{"episode_index": 271, "tasks": ["Needle_extraction"], "length": 455} +{"episode_index": 272, "tasks": ["Needle_extraction"], "length": 580} +{"episode_index": 273, "tasks": ["Needle_extraction"], "length": 420} +{"episode_index": 274, "tasks": ["Needle_extraction"], "length": 284} +{"episode_index": 275, "tasks": ["Needle_extraction"], "length": 318} +{"episode_index": 276, "tasks": ["Needle_extraction"], "length": 231} +{"episode_index": 277, "tasks": ["Needle_extraction"], "length": 715} +{"episode_index": 278, "tasks": ["Needle_extraction"], "length": 347} +{"episode_index": 279, "tasks": ["Needle_extraction"], "length": 190} +{"episode_index": 280, "tasks": ["Needle_extraction"], "length": 319} +{"episode_index": 281, "tasks": ["Needle_extraction"], "length": 270} +{"episode_index": 282, "tasks": ["Needle_extraction"], "length": 397} +{"episode_index": 283, "tasks": ["Needle_extraction"], "length": 307} +{"episode_index": 284, "tasks": ["Needle_extraction"], "length": 200} +{"episode_index": 285, "tasks": ["Needle_extraction"], "length": 303} +{"episode_index": 286, "tasks": ["Needle_extraction"], "length": 292} +{"episode_index": 287, "tasks": ["Needle_extraction"], "length": 248} +{"episode_index": 288, "tasks": ["Needle_extraction"], "length": 703} +{"episode_index": 289, "tasks": ["Needle_extraction"], "length": 320} +{"episode_index": 290, "tasks": ["Needle_extraction"], "length": 630} +{"episode_index": 291, "tasks": ["Needle_extraction"], "length": 715} +{"episode_index": 292, "tasks": ["Needle_extraction"], "length": 444} +{"episode_index": 293, "tasks": ["Needle_extraction"], "length": 455} +{"episode_index": 294, "tasks": ["Needle_extraction"], "length": 479} +{"episode_index": 295, "tasks": ["Needle_extraction"], "length": 411} +{"episode_index": 296, "tasks": ["Needle_extraction"], "length": 426} +{"episode_index": 297, "tasks": ["Needle_extraction"], "length": 490} +{"episode_index": 298, "tasks": ["Needle_extraction"], "length": 425} +{"episode_index": 299, "tasks": ["Needle_extraction"], "length": 449} +{"episode_index": 300, "tasks": ["Needle_extraction"], "length": 398} +{"episode_index": 301, "tasks": ["Needle_extraction"], "length": 349} +{"episode_index": 302, "tasks": ["Needle_extraction"], "length": 299} +{"episode_index": 303, "tasks": ["Needle_extraction"], "length": 335} +{"episode_index": 304, "tasks": ["Needle_extraction"], "length": 310} +{"episode_index": 305, "tasks": ["Needle_extraction"], "length": 369} +{"episode_index": 306, "tasks": ["Needle_extraction"], "length": 446} +{"episode_index": 307, "tasks": ["Needle_extraction"], "length": 303} +{"episode_index": 308, "tasks": ["Needle_extraction"], "length": 500} +{"episode_index": 309, "tasks": ["Needle_extraction"], "length": 300} +{"episode_index": 310, "tasks": ["Needle_extraction"], "length": 473} +{"episode_index": 311, "tasks": ["Needle_extraction"], "length": 374} +{"episode_index": 312, "tasks": ["Needle_extraction"], "length": 436} +{"episode_index": 313, "tasks": ["Needle_extraction"], "length": 271} +{"episode_index": 314, "tasks": ["Needle_extraction"], "length": 266} +{"episode_index": 315, "tasks": ["Needle_extraction"], "length": 783} +{"episode_index": 316, "tasks": ["Needle_extraction"], "length": 405} +{"episode_index": 317, "tasks": ["Needle_extraction"], "length": 409} +{"episode_index": 318, "tasks": ["Needle_extraction"], "length": 295} +{"episode_index": 319, "tasks": ["Needle_extraction"], "length": 700} +{"episode_index": 320, "tasks": ["Needle_extraction"], "length": 607} +{"episode_index": 321, "tasks": ["Needle_extraction"], "length": 651} +{"episode_index": 322, "tasks": ["Needle_extraction"], "length": 527} +{"episode_index": 323, "tasks": ["Needle_extraction"], "length": 832} +{"episode_index": 324, "tasks": ["Needle_extraction"], "length": 658} +{"episode_index": 325, "tasks": ["Needle_extraction"], "length": 990} +{"episode_index": 326, "tasks": ["Needle_extraction"], "length": 727} +{"episode_index": 327, "tasks": ["Needle_extraction"], "length": 381} +{"episode_index": 328, "tasks": ["Needle_extraction"], "length": 405} +{"episode_index": 329, "tasks": ["Needle_extraction"], "length": 341} +{"episode_index": 330, "tasks": ["Needle_extraction"], "length": 484} +{"episode_index": 331, "tasks": ["Needle_extraction"], "length": 443} +{"episode_index": 332, "tasks": ["Needle_extraction"], "length": 491} +{"episode_index": 333, "tasks": ["Needle_extraction"], "length": 331} +{"episode_index": 334, "tasks": ["Needle_extraction"], "length": 527} +{"episode_index": 335, "tasks": ["Needle_extraction"], "length": 317} +{"episode_index": 336, "tasks": ["Needle_extraction"], "length": 484} +{"episode_index": 337, "tasks": ["Needle_extraction"], "length": 440} +{"episode_index": 338, "tasks": ["Needle_extraction"], "length": 1064} +{"episode_index": 339, "tasks": ["Needle_extraction"], "length": 364} +{"episode_index": 340, "tasks": ["Needle_extraction"], "length": 217} +{"episode_index": 341, "tasks": ["Needle_extraction"], "length": 181} +{"episode_index": 342, "tasks": ["Needle_extraction"], "length": 186} +{"episode_index": 343, "tasks": ["Needle_extraction"], "length": 55} +{"episode_index": 344, "tasks": ["Needle_extraction"], "length": 214} +{"episode_index": 345, "tasks": ["Needle_extraction"], "length": 158} +{"episode_index": 346, "tasks": ["Needle_extraction"], "length": 190} +{"episode_index": 347, "tasks": ["Needle_extraction"], "length": 135} +{"episode_index": 348, "tasks": ["Needle_extraction"], "length": 139} +{"episode_index": 349, "tasks": ["Needle_extraction"], "length": 176} +{"episode_index": 350, "tasks": ["Needle_extraction"], "length": 135} +{"episode_index": 351, "tasks": ["Needle_extraction"], "length": 192} +{"episode_index": 352, "tasks": ["Needle_extraction"], "length": 139} +{"episode_index": 353, "tasks": ["Needle_extraction"], "length": 172} +{"episode_index": 354, "tasks": ["Needle_extraction"], "length": 155} +{"episode_index": 355, "tasks": ["Needle_extraction"], "length": 130} +{"episode_index": 356, "tasks": ["Needle_extraction"], "length": 204} +{"episode_index": 357, "tasks": ["Needle_extraction"], "length": 156} +{"episode_index": 358, "tasks": ["Needle_extraction"], "length": 144} +{"episode_index": 359, "tasks": ["Needle_extraction"], "length": 119} +{"episode_index": 360, "tasks": ["Needle_extraction"], "length": 191} +{"episode_index": 361, "tasks": ["Needle_extraction"], "length": 132} +{"episode_index": 362, "tasks": ["Needle_extraction"], "length": 172} +{"episode_index": 363, "tasks": ["Needle_extraction"], "length": 140} +{"episode_index": 364, "tasks": ["Needle_extraction"], "length": 154} +{"episode_index": 365, "tasks": ["Needle_extraction"], "length": 151} +{"episode_index": 366, "tasks": ["Needle_extraction"], "length": 195} +{"episode_index": 367, "tasks": ["Needle_extraction"], "length": 164} +{"episode_index": 368, "tasks": ["Needle_extraction"], "length": 144} +{"episode_index": 369, "tasks": ["Needle_extraction"], "length": 157} +{"episode_index": 370, "tasks": ["Needle_extraction"], "length": 134} +{"episode_index": 371, "tasks": ["Needle_extraction"], "length": 136} +{"episode_index": 372, "tasks": ["Needle_extraction"], "length": 155} +{"episode_index": 373, "tasks": ["Needle_extraction"], "length": 155} +{"episode_index": 374, "tasks": ["Needle_extraction"], "length": 125} +{"episode_index": 375, "tasks": ["Needle_extraction"], "length": 166} +{"episode_index": 376, "tasks": ["Needle_extraction"], "length": 158} +{"episode_index": 377, "tasks": ["Needle_extraction"], "length": 158} +{"episode_index": 378, "tasks": ["Needle_extraction"], "length": 140} +{"episode_index": 379, "tasks": ["Needle_extraction"], "length": 127} +{"episode_index": 380, "tasks": ["Needle_extraction"], "length": 163} +{"episode_index": 381, "tasks": ["Needle_extraction"], "length": 125} +{"episode_index": 382, "tasks": ["Needle_extraction"], "length": 137} +{"episode_index": 383, "tasks": ["Needle_extraction"], "length": 146} +{"episode_index": 384, "tasks": ["Needle_extraction"], "length": 159} +{"episode_index": 385, "tasks": ["Needle_extraction"], "length": 161} +{"episode_index": 386, "tasks": ["Needle_extraction"], "length": 109} +{"episode_index": 387, "tasks": ["Needle_extraction"], "length": 143} +{"episode_index": 388, "tasks": ["Needle_extraction"], "length": 155} +{"episode_index": 389, "tasks": ["Needle_insertion"], "length": 614} +{"episode_index": 390, "tasks": ["Needle_insertion"], "length": 434} +{"episode_index": 391, "tasks": ["Needle_insertion"], "length": 440} +{"episode_index": 392, "tasks": ["Needle_insertion"], "length": 410} +{"episode_index": 393, "tasks": ["Needle_insertion"], "length": 580} +{"episode_index": 394, "tasks": ["Needle_insertion"], "length": 512} +{"episode_index": 395, "tasks": ["Needle_insertion"], "length": 789} +{"episode_index": 396, "tasks": ["Needle_insertion"], "length": 420} +{"episode_index": 397, "tasks": ["Needle_insertion"], "length": 591} +{"episode_index": 398, "tasks": ["Needle_insertion"], "length": 680} +{"episode_index": 399, "tasks": ["Needle_insertion"], "length": 533} +{"episode_index": 400, "tasks": ["Needle_insertion"], "length": 489} +{"episode_index": 401, "tasks": ["Needle_insertion"], "length": 1462} +{"episode_index": 402, "tasks": ["Needle_insertion"], "length": 597} +{"episode_index": 403, "tasks": ["Needle_insertion"], "length": 615} +{"episode_index": 404, "tasks": ["Needle_insertion"], "length": 917} +{"episode_index": 405, "tasks": ["Needle_insertion"], "length": 629} +{"episode_index": 406, "tasks": ["Needle_insertion"], "length": 618} +{"episode_index": 407, "tasks": ["Needle_insertion"], "length": 955} +{"episode_index": 408, "tasks": ["Needle_insertion"], "length": 955} +{"episode_index": 409, "tasks": ["Needle_insertion"], "length": 790} +{"episode_index": 410, "tasks": ["Needle_insertion"], "length": 479} +{"episode_index": 411, "tasks": ["Needle_insertion"], "length": 404} +{"episode_index": 412, "tasks": ["Needle_insertion"], "length": 1391} +{"episode_index": 413, "tasks": ["Needle_insertion"], "length": 347} +{"episode_index": 414, "tasks": ["Needle_insertion"], "length": 333} +{"episode_index": 415, "tasks": ["Needle_insertion"], "length": 564} +{"episode_index": 416, "tasks": ["Needle_insertion"], "length": 529} +{"episode_index": 417, "tasks": ["Needle_insertion"], "length": 422} +{"episode_index": 418, "tasks": ["Needle_insertion"], "length": 476} +{"episode_index": 419, "tasks": ["Needle_insertion"], "length": 673} +{"episode_index": 420, "tasks": ["Needle_insertion"], "length": 478} +{"episode_index": 421, "tasks": ["Needle_insertion"], "length": 444} +{"episode_index": 422, "tasks": ["Needle_insertion"], "length": 1000} +{"episode_index": 423, "tasks": ["Needle_insertion"], "length": 577} +{"episode_index": 424, "tasks": ["Needle_insertion"], "length": 526} +{"episode_index": 425, "tasks": ["Needle_insertion"], "length": 376} +{"episode_index": 426, "tasks": ["Needle_insertion"], "length": 483} +{"episode_index": 427, "tasks": ["Needle_insertion"], "length": 498} +{"episode_index": 428, "tasks": ["Needle_insertion"], "length": 526} +{"episode_index": 429, "tasks": ["Needle_insertion"], "length": 702} +{"episode_index": 430, "tasks": ["Needle_insertion"], "length": 547} +{"episode_index": 431, "tasks": ["Needle_insertion"], "length": 462} +{"episode_index": 432, "tasks": ["Needle_insertion"], "length": 565} +{"episode_index": 433, "tasks": ["Needle_insertion"], "length": 201} +{"episode_index": 434, "tasks": ["Needle_insertion"], "length": 380} +{"episode_index": 435, "tasks": ["Needle_insertion"], "length": 808} +{"episode_index": 436, "tasks": ["Needle_insertion"], "length": 287} +{"episode_index": 437, "tasks": ["Needle_insertion"], "length": 619} +{"episode_index": 438, "tasks": ["Needle_insertion"], "length": 605} +{"episode_index": 439, "tasks": ["Needle_insertion"], "length": 545} +{"episode_index": 440, "tasks": ["Needle_insertion"], "length": 466} +{"episode_index": 441, "tasks": ["Needle_insertion"], "length": 677} +{"episode_index": 442, "tasks": ["Needle_insertion"], "length": 531} +{"episode_index": 443, "tasks": ["Needle_insertion"], "length": 419} +{"episode_index": 444, "tasks": ["Needle_insertion"], "length": 354} +{"episode_index": 445, "tasks": ["Needle_insertion"], "length": 327} +{"episode_index": 446, "tasks": ["Needle_insertion"], "length": 934} +{"episode_index": 447, "tasks": ["Needle_insertion"], "length": 319} +{"episode_index": 448, "tasks": ["Needle_insertion"], "length": 421} +{"episode_index": 449, "tasks": ["Needle_insertion"], "length": 495} +{"episode_index": 450, "tasks": ["Needle_insertion"], "length": 954} +{"episode_index": 451, "tasks": ["Needle_insertion"], "length": 450} +{"episode_index": 452, "tasks": ["Needle_insertion"], "length": 645} +{"episode_index": 453, "tasks": ["Needle_insertion"], "length": 437} +{"episode_index": 454, "tasks": ["Needle_insertion"], "length": 367} +{"episode_index": 455, "tasks": ["Needle_insertion"], "length": 395} +{"episode_index": 456, "tasks": ["Needle_insertion"], "length": 438} +{"episode_index": 457, "tasks": ["Needle_insertion"], "length": 503} +{"episode_index": 458, "tasks": ["Needle_insertion"], "length": 442} +{"episode_index": 459, "tasks": ["Needle_insertion"], "length": 449} +{"episode_index": 460, "tasks": ["Needle_insertion"], "length": 420} +{"episode_index": 461, "tasks": ["Needle_insertion"], "length": 335} +{"episode_index": 462, "tasks": ["Needle_insertion"], "length": 437} +{"episode_index": 463, "tasks": ["Needle_insertion"], "length": 535} +{"episode_index": 464, "tasks": ["Needle_insertion"], "length": 559} +{"episode_index": 465, "tasks": ["Needle_insertion"], "length": 547} +{"episode_index": 466, "tasks": ["Needle_insertion"], "length": 472} +{"episode_index": 467, "tasks": ["Needle_insertion"], "length": 459} +{"episode_index": 468, "tasks": ["Needle_insertion"], "length": 472} +{"episode_index": 469, "tasks": ["Needle_insertion"], "length": 359} +{"episode_index": 470, "tasks": ["Needle_insertion"], "length": 622} +{"episode_index": 471, "tasks": ["Needle_insertion"], "length": 463} +{"episode_index": 472, "tasks": ["Needle_insertion"], "length": 750} +{"episode_index": 473, "tasks": ["Needle_insertion"], "length": 355} +{"episode_index": 474, "tasks": ["Needle_insertion"], "length": 603} +{"episode_index": 475, "tasks": ["Needle_insertion"], "length": 718} +{"episode_index": 476, "tasks": ["Needle_insertion"], "length": 520} +{"episode_index": 477, "tasks": ["Needle_insertion"], "length": 462} +{"episode_index": 478, "tasks": ["Needle_insertion"], "length": 506} +{"episode_index": 479, "tasks": ["Needle_insertion"], "length": 1213} +{"episode_index": 480, "tasks": ["Needle_insertion"], "length": 1128} +{"episode_index": 481, "tasks": ["Needle_insertion"], "length": 584} +{"episode_index": 482, "tasks": ["Needle_insertion"], "length": 573} +{"episode_index": 483, "tasks": ["Needle_insertion"], "length": 709} +{"episode_index": 484, "tasks": ["Needle_insertion"], "length": 675} +{"episode_index": 485, "tasks": ["Needle_insertion"], "length": 1010} +{"episode_index": 486, "tasks": ["Needle_insertion"], "length": 361} +{"episode_index": 487, "tasks": ["Needle_insertion"], "length": 932} +{"episode_index": 488, "tasks": ["Needle_insertion"], "length": 439} +{"episode_index": 489, "tasks": ["Needle_insertion"], "length": 304} +{"episode_index": 490, "tasks": ["Needle_insertion"], "length": 278} +{"episode_index": 491, "tasks": ["Needle_insertion"], "length": 287} +{"episode_index": 492, "tasks": ["Needle_insertion"], "length": 251} +{"episode_index": 493, "tasks": ["Needle_insertion"], "length": 228} +{"episode_index": 494, "tasks": ["Needle_insertion"], "length": 304} +{"episode_index": 495, "tasks": ["Needle_insertion"], "length": 295} +{"episode_index": 496, "tasks": ["Needle_insertion"], "length": 304} +{"episode_index": 497, "tasks": ["Needle_insertion"], "length": 295} +{"episode_index": 498, "tasks": ["Needle_insertion"], "length": 271} +{"episode_index": 499, "tasks": ["Needle_insertion"], "length": 284} +{"episode_index": 500, "tasks": ["Needle_insertion"], "length": 300} +{"episode_index": 501, "tasks": ["Needle_insertion"], "length": 279} +{"episode_index": 502, "tasks": ["Needle_insertion"], "length": 243} +{"episode_index": 503, "tasks": ["Needle_insertion"], "length": 191} +{"episode_index": 504, "tasks": ["Needle_insertion"], "length": 248} +{"episode_index": 505, "tasks": ["Needle_insertion"], "length": 245} +{"episode_index": 506, "tasks": ["Needle_insertion"], "length": 258} +{"episode_index": 507, "tasks": ["Needle_insertion"], "length": 225} +{"episode_index": 508, "tasks": ["Needle_insertion"], "length": 211} +{"episode_index": 509, "tasks": ["Needle_insertion"], "length": 257} +{"episode_index": 510, "tasks": ["Needle_insertion"], "length": 299} +{"episode_index": 511, "tasks": ["Needle_insertion"], "length": 219} +{"episode_index": 512, "tasks": ["Needle_insertion"], "length": 220} +{"episode_index": 513, "tasks": ["Needle_insertion"], "length": 227} +{"episode_index": 514, "tasks": ["Needle_insertion"], "length": 192} +{"episode_index": 515, "tasks": ["Needle_insertion"], "length": 222} +{"episode_index": 516, "tasks": ["Needle_insertion"], "length": 224} +{"episode_index": 517, "tasks": ["Needle_insertion"], "length": 265} +{"episode_index": 518, "tasks": ["Needle_insertion"], "length": 228} +{"episode_index": 519, "tasks": ["Needle_insertion"], "length": 234} +{"episode_index": 520, "tasks": ["Needle_insertion"], "length": 196} +{"episode_index": 521, "tasks": ["Needle_insertion"], "length": 193} +{"episode_index": 522, "tasks": ["Needle_insertion"], "length": 195} +{"episode_index": 523, "tasks": ["Needle_insertion"], "length": 197} +{"episode_index": 524, "tasks": ["Needle_insertion"], "length": 202} +{"episode_index": 525, "tasks": ["Needle_insertion"], "length": 172} +{"episode_index": 526, "tasks": ["Needle_insertion"], "length": 190} +{"episode_index": 527, "tasks": ["Needle_insertion"], "length": 196} +{"episode_index": 528, "tasks": ["Needle_insertion"], "length": 194} +{"episode_index": 529, "tasks": ["Needle_insertion"], "length": 228} +{"episode_index": 530, "tasks": ["Needle_insertion"], "length": 179} +{"episode_index": 531, "tasks": ["Needle_insertion"], "length": 217} +{"episode_index": 532, "tasks": ["Needle_insertion"], "length": 229} +{"episode_index": 533, "tasks": ["Needle_insertion"], "length": 214} +{"episode_index": 534, "tasks": ["Needle_insertion"], "length": 183} +{"episode_index": 535, "tasks": ["Needle_insertion"], "length": 188} +{"episode_index": 536, "tasks": ["Needle_insertion"], "length": 213} +{"episode_index": 537, "tasks": ["Needle_insertion"], "length": 220} +{"episode_index": 538, "tasks": ["Needle_insertion"], "length": 172} +{"episode_index": 539, "tasks": ["Needle_insertion"], "length": 335} +{"episode_index": 540, "tasks": ["Needle_insertion"], "length": 1456} +{"episode_index": 541, "tasks": ["Needle_insertion"], "length": 835} +{"episode_index": 542, "tasks": ["Needle_insertion"], "length": 533} +{"episode_index": 543, "tasks": ["Needle_insertion"], "length": 724} +{"episode_index": 544, "tasks": ["Needle_insertion"], "length": 657} +{"episode_index": 545, "tasks": ["Needle_insertion"], "length": 557} +{"episode_index": 546, "tasks": ["Needle_insertion"], "length": 526} +{"episode_index": 547, "tasks": ["Needle_insertion"], "length": 666} +{"episode_index": 548, "tasks": ["Needle_insertion"], "length": 340} +{"episode_index": 549, "tasks": ["Needle_insertion"], "length": 457} +{"episode_index": 550, "tasks": ["Needle_insertion"], "length": 485} +{"episode_index": 551, "tasks": ["Needle_insertion"], "length": 379} +{"episode_index": 552, "tasks": ["Needle_insertion"], "length": 573} +{"episode_index": 553, "tasks": ["Needle_insertion"], "length": 495} +{"episode_index": 554, "tasks": ["Needle_insertion"], "length": 619} +{"episode_index": 555, "tasks": ["Needle_insertion"], "length": 643} +{"episode_index": 556, "tasks": ["Needle_insertion"], "length": 978} +{"episode_index": 557, "tasks": ["Needle_insertion"], "length": 527} +{"episode_index": 558, "tasks": ["Needle_insertion"], "length": 480} +{"episode_index": 559, "tasks": ["Needle_positioning"], "length": 949} +{"episode_index": 560, "tasks": ["Needle_positioning"], "length": 893} +{"episode_index": 561, "tasks": ["Needle_positioning"], "length": 571} +{"episode_index": 562, "tasks": ["Needle_positioning"], "length": 565} +{"episode_index": 563, "tasks": ["Needle_positioning"], "length": 645} +{"episode_index": 564, "tasks": ["Needle_positioning"], "length": 342} +{"episode_index": 565, "tasks": ["Needle_positioning"], "length": 734} +{"episode_index": 566, "tasks": ["Needle_positioning"], "length": 573} +{"episode_index": 567, "tasks": ["Needle_positioning"], "length": 740} +{"episode_index": 568, "tasks": ["Needle_positioning"], "length": 491} +{"episode_index": 569, "tasks": ["Needle_positioning"], "length": 914} +{"episode_index": 570, "tasks": ["Needle_positioning"], "length": 697} +{"episode_index": 571, "tasks": ["Needle_positioning"], "length": 556} +{"episode_index": 572, "tasks": ["Needle_positioning"], "length": 461} +{"episode_index": 573, "tasks": ["Needle_positioning"], "length": 641} +{"episode_index": 574, "tasks": ["Needle_positioning"], "length": 632} +{"episode_index": 575, "tasks": ["Needle_positioning"], "length": 400} +{"episode_index": 576, "tasks": ["Needle_positioning"], "length": 549} +{"episode_index": 577, "tasks": ["Needle_positioning"], "length": 1059} +{"episode_index": 578, "tasks": ["Needle_positioning"], "length": 498} +{"episode_index": 579, "tasks": ["Needle_positioning"], "length": 766} +{"episode_index": 580, "tasks": ["Needle_positioning"], "length": 445} +{"episode_index": 581, "tasks": ["Needle_positioning"], "length": 513} +{"episode_index": 582, "tasks": ["Needle_positioning"], "length": 380} +{"episode_index": 583, "tasks": ["Needle_positioning"], "length": 881} +{"episode_index": 584, "tasks": ["Needle_positioning"], "length": 929} +{"episode_index": 585, "tasks": ["Needle_positioning"], "length": 610} +{"episode_index": 586, "tasks": ["Needle_positioning"], "length": 770} +{"episode_index": 587, "tasks": ["Needle_positioning"], "length": 764} +{"episode_index": 588, "tasks": ["Needle_positioning"], "length": 722} +{"episode_index": 589, "tasks": ["Needle_positioning"], "length": 735} +{"episode_index": 590, "tasks": ["Needle_positioning"], "length": 800} +{"episode_index": 591, "tasks": ["Needle_positioning"], "length": 734} +{"episode_index": 592, "tasks": ["Needle_positioning"], "length": 1043} +{"episode_index": 593, "tasks": ["Needle_positioning"], "length": 613} +{"episode_index": 594, "tasks": ["Needle_positioning"], "length": 680} +{"episode_index": 595, "tasks": ["Needle_positioning"], "length": 690} +{"episode_index": 596, "tasks": ["Needle_positioning"], "length": 630} +{"episode_index": 597, "tasks": ["Needle_positioning"], "length": 966} +{"episode_index": 598, "tasks": ["Needle_positioning"], "length": 674} +{"episode_index": 599, "tasks": ["Needle_positioning"], "length": 616} +{"episode_index": 600, "tasks": ["Needle_positioning"], "length": 773} +{"episode_index": 601, "tasks": ["Needle_positioning"], "length": 619} +{"episode_index": 602, "tasks": ["Needle_positioning"], "length": 830} +{"episode_index": 603, "tasks": ["Needle_positioning"], "length": 631} +{"episode_index": 604, "tasks": ["Needle_positioning"], "length": 713} +{"episode_index": 605, "tasks": ["Needle_positioning"], "length": 691} +{"episode_index": 606, "tasks": ["Needle_positioning"], "length": 462} +{"episode_index": 607, "tasks": ["Needle_positioning"], "length": 1038} +{"episode_index": 608, "tasks": ["Needle_positioning"], "length": 576} +{"episode_index": 609, "tasks": ["Needle_positioning"], "length": 614} +{"episode_index": 610, "tasks": ["Needle_positioning"], "length": 465} +{"episode_index": 611, "tasks": ["Needle_positioning"], "length": 605} +{"episode_index": 612, "tasks": ["Needle_positioning"], "length": 700} +{"episode_index": 613, "tasks": ["Needle_positioning"], "length": 731} +{"episode_index": 614, "tasks": ["Needle_positioning"], "length": 512} +{"episode_index": 615, "tasks": ["Needle_positioning"], "length": 1195} +{"episode_index": 616, "tasks": ["Needle_positioning"], "length": 662} +{"episode_index": 617, "tasks": ["Needle_positioning"], "length": 723} +{"episode_index": 618, "tasks": ["Needle_positioning"], "length": 940} +{"episode_index": 619, "tasks": ["Needle_positioning"], "length": 1001} +{"episode_index": 620, "tasks": ["Needle_positioning"], "length": 531} +{"episode_index": 621, "tasks": ["Needle_positioning"], "length": 735} +{"episode_index": 622, "tasks": ["Needle_positioning"], "length": 892} +{"episode_index": 623, "tasks": ["Needle_positioning"], "length": 864} +{"episode_index": 624, "tasks": ["Needle_positioning"], "length": 617} +{"episode_index": 625, "tasks": ["Needle_positioning"], "length": 745} +{"episode_index": 626, "tasks": ["Needle_positioning"], "length": 659} +{"episode_index": 627, "tasks": ["Needle_positioning"], "length": 518} +{"episode_index": 628, "tasks": ["Needle_positioning"], "length": 607} +{"episode_index": 629, "tasks": ["Tissue_Lift"], "length": 158} +{"episode_index": 630, "tasks": ["Tissue_Lift"], "length": 150} +{"episode_index": 631, "tasks": ["Tissue_Lift"], "length": 147} +{"episode_index": 632, "tasks": ["Tissue_Lift"], "length": 133} +{"episode_index": 633, "tasks": ["Tissue_Lift"], "length": 135} +{"episode_index": 634, "tasks": ["Tissue_Lift"], "length": 145} +{"episode_index": 635, "tasks": ["Tissue_Lift"], "length": 126} +{"episode_index": 636, "tasks": ["Tissue_Lift"], "length": 105} +{"episode_index": 637, "tasks": ["Tissue_Lift"], "length": 138} +{"episode_index": 638, "tasks": ["Tissue_Lift"], "length": 110} +{"episode_index": 639, "tasks": ["Tissue_Lift"], "length": 92} +{"episode_index": 640, "tasks": ["Tissue_Lift"], "length": 118} +{"episode_index": 641, "tasks": ["Tissue_Lift"], "length": 115} +{"episode_index": 642, "tasks": ["Tissue_Lift"], "length": 98} +{"episode_index": 643, "tasks": ["Tissue_Lift"], "length": 91} +{"episode_index": 644, "tasks": ["Tissue_Lift"], "length": 110} +{"episode_index": 645, "tasks": ["Tissue_Lift"], "length": 141} +{"episode_index": 646, "tasks": ["Tissue_Lift"], "length": 99} +{"episode_index": 647, "tasks": ["Tissue_Lift"], "length": 95} +{"episode_index": 648, "tasks": ["Tissue_Lift"], "length": 117} +{"episode_index": 649, "tasks": ["Tissue_Lift"], "length": 97} +{"episode_index": 650, "tasks": ["Tissue_Lift"], "length": 89} +{"episode_index": 651, "tasks": ["Tissue_Lift"], "length": 107} +{"episode_index": 652, "tasks": ["Tissue_Lift"], "length": 101} +{"episode_index": 653, "tasks": ["Tissue_Lift"], "length": 88} +{"episode_index": 654, "tasks": ["Tissue_Lift"], "length": 141} +{"episode_index": 655, "tasks": ["Tissue_Lift"], "length": 141} +{"episode_index": 656, "tasks": ["Tissue_Lift"], "length": 175} +{"episode_index": 657, "tasks": ["Tissue_Lift"], "length": 231} +{"episode_index": 658, "tasks": ["Tissue_Lift"], "length": 126} +{"episode_index": 659, "tasks": ["Tissue_Lift"], "length": 121} +{"episode_index": 660, "tasks": ["Tissue_Lift"], "length": 110} +{"episode_index": 661, "tasks": ["Tissue_Lift"], "length": 106} +{"episode_index": 662, "tasks": ["Tissue_Lift"], "length": 115} +{"episode_index": 663, "tasks": ["Tissue_Lift"], "length": 122} +{"episode_index": 664, "tasks": ["Tissue_Lift"], "length": 133} +{"episode_index": 665, "tasks": ["Tissue_Lift"], "length": 107} +{"episode_index": 666, "tasks": ["Tissue_Lift"], "length": 132} +{"episode_index": 667, "tasks": ["Tissue_Lift"], "length": 125} +{"episode_index": 668, "tasks": ["Tissue_Lift"], "length": 136} +{"episode_index": 669, "tasks": ["Tissue_Lift"], "length": 139} +{"episode_index": 670, "tasks": ["Tissue_Lift"], "length": 148} +{"episode_index": 671, "tasks": ["Tissue_Lift"], "length": 120} +{"episode_index": 672, "tasks": ["Tissue_Lift"], "length": 154} +{"episode_index": 673, "tasks": ["Tissue_Lift"], "length": 155} +{"episode_index": 674, "tasks": ["Tissue_Lift"], "length": 131} +{"episode_index": 675, "tasks": ["Tissue_Lift"], "length": 141} +{"episode_index": 676, "tasks": ["Tissue_Lift"], "length": 141} +{"episode_index": 677, "tasks": ["Tissue_Lift"], "length": 161} +{"episode_index": 678, "tasks": ["Tissue_Lift"], "length": 115} +{"episode_index": 679, "tasks": ["Tissue_Lift"], "length": 216} +{"episode_index": 680, "tasks": ["Tissue_Lift"], "length": 234} +{"episode_index": 681, "tasks": ["Tissue_Lift"], "length": 242} +{"episode_index": 682, "tasks": ["Tissue_Lift"], "length": 177} +{"episode_index": 683, "tasks": ["Tissue_Lift"], "length": 163} +{"episode_index": 684, "tasks": ["Tissue_Lift"], "length": 178} +{"episode_index": 685, "tasks": ["Tissue_Lift"], "length": 191} +{"episode_index": 686, "tasks": ["Tissue_Lift"], "length": 211} +{"episode_index": 687, "tasks": ["Tissue_Lift"], "length": 210} +{"episode_index": 688, "tasks": ["Tissue_Lift"], "length": 165} +{"episode_index": 689, "tasks": ["Tissue_Lift"], "length": 152} +{"episode_index": 690, "tasks": ["Tissue_Lift"], "length": 184} +{"episode_index": 691, "tasks": ["Tissue_Lift"], "length": 179} +{"episode_index": 692, "tasks": ["Tissue_Lift"], "length": 164} +{"episode_index": 693, "tasks": ["Tissue_Lift"], "length": 197} +{"episode_index": 694, "tasks": ["Tissue_Lift"], "length": 220} +{"episode_index": 695, "tasks": ["Tissue_Lift"], "length": 183} +{"episode_index": 696, "tasks": ["Tissue_Lift"], "length": 192} +{"episode_index": 697, "tasks": ["Tissue_Lift"], "length": 169} +{"episode_index": 698, "tasks": ["Tissue_Lift"], "length": 210} +{"episode_index": 699, "tasks": ["Tissue_Lift"], "length": 233} +{"episode_index": 700, "tasks": ["Tissue_Lift"], "length": 186} +{"episode_index": 701, "tasks": ["Tissue_Lift"], "length": 159} +{"episode_index": 702, "tasks": ["Tissue_Lift"], "length": 147} +{"episode_index": 703, "tasks": ["Tissue_Lift"], "length": 235} +{"episode_index": 704, "tasks": ["Tissue_Lift"], "length": 183} +{"episode_index": 705, "tasks": ["Tissue_Lift"], "length": 171} +{"episode_index": 706, "tasks": ["Tissue_Lift"], "length": 223} +{"episode_index": 707, "tasks": ["Tissue_Lift"], "length": 170} +{"episode_index": 708, "tasks": ["Tissue_Lift"], "length": 180} +{"episode_index": 709, "tasks": ["Tissue_Lift"], "length": 194} +{"episode_index": 710, "tasks": ["Tissue_Lift"], "length": 175} +{"episode_index": 711, "tasks": ["Tissue_Lift"], "length": 181} +{"episode_index": 712, "tasks": ["Tissue_Lift"], "length": 124} +{"episode_index": 713, "tasks": ["Tissue_Lift"], "length": 128} +{"episode_index": 714, "tasks": ["Tissue_Lift"], "length": 207} +{"episode_index": 715, "tasks": ["Tissue_Lift"], "length": 190} +{"episode_index": 716, "tasks": ["Tissue_Lift"], "length": 279} +{"episode_index": 717, "tasks": ["Tissue_Lift"], "length": 240} +{"episode_index": 718, "tasks": ["Tissue_Lift"], "length": 378} +{"episode_index": 719, "tasks": ["Tissue_Lift"], "length": 153} +{"episode_index": 720, "tasks": ["Tissue_Lift"], "length": 174} +{"episode_index": 721, "tasks": ["Tissue_Lift"], "length": 252} +{"episode_index": 722, "tasks": ["Tissue_Lift"], "length": 170} +{"episode_index": 723, "tasks": ["Tissue_Lift"], "length": 233} +{"episode_index": 724, "tasks": ["Tissue_Lift"], "length": 186} +{"episode_index": 725, "tasks": ["Tissue_Lift"], "length": 164} +{"episode_index": 726, "tasks": ["Tissue_Lift"], "length": 230} +{"episode_index": 727, "tasks": ["Tissue_Lift"], "length": 188} +{"episode_index": 728, "tasks": ["Tissue_Lift"], "length": 175} +{"episode_index": 729, "tasks": ["Tissue_Lift"], "length": 188} +{"episode_index": 730, "tasks": ["Tissue_Lift"], "length": 110} +{"episode_index": 731, "tasks": ["Tissue_Lift"], "length": 156} +{"episode_index": 732, "tasks": ["Tissue_Lift"], "length": 160} +{"episode_index": 733, "tasks": ["Tissue_Lift"], "length": 188} +{"episode_index": 734, "tasks": ["Tissue_Lift"], "length": 186} +{"episode_index": 735, "tasks": ["Tissue_Lift"], "length": 152} +{"episode_index": 736, "tasks": ["Tissue_Lift"], "length": 141} +{"episode_index": 737, "tasks": ["Tissue_Lift"], "length": 193} +{"episode_index": 738, "tasks": ["Tissue_Lift"], "length": 162} +{"episode_index": 739, "tasks": ["Tissue_Lift"], "length": 115} +{"episode_index": 740, "tasks": ["Tissue_Lift"], "length": 137} +{"episode_index": 741, "tasks": ["Tissue_Lift"], "length": 137} +{"episode_index": 742, "tasks": ["Tissue_Lift"], "length": 137} +{"episode_index": 743, "tasks": ["Tissue_Lift"], "length": 138} +{"episode_index": 744, "tasks": ["Tissue_Lift"], "length": 139} +{"episode_index": 745, "tasks": ["Tissue_Lift"], "length": 119} +{"episode_index": 746, "tasks": ["Tissue_Lift"], "length": 135} +{"episode_index": 747, "tasks": ["Tissue_Lift"], "length": 142} +{"episode_index": 748, "tasks": ["Tissue_Lift"], "length": 166} +{"episode_index": 749, "tasks": ["Tissue_Lift"], "length": 133} +{"episode_index": 750, "tasks": ["Tissue_Lift"], "length": 143} +{"episode_index": 751, "tasks": ["Tissue_Lift"], "length": 151} +{"episode_index": 752, "tasks": ["Tissue_Lift"], "length": 142} +{"episode_index": 753, "tasks": ["Tissue_Lift"], "length": 165} +{"episode_index": 754, "tasks": ["Tissue_Lift"], "length": 121} +{"episode_index": 755, "tasks": ["Tissue_Lift"], "length": 152} +{"episode_index": 756, "tasks": ["Tissue_Lift"], "length": 141} +{"episode_index": 757, "tasks": ["Tissue_Lift"], "length": 175} +{"episode_index": 758, "tasks": ["Tissue_Lift"], "length": 151} +{"episode_index": 759, "tasks": ["Tissue_Lift"], "length": 164} +{"episode_index": 760, "tasks": ["Tissue_Lift"], "length": 132} +{"episode_index": 761, "tasks": ["Tissue_Lift"], "length": 153} +{"episode_index": 762, "tasks": ["Tissue_Lift"], "length": 141} +{"episode_index": 763, "tasks": ["Tissue_Lift"], "length": 150} +{"episode_index": 764, "tasks": ["Tissue_Lift"], "length": 180} +{"episode_index": 765, "tasks": ["Tissue_Lift"], "length": 130} +{"episode_index": 766, "tasks": ["Tissue_Lift"], "length": 122} +{"episode_index": 767, "tasks": ["Tissue_Lift"], "length": 150} +{"episode_index": 768, "tasks": ["Tissue_Lift"], "length": 127} +{"episode_index": 769, "tasks": ["Tissue_Lift"], "length": 154} +{"episode_index": 770, "tasks": ["Tissue_Lift"], "length": 141} +{"episode_index": 771, "tasks": ["Tissue_Lift"], "length": 142} +{"episode_index": 772, "tasks": ["Tissue_Lift"], "length": 138} +{"episode_index": 773, "tasks": ["Tissue_Lift"], "length": 131} +{"episode_index": 774, "tasks": ["Tissue_Lift"], "length": 144} +{"episode_index": 775, "tasks": ["Tissue_Lift"], "length": 149} +{"episode_index": 776, "tasks": ["Tissue_Lift"], "length": 165} +{"episode_index": 777, "tasks": ["Tissue_Lift"], "length": 163} +{"episode_index": 778, "tasks": ["Tissue_Lift"], "length": 157} +{"episode_index": 779, "tasks": ["Tissue_Lift"], "length": 197} +{"episode_index": 780, "tasks": ["Tissue_Lift"], "length": 329} +{"episode_index": 781, "tasks": ["Tissue_Lift"], "length": 148} +{"episode_index": 782, "tasks": ["Tissue_Lift"], "length": 378} +{"episode_index": 783, "tasks": ["Tissue_Lift"], "length": 392} +{"episode_index": 784, "tasks": ["Tissue_Lift"], "length": 232} +{"episode_index": 785, "tasks": ["Tissue_Lift"], "length": 259} +{"episode_index": 786, "tasks": ["Tissue_Lift"], "length": 206} +{"episode_index": 787, "tasks": ["Tissue_Lift"], "length": 174} +{"episode_index": 788, "tasks": ["Tissue_Lift"], "length": 233} +{"episode_index": 789, "tasks": ["Tissue_Lift"], "length": 309} +{"episode_index": 790, "tasks": ["Tissue_Lift"], "length": 419} +{"episode_index": 791, "tasks": ["Tissue_Lift"], "length": 185} +{"episode_index": 792, "tasks": ["Tissue_Lift"], "length": 224} +{"episode_index": 793, "tasks": ["Tissue_Lift"], "length": 165} +{"episode_index": 794, "tasks": ["Tissue_Lift"], "length": 205} +{"episode_index": 795, "tasks": ["Tissue_Lift"], "length": 178} +{"episode_index": 796, "tasks": ["Tissue_Lift"], "length": 318} +{"episode_index": 797, "tasks": ["Tissue_Lift"], "length": 211} +{"episode_index": 798, "tasks": ["Tissue_Lift"], "length": 185} diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/episodes_stats.jsonl b/Surgical/turin/mitic_lerobot_ex_vivo/meta/episodes_stats.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..0febeae3f30b8385bc722301de181e667e4a61e5 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/episodes_stats.jsonl @@ -0,0 +1,799 @@ +{"episode_index": 0, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4932276063999556]], [[0.4604268053647503]], [[0.41668537945963946]]], "std": [[[0.20855902146101626]], [[0.203624483985947]], [[0.20227478377065183]]], "count": [157]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5052198891941773]], [[0.48355135957426143]], [[0.4434715214465121]]], "std": [[[0.19923831066177083]], [[0.18376300327643189]], [[0.19263342553439347]]], "count": [157]}, "observation.state": {"min": [0.4005241096019745, -0.14959706366062164, 0.1244334727525711, -0.985123336315155, -0.45513617992401123, 0.1830507516860962, -0.6072307825088501, -0.48348942399024963, 0.16656288504600525, 1.1556012630462646, 0.03620867058634758, 0.0076221199706196785], "max": [0.570347011089325, 0.02682105079293251, 0.1396428346633911, -0.2860170900821686, 0.25236761569976807, 1.0238093137741089, -0.21130941808223724, -0.3610377609729767, 0.19564774632453918, 1.667244791984558, 0.8455066680908203, 0.7108599543571472], "mean": [0.5073763132095337, -0.0579880066215992, 0.13050507009029388, -0.5965262651443481, -0.07502838969230652, 0.5220780968666077, -0.4954630434513092, -0.41246113181114197, 0.18194912374019623, 1.4752192497253418, 0.3027554750442505, 0.5350068807601929], "std": [0.04760497808456421, 0.05174925923347473, 0.0034233340993523598, 0.21027329564094543, 0.20251691341400146, 0.19735214114189148, 0.12067724764347076, 0.037279803305864334, 0.008384739980101585, 0.14907024800777435, 0.2096039205789566, 0.1597755253314972], "count": [849]}, "action": {"min": [-0.13327009975910187, -0.09915553778409958, 0.11071951687335968, -0.37728193402290344, -0.6777629256248474, -0.6829973459243774, -0.6233096718788147, 0.09946561604738235, -0.13956855237483978, 0.07141956686973572, 0.12145768851041794, -0.44395712018013, -0.3778356611728668, 0.7217435240745544], "max": [-0.107356958091259, -0.0741754099726677, 0.14147622883319855, 0.35976848006248474, 0.7337409257888794, 0.7609743475914001, 0.5331580638885498, 0.16476315259933472, -0.12140380591154099, 0.09350161254405975, 0.38682109117507935, -0.16438232362270355, -0.0894644558429718, 0.9412780404090881], "mean": [-0.1158696785569191, -0.08525007963180542, 0.1264304220676422, 0.0509352944791317, -0.21810626983642578, 0.35447070002555847, -0.24798472225666046, 0.12119336426258087, -0.129477858543396, 0.08522425591945648, 0.18606387078762054, -0.30833035707473755, -0.2070515900850296, 0.8992152214050293], "std": [0.007621950004249811, 0.0065552843734622, 0.008235049434006214, 0.19798365235328674, 0.5268313884735107, 0.5562888979911804, 0.36943620443344116, 0.019216880202293396, 0.004174085333943367, 0.005976895801723003, 0.06900541484355927, 0.06513965129852295, 0.08442848175764084, 0.052186258137226105], "count": [849]}, "timestamp": {"min": [0.0], "max": [28.266666666666666], "mean": [14.133333333333335], "std": [8.169500642067467], "count": [849]}, "frame_index": {"min": [0], "max": [848], "mean": [424.0], "std": [245.085019262024], "count": [849]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [849]}, "index": {"min": [0], "max": [848], "mean": [424.0], "std": [245.085019262024], "count": [849]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [849]}}} +{"episode_index": 1, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49293661917892156]], [[0.4596938387913036]], [[0.4158818820352215]]], "std": [[[0.2075587184914551]], [[0.20275426212050227]], [[0.20135554944232956]]], "count": [192]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5065904153617465]], [[0.4843925752882171]], [[0.44436731090005444]]], "std": [[[0.19721781350645184]], [[0.1819099346659389]], [[0.19079158518818998]]], "count": [192]}, "observation.state": {"min": [0.3968789577484131, -0.16671836376190186, 0.11617740243673325, -1.334466814994812, -0.4700295627117157, 0.24290111660957336, -0.622660756111145, -0.47569718956947327, 0.16529901325702667, 1.3516613245010376, -0.018036020919680595, 0.37576520442962646], "max": [0.5863330364227295, 0.006386700086295605, 0.1416015326976776, -0.12833024561405182, 0.2986873984336853, 1.1129591464996338, -0.24369856715202332, -0.35098275542259216, 0.19554664194583893, 1.6682932376861572, 0.58412104845047, 0.7297554016113281], "mean": [0.5199738144874573, -0.06794683635234833, 0.1316431611776352, -0.7039258480072021, -0.05970636382699013, 0.6442467570304871, -0.5117694139480591, -0.4052979052066803, 0.17936989665031433, 1.5653424263000488, 0.18446694314479828, 0.5542761087417603], "std": [0.047417398542165756, 0.04489082098007202, 0.005080551840364933, 0.27584409713745117, 0.18559050559997559, 0.23561324179172516, 0.09550623595714569, 0.027429886162281036, 0.008330672048032284, 0.07616886496543884, 0.14858852326869965, 0.0753738284111023], "count": [1115]}, "action": {"min": [-0.13519731163978577, -0.10097242146730423, 0.1131855770945549, -0.45386219024658203, -0.684159517288208, -0.6801394820213318, -0.5656949281692505, 0.09729301929473877, -0.13521887362003326, 0.07365618646144867, 0.10364070534706116, -0.41835644841194153, -0.27734318375587463, 0.8303870558738708], "max": [-0.10190973430871964, -0.07685606926679611, 0.13995862007141113, 0.4219062924385071, 0.7182237505912781, 0.7767091393470764, 0.602604329586029, 0.16142506897449493, -0.12176133692264557, 0.09270048886537552, 0.2931133806705475, -0.17302928864955902, -0.066872239112854, 0.9468473196029663], "mean": [-0.11328426748514175, -0.08667910099029541, 0.1254049390554428, -0.01701156049966812, -0.044538795948028564, 0.17981117963790894, -0.043222226202487946, 0.12062268704175949, -0.12710458040237427, 0.08443793654441833, 0.17972500622272491, -0.3001180589199066, -0.14434988796710968, 0.9209396243095398], "std": [0.008925232104957104, 0.006241669878363609, 0.006881019566208124, 0.245670884847641, 0.6033170819282532, 0.6245271563529968, 0.3861948251724243, 0.01577022485435009, 0.0033466771710664034, 0.005201844032853842, 0.04208322986960411, 0.054268866777420044, 0.05711830407381058, 0.0261318851262331], "count": [1115]}, "timestamp": {"min": [0.0], "max": [37.13333333333333], "mean": [18.566666666666666], "std": [10.729088187415245], "count": [1115]}, "frame_index": {"min": [0], "max": [1114], "mean": [557.0], "std": [321.87264562245736], "count": [1115]}, "episode_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1115]}, "index": {"min": [849], "max": [1963], "mean": [1406.0], "std": [321.87264562245736], "count": [1115]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1115]}}} +{"episode_index": 2, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5031345549330843]], [[0.4688489884842826]], [[0.4247046451914099]]], "std": [[[0.21083450582774063]], [[0.20580176792206986]], [[0.20463328841003256]]], "count": [105]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5152250804025313]], [[0.4916327497665733]], [[0.4508933784624961]]], "std": [[[0.20062425633387376]], [[0.18491957783446805]], [[0.19444210154803349]]], "count": [105]}, "observation.state": {"min": [0.40527358651161194, -0.15166674554347992, 0.12516328692436218, -1.0291582345962524, -0.26698771119117737, 0.19749681651592255, -0.620459794998169, -0.48443159461021423, 0.16511623561382294, 1.2709307670593262, -0.8127139210700989, 1.0098320245742798], "max": [0.5702775120735168, -0.01232547964900732, 0.1395145058631897, -0.39820119738578796, 0.3200026750564575, 0.8646199107170105, -0.33796995878219604, -0.3970334231853485, 0.19519275426864624, 1.6011923551559448, -0.15945479273796082, 1.2640851736068726], "mean": [0.4882069528102875, -0.0587860606610775, 0.13205020129680634, -0.6135754585266113, 0.0005731607670895755, 0.48572835326194763, -0.491041362285614, -0.42623937129974365, 0.17895205318927765, 1.4713828563690186, -0.5204008221626282, 1.1328954696655273], "std": [0.05170334503054619, 0.04272351786494255, 0.004184611141681671, 0.20086407661437988, 0.17708861827850342, 0.17341996729373932, 0.09634651988744736, 0.018194537609815598, 0.010109202936291695, 0.10927031934261322, 0.21657629311084747, 0.04926598072052002], "count": [498]}, "action": {"min": [-0.13199388980865479, -0.09985513985157013, 0.11384592205286026, -0.3732556700706482, -0.6539918780326843, -0.6521250009536743, -0.5714364051818848, 0.10581345111131668, -0.14030420780181885, 0.07405466586351395, -0.17505685985088348, -0.11542384326457977, -0.102940134704113, 0.9749911427497864], "max": [-0.10484195500612259, -0.080356165766716, 0.1395619809627533, 0.37771010398864746, 0.6894071102142334, 0.7657245993614197, 0.3149389922618866, 0.1533277928829193, -0.12411940097808838, 0.0896376445889473, -0.060632094740867615, 0.03212499991059303, 0.16757915914058685, 0.9967886805534363], "mean": [-0.11751905828714371, -0.08653165400028229, 0.12890425324440002, 0.11806442588567734, -0.39831021428108215, 0.5511403679847717, -0.3826548755168915, 0.1300700306892395, -0.13065601885318756, 0.08443618565797806, -0.1017533615231514, -0.02341245859861374, 0.056196264922618866, 0.9880483150482178], "std": [0.009344878606498241, 0.005068512633442879, 0.007005615159869194, 0.1827532798051834, 0.36434710025787354, 0.3952385187149048, 0.234239861369133, 0.01582883670926094, 0.003916142508387566, 0.003636169945821166, 0.025048131123185158, 0.041146811097860336, 0.08560646325349808, 0.007195788435637951], "count": [498]}, "timestamp": {"min": [0.0], "max": [16.566666666666666], "mean": [8.283333333333333], "std": [4.791997573115072], "count": [498]}, "frame_index": {"min": [0], "max": [497], "mean": [248.5], "std": [143.75992719345217], "count": [498]}, "episode_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [498]}, "index": {"min": [1964], "max": [2461], "mean": [2212.5], "std": [143.75992719345217], "count": [498]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [498]}}} +{"episode_index": 3, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49665631263616555]], [[0.4615478839869281]], [[0.4172018464052288]]], "std": [[[0.2076711421103772]], [[0.20186738333790508]], [[0.20036495051984887]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5093710212418301]], [[0.48522829520697164]], [[0.44421342864923746]]], "std": [[[0.1987705634374619]], [[0.18211315041112267]], [[0.19122764614395613]]], "count": [100]}, "observation.state": {"min": [0.42692041397094727, -0.15214556455612183, 0.12489884346723557, -1.3155946731567383, -0.055337779223918915, 0.34917891025543213, -0.6122736930847168, -0.4969887435436249, 0.16401827335357666, 1.2814152240753174, -0.40348759293556213, 0.8626967072486877], "max": [0.5679529309272766, -0.029531730338931084, 0.137595996260643, -0.709381103515625, 0.43641698360443115, 0.8139212131500244, -0.3287181258201599, -0.4024084508419037, 0.19133369624614716, 1.6414529085159302, -0.02104201912879944, 1.02482008934021], "mean": [0.5040682554244995, -0.07240672409534454, 0.1303049772977829, -0.9444435834884644, 0.1670035570859909, 0.5159085392951965, -0.48510751128196716, -0.42758801579475403, 0.17757302522659302, 1.4797738790512085, -0.21392938494682312, 0.9565240740776062], "std": [0.044121019542217255, 0.03734932839870453, 0.004122940357774496, 0.18402738869190216, 0.14763250946998596, 0.12689577043056488, 0.09688643366098404, 0.02711654081940651, 0.009676151908934116, 0.1170116662979126, 0.14095357060432434, 0.047826413065195084], "count": [336]}, "action": {"min": [-0.12908829748630524, -0.09951014816761017, 0.11248786747455597, -0.4037533104419708, -0.6372860074043274, -0.6353493928909302, -0.4395792782306671, 0.10587438195943832, -0.1386222392320633, 0.07439800351858139, -0.03458506986498833, -0.21915410459041595, -0.15257807075977325, 0.9728030562400818], "max": [-0.10494662821292877, -0.08007421344518661, 0.1335170716047287, 0.4567110538482666, 0.6371376514434814, 0.8070839047431946, 0.36172664165496826, 0.15373094379901886, -0.12286576628684998, 0.08708754181861877, 0.07253142446279526, -0.007807249668985605, 0.008680137805640697, 0.9967315196990967], "mean": [-0.11499937623739243, -0.08598078787326813, 0.12522727251052856, 0.28699907660484314, -0.4941520094871521, 0.7081348896026611, -0.28381046652793884, 0.12884396314620972, -0.13007189333438873, 0.08350791782140732, -0.0032604499720036983, -0.1091059148311615, -0.06011466309428215, 0.9883101582527161], "std": [0.008243508636951447, 0.005257865414023399, 0.005810461938381195, 0.11853627860546112, 0.16341330111026764, 0.1864977478981018, 0.126119002699852, 0.01621626503765583, 0.004901933949440718, 0.004075209144502878, 0.01877911202609539, 0.06668172031641006, 0.053572993725538254, 0.006722653284668922], "count": [336]}, "timestamp": {"min": [0.0], "max": [11.166666666666666], "mean": [5.583333333333333], "std": [3.2331471882270906], "count": [336]}, "frame_index": {"min": [0], "max": [335], "mean": [167.5], "std": [96.99441564681271], "count": [336]}, "episode_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [336]}, "index": {"min": [2462], "max": [2797], "mean": [2629.5], "std": [96.99441564681271], "count": [336]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [336]}}} +{"episode_index": 4, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48902695814032193]], [[0.454515893034668]], [[0.4098986240666709]]], "std": [[[0.21154142348104016]], [[0.20497325959666604]], [[0.20248845052186876]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5007342100810119]], [[0.478025871459695]], [[0.4364097711360704]]], "std": [[[0.20233006725087946]], [[0.18499644430622342]], [[0.19301269223561196]]], "count": [103]}, "observation.state": {"min": [0.4372997581958771, -0.15167446434497833, 0.1229647696018219, -1.0652248859405518, -0.15931816399097443, 0.12788251042366028, -0.6066515445709229, -0.47743478417396545, 0.16403642296791077, 1.4051322937011719, -0.48314666748046875, 0.9039004445075989], "max": [0.6016086339950562, -0.0035524601116776466, 0.13980616629123688, -0.6244566440582275, 0.40253111720085144, 0.9717223644256592, -0.34317508339881897, -0.39800646901130676, 0.1921348124742508, 1.836464524269104, 0.02131528966128826, 1.240247130393982], "mean": [0.5234385132789612, -0.0628913938999176, 0.12921439111232758, -0.8049423694610596, 0.11476685106754303, 0.49373772740364075, -0.5167675018310547, -0.4253704845905304, 0.17770901322364807, 1.5801043510437012, -0.24395103752613068, 1.0955110788345337], "std": [0.047141432762145996, 0.04899817705154419, 0.005249266978353262, 0.11668463796377182, 0.17451439797878265, 0.2661401629447937, 0.09041576832532883, 0.02156689018011093, 0.009419746696949005, 0.1481497883796692, 0.18064595758914948, 0.10970854014158249], "count": [484]}, "action": {"min": [-0.129233255982399, -0.0958757996559143, 0.10685357451438904, -0.4639391601085663, -0.646098256111145, -0.6500688791275024, -0.4526118040084839, 0.10728666186332703, -0.1339074671268463, 0.07313813269138336, -0.15781238675117493, -0.29911085963249207, -0.14906416833400726, 0.953481912612915], "max": [-0.10444823652505875, -0.07658030837774277, 0.13861127197742462, 0.4642883241176605, 0.6912637948989868, 0.7984006404876709, 0.305534303188324, 0.15073305368423462, -0.12233413755893707, 0.08766627311706543, 0.016825394704937935, -0.07362150400876999, 0.016138838604092598, 0.9898684620857239], "mean": [-0.11301663517951965, -0.08335999399423599, 0.12401910126209259, 0.15241996943950653, -0.330418199300766, 0.5415670275688171, -0.288368821144104, 0.12467395514249802, -0.12875795364379883, 0.08218298107385635, -0.0880957841873169, -0.15180382132530212, -0.03659302368760109, 0.977319061756134], "std": [0.008321826346218586, 0.0049773408100008965, 0.008966696448624134, 0.24976646900177002, 0.40874555706977844, 0.46044114232063293, 0.22288616001605988, 0.014792712405323982, 0.003766311565414071, 0.004558902699500322, 0.050865091383457184, 0.08445551991462708, 0.05351407080888748, 0.01090211234986782], "count": [484]}, "timestamp": {"min": [0.0], "max": [16.1], "mean": [8.049999999999999], "std": [4.657282230848565], "count": [484]}, "frame_index": {"min": [0], "max": [483], "mean": [241.5], "std": [139.7184669254569], "count": [484]}, "episode_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [484]}, "index": {"min": [2798], "max": [3281], "mean": [3039.5], "std": [139.7184669254569], "count": [484]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [484]}}} +{"episode_index": 5, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4824465376564569]], [[0.4487688282284591]], [[0.404069981097014]]], "std": [[[0.2160758391501846]], [[0.20841524427785368]], [[0.20587522611492898]]], "count": [102]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4929136202956128]], [[0.4711754480114486]], [[0.4294648212226067]]], "std": [[[0.20918295372687015]], [[0.19068224633820746]], [[0.19831105291970821]]], "count": [102]}, "observation.state": {"min": [0.459093302488327, -0.1442529261112213, 0.12421698868274689, -1.188103199005127, -0.5379378795623779, 0.10562585294246674, -0.6334108114242554, -0.47041481733322144, 0.1627466231584549, 1.5108160972595215, -0.4991331398487091, 0.587897539138794], "max": [0.6001412868499756, 0.004494629800319672, 0.13790710270404816, -0.4697054624557495, 0.25742316246032715, 0.8256707787513733, -0.37117770314216614, -0.4017365574836731, 0.19336238503456116, 1.8312222957611084, 0.15494579076766968, 1.0567998886108398], "mean": [0.5337458848953247, -0.05172481760382652, 0.13082505762577057, -0.749795138835907, -0.09522514045238495, 0.43689197301864624, -0.5393799543380737, -0.421044260263443, 0.1794227957725525, 1.7041833400726318, -0.24568745493888855, 0.8567088842391968], "std": [0.04128772020339966, 0.043881744146347046, 0.003312078770250082, 0.22924725711345673, 0.22453469038009644, 0.19692091643810272, 0.08933289349079132, 0.016868077218532562, 0.010569429025053978, 0.09186455607414246, 0.18125028908252716, 0.13469718396663666], "count": [480]}, "action": {"min": [-0.1243055984377861, -0.09697280824184418, 0.11197393387556076, -0.36005699634552, -0.6692548990249634, -0.6699072122573853, -0.5306224822998047, 0.10281491279602051, -0.13436777889728546, 0.07199496030807495, -0.10268370807170868, -0.3483767807483673, -0.10320377349853516, 0.9327839016914368], "max": [-0.10166879743337631, -0.07591195404529572, 0.13674555718898773, 0.3762485384941101, 0.6798163056373596, 0.8325067758560181, 0.4451775550842285, 0.14828896522521973, -0.1210101917386055, 0.08758115768432617, 0.10794873535633087, -0.1357349306344986, 0.09365660697221756, 0.9848359227180481], "mean": [-0.11166951060295105, -0.0835776999592781, 0.12519322335720062, 0.12131106853485107, -0.3566424250602722, 0.5361966490745544, -0.2857893705368042, 0.12046440690755844, -0.12846475839614868, 0.08226604014635086, 0.0011348961852490902, -0.20815414190292358, 0.006372887175530195, 0.972123384475708], "std": [0.00715740816667676, 0.005284472834318876, 0.0071866391226649284, 0.17674170434474945, 0.4144653081893921, 0.46795642375946045, 0.2586601674556732, 0.015573789365589619, 0.004426751285791397, 0.0035292827524244785, 0.07080508023500443, 0.04845676198601723, 0.06405625492334366, 0.011928057298064232], "count": [480]}, "timestamp": {"min": [0.0], "max": [15.966666666666667], "mean": [7.983333333333333], "std": [4.618792130063957], "count": [480]}, "frame_index": {"min": [0], "max": [479], "mean": [239.5], "std": [138.5637639019187], "count": [480]}, "episode_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [480]}, "index": {"min": [3282], "max": [3761], "mean": [3521.5], "std": [138.5637639019187], "count": [480]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [480]}}} +{"episode_index": 6, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49086093409586057]], [[0.455626802832244]], [[0.41018325708061]]], "std": [[[0.20959436592404326]], [[0.20443092223359183]], [[0.20289950500477583]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5026981699346404]], [[0.4784274210239651]], [[0.4363751225490196]]], "std": [[[0.19789938360740988]], [[0.18205247910130135]], [[0.19086057602233852]]], "count": [100]}, "observation.state": {"min": [0.4527606666088104, -0.11746276915073395, 0.126112163066864, -0.8819559216499329, -0.40826985239982605, 0.2219485342502594, -0.5899781584739685, -0.4757049083709717, 0.1609201431274414, 1.5246555805206299, -0.45896199345588684, 0.8353330492973328], "max": [0.6110689640045166, -0.015862489119172096, 0.14040376245975494, -0.5173050761222839, 0.004099090117961168, 0.7302367091178894, -0.2928151488304138, -0.41499650478363037, 0.19054685533046722, 1.8073176145553589, 0.050828780978918076, 0.9771974682807922], "mean": [0.5313133597373962, -0.05888634920120239, 0.1321486085653305, -0.6973696351051331, -0.16500714421272278, 0.4290337562561035, -0.4758788049221039, -0.4446346163749695, 0.17691129446029663, 1.6915137767791748, -0.24907000362873077, 0.9102387428283691], "std": [0.046385396271944046, 0.031252920627593994, 0.0031862850300967693, 0.07622989267110825, 0.10605938732624054, 0.14892098307609558, 0.10275407135486603, 0.01414570678025484, 0.010050848126411438, 0.09542077779769897, 0.1738865077495575, 0.0367891751229763], "count": [429]}, "action": {"min": [-0.12410552054643631, -0.09340415149927139, 0.11148574203252792, -0.2611387073993683, -0.6552209258079529, -0.652204692363739, -0.49588826298713684, 0.11061116307973862, -0.13729533553123474, 0.07547825574874878, -0.05545390769839287, -0.2925341725349426, -0.08488468080759048, 0.953097403049469], "max": [-0.10258615016937256, -0.08121822029352188, 0.1358393430709839, 0.25732627511024475, 0.6905382871627808, 0.8010813593864441, 0.4102623462677002, 0.16025328636169434, -0.12448981404304504, 0.08815416693687439, 0.036555614322423935, -0.09405394643545151, 0.10691455006599426, 0.9934453964233398], "mean": [-0.1118776872754097, -0.08588757365942001, 0.12583009898662567, 0.08121567964553833, -0.4008696377277374, 0.5674068331718445, -0.30824291706085205, 0.1310223639011383, -0.13126109540462494, 0.08186841011047363, -0.009853781200945377, -0.17740602791309357, 0.01766679249703884, 0.9796820282936096], "std": [0.007251656614243984, 0.002842301968485117, 0.007104592863470316, 0.1263788491487503, 0.39057669043540955, 0.43266722559928894, 0.24499182403087616, 0.01698574610054493, 0.004150415770709515, 0.002556517021730542, 0.02502678707242012, 0.05698087811470032, 0.06589680165052414, 0.011219747364521027], "count": [429]}, "timestamp": {"min": [0.0], "max": [14.266666666666667], "mean": [7.133333333333334], "std": [4.128043209650396], "count": [429]}, "frame_index": {"min": [0], "max": [428], "mean": [214.0], "std": [123.84129628951187], "count": [429]}, "episode_index": {"min": [6], "max": [6], "mean": [6.0], "std": [0.0], "count": [429]}, "index": {"min": [3762], "max": [4190], "mean": [3976.0], "std": [123.84129628951187], "count": [429]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [429]}}} +{"episode_index": 7, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4903514488017429]], [[0.4553763888888889]], [[0.41017244281045756]]], "std": [[[0.2106918492950923]], [[0.2047104579926316]], [[0.20280272780232544]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5014977668845316]], [[0.477936279956427]], [[0.43586287037037036]]], "std": [[[0.2013743055036925]], [[0.18436936843349042]], [[0.1929299651418629]]], "count": [100]}, "observation.state": {"min": [0.47069284319877625, -0.14907191693782806, 0.12727363407611847, -1.048240065574646, -0.22599677741527557, 0.3349069058895111, -0.6086517572402954, -0.4708009660243988, 0.16310180723667145, 1.4596517086029053, -0.315083771944046, 0.8789289593696594], "max": [0.6002030968666077, -0.02195573039352894, 0.13674303889274597, -0.7548838257789612, 0.17161543667316437, 0.8023264408111572, -0.31486353278160095, -0.42648792266845703, 0.18656206130981445, 1.686536192893982, -0.003552549984306097, 1.0423462390899658], "mean": [0.5324855446815491, -0.05826716125011444, 0.13130128383636475, -0.8397577404975891, -0.060767389833927155, 0.4844765067100525, -0.48536133766174316, -0.4401967525482178, 0.17642579972743988, 1.5889838933944702, -0.18994495272636414, 0.9466627240180969], "std": [0.0400112085044384, 0.037861816585063934, 0.002089590299874544, 0.0817965567111969, 0.11740756034851074, 0.15470698475837708, 0.10807101428508759, 0.010191559791564941, 0.008185213431715965, 0.07836726307868958, 0.12118060141801834, 0.042563777416944504], "count": [411]}, "action": {"min": [-0.12197570502758026, -0.09837242215871811, 0.11178762465715408, -0.31505781412124634, -0.6593753099441528, -0.6687275171279907, -0.39373865723609924, 0.10962126404047012, -0.13586470484733582, 0.07410985976457596, -0.06894001364707947, -0.21113108098506927, -0.10388285666704178, 0.97334885597229], "max": [-0.10129792243242264, -0.07884203642606735, 0.13217033445835114, 0.3497477173805237, 0.6879361271858215, 0.778435468673706, 0.2650555968284607, 0.1553737074136734, -0.12418913841247559, 0.08497802168130875, 0.05059278383851051, -0.09066364169120789, 0.010074016638100147, 0.989737868309021], "mean": [-0.11151330173015594, -0.08464428782463074, 0.1253616362810135, 0.14383551478385925, -0.42357170581817627, 0.6059997081756592, -0.2893698215484619, 0.1295347511768341, -0.13030743598937988, 0.08132530748844147, -0.009135686792433262, -0.16128405928611755, -0.039753805845975876, 0.9836555123329163], "std": [0.006881187669932842, 0.004707050509750843, 0.0058616460300982, 0.1584726721048355, 0.358149915933609, 0.40573644638061523, 0.1758422553539276, 0.01703239046037197, 0.0029402896761894226, 0.002706739120185375, 0.035993482917547226, 0.04174448177218437, 0.041085172444581985, 0.0046023097820580006], "count": [411]}, "timestamp": {"min": [0.0], "max": [13.666666666666666], "mean": [6.833333333333333], "std": [3.954837637721774], "count": [411]}, "frame_index": {"min": [0], "max": [410], "mean": [205.0], "std": [118.64512913165322], "count": [411]}, "episode_index": {"min": [7], "max": [7], "mean": [7.0], "std": [0.0], "count": [411]}, "index": {"min": [4191], "max": [4601], "mean": [4396.0], "std": [118.64512913165322], "count": [411]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [411]}}} +{"episode_index": 8, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4991610626021242]], [[0.4643431351273148]], [[0.4188023492817266]]], "std": [[[0.21040592855894769]], [[0.2052621939393536]], [[0.2040544605964652]]], "count": [128]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5066017156862745]], [[0.48332926325912307]], [[0.4407626272297113]]], "std": [[[0.2008278407199616]], [[0.1845066675808191]], [[0.1935606369013239]]], "count": [128]}, "observation.state": {"min": [0.43506789207458496, -0.11188694834709167, 0.12473809719085693, -0.9375237226486206, -0.26015588641166687, 0.21721860766410828, -0.6331173777580261, -0.49245551228523254, 0.15803849697113037, 1.6808745861053467, -0.6548987627029419, 0.6859947443008423], "max": [0.5960636734962463, -0.0007877187454141676, 0.13745859265327454, -0.6821213960647583, 0.11532121151685715, 0.8917186260223389, -0.41261017322540283, -0.3477160632610321, 0.19461719691753387, 1.9687788486480713, -0.24977152049541473, 1.1123249530792236], "mean": [0.5083159804344177, -0.03909388184547424, 0.13174143433570862, -0.8033870458602905, -0.13487887382507324, 0.48955729603767395, -0.538894534111023, -0.4282722771167755, 0.17883363366127014, 1.8485583066940308, -0.4763162136077881, 0.8972845673561096], "std": [0.04309026524424553, 0.02851293608546257, 0.0026867615524679422, 0.054373614490032196, 0.09542877227067947, 0.14244621992111206, 0.058191023766994476, 0.040738221257925034, 0.00860610045492649, 0.06358026713132858, 0.11276061832904816, 0.13970954716205597], "count": [650]}, "action": {"min": [-0.12751974165439606, -0.09211888909339905, 0.11239753663539886, -0.34266626834869385, -0.6573449969291687, -0.6610814332962036, -0.4008355140686035, 0.10900859534740448, -0.1346835196018219, 0.06963102519512177, -0.14622928202152252, -0.2531101405620575, 0.03858930990099907, 0.9522570967674255], "max": [-0.10337663441896439, -0.0761961117386818, 0.13558326661586761, 0.3379680812358856, 0.7026930451393127, 0.8112102746963501, 0.3739667534828186, 0.14985084533691406, -0.12170562893152237, 0.10166339576244354, 0.05175195261836052, -0.11087910830974579, 0.18627192080020905, 0.9845378994941711], "mean": [-0.11535236239433289, -0.08354928344488144, 0.12929366528987885, 0.09768673032522202, -0.4150679409503937, 0.5971181392669678, -0.2872562110424042, 0.12317177653312683, -0.1283688247203827, 0.08274435997009277, -0.06451272964477539, -0.18746276199817657, 0.1279648095369339, 0.9686951637268066], "std": [0.006965186912566423, 0.0031494793947786093, 0.005969216115772724, 0.14193867146968842, 0.37761929631233215, 0.4191763997077942, 0.20163843035697937, 0.010158625431358814, 0.00303857633844018, 0.009086057543754578, 0.056341011077165604, 0.03179001063108444, 0.04139849916100502, 0.00725090317428112], "count": [650]}, "timestamp": {"min": [0.0], "max": [21.633333333333333], "mean": [10.816666666666666], "std": [6.254620514290038], "count": [650]}, "frame_index": {"min": [0], "max": [649], "mean": [324.5], "std": [187.63861542870114], "count": [650]}, "episode_index": {"min": [8], "max": [8], "mean": [8.0], "std": [0.0], "count": [650]}, "index": {"min": [4602], "max": [5251], "mean": [4926.5], "std": [187.63861542870114], "count": [650]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [650]}}} +{"episode_index": 9, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5729460416882802]], [[0.5336608461285749]], [[0.4949998551889892]]], "std": [[[0.23241586163674957]], [[0.21694624945406313]], [[0.22315490253366851]]], "count": [126]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5912900132275132]], [[0.5597165637860082]], [[0.5261016702977487]]], "std": [[[0.24158845735437876]], [[0.20951183359896522]], [[0.2258479254450601]]], "count": [126]}, "observation.state": {"min": [0.4750947952270508, -0.1130453571677208, 0.12477698922157288, -1.2742857933044434, -0.3067489266395569, 0.2374449372291565, -0.5814831852912903, -0.5265822410583496, 0.1544996201992035, 0.9813489317893982, -0.5286466479301453, -0.23919111490249634], "max": [0.6141734719276428, -0.012155580334365368, 0.14065006375312805, -0.8070966005325317, 0.2266799509525299, 0.8225760459899902, -0.2793389558792114, -0.33312779664993286, 0.20127883553504944, 2.1577095985412598, 0.992937445640564, 1.0512661933898926], "mean": [0.5320947766304016, -0.046311162412166595, 0.13190904259681702, -0.9661621451377869, -0.12194696068763733, 0.4311678409576416, -0.4818323254585266, -0.43452903628349304, 0.17834948003292084, 1.6246132850646973, 0.12578167021274567, 0.5088847875595093], "std": [0.040994904935359955, 0.02536894753575325, 0.003557905787602067, 0.10694976896047592, 0.1704438030719757, 0.1440657526254654, 0.06719262897968292, 0.061103567481040955, 0.011239643208682537, 0.4446714222431183, 0.6441610455513, 0.5429739356040955], "count": [638]}, "action": {"min": [-0.12232860922813416, -0.09111501276493073, 0.11478321999311447, -0.3843819499015808, -0.6412783265113831, -0.6410290002822876, -0.35608378052711487, 0.10583708435297012, -0.1331126093864441, 0.06619510799646378, -0.11274272948503494, -0.5539895296096802, -0.3926237225532532, 0.6527726054191589], "max": [-0.09722829610109329, -0.07749319821596146, 0.13565729558467865, 0.4001449942588806, 0.6431078314781189, 0.839477002620697, 0.1811598539352417, 0.16475363075733185, -0.12088969349861145, 0.10535644739866257, 0.40059685707092285, -0.18974386155605316, 0.22166699171066284, 0.9789487719535828], "mean": [-0.1116003543138504, -0.08352766931056976, 0.126913383603096, 0.16567206382751465, -0.5185152888298035, 0.757443904876709, -0.2736930847167969, 0.1275489628314972, -0.1281370371580124, 0.08396218717098236, 0.09839552640914917, -0.3556203544139862, -0.0644296407699585, 0.8451564908027649], "std": [0.008088619448244572, 0.002746459562331438, 0.0050157709047198296, 0.12047300487756729, 0.12351495772600174, 0.14318595826625824, 0.06923386454582214, 0.012576398439705372, 0.0031723252031952143, 0.01209847442805767, 0.22019889950752258, 0.12571553885936737, 0.2527492344379425, 0.13129155337810516], "count": [638]}, "timestamp": {"min": [0.0], "max": [21.233333333333334], "mean": [10.616666666666667], "std": [6.139150321230672], "count": [638]}, "frame_index": {"min": [0], "max": [637], "mean": [318.5], "std": [184.17450963692016], "count": [638]}, "episode_index": {"min": [9], "max": [9], "mean": [9.0], "std": [0.0], "count": [638]}, "index": {"min": [5252], "max": [5889], "mean": [5570.5], "std": [184.17450963692016], "count": [638]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [638]}}} +{"episode_index": 10, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5814847435350952]], [[0.5412791058855104]], [[0.5028598106311768]]], "std": [[[0.23141202537362002]], [[0.21480627206803937]], [[0.21973240771826424]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5987998523886205]], [[0.566475736872849]], [[0.5326248381800385]]], "std": [[[0.23981600195982933]], [[0.20673188133784004]], [[0.2213340385249411]]], "count": [138]}, "observation.state": {"min": [0.3995278477668762, -0.1798238307237625, 0.11834739148616791, -1.3025939464569092, -0.6617305874824524, 0.09651020169258118, -0.6102503538131714, -0.41509687900543213, 0.16917622089385986, 1.274705171585083, -0.2373376041650772, 0.38809874653816223], "max": [0.603902280330658, -0.012510829605162144, 0.1418556123971939, -0.45146244764328003, 0.29745766520500183, 0.9297477602958679, -0.3031867742538452, -0.2627660036087036, 0.1915307343006134, 1.6016117334365845, 0.9524930119514465, 0.938194215297699], "mean": [0.5221580266952515, -0.06826427578926086, 0.12529748678207397, -0.7512703537940979, -0.10448583215475082, 0.41544899344444275, -0.4705035388469696, -0.3791155517101288, 0.1778859943151474, 1.408150315284729, 0.1916007250547409, 0.8279514312744141], "std": [0.06000038981437683, 0.03850235790014267, 0.004380751866847277, 0.19986926019191742, 0.258281946182251, 0.2234591394662857, 0.0916081964969635, 0.04255099222064018, 0.006549229845404625, 0.08620507270097733, 0.3930312693119049, 0.11784078925848007], "count": [719]}, "action": {"min": [-0.13807980716228485, -0.10443340986967087, 0.10687286406755447, -0.4351537227630615, -0.6637318730354309, -0.6668213605880737, -0.4992430806159973, 0.10476335138082504, -0.13421310484409332, 0.08244653046131134, 0.008519381284713745, -0.4429626762866974, -0.42221158742904663, 0.7859739065170288], "max": [-0.09627629816532135, -0.0756857767701149, 0.12933044135570526, 0.43101340532302856, 0.7018201351165771, 0.8205560445785522, 0.4477585554122925, 0.14820453524589539, -0.11045048385858536, 0.10788517445325851, 0.21592727303504944, -0.08573436737060547, -0.08493287861347198, 0.988062858581543], "mean": [-0.1163158267736435, -0.08381056785583496, 0.12023632973432541, 0.09015457332134247, -0.32017749547958374, 0.5180322527885437, -0.26006102561950684, 0.12674754858016968, -0.12447595596313477, 0.08966371417045593, 0.04500212147831917, -0.21082669496536255, -0.2200951874256134, 0.9355913400650024], "std": [0.010958518832921982, 0.00658583827316761, 0.004936147015541792, 0.20762619376182556, 0.4367615282535553, 0.49692028760910034, 0.2693900763988495, 0.012507373467087746, 0.006849438883364201, 0.007056434638798237, 0.03545191138982773, 0.10556631535291672, 0.1176343709230423, 0.05929863080382347], "count": [719]}, "timestamp": {"min": [0.0], "max": [23.933333333333334], "mean": [11.966666666666667], "std": [6.918574034197124], "count": [719]}, "frame_index": {"min": [0], "max": [718], "mean": [359.0], "std": [207.55722102591372], "count": [719]}, "episode_index": {"min": [10], "max": [10], "mean": [10.0], "std": [0.0], "count": [719]}, "index": {"min": [5890], "max": [6608], "mean": [6249.0], "std": [207.55722102591372], "count": [719]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [719]}}} +{"episode_index": 11, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5746837636165577]], [[0.5351173175381263]], [[0.4970441857298475]]], "std": [[[0.23952932661415915]], [[0.2228261727409066]], [[0.22738821187649896]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5889725108932462]], [[0.558189302832244]], [[0.5242829738562091]]], "std": [[[0.24842604408465999]], [[0.2151492144926133]], [[0.2294725669443009]]], "count": [100]}, "observation.state": {"min": [0.42723703384399414, -0.13944938778877258, 0.1247575432062149, -0.9668803215026855, -0.5409439206123352, 0.1378593146800995, -0.6320825219154358, -0.4681057333946228, 0.1586892306804657, 1.5238168239593506, -0.7285458445549011, 0.8259833455085754], "max": [0.6040180921554565, -0.008618569932878017, 0.1387445032596588, -0.4923519790172577, 0.2626153528690338, 0.7476078271865845, -0.39350414276123047, -0.299410343170166, 0.18969649076461792, 1.9515843391418457, -0.1702490746974945, 1.2003717422485352], "mean": [0.5107806324958801, -0.0672231987118721, 0.1301022320985794, -0.6540361046791077, -0.13575704395771027, 0.43063855171203613, -0.5106053948402405, -0.3995839059352875, 0.1751815378665924, 1.7482355833053589, -0.44496116042137146, 0.9749753475189209], "std": [0.047445278614759445, 0.033789072185754776, 0.0031259432435035706, 0.14380459487438202, 0.24857798218727112, 0.1671224981546402, 0.07855003327131271, 0.05320773646235466, 0.009085997939109802, 0.15656539797782898, 0.20462912321090698, 0.11457976698875427], "count": [396]}, "action": {"min": [-0.12974533438682556, -0.09665851294994354, 0.11215828359127045, -0.3362013101577759, -0.6490934491157532, -0.6472257971763611, -0.48452529311180115, 0.10726228356361389, -0.13330313563346863, 0.07533113658428192, -0.1587090790271759, -0.21377874910831451, -0.0665406882762909, 0.9556177854537964], "max": [-0.10108726471662521, -0.07756467163562775, 0.13324274122714996, 0.39526671171188354, 0.6778613328933716, 0.783229649066925, 0.4042454659938812, 0.1431419998407364, -0.11130121350288391, 0.09963487088680267, -0.036339160054922104, -0.0745873749256134, 0.22407695651054382, 0.9915143251419067], "mean": [-0.11573679745197296, -0.08674482256174088, 0.1246977299451828, 0.12220774590969086, -0.4445348083972931, 0.588909387588501, -0.3504750430583954, 0.12759332358837128, -0.12393635511398315, 0.08558617532253265, -0.09725584834814072, -0.1435261070728302, 0.08547624945640564, 0.9740312099456787], "std": [0.00871110986918211, 0.005031236447393894, 0.005634842440485954, 0.14837877452373505, 0.3379875123500824, 0.3651697337627411, 0.21955804526805878, 0.011949828825891018, 0.007708245888352394, 0.007400708273053169, 0.02883780002593994, 0.03850861266255379, 0.106972835958004, 0.011833911761641502], "count": [396]}, "timestamp": {"min": [0.0], "max": [13.166666666666666], "mean": [6.583333333333333], "std": [3.8104996270052838], "count": [396]}, "frame_index": {"min": [0], "max": [395], "mean": [197.5], "std": [114.31498881015851], "count": [396]}, "episode_index": {"min": [11], "max": [11], "mean": [11.0], "std": [0.0], "count": [396]}, "index": {"min": [6609], "max": [7004], "mean": [6806.5], "std": [114.31498881015851], "count": [396]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [396]}}} +{"episode_index": 12, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5754107216775599]], [[0.5347301851851852]], [[0.49699057461873636]]], "std": [[[0.23412073008443]], [[0.2180493350493018]], [[0.22251395086993606]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5940023039215686]], [[0.5616135620915033]], [[0.5284159531590414]]], "std": [[[0.24239039312025892]], [[0.20969001944833293]], [[0.22426074603305077]]], "count": [100]}, "observation.state": {"min": [0.43545401096343994, -0.13106249272823334, 0.12080127000808716, -1.0815807580947876, -0.7647544741630554, 0.1328958421945572, -0.5771893262863159, -0.4686926603317261, 0.1563546061515808, 1.5898691415786743, -0.2546904385089874, 0.8555774092674255], "max": [0.5957702398300171, -0.032643988728523254, 0.1369776725769043, -0.42546090483665466, 0.3530687093734741, 0.8441779017448425, -0.3841055631637573, -0.38169607520103455, 0.17981356382369995, 1.8396098613739014, 0.3745206594467163, 1.2198957204818726], "mean": [0.537802517414093, -0.08068481087684631, 0.12991724908351898, -0.7775932550430298, -0.08718378841876984, 0.49258264899253845, -0.4894694685935974, -0.4203096926212311, 0.17012225091457367, 1.7093195915222168, -0.020449237897992134, 1.0301694869995117], "std": [0.04943285137414932, 0.03131590783596039, 0.004022814799100161, 0.17660626769065857, 0.3443334996700287, 0.18970920145511627, 0.062444284558296204, 0.02156810089945793, 0.007805856876075268, 0.06624364107847214, 0.18624064326286316, 0.10330954939126968], "count": [464]}, "action": {"min": [-0.13094839453697205, -0.09902510792016983, 0.11025485396385193, -0.4384314715862274, -0.6579347252845764, -0.6596662998199463, -0.48321452736854553, 0.11615362018346786, -0.12993359565734863, 0.07228296995162964, -0.14141932129859924, -0.36036431789398193, -0.19271892309188843, 0.9209765195846558], "max": [-0.10068099945783615, -0.07853682339191437, 0.1293175220489502, 0.4445819854736328, 0.7291243672370911, 0.8186274170875549, 0.44397005438804626, 0.14683333039283752, -0.11263062804937363, 0.0858931690454483, 0.051715124398469925, -0.19253450632095337, 0.01144096814095974, 0.9782242774963379], "mean": [-0.11160323768854141, -0.08695323020219803, 0.12106965482234955, 0.15726938843727112, -0.27416935563087463, 0.4225517511367798, -0.20943666994571686, 0.12984435260295868, -0.12350678443908691, 0.08045247197151184, -0.061159081757068634, -0.25237786769866943, -0.08360765874385834, 0.9567071795463562], "std": [0.009981231763958931, 0.00513943936675787, 0.005029597319662571, 0.20756098628044128, 0.50406813621521, 0.5465821623802185, 0.2859466075897217, 0.00947657786309719, 0.006126408465206623, 0.002720592776313424, 0.05501536279916763, 0.04774847999215126, 0.06898385286331177, 0.014849512837827206], "count": [464]}, "timestamp": {"min": [0.0], "max": [15.433333333333334], "mean": [7.716666666666668], "std": [4.464831712642955], "count": [464]}, "frame_index": {"min": [0], "max": [463], "mean": [231.5], "std": [133.94495137928865], "count": [464]}, "episode_index": {"min": [12], "max": [12], "mean": [12.0], "std": [0.0], "count": [464]}, "index": {"min": [7005], "max": [7468], "mean": [7236.5], "std": [133.94495137928865], "count": [464]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [464]}}} +{"episode_index": 13, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5821063262527233]], [[0.5412513126361657]], [[0.5034442238562091]]], "std": [[[0.23128848324075857]], [[0.21574727874444768]], [[0.22098569518754846]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6016059640522876]], [[0.568648052832244]], [[0.5355065250544663]]], "std": [[[0.24083737567308017]], [[0.20851922736169792]], [[0.22383019555529732]]], "count": [100]}, "observation.state": {"min": [0.43796390295028687, -0.13358783721923828, 0.12374124675989151, -0.982816755771637, -0.14169205725193024, 0.04626769945025444, -0.5467926859855652, -0.4316621422767639, 0.16088514029979706, 1.6343234777450562, 0.022818300873041153, 0.5651336908340454], "max": [0.59343022108078, -0.017144469544291496, 0.13839061558246613, -0.6561198234558105, 0.3078420162200928, 0.8773767948150635, -0.3404335081577301, -0.4036286175251007, 0.18457873165607452, 1.8020753860473633, 0.9179239869117737, 0.9527080655097961], "mean": [0.5306251645088196, -0.06145725026726723, 0.132256880402565, -0.847135603427887, 0.07659662514925003, 0.3934691846370697, -0.4480941593647003, -0.4166339635848999, 0.17294037342071533, 1.7002795934677124, 0.1957612782716751, 0.8712887763977051], "std": [0.05363903567194939, 0.040826644748449326, 0.0035468176938593388, 0.07292177528142929, 0.13655075430870056, 0.28915858268737793, 0.0726551041007042, 0.007772359531372786, 0.008082227781414986, 0.04000600427389145, 0.18326637148857117, 0.07436256855726242], "count": [407]}, "action": {"min": [-0.12644682824611664, -0.09679464250802994, 0.11311212182044983, -0.3763074278831482, -0.6563965082168579, -0.6532856822013855, -0.4166843891143799, 0.11442074924707413, -0.13107895851135254, 0.08034903556108475, -0.015287226065993309, -0.5262052416801453, -0.29936549067497253, 0.7684869170188904], "max": [-0.10168155282735825, -0.07742542028427124, 0.13535162806510925, 0.38322702050209045, 0.6907578110694885, 0.8484725952148438, 0.377611368894577, 0.15127405524253845, -0.12080829590559006, 0.08725327998399734, 0.20901282131671906, -0.23923082649707794, -0.06437334418296814, 0.964523434638977], "mean": [-0.11056598275899887, -0.08464152365922928, 0.12577275931835175, 0.12149917334318161, -0.2422962188720703, 0.5212413668632507, -0.24445000290870667, 0.13232716917991638, -0.12613554298877716, 0.08369790017604828, 0.0327681265771389, -0.30308952927589417, -0.1365974396467209, 0.9377923011779785], "std": [0.00954694114625454, 0.005385318771004677, 0.006771632470190525, 0.2364482283592224, 0.4359217882156372, 0.5352254509925842, 0.2503597140312195, 0.012624683789908886, 0.0034336510580033064, 0.0017001634696498513, 0.04297759756445885, 0.05841029807925224, 0.05007975548505783, 0.03440748155117035], "count": [407]}, "timestamp": {"min": [0.0], "max": [13.533333333333333], "mean": [6.766666666666666], "std": [3.9163475047265375], "count": [407]}, "frame_index": {"min": [0], "max": [406], "mean": [203.0], "std": [117.49042514179612], "count": [407]}, "episode_index": {"min": [13], "max": [13], "mean": [13.0], "std": [0.0], "count": [407]}, "index": {"min": [7469], "max": [7875], "mean": [7672.0], "std": [117.49042514179612], "count": [407]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [407]}}} +{"episode_index": 14, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5825195455960163]], [[0.54132790486565]], [[0.5034466205000518]]], "std": [[[0.23243842618340593]], [[0.21739553513244822]], [[0.2227665894258095]]], "count": [105]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6039758040253138]], [[0.5705236772486773]], [[0.5371076071169208]]], "std": [[[0.24138855158262199]], [[0.20921832802285054]], [[0.22535775322436072]]], "count": [105]}, "observation.state": {"min": [0.45876121520996094, -0.1442452073097229, 0.12335754930973053, -1.2696726322174072, -0.16505688428878784, 0.04005584865808487, -0.4975602328777313, -0.4733572006225586, 0.16636845469474792, 1.6068540811538696, 0.25633007287979126, 0.7099106311798096], "max": [0.5927351713180542, -0.010340739972889423, 0.14872723817825317, -0.6512969732284546, 0.24102678894996643, 0.7224858999252319, -0.2569044232368469, -0.40223854780197144, 0.1804526448249817, 1.8641436100006104, 0.6605008244514465, 0.9452539086341858], "mean": [0.5444636344909668, -0.0689675435423851, 0.1337929666042328, -0.965016782283783, 0.03791964799165726, 0.3327527940273285, -0.4139823317527771, -0.42599332332611084, 0.17433670163154602, 1.7122300863265991, 0.42316949367523193, 0.8541899919509888], "std": [0.04463379830121994, 0.041330818086862564, 0.008246405981481075, 0.12683609127998352, 0.11830440163612366, 0.20460547506809235, 0.08370374143123627, 0.014830767177045345, 0.004847127012908459, 0.05222725868225098, 0.14181670546531677, 0.07501781731843948], "count": [496]}, "action": {"min": [-0.12598030269145966, -0.09662727266550064, 0.11262165755033493, 0.0756506398320198, -0.640719473361969, 0.6386569142341614, -0.43756118416786194, 0.12240120768547058, -0.13338659703731537, 0.07480111718177795, 0.01818685419857502, -0.4391496181488037, -0.2627317011356354, 0.8559105396270752], "max": [-0.09511671215295792, -0.07748706638813019, 0.13617193698883057, 0.3623935282230377, -0.35513558983802795, 0.8759358525276184, -0.18704620003700256, 0.15747709572315216, -0.1251731514930725, 0.09095548093318939, 0.12477479875087738, -0.2980450987815857, -0.15558436512947083, 0.9375168681144714], "mean": [-0.10777101665735245, -0.08620526641607285, 0.12504233419895172, 0.23468439280986786, -0.4703311026096344, 0.7815534472465515, -0.2972629964351654, 0.13547952473163605, -0.1286294311285019, 0.08390219509601593, 0.06053557246923447, -0.3603397011756897, -0.20807157456874847, 0.905231237411499], "std": [0.010393722914159298, 0.0058165485970675945, 0.006821137852966785, 0.09374050050973892, 0.08436384052038193, 0.07212161272764206, 0.05843538045883179, 0.012176274321973324, 0.0022235254291445017, 0.0038487326819449663, 0.03796577453613281, 0.03032851405441761, 0.03257476165890694, 0.018181517720222473], "count": [496]}, "timestamp": {"min": [0.0], "max": [16.5], "mean": [8.25], "std": [4.77275252518572], "count": [496]}, "frame_index": {"min": [0], "max": [495], "mean": [247.5], "std": [143.1825757555716], "count": [496]}, "episode_index": {"min": [14], "max": [14], "mean": [14.0], "std": [0.0], "count": [496]}, "index": {"min": [7876], "max": [8371], "mean": [8123.5], "std": [143.1825757555716], "count": [496]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [496]}}} +{"episode_index": 15, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5672733697693637]], [[0.527125497708662]], [[0.4894676282773646]]], "std": [[[0.2396959541190159]], [[0.22403982974400022]], [[0.22957207281688358]]], "count": [145]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5893199008338967]], [[0.5568605645706558]], [[0.5237658872361205]]], "std": [[[0.2511593551172647]], [[0.21899826892000163]], [[0.2342876618435032]]], "count": [145]}, "observation.state": {"min": [0.5289917588233948, -0.17352980375289917, 0.12622235715389252, -1.3434834480285645, -0.9140982031822205, 0.14850400388240814, -0.6065125465393066, -0.44422703981399536, 0.16735881567001343, 1.525704026222229, -0.1702490746974945, 0.3481903374195099], "max": [0.6141966581344604, -0.04844469949603081, 0.15427665412425995, -0.3308907151222229, 0.2734096348285675, 0.9501675963401794, -0.3678337633609772, -0.26142221689224243, 0.18570521473884583, 1.8568044900894165, 1.1224688291549683, 1.0368998050689697], "mean": [0.5715746879577637, -0.09575844556093216, 0.14054106175899506, -0.8358336687088013, -0.25220048427581787, 0.5824823379516602, -0.4744494557380676, -0.39530566334724426, 0.17897069454193115, 1.6855967044830322, 0.2904805541038513, 0.7549745440483093], "std": [0.013572166673839092, 0.035432927310466766, 0.007783775683492422, 0.25327691435813904, 0.33070775866508484, 0.20088011026382446, 0.06769900023937225, 0.05605977401137352, 0.003120074514299631, 0.11182475835084915, 0.44179362058639526, 0.17482943832874298], "count": [766]}, "action": {"min": [-0.11775527149438858, -0.11578304320573807, 0.10992621630430222, -0.27752459049224854, -0.6668815016746521, -0.6731069087982178, -0.4725567698478699, 0.10356822609901428, -0.13403265178203583, 0.0798504650592804, -0.08084645122289658, -0.5825810432434082, -0.36054402589797974, 0.6880636811256409], "max": [-0.0945633053779602, -0.08285904675722122, 0.13443422317504883, 0.38338473439216614, 0.7923698425292969, 0.8831639289855957, 0.5157032012939453, 0.13871552050113678, -0.10757692903280258, 0.09897913038730621, 0.27567681670188904, -0.191353440284729, 0.026996970176696777, 0.9758257269859314], "mean": [-0.10223980247974396, -0.09392326325178146, 0.12427181750535965, 0.07514503598213196, 0.15237104892730713, 0.04899052903056145, 0.057862721383571625, 0.12564164400100708, -0.12652362883090973, 0.08752410858869553, 0.06526175141334534, -0.3482242226600647, -0.15764689445495605, 0.8950110077857971], "std": [0.004866716451942921, 0.008948598988354206, 0.005273590330034494, 0.19919797778129578, 0.6156997084617615, 0.6703310608863831, 0.31189483404159546, 0.009336288087069988, 0.007742255460470915, 0.004779770504683256, 0.11059892177581787, 0.104601189494133, 0.13623788952827454, 0.08275356888771057], "count": [766]}, "timestamp": {"min": [0.0], "max": [25.5], "mean": [12.75], "std": [7.370832155643395], "count": [766]}, "frame_index": {"min": [0], "max": [765], "mean": [382.5], "std": [221.12496466930187], "count": [766]}, "episode_index": {"min": [15], "max": [15], "mean": [15.0], "std": [0.0], "count": [766]}, "index": {"min": [8372], "max": [9137], "mean": [8754.5], "std": [221.12496466930187], "count": [766]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [766]}}} +{"episode_index": 16, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5761870782833091]], [[0.5351975114749244]], [[0.49713253008862657]]], "std": [[[0.2368827601008489]], [[0.22085880105101435]], [[0.2248842932817524]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5977344929881337]], [[0.5642607769105484]], [[0.5305061684328531]]], "std": [[[0.247489692370106]], [[0.21494825075414575]], [[0.22882549535611166]]], "count": [103]}, "observation.state": {"min": [0.5057231783866882, -0.19069744646549225, 0.12684457004070282, -1.0723543167114258, -1.0034584999084473, 0.12554767727851868, -0.5964189171791077, -0.45337846875190735, 0.16897399723529816, 1.4483284950256348, -0.14538124203681946, 0.9251178503036499], "max": [0.6156330704689026, -0.03997287154197693, 0.15188759565353394, -0.625085711479187, 0.2805147171020508, 0.7937307953834534, -0.41620123386383057, -0.23987580835819244, 0.18345874547958374, 1.7456687688827515, 0.5291931629180908, 1.097098708152771], "mean": [0.5565329790115356, -0.1311778575181961, 0.1385592818260193, -0.7964501976966858, -0.2494911551475525, 0.48638564348220825, -0.5269697904586792, -0.369495689868927, 0.17592915892601013, 1.5878523588180542, 0.04751221463084221, 1.0011576414108276], "std": [0.03251725062727928, 0.048906538635492325, 0.008043995127081871, 0.11397941410541534, 0.4826083183288574, 0.1849994659423828, 0.055152878165245056, 0.07333062589168549, 0.004294946789741516, 0.09385179728269577, 0.18395276367664337, 0.03824738413095474], "count": [484]}, "action": {"min": [-0.11762722581624985, -0.1191018596291542, 0.10614631325006485, -0.4011133015155792, -0.6643303036689758, -0.6646994352340698, -0.42941784858703613, 0.10615956038236618, -0.12998779118061066, 0.07599356025457382, -0.09790417551994324, -0.3512904644012451, -0.29225966334342957, 0.8914094567298889], "max": [-0.09898413717746735, -0.08284597843885422, 0.1323966532945633, 0.4038721024990082, 0.7559220790863037, 0.8008358478546143, 0.3567201495170593, 0.13652309775352478, -0.10064338892698288, 0.09663289785385132, 0.02803574874997139, -0.166938915848732, -0.05600669980049133, 0.9774535894393921], "mean": [-0.10634924471378326, -0.09844743460416794, 0.11982948333024979, 0.15199927985668182, 0.04917023703455925, 0.12433583289384842, -0.07593914121389389, 0.12030888348817825, -0.12057369947433472, 0.0869206041097641, -0.05111442878842354, -0.23804493248462677, -0.15695622563362122, 0.9523143768310547], "std": [0.004964119289070368, 0.012316742911934853, 0.006744792684912682, 0.2078406661748886, 0.6110612154006958, 0.6633666753768921, 0.31081101298332214, 0.009312617592513561, 0.010041487403213978, 0.006503564305603504, 0.03748627379536629, 0.04666649550199509, 0.07177518308162689, 0.021186957135796547], "count": [484]}, "timestamp": {"min": [0.0], "max": [16.1], "mean": [8.049999999999999], "std": [4.657282230848565], "count": [484]}, "frame_index": {"min": [0], "max": [483], "mean": [241.5], "std": [139.7184669254569], "count": [484]}, "episode_index": {"min": [16], "max": [16], "mean": [16.0], "std": [0.0], "count": [484]}, "index": {"min": [9138], "max": [9621], "mean": [9379.5], "std": [139.7184669254569], "count": [484]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [484]}}} +{"episode_index": 17, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5893722303921568]], [[0.54709746459695]], [[0.5089676007625272]]], "std": [[[0.23037822858863882]], [[0.21576063167153908]], [[0.22045385141525675]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6130438562091504]], [[0.5774074291938998]], [[0.5444847494553376]]], "std": [[[0.2403953823966876]], [[0.20907782118437304]], [[0.22399146963680702]]], "count": [100]}, "observation.state": {"min": [0.4465901851654053, -0.14738835394382477, 0.12664104998111725, -0.9062799215316772, -0.910955548286438, 0.11034303903579712, -0.5256786942481995, -0.43492886424064636, 0.1752091497182846, 1.1499396562576294, 1.060025930404663, 0.0772157609462738], "max": [0.5996006727218628, -0.034134481102228165, 0.14388300478458405, -0.17572017014026642, 0.122562937438488, 0.7813904881477356, -0.37973448634147644, -0.22790557146072388, 0.18812020123004913, 1.5426889657974243, 1.3900030851364136, 0.5673932433128357], "mean": [0.5350947976112366, -0.101566843688488, 0.13666436076164246, -0.5243111848831177, -0.34806525707244873, 0.42565757036209106, -0.4497121274471283, -0.3457563817501068, 0.18124404549598694, 1.2964117527008057, 1.1977503299713135, 0.37095868587493896], "std": [0.04689555987715721, 0.03655020147562027, 0.004894374869763851, 0.25181642174720764, 0.4076535403728485, 0.17279908061027527, 0.041306741535663605, 0.07636601477861404, 0.004102224949747324, 0.09495638310909271, 0.07994434982538223, 0.1604035645723343], "count": [420]}, "action": {"min": [-0.12767896056175232, -0.10981262475252151, 0.11503537744283676, -0.32865414023399353, -0.6457552909851074, -0.64544677734375, -0.5136042833328247, 0.11059926450252533, -0.1293676793575287, 0.0811985582113266, -0.22255192697048187, -0.6060478687286377, -0.5268585681915283, -0.6068663001060486], "max": [-0.09961932897567749, -0.08218766003847122, 0.13422003388404846, 0.3270939588546753, 0.7429335117340088, 0.808785080909729, 0.4881340265274048, 0.1361839771270752, -0.09803399443626404, 0.10337352007627487, 0.2521056830883026, 0.6079779863357544, 0.4661541283130646, 0.7075643539428711], "mean": [-0.10974318534135818, -0.09483744949102402, 0.12252223491668701, 0.1292131394147873, 0.16089564561843872, 0.03231288492679596, 0.06151507794857025, 0.12345273792743683, -0.11755620688199997, 0.09342194348573685, 0.1512729525566101, -0.5286493301391602, -0.45592448115348816, 0.6451850533485413], "std": [0.009149455465376377, 0.009244393557310104, 0.004784413147717714, 0.17450079321861267, 0.5986213088035583, 0.6285061240196228, 0.4108167588710785, 0.006994797382503748, 0.01160383503884077, 0.0065805017948150635, 0.08808089792728424, 0.15123087167739868, 0.12472794204950333, 0.16531744599342346], "count": [420]}, "timestamp": {"min": [0.0], "max": [13.966666666666667], "mean": [6.9833333333333325], "std": [4.041440428948661], "count": [420]}, "frame_index": {"min": [0], "max": [419], "mean": [209.5], "std": [121.24321286845984], "count": [420]}, "episode_index": {"min": [17], "max": [17], "mean": [17.0], "std": [0.0], "count": [420]}, "index": {"min": [9622], "max": [10041], "mean": [9831.5], "std": [121.24321286845984], "count": [420]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [420]}}} +{"episode_index": 18, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5777909177559913]], [[0.5370516966230936]], [[0.49769246187363836]]], "std": [[[0.23583149379552243]], [[0.22093297357593708]], [[0.22578881418947652]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5995200299564271]], [[0.5662754956427015]], [[0.5320675054466232]]], "std": [[[0.2418517651445623]], [[0.21103777400148563]], [[0.2258342497672975]]], "count": [100]}, "observation.state": {"min": [0.45332440733909607, -0.17136743664741516, 0.12258496135473251, -0.9215872883796692, -0.0915464535355568, -0.0114858103916049, -0.5099706649780273, -0.4551624357700348, 0.17092621326446533, 0.022227130830287933, 1.2301384210586548, -0.7828148603439331], "max": [0.5959864854812622, -0.049278758466243744, 0.1435680091381073, -0.5080787539482117, 0.3797128200531006, 0.9037679433822632, -0.2899191081523895, -0.3857891261577606, 0.19486349821090698, 0.8131775856018066, 1.388226866722107, 0.1625688523054123], "mean": [0.5286350250244141, -0.09360392391681671, 0.1346166580915451, -0.7062316536903381, 0.12439895421266556, 0.3311273157596588, -0.41975417733192444, -0.408625990152359, 0.1840413212776184, 0.4389875531196594, 1.3075034618377686, -0.25320786237716675], "std": [0.04383848235011101, 0.037675924599170685, 0.0047496831975877285, 0.1049531027674675, 0.11922036856412888, 0.29209205508232117, 0.0738159567117691, 0.018570750951766968, 0.007942114025354385, 0.23001930117607117, 0.04608159512281418, 0.3100482225418091], "count": [467]}, "action": {"min": [-0.12282135337591171, -0.1025051400065422, 0.10986032336950302, -0.379263699054718, -0.6508336067199707, -0.646408200263977, -0.5017842054367065, 0.11334439367055893, -0.13078255951404572, 0.0859856903553009, -0.26815688610076904, -0.4812251627445221, -0.6304487586021423, -0.6091570258140564], "max": [-0.10053615272045135, -0.0817437693476677, 0.13421736657619476, 0.36113110184669495, 0.6950364708900452, 0.8213762640953064, 0.451789528131485, 0.1539684385061264, -0.11743703484535217, 0.09740983694791794, 0.16328482329845428, 0.5485595464706421, 0.6444132924079895, 0.6474480628967285], "mean": [-0.10966180264949799, -0.09027940779924393, 0.12466075271368027, 0.1189979612827301, -0.24157556891441345, 0.5281413197517395, -0.29795488715171814, 0.13123460114002228, -0.12454450875520706, 0.09423243254423141, -0.0797412246465683, 0.12448006868362427, 0.12138515710830688, -0.08462381362915039], "std": [0.008018727414309978, 0.004873611964285374, 0.0068887462839484215, 0.2179640233516693, 0.41537824273109436, 0.5005531907081604, 0.29861319065093994, 0.013329582288861275, 0.00409471383318305, 0.002592496806755662, 0.15536129474639893, 0.4658111333847046, 0.603929877281189, 0.5919475555419922], "count": [467]}, "timestamp": {"min": [0.0], "max": [15.533333333333333], "mean": [7.7666666666666675], "std": [4.493699292713447], "count": [467]}, "frame_index": {"min": [0], "max": [466], "mean": [233.0], "std": [134.8109787814034], "count": [467]}, "episode_index": {"min": [18], "max": [18], "mean": [18.0], "std": [0.0], "count": [467]}, "index": {"min": [10042], "max": [10508], "mean": [10275.0], "std": [134.8109787814034], "count": [467]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [467]}}} +{"episode_index": 19, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5865545887799565]], [[0.5481502696078432]], [[0.5078320588235294]]], "std": [[[0.2362863487211012]], [[0.2281939394983347]], [[0.22940557624625058]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6087109095860567]], [[0.5777184286492375]], [[0.5407903567538126]]], "std": [[[0.22175765432911515]], [[0.20151421331805755]], [[0.21261767153008967]]], "count": [100]}, "observation.state": {"min": [0.43686726689338684, -0.16394589841365814, 0.1253318041563034, -1.054111361503601, -0.2878931164741516, 0.023622529581189156, -0.46240633726119995, -0.4580121338367462, 0.17010046541690826, -0.5772764086723328, 1.132306694984436, -1.2645436525344849], "max": [0.5690032243728638, -0.03306102007627487, 0.1407628357410431, -0.5439357161521912, 0.4454349875450134, 0.9104298949241638, -0.3176746070384979, -0.39214491844177246, 0.19400276243686676, 1.2826733589172363, 1.427988052368164, 0.4146706759929657], "mean": [0.5067395567893982, -0.08080887049436569, 0.13294720649719238, -0.870877742767334, 0.15645141899585724, 0.34686437249183655, -0.41249606013298035, -0.4168544113636017, 0.1854902058839798, 0.6994767785072327, 1.2768981456756592, -0.16311115026474], "std": [0.03902941569685936, 0.03932473435997963, 0.004401445854455233, 0.11536187678575516, 0.1857094168663025, 0.2661660611629486, 0.053548410534858704, 0.022084590047597885, 0.008848665282130241, 0.6772459149360657, 0.08077340573072433, 0.6500857472419739], "count": [409]}, "action": {"min": [-0.12670449912548065, -0.10418427735567093, 0.11057732254266739, -0.34584641456604004, -0.6768501996994019, -0.6778202056884766, -0.47519898414611816, 0.11763269454240799, -0.1350971758365631, 0.08459695428609848, -0.3634064495563507, -0.5767684578895569, -0.6069955229759216, -0.6081339120864868], "max": [-0.10364851355552673, -0.08206921070814133, 0.1319318413734436, 0.39224788546562195, 0.7495308518409729, 0.8604241013526917, 0.3909454047679901, 0.15737131237983704, -0.1199384480714798, 0.09575533121824265, 0.3679770231246948, 0.5707277059555054, 0.6534523367881775, 0.6655632853507996], "mean": [-0.11348035931587219, -0.08837013691663742, 0.12618842720985413, 0.1989109069108963, -0.2696473002433777, 0.5876859426498413, -0.271221399307251, 0.13146740198135376, -0.12843935191631317, 0.09218191355466843, 0.03762893006205559, -0.15919968485832214, -0.12023336440324783, 0.22630053758621216], "std": [0.007752200588583946, 0.006049680523574352, 0.0054428959265351295, 0.19048629701137543, 0.38992947340011597, 0.4766869843006134, 0.23071303963661194, 0.014401568099856377, 0.005018729250878096, 0.0022319601848721504, 0.19998805224895477, 0.5039853453636169, 0.5345465540885925, 0.5725688934326172], "count": [409]}, "timestamp": {"min": [0.0], "max": [13.6], "mean": [6.8], "std": [3.935592571505451], "count": [409]}, "frame_index": {"min": [0], "max": [408], "mean": [204.0], "std": [118.06777714516353], "count": [409]}, "episode_index": {"min": [19], "max": [19], "mean": [19.0], "std": [0.0], "count": [409]}, "index": {"min": [10509], "max": [10917], "mean": [10713.0], "std": [118.06777714516353], "count": [409]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [409]}}} +{"episode_index": 20, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5954771982147767]], [[0.5565627551452079]], [[0.5162203291240984]]], "std": [[[0.23187798114306526]], [[0.2246300189022196]], [[0.22590481819137592]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6180695079002475]], [[0.5862641004082324]], [[0.549789554117224]]], "std": [[[0.21528281175929292]], [[0.19560652043373825]], [[0.2068901059143338]]], "count": [103]}, "observation.state": {"min": [0.4150196611881256, -0.1555049568414688, 0.12399791926145554, -0.8672776222229004, -0.30223995447158813, 0.04261988028883934, -0.4757280647754669, -0.47905656695365906, 0.1702430546283722, 0.2344333529472351, 0.9422453045845032, -0.7488890290260315], "max": [0.5560676455497742, -0.034119028598070145, 0.14349929988384247, -0.5005298852920532, 0.3124876618385315, 0.9297024607658386, -0.2521704137325287, -0.3978983759880066, 0.19297221302986145, 1.1006624698638916, 1.3885000944137573, 0.19787989556789398], "mean": [0.49131524562835693, -0.0804109275341034, 0.1309414654970169, -0.7478792667388916, 0.1171947568655014, 0.35687798261642456, -0.3882765769958496, -0.43726256489753723, 0.18269117176532745, 0.6851572394371033, 1.2233586311340332, -0.3025691509246826], "std": [0.047011684626340866, 0.03815167397260666, 0.004156662151217461, 0.09390349686145782, 0.14112241566181183, 0.30447903275489807, 0.08390634506940842, 0.022261030972003937, 0.008109517395496368, 0.32233041524887085, 0.1149071604013443, 0.34268924593925476], "count": [486]}, "action": {"min": [-0.12870997190475464, -0.10342315584421158, 0.11174851655960083, -0.3526693880558014, -0.666908860206604, -0.665488064289093, -0.499726802110672, 0.1170293465256691, -0.14076769351959229, 0.08516262471675873, -0.41200029850006104, -0.5636653900146484, -0.5887946486473083, -0.5602424144744873], "max": [-0.10327669233083725, -0.08169778436422348, 0.13530120253562927, 0.3530394732952118, 0.7465710043907166, 0.8418234586715698, 0.4564918279647827, 0.1617708057165146, -0.12099497020244598, 0.09366624057292938, 0.49634358286857605, 0.5678467750549316, 0.5265592336654663, 0.6706109046936035], "mean": [-0.11713691800832748, -0.08812321722507477, 0.12612058222293854, 0.12756605446338654, -0.20025761425495148, 0.512997567653656, -0.2677144706249237, 0.135606050491333, -0.12865278124809265, 0.09012012928724289, 0.19547778367996216, -0.40355801582336426, -0.40850016474723816, 0.49933239817619324], "std": [0.007880644872784615, 0.0054654767736792564, 0.006735827308148146, 0.19195260107517242, 0.4435710906982422, 0.5298154950141907, 0.3073771595954895, 0.016028499230742455, 0.005214493256062269, 0.002146638697013259, 0.20822878181934357, 0.3303019106388092, 0.32045847177505493, 0.3571716547012329], "count": [486]}, "timestamp": {"min": [0.0], "max": [16.166666666666668], "mean": [8.083333333333334], "std": [4.676527280729516], "count": [486]}, "frame_index": {"min": [0], "max": [485], "mean": [242.5], "std": [140.2958184218855], "count": [486]}, "episode_index": {"min": [20], "max": [20], "mean": [20.0], "std": [0.0], "count": [486]}, "index": {"min": [10918], "max": [11403], "mean": [11160.5], "std": [140.2958184218855], "count": [486]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [486]}}} +{"episode_index": 21, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5774476416122004]], [[0.5391563725490196]], [[0.4987165005446623]]], "std": [[[0.23895900180740745]], [[0.23061429259204305]], [[0.23129319142337373]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5997004384531591]], [[0.5692324891067538]], [[0.5323547494553378]]], "std": [[[0.2258131665059553]], [[0.2047929607758122]], [[0.2153125193455958]]], "count": [100]}, "observation.state": {"min": [0.41869568824768066, -0.15329624712467194, 0.12282347679138184, -1.0830485820770264, -0.17639772593975067, 0.14524243772029877, -0.5867191553115845, -0.5644236207008362, 0.16500216722488403, 1.8794509172439575, -0.7718595862388611, 0.7286471724510193], "max": [0.5673969388008118, -0.025338290259242058, 0.1429678201675415, -0.3715705871582031, 0.3706948161125183, 0.8322145342826843, -0.3648914098739624, -0.43424928188323975, 0.19840367138385773, 2.1090614795684814, -0.3805326521396637, 1.0649882555007935], "mean": [0.5114319920539856, -0.0876726508140564, 0.1324017494916916, -0.7926838994026184, 0.10228092968463898, 0.4152664840221405, -0.5066986680030823, -0.4819246232509613, 0.18101952970027924, 1.9980788230895996, -0.6183310747146606, 0.9532744884490967], "std": [0.0510709173977375, 0.04193461686372757, 0.004411702044308186, 0.16689443588256836, 0.1646096408367157, 0.23469573259353638, 0.07918751984834671, 0.040416184812784195, 0.009401432238519192, 0.06694452464580536, 0.14379599690437317, 0.08601858466863632], "count": [377]}, "action": {"min": [-0.1272285133600235, -0.09979850053787231, 0.11079235374927521, -0.3036259114742279, -0.6477901935577393, -0.6458946466445923, -0.5284547209739685, 0.11320848762989044, -0.15532365441322327, 0.06797149777412415, -0.17073951661586761, -0.2304430603981018, 0.1347385048866272, 0.931675910949707], "max": [-0.09995708614587784, -0.08179385215044022, 0.13698530197143555, 0.37802883982658386, 0.7006562352180481, 0.820232629776001, 0.494064062833786, 0.15223127603530884, -0.1262897104024887, 0.0849020704627037, -0.024733996018767357, -0.17249739170074463, 0.28439635038375854, 0.9686597585678101], "mean": [-0.11340826004743576, -0.08922436088323593, 0.12475269287824631, 0.13098110258579254, -0.1524268239736557, 0.41108715534210205, -0.1709432154893875, 0.12914586067199707, -0.13582845032215118, 0.07891524583101273, -0.12071575224399567, -0.19614163041114807, 0.22059796750545502, 0.9458168745040894], "std": [0.008479820564389229, 0.005007248837500811, 0.008105222135782242, 0.21783360838890076, 0.4919169843196869, 0.5981959700584412, 0.3378216028213501, 0.013209412805736065, 0.007264317013323307, 0.005093606188893318, 0.030238298699259758, 0.015159531496465206, 0.049180105328559875, 0.012648281641304493], "count": [377]}, "timestamp": {"min": [0.0], "max": [12.533333333333333], "mean": [6.266666666666667], "std": [3.6276714294434105], "count": [377]}, "frame_index": {"min": [0], "max": [376], "mean": [188.0], "std": [108.83014288330233], "count": [377]}, "episode_index": {"min": [21], "max": [21], "mean": [21.0], "std": [0.0], "count": [377]}, "index": {"min": [11404], "max": [11780], "mean": [11592.0], "std": [108.83014288330233], "count": [377]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [377]}}} +{"episode_index": 22, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5986071213644742]], [[0.5595493433581669]], [[0.5194378875481817]]], "std": [[[0.23313514974109714]], [[0.2258856761676146]], [[0.22747988037019368]]], "count": [143]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6214612508950744]], [[0.5891347715465363]], [[0.5529815043344455]]], "std": [[[0.21779388146064482]], [[0.19845735859185296]], [[0.20977974708359076]]], "count": [143]}, "observation.state": {"min": [0.3777729272842407, -0.16589975357055664, 0.1193636804819107, -0.9381527900695801, -0.5755129456520081, 0.20832261443138123, -0.4786626994609833, -0.44960978627204895, 0.16868363320827484, 1.4393117427825928, 0.5203117728233337, 0.5772476196289062], "max": [0.5679374933242798, -0.028149360790848732, 0.14926260709762573, 0.009016670286655426, 0.5996975898742676, 1.0313342809677124, -0.23819224536418915, -0.402732789516449, 0.19126759469509125, 1.89979088306427, 1.2108726501464844, 1.0752266645431519], "mean": [0.4961370527744293, -0.07715565711259842, 0.133646622300148, -0.7167133092880249, 0.21423646807670593, 0.5208971500396729, -0.3878916800022125, -0.4274677336215973, 0.18152154982089996, 1.7766081094741821, 0.8043137788772583, 0.8125560879707336], "std": [0.05680238455533981, 0.034475453197956085, 0.0059936391189694405, 0.2055375576019287, 0.2209092527627945, 0.21940848231315613, 0.07180353254079819, 0.013044643215835094, 0.006872884463518858, 0.10482946783304214, 0.17116716504096985, 0.1190299466252327], "count": [754]}, "action": {"min": [-0.1335279792547226, -0.09835468977689743, 0.1093907356262207, -0.44975656270980835, -0.6378602981567383, -0.6348687410354614, -0.5653342604637146, 0.1191684678196907, -0.13903121650218964, 0.08077996224164963, -0.019975200295448303, -0.550377607345581, -0.45865216851234436, 0.6838043332099915], "max": [-0.097109355032444, -0.08006639033555984, 0.13986021280288696, 0.45358404517173767, 0.7360454201698303, 0.7865316271781921, 0.6189284920692444, 0.1591424196958542, -0.12676019966602325, 0.0915914848446846, 0.17996075749397278, -0.39098531007766724, -0.24779143929481506, 0.8819310665130615], "mean": [-0.11457976698875427, -0.0880005732178688, 0.12782056629657745, 0.21964271366596222, -0.27956509590148926, 0.5184622406959534, -0.2522423267364502, 0.1348094940185547, -0.13362708687782288, 0.08636970072984695, 0.10997118800878525, -0.47518444061279297, -0.3048970103263855, 0.8120756149291992], "std": [0.010256849229335785, 0.003871715161949396, 0.007528385147452354, 0.2277919501066208, 0.42405015230178833, 0.4536505341529846, 0.3219691216945648, 0.012199687771499157, 0.0034226644784212112, 0.002526456955820322, 0.058796368539333344, 0.0458240881562233, 0.04889708384871483, 0.04159243777394295], "count": [754]}, "timestamp": {"min": [0.0], "max": [25.1], "mean": [12.55], "std": [7.255362001842347], "count": [754]}, "frame_index": {"min": [0], "max": [753], "mean": [376.5], "std": [217.66086005527038], "count": [754]}, "episode_index": {"min": [22], "max": [22], "mean": [22.0], "std": [0.0], "count": [754]}, "index": {"min": [11781], "max": [12534], "mean": [12157.5], "std": [217.66086005527038], "count": [754]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [754]}}} +{"episode_index": 23, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5910939434415741]], [[0.5522857445447314]], [[0.5104768540132102]]], "std": [[[0.22898271340698628]], [[0.22107144361002729]], [[0.22231308239475522]]], "count": [126]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6126350848981568]], [[0.5804368753674309]], [[0.5425785588926929]]], "std": [[[0.2127921535967455]], [[0.19277545255545678]], [[0.2039214322364041]]], "count": [126]}, "observation.state": {"min": [0.3774794638156891, -0.1965281069278717, 0.12175015360116959, -1.0687896013259888, -0.0277372095733881, 0.2861747145652771, -0.4611629843711853, -0.5201646685600281, 0.16535085439682007, 0.4206380248069763, 1.1025198698043823, -0.8592060208320618], "max": [0.5525306463241577, -0.04726313054561615, 0.13883136212825775, 0.08450505137443542, 0.7055909037590027, 1.0887483358383179, -0.18764695525169373, -0.4227733016014099, 0.1958460956811905, 1.8446424007415771, 1.410635232925415, 0.8022144436836243], "mean": [0.482200562953949, -0.10632965713739395, 0.1304657757282257, -0.4973061978816986, 0.3413084149360657, 0.5889112949371338, -0.37762048840522766, -0.45832520723342896, 0.1834460347890854, 1.300679326057434, 1.2791084051132202, 0.039440982043743134], "std": [0.05126914009451866, 0.04786831513047218, 0.004478237591683865, 0.2836633324623108, 0.20362290740013123, 0.23760293424129486, 0.08592324703931808, 0.03366890922188759, 0.009869933128356934, 0.37917909026145935, 0.09544176608324051, 0.46944859623908997], "count": [635]}, "action": {"min": [-0.13567031919956207, -0.10133484750986099, 0.10848551243543625, -0.4470979869365692, -0.6338346004486084, -0.6369475722312927, -0.6178941130638123, 0.11789398640394211, -0.14230431616306305, 0.07732326537370682, -0.4364505410194397, -0.617838978767395, -0.4374328851699829, -0.6173642873764038], "max": [-0.10942021012306213, -0.0831739753484726, 0.13524951040744781, 0.4440004527568817, 0.6756279468536377, 0.7241392731666565, 0.6751551032066345, 0.16617561876773834, -0.12396908551454544, 0.09076754003763199, 0.3204876780509949, 0.6603006720542908, 0.4638574719429016, 0.7261176705360413], "mean": [-0.11866659671068192, -0.09004677832126617, 0.1241796538233757, 0.12340576946735382, -0.18108601868152618, 0.3685579299926758, -0.21411985158920288, 0.13549166917800903, -0.13322612643241882, 0.08399239927530289, -0.007245073560625315, -0.046292584389448166, -0.03353821113705635, 0.1258280724287033], "std": [0.008399946615099907, 0.005424880888313055, 0.009038502350449562, 0.32150810956954956, 0.4550013840198517, 0.5040587186813354, 0.45368218421936035, 0.015203464776277542, 0.004575876519083977, 0.00436969380825758, 0.29853543639183044, 0.6077497601509094, 0.39491644501686096, 0.6053136587142944], "count": [635]}, "timestamp": {"min": [0.0], "max": [21.133333333333333], "mean": [10.566666666666666], "std": [6.1102827721436554], "count": [635]}, "frame_index": {"min": [0], "max": [634], "mean": [317.0], "std": [183.30848316430968], "count": [635]}, "episode_index": {"min": [23], "max": [23], "mean": [23.0], "std": [0.0], "count": [635]}, "index": {"min": [12535], "max": [13169], "mean": [12852.0], "std": [183.30848316430968], "count": [635]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [635]}}} +{"episode_index": 24, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5957521187363835]], [[0.5562231644880175]], [[0.515677709694989]]], "std": [[[0.23253190265815085]], [[0.22486123732027902]], [[0.22584300440254304]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6184763262527233]], [[0.5856993273420479]], [[0.549012649782135]]], "std": [[[0.21667529374816513]], [[0.19678352880308836]], [[0.20748147920009202]]], "count": [100]}, "observation.state": {"min": [0.4197150766849518, -0.17016269266605377, 0.12426494807004929, -0.85008305311203, -0.1002911925315857, 0.2087889462709427, -0.4789407253265381, -0.4530695676803589, 0.1634129136800766, 1.3474675416946411, 0.8613564968109131, 0.2158043086528778], "max": [0.5547007322311401, -0.05126350000500679, 0.1411854326725006, -0.23925623297691345, 0.6592711210250854, 1.068471074104309, -0.1826503574848175, -0.4114286005496979, 0.190786674618721, 2.01700758934021, 1.400250792503357, 0.9352625012397766], "mean": [0.49140268564224243, -0.08869488537311554, 0.13262301683425903, -0.5360204577445984, 0.28359493613243103, 0.562747597694397, -0.3699302077293396, -0.4307793080806732, 0.17907726764678955, 1.790452241897583, 1.0722360610961914, 0.6911594867706299], "std": [0.041386257857084274, 0.0371415875852108, 0.003919473849236965, 0.13984960317611694, 0.18920281529426575, 0.2647959589958191, 0.1091243103146553, 0.012909136712551117, 0.009645402431488037, 0.149676114320755, 0.17686836421489716, 0.1477525383234024], "count": [440]}, "action": {"min": [-0.1281435340642929, -0.10122677683830261, 0.11053021997213364, -0.4438341557979584, -0.6268317699432373, -0.6286036372184753, -0.580932080745697, 0.11847344040870667, -0.13773111999034882, 0.07833745330572128, -0.2389918714761734, -0.6063579320907593, -0.45958060026168823, -0.608818769454956], "max": [-0.10850431025028229, -0.08462876826524734, 0.13534392416477203, 0.41283348202705383, 0.7189628481864929, 0.7338054180145264, 0.5737945437431335, 0.16786374151706696, -0.12372305244207382, 0.09100297838449478, 0.25447118282318115, 0.6175473928451538, 0.46090689301490784, 0.7797107696533203], "mean": [-0.11608565598726273, -0.08875443786382675, 0.12689560651779175, 0.04765115678310394, -0.06174271181225777, 0.2656663954257965, -0.16762231290340424, 0.13729152083396912, -0.13072124123573303, 0.08336592465639114, 0.17196562886238098, -0.540120542049408, -0.34453922510147095, 0.7142629623413086], "std": [0.006887979805469513, 0.004418776836246252, 0.007162160240113735, 0.3214170038700104, 0.49696725606918335, 0.5844110250473022, 0.4510206878185272, 0.01808958500623703, 0.004246016964316368, 0.0032053410541266203, 0.06493353843688965, 0.12662605941295624, 0.0924215093255043, 0.14500486850738525], "count": [440]}, "timestamp": {"min": [0.0], "max": [14.633333333333333], "mean": [7.3166666666666655], "std": [4.233891039378946], "count": [440]}, "frame_index": {"min": [0], "max": [439], "mean": [219.5], "std": [127.01673118136839], "count": [440]}, "episode_index": {"min": [24], "max": [24], "mean": [24.0], "std": [0.0], "count": [440]}, "index": {"min": [13170], "max": [13609], "mean": [13389.5], "std": [127.01673118136839], "count": [440]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [440]}}} +{"episode_index": 25, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5946836617485277]], [[0.5554716155439072]], [[0.514475228650316]]], "std": [[[0.23116750435046052]], [[0.22337046941385238]], [[0.22461101974808653]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6178947507495847]], [[0.5851239807804309]], [[0.548070442093229]]], "std": [[[0.21598507493600155]], [[0.1959028987634884]], [[0.20677529248598628]]], "count": [101]}, "observation.state": {"min": [0.4082082211971283, -0.18415628373622894, 0.12266013771295547, -1.1451168060302734, 0.01052100956439972, -0.00439641997218132, -0.4476173222064972, -0.4600818157196045, 0.16289569437503815, 1.5330431461334229, 0.8791192173957825, 0.39187103509902954], "max": [0.5410778522491455, -0.05089281126856804, 0.14103375375270844, -0.2535151541233063, 0.6195098757743835, 1.0282374620437622, -0.21537156403064728, -0.42758455872535706, 0.18927648663520813, 1.838980793952942, 1.400250792503357, 1.0954731702804565], "mean": [0.4926424026489258, -0.10040686279535294, 0.13364534080028534, -0.7929061651229858, 0.29150837659835815, 0.5001609921455383, -0.3585048317909241, -0.4394397735595703, 0.17848746478557587, 1.6775816679000854, 1.0729055404663086, 0.6659224033355713], "std": [0.04602664336562157, 0.04375289008021355, 0.004087057895958424, 0.21545745432376862, 0.15374521911144257, 0.3214440941810608, 0.08047600090503693, 0.00632803700864315, 0.009506402537226677, 0.0599760003387928, 0.10626544803380966, 0.23625598847866058], "count": [473]}, "action": {"min": [-0.12904201447963715, -0.10568322986364365, 0.10894721746444702, -0.42943084239959717, -0.6511297225952148, -0.6459948420524597, -0.5371221303939819, 0.12320967763662338, -0.13718649744987488, 0.07864884287118912, -0.22593796253204346, -0.6192584037780762, -0.4515133798122406, -0.6114274263381958], "max": [-0.10322608798742294, -0.08478110283613205, 0.13484467566013336, 0.450257807970047, 0.7216171026229858, 0.8099616169929504, 0.5527005195617676, 0.16303691267967224, -0.12257084250450134, 0.0857928916811943, 0.2597285509109497, 0.6141982078552246, 0.44482481479644775, 0.8200297951698303], "mean": [-0.1149434819817543, -0.09114779531955719, 0.12578102946281433, 0.1206279769539833, -0.11191155761480331, 0.377767950296402, -0.167240172624588, 0.13918519020080566, -0.13122521340847015, 0.08349387347698212, 0.1639954149723053, -0.5167760848999023, -0.37692752480506897, 0.7318015694618225], "std": [0.008175207301974297, 0.005969872232526541, 0.007006391882896423, 0.3178122639656067, 0.4899904727935791, 0.5857082009315491, 0.3436534106731415, 0.013880903832614422, 0.005249633453786373, 0.0020289472304284573, 0.09439927339553833, 0.0962916687130928, 0.05825197696685791, 0.08284781873226166], "count": [473]}, "timestamp": {"min": [0.0], "max": [15.733333333333333], "mean": [7.866666666666667], "std": [4.551434450319542], "count": [473]}, "frame_index": {"min": [0], "max": [472], "mean": [236.0], "std": [136.54303350958628], "count": [473]}, "episode_index": {"min": [25], "max": [25], "mean": [25.0], "std": [0.0], "count": [473]}, "index": {"min": [13610], "max": [14082], "mean": [13846.0], "std": [136.54303350958628], "count": [473]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [473]}}} +{"episode_index": 26, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6033464159786722]], [[0.5631474655286091]], [[0.5223454932777205]]], "std": [[[0.22884912871486177]], [[0.22191244424823955]], [[0.22324304940468492]]], "count": [152]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6259265906289416]], [[0.5923184088693957]], [[0.5556827539129687]]], "std": [[[0.2148477918376181]], [[0.19495094611205036]], [[0.20627605184940825]]], "count": [152]}, "observation.state": {"min": [0.44622722268104553, -0.17956125736236572, 0.12654252350330353, -1.2596074342727661, -0.25837960839271545, -0.015796959400177002, -0.4602285325527191, -0.4948650002479553, 0.1613582968711853, 1.2965129613876343, 0.34965279698371887, -0.11956667900085449], "max": [0.5408616065979004, -0.048753611743450165, 0.1410233974456787, 0.12182985991239548, 0.5751030445098877, 1.1631567478179932, -0.28278329968452454, -0.40966010093688965, 0.19691292941570282, 2.0478320121765137, 1.3304295539855957, 1.197984218597412], "mean": [0.48578017950057983, -0.09072928875684738, 0.13413503766059875, -0.7465788722038269, 0.14690616726875305, 0.43667784333229065, -0.3756038546562195, -0.4316166043281555, 0.17807637155056, 1.8160531520843506, 0.7464883327484131, 0.797068178653717], "std": [0.026331987231969833, 0.03509167209267616, 0.0028748938348144293, 0.21584470570087433, 0.15894930064678192, 0.2786567211151123, 0.04938223585486412, 0.02043425478041172, 0.008937859907746315, 0.10330033302307129, 0.3286733031272888, 0.28592449426651], "count": [818]}, "action": {"min": [-0.12279476970434189, -0.10656094551086426, 0.11320626735687256, -0.4091697335243225, -0.6475928425788879, -0.6469342708587646, -0.5669827461242676, 0.12190937995910645, -0.14377474784851074, 0.07785424590110779, -0.36185282468795776, -0.6361269354820251, -0.36238136887550354, -0.6248149871826172], "max": [-0.10533486306667328, -0.0834917277097702, 0.13491974771022797, 0.39645814895629883, 0.7268403768539429, 0.8418246507644653, 0.648780345916748, 0.1572323888540268, -0.12220153957605362, 0.09567734599113464, 0.3248210549354553, 0.6373313069343567, 0.3663991391658783, 0.9246507883071899], "mean": [-0.11638633906841278, -0.09141284227371216, 0.1278749704360962, 0.14530514180660248, -0.29764360189437866, 0.5726144909858704, -0.2704286575317383, 0.1384822428226471, -0.13207480311393738, 0.0850588008761406, 0.07989350706338882, -0.4344676733016968, -0.22838345170021057, 0.7678734660148621], "std": [0.004746120423078537, 0.005271121393889189, 0.005033576861023903, 0.22328191995620728, 0.39995208382606506, 0.437786728143692, 0.2963142693042755, 0.00988699495792389, 0.005524009931832552, 0.003000368596985936, 0.14509430527687073, 0.22780391573905945, 0.1283792108297348, 0.27136316895484924], "count": [818]}, "timestamp": {"min": [0.0], "max": [27.233333333333334], "mean": [13.616666666666664], "std": [7.871202788223242], "count": [818]}, "frame_index": {"min": [0], "max": [817], "mean": [408.5], "std": [236.13608364669724], "count": [818]}, "episode_index": {"min": [26], "max": [26], "mean": [26.0], "std": [0.0], "count": [818]}, "index": {"min": [14083], "max": [14900], "mean": [14491.5], "std": [236.13608364669724], "count": [818]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [818]}}} +{"episode_index": 27, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5863091556405761]], [[0.5482524531944666]], [[0.506470406681191]]], "std": [[[0.23326704338020374]], [[0.22527319531185266]], [[0.22659062195484614]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6072126618488407]], [[0.5764688236179747]], [[0.538523803514179]]], "std": [[[0.21842219613287772]], [[0.19788288664211856]], [[0.20916150135098482]]], "count": [123]}, "observation.state": {"min": [0.42097389698028564, -0.20371024310588837, 0.12398754805326462, -1.4822982549667358, -0.12693530321121216, -0.17712485790252686, -0.5411550402641296, -0.4870418608188629, 0.1644071638584137, 1.3313214778900146, -0.29527148604393005, 0.585843026638031], "max": [0.5563997626304626, -0.04445977136492729, 0.14096635580062866, -0.12770117819309235, 0.6488867402076721, 1.2138302326202393, -0.32254767417907715, -0.42138320207595825, 0.1933131366968155, 1.7876067161560059, 0.38107919692993164, 1.1851378679275513], "mean": [0.5000858902931213, -0.10488608479499817, 0.1326882392168045, -0.8912723660469055, 0.1885291039943695, 0.47521650791168213, -0.4553321599960327, -0.4605455696582794, 0.183048278093338, 1.4810044765472412, -0.03400259092450142, 0.9767292737960815], "std": [0.04256856441497803, 0.04957181215286255, 0.004404991865158081, 0.30316823720932007, 0.19738490879535675, 0.3901064991950989, 0.07051970809698105, 0.022339513525366783, 0.01027065422385931, 0.1323661059141159, 0.18077349662780762, 0.16461627185344696], "count": [617]}, "action": {"min": [-0.12706038355827332, -0.10931836813688278, 0.10673529654741287, -0.38712596893310547, -0.6764274835586548, -0.6681824326515198, -0.5451840758323669, 0.11577251553535461, -0.1481614112854004, 0.07854059338569641, -0.07553397119045258, -0.4033212661743164, -0.20808158814907074, 0.8827009201049805], "max": [-0.10326730459928513, -0.08454244583845139, 0.13430772721767426, 0.49871668219566345, 0.7542827725410461, 0.8444918394088745, 0.5876001715660095, 0.15449711680412292, -0.1288309097290039, 0.0898786261677742, 0.2066684365272522, -0.05641239508986473, -0.05547245219349861, 0.9945619702339172], "mean": [-0.11470551043748856, -0.09192506968975067, 0.12388157099485397, 0.11328665167093277, -0.07809878885746002, 0.4046761095523834, -0.11216221749782562, 0.13032490015029907, -0.13861145079135895, 0.08331161737442017, 0.011290711350739002, -0.14805442094802856, -0.11521737277507782, 0.9727915525436401], "std": [0.0070974319241940975, 0.007343683857470751, 0.007351224776357412, 0.29076412320137024, 0.5186447501182556, 0.5888128280639648, 0.32324427366256714, 0.01289051491767168, 0.005916105583310127, 0.00350936665199697, 0.07779484987258911, 0.095619797706604, 0.051108378916978836, 0.02336985617876053], "count": [617]}, "timestamp": {"min": [0.0], "max": [20.533333333333335], "mean": [10.266666666666666], "std": [5.937077470345902], "count": [617]}, "frame_index": {"min": [0], "max": [616], "mean": [308.0], "std": [178.11232411037705], "count": [617]}, "episode_index": {"min": [27], "max": [27], "mean": [27.0], "std": [0.0], "count": [617]}, "index": {"min": [14901], "max": [15517], "mean": [15209.0], "std": [178.11232411037705], "count": [617]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [617]}}} +{"episode_index": 28, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5932310693697341]], [[0.5547555671236046]], [[0.512545112981279]]], "std": [[[0.2256383880387248]], [[0.21857107464046616]], [[0.2197702473150091]]], "count": [113]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6121034858387799]], [[0.5807382994003895]], [[0.5426645579077255]]], "std": [[[0.2114333732664533]], [[0.19161582536405355]], [[0.20280089449419983]]], "count": [113]}, "observation.state": {"min": [0.4209584593772888, -0.22263093292713165, 0.12501679360866547, -1.539543628692627, -0.14059895277023315, 0.18105091154575348, -0.5863175988197327, -0.5072059035301208, 0.16409087181091309, 1.283092737197876, -0.3675521910190582, 0.5741674900054932], "max": [0.5392552614212036, -0.05568090081214905, 0.1436263471841812, -0.5435163378715515, 0.5424469113349915, 0.8201794028282166, -0.3664359450340271, -0.41248661279678345, 0.1945355385541916, 1.8941292762756348, 0.5983312129974365, 1.0638765096664429], "mean": [0.4862533211708069, -0.12126972526311874, 0.13141457736492157, -0.8490400314331055, 0.28205645084381104, 0.42816972732543945, -0.47899898886680603, -0.4494835436344147, 0.18300259113311768, 1.5035123825073242, -0.016390468925237656, 0.9066734313964844], "std": [0.03612438216805458, 0.054200273007154465, 0.004444552585482597, 0.2835380733013153, 0.22365272045135498, 0.15614452958106995, 0.061057593673467636, 0.0316072441637516, 0.009106101468205452, 0.17092831432819366, 0.3108517527580261, 0.12964695692062378], "count": [552]}, "action": {"min": [-0.12881802022457123, -0.10712502151727676, 0.10495946556329727, -0.4569288194179535, -0.5886979699134827, -0.5849404335021973, -0.47284233570098877, 0.10944662988185883, -0.15210017561912537, 0.07780230045318604, -0.04321625828742981, -0.4935109615325928, -0.26152464747428894, 0.8264275193214417], "max": [-0.10622458159923553, -0.08594772964715958, 0.13484910130500793, 0.49183395504951477, 0.5950247645378113, 0.7999154925346375, 0.35969042778015137, 0.14677533507347107, -0.1228765919804573, 0.08881241828203201, 0.2349243462085724, -0.06659041345119476, -0.003670682432129979, 0.9962881803512573], "mean": [-0.11713214218616486, -0.09338349848985672, 0.12227368354797363, 0.2945551574230194, -0.4540219306945801, 0.6897299885749817, -0.3397897779941559, 0.12692062556743622, -0.13661585748195648, 0.08312806487083435, 0.040163714438676834, -0.17562884092330933, -0.11734351515769958, 0.9596832990646362], "std": [0.006949130445718765, 0.006032722070813179, 0.008862685412168503, 0.1666170358657837, 0.16494405269622803, 0.18715158104896545, 0.1610042154788971, 0.00988420657813549, 0.008075975812971592, 0.0031248684972524643, 0.07288873195648193, 0.12831677496433258, 0.09188473969697952, 0.05059300735592842], "count": [552]}, "timestamp": {"min": [0.0], "max": [18.366666666666667], "mean": [9.183333333333334], "std": [5.311613760500734], "count": [552]}, "frame_index": {"min": [0], "max": [551], "mean": [275.5], "std": [159.348412815022], "count": [552]}, "episode_index": {"min": [28], "max": [28], "mean": [28.0], "std": [0.0], "count": [552]}, "index": {"min": [15518], "max": [16069], "mean": [15793.5], "std": [159.348412815022], "count": [552]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [552]}}} +{"episode_index": 29, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.509378034240818]], [[0.4774908801228278]], [[0.43486508028408216]]], "std": [[[0.23857346547491867]], [[0.2282715580869999]], [[0.22900189934457246]]], "count": [254]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5218871262415727]], [[0.49979805572710273]], [[0.4596046480709519]]], "std": [[[0.23533517187921116]], [[0.21202124407693]], [[0.22379169377593103]]], "count": [254]}, "observation.state": {"min": [0.4508377015590668, -0.1747036576271057, 0.11519870162010193, -1.4902664422988892, -0.14237523078918457, 0.10449031740427017, -0.6346927881240845, -0.5593961477279663, 0.16568401455879211, 0.28392016887664795, -0.6080324053764343, -1.0183204412460327], "max": [0.5843483209609985, -0.046429071575403214, 0.14324264228343964, -0.5737116932868958, 0.406493604183197, 0.9589922428131104, -0.4109806716442108, -0.385765939950943, 0.19660571217536926, 1.8324804306030273, 1.150889277458191, 1.0284953117370605], "mean": [0.5144243240356445, -0.09494063258171082, 0.13355883955955505, -0.9252485632896423, 0.12838950753211975, 0.4768058955669403, -0.5621871948242188, -0.4543287456035614, 0.18276453018188477, 1.4281988143920898, -0.06521853059530258, 0.6559693813323975], "std": [0.026664523407816887, 0.033204689621925354, 0.005040593445301056, 0.18795794248580933, 0.10064844787120819, 0.21496713161468506, 0.04554698243737221, 0.04919729009270668, 0.007774777244776487, 0.24399377405643463, 0.4601507782936096, 0.37187984585762024], "count": [1616]}, "action": {"min": [-0.12288044393062592, -0.10231101512908936, 0.10820958018302917, -0.4195149838924408, -0.6643372774124146, -0.658444344997406, -0.4672180414199829, 0.10036522895097733, -0.138520285487175, 0.0589338019490242, -0.5265184640884399, -0.5476384162902832, -0.5296477675437927, -0.5018641352653503], "max": [-0.10299941152334213, -0.08042079210281372, 0.13595353066921234, 0.45589974522590637, 0.7011457681655884, 0.8603275418281555, 0.39510414004325867, 0.14051783084869385, -0.12485238164663315, 0.08955366164445877, 0.5637803077697754, 0.5387302041053772, 0.5062088966369629, 0.997063159942627], "mean": [-0.11217547208070755, -0.09074606001377106, 0.12484109401702881, 0.20269860327243805, -0.38103771209716797, 0.607653021812439, -0.24769988656044006, 0.11651229858398438, -0.1328536421060562, 0.07772896438837051, 0.1224481537938118, -0.2025405913591385, -0.0988689586520195, 0.9216138124465942], "std": [0.004832737147808075, 0.004318795632570982, 0.006581849884241819, 0.19883646070957184, 0.3645191490650177, 0.4129337668418884, 0.20050255954265594, 0.008708084933459759, 0.002990408567711711, 0.008337551727890968, 0.13670554757118225, 0.14185133576393127, 0.1571953147649765, 0.1460033804178238], "count": [1616]}, "timestamp": {"min": [0.0], "max": [53.833333333333336], "mean": [26.916666666666668], "std": [15.549964272913584], "count": [1616]}, "frame_index": {"min": [0], "max": [1615], "mean": [807.5], "std": [466.4989281874075], "count": [1616]}, "episode_index": {"min": [29], "max": [29], "mean": [29.0], "std": [0.0], "count": [1616]}, "index": {"min": [16070], "max": [17685], "mean": [16877.5], "std": [466.4989281874075], "count": [1616]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1616]}}} +{"episode_index": 30, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5322578215333309]], [[0.49988743747033265]], [[0.4577338822555714]]], "std": [[[0.23614696354151277]], [[0.22662141107159467]], [[0.2281879387398291]]], "count": [179]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5510149112717713]], [[0.5277547665559086]], [[0.48913237576222296]]], "std": [[[0.23034790480217698]], [[0.20787586803972855]], [[0.22044416289921046]]], "count": [179]}, "observation.state": {"min": [0.4425048828125, -0.1768583059310913, 0.12112793326377869, -1.3130784034729004, -0.4769980311393738, -0.02958774007856846, -0.5220413208007812, -0.5223193168640137, 0.14920039474964142, 0.5219182968139648, 0.5193553566932678, -0.6468008160591125], "max": [0.5576894283294678, -0.05027499049901962, 0.14605428278446198, -0.2736453711986542, 0.46456411480903625, 1.299981951713562, -0.30899426341056824, -0.4135986864566803, 0.19412072002887726, 1.7312002182006836, 1.3480557203292847, 1.1743061542510986], "mean": [0.5058301091194153, -0.11194790154695511, 0.13381467759609222, -0.8487829566001892, 0.17000526189804077, 0.4513988494873047, -0.4683162569999695, -0.4549451470375061, 0.17861685156822205, 1.3483755588531494, 0.9138935804367065, 0.38824328780174255], "std": [0.02609206736087799, 0.03424631804227829, 0.005773225333541632, 0.25761163234710693, 0.21105054020881653, 0.367426335811615, 0.05345479026436806, 0.025917360559105873, 0.01253436878323555, 0.2808195650577545, 0.18361081182956696, 0.3962613344192505], "count": [1014]}, "action": {"min": [-0.12415222823619843, -0.10546335577964783, 0.10728566348552704, -0.41810598969459534, -0.6305644512176514, -0.6337392330169678, -0.4935699701309204, 0.11171159148216248, -0.1376340091228485, 0.06918549537658691, -0.3541763722896576, -0.5798543095588684, -0.4829191267490387, -0.5788806080818176], "max": [-0.10562891513109207, -0.0856831893324852, 0.13513849675655365, 0.4237287640571594, 0.8761281371116638, 0.8631332516670227, 0.5158949494361877, 0.15560927987098694, -0.1126875951886177, 0.08781985193490982, 0.4221612215042114, 0.6140125393867493, 0.4978499710559845, 0.8815673589706421], "mean": [-0.11332044005393982, -0.09343986958265305, 0.12372367829084396, 0.15663497149944305, -0.15476755797863007, 0.49334338307380676, -0.15618078410625458, 0.12503796815872192, -0.1288354992866516, 0.07848883420228958, 0.15906837582588196, -0.36768782138824463, -0.3014811873435974, 0.6407502293586731], "std": [0.00460850028321147, 0.004823623690754175, 0.007009599823504686, 0.2527185380458832, 0.4957558810710907, 0.5202054381370544, 0.32168012857437134, 0.01158920768648386, 0.007005526218563318, 0.006087383255362511, 0.1827138513326645, 0.31328949332237244, 0.25725147128105164, 0.3746182918548584], "count": [1014]}, "timestamp": {"min": [0.0], "max": [33.766666666666666], "mean": [16.883333333333333], "std": [9.757214804478824], "count": [1014]}, "frame_index": {"min": [0], "max": [1013], "mean": [506.5], "std": [292.71644413436474], "count": [1014]}, "episode_index": {"min": [30], "max": [30], "mean": [30.0], "std": [0.0], "count": [1014]}, "index": {"min": [17686], "max": [18699], "mean": [18192.5], "std": [292.71644413436474], "count": [1014]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1014]}}} +{"episode_index": 31, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5233290128917064]], [[0.49005330114501944]], [[0.44771251453797895]]], "std": [[[0.2336969577339792]], [[0.22418460509828392]], [[0.22575428109361956]]], "count": [133]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5450400060609039]], [[0.5204894814651007]], [[0.481734120841319]]], "std": [[[0.22859019995608137]], [[0.20596911822143418]], [[0.2187797440460077]]], "count": [133]}, "observation.state": {"min": [0.4438331723213196, -0.13563436269760132, 0.12586328387260437, -1.2996582984924316, -0.09591881930828094, 0.03602181002497673, -0.5094532370567322, -0.4995063543319702, 0.15750183165073395, 1.2040396928787231, 0.8582138419151306, -0.017954690381884575], "max": [0.5451709032058716, -0.0441972017288208, 0.14266708493232727, -0.47809305787086487, 0.535615086555481, 0.9941596984863281, -0.2401847243309021, -0.40898048877716064, 0.1904885172843933, 1.6288714408874512, 1.235330581665039, 0.7561481595039368], "mean": [0.5066558122634888, -0.08681368827819824, 0.1349264532327652, -0.8390862345695496, 0.09372621029615402, 0.5092206597328186, -0.41064947843551636, -0.4408313035964966, 0.17707514762878418, 1.459022045135498, 0.9669308066368103, 0.39441952109336853], "std": [0.030830806121230125, 0.028408339247107506, 0.0034241615794599056, 0.19893839955329895, 0.18943041563034058, 0.275883287191391, 0.0805177390575409, 0.020531998947262764, 0.010194898582994938, 0.08553710579872131, 0.0765443667769432, 0.19040518999099731], "count": [679]}, "action": {"min": [-0.12348071485757828, -0.1015373095870018, 0.11830887198448181, -0.344239741563797, -0.6524467468261719, -0.6535071730613708, -0.45147576928138733, 0.11356145888566971, -0.1337156891822815, 0.07346469908952713, 0.06593142449855804, -0.5942304730415344, -0.4960685670375824, 0.6025855541229248], "max": [-0.10534731298685074, -0.08395761996507645, 0.13506004214286804, 0.4469153583049774, 0.7295346260070801, 0.8170783519744873, 0.4626425802707672, 0.1606573909521103, -0.11576174944639206, 0.08805899322032928, 0.3394070863723755, -0.2852781414985657, -0.29435303807258606, 0.8355507850646973], "mean": [-0.11286934465169907, -0.09089300781488419, 0.1270347237586975, 0.09938861429691315, -0.13709388673305511, 0.36828160285949707, -0.12273924797773361, 0.13243992626667023, -0.12825623154640198, 0.08165628463029861, 0.23854506015777588, -0.4930616021156311, -0.364324152469635, 0.7399042248725891], "std": [0.005796859972178936, 0.004542551469057798, 0.004407942295074463, 0.25930434465408325, 0.5303633213043213, 0.6054895520210266, 0.3247910439968109, 0.014228793792426586, 0.005449439864605665, 0.004033070523291826, 0.08333053439855576, 0.08600764721632004, 0.05780378356575966, 0.045978009700775146], "count": [679]}, "timestamp": {"min": [0.0], "max": [22.6], "mean": [11.299999999999999], "std": [6.533673460534196], "count": [679]}, "frame_index": {"min": [0], "max": [678], "mean": [339.0], "std": [196.01020381602586], "count": [679]}, "episode_index": {"min": [31], "max": [31], "mean": [31.0], "std": [0.0], "count": [679]}, "index": {"min": [18700], "max": [19378], "mean": [19039.0], "std": [196.01020381602586], "count": [679]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [679]}}} +{"episode_index": 32, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5153707970803324]], [[0.48281328490348724]], [[0.4395820375921069]]], "std": [[[0.23921290068378334]], [[0.22890114538686757]], [[0.2307196862333574]]], "count": [157]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5274144411834089]], [[0.5044917468048791]], [[0.4635663135034623]]], "std": [[[0.2377283910326071]], [[0.21390196509251758]], [[0.22707909100673207]]], "count": [157]}, "observation.state": {"min": [0.42892831563949585, -0.16226233541965485, 0.124235138297081, -1.3401284217834473, -0.274639368057251, 0.05632917955517769, -0.6115168929100037, -0.47068512439727783, 0.16761158406734467, 1.397793173789978, -0.6192366480827332, 0.6212404370307922], "max": [0.5851514935493469, -0.02545413002371788, 0.14420188963413239, -0.33864927291870117, 0.29322192072868347, 1.052980899810791, -0.3799738883972168, -0.40257835388183594, 0.19629979133605957, 1.7641215324401855, 0.22818295657634735, 0.9254043102264404], "mean": [0.5020211338996887, -0.08477529138326645, 0.13408294320106506, -0.8949452638626099, 0.012051885016262531, 0.4664178192615509, -0.5138369202613831, -0.4243260622024536, 0.18299318850040436, 1.594528079032898, -0.3236163556575775, 0.7517708539962769], "std": [0.04082236438989639, 0.030843045562505722, 0.004885559901595116, 0.242822527885437, 0.12658393383026123, 0.29038071632385254, 0.07817977666854858, 0.017968876287341118, 0.009200986474752426, 0.10923109948635101, 0.21491192281246185, 0.055585864931344986], "count": [848]}, "action": {"min": [-0.12710794806480408, -0.10314927995204926, 0.11179298907518387, -0.3553069233894348, -0.664492666721344, -0.6646770238876343, -0.42543458938598633, 0.10449636727571487, -0.14027296006679535, 0.0747484415769577, 0.0022297257091850042, -0.3039257526397705, -0.18488208949565887, 0.9356765747070312], "max": [-0.10207121074199677, -0.08124618232250214, 0.13453036546707153, 0.3419354259967804, 0.7922745943069458, 0.8645128011703491, 0.5006020069122314, 0.14665848016738892, -0.1225464940071106, 0.09002400934696198, 0.17857927083969116, -0.01131907757371664, 0.1425798237323761, 0.9987309575080872], "mean": [-0.11439353972673416, -0.09090274572372437, 0.12696948647499084, 0.08482164144515991, -0.13267782330513, 0.41800355911254883, -0.10895004123449326, 0.12332034856081009, -0.1326315701007843, 0.08542673289775848, 0.07063370198011398, -0.1303160935640335, 0.01859765127301216, 0.981571614742279], "std": [0.0074003408662974834, 0.00453044380992651, 0.005543375853449106, 0.21652863919734955, 0.5273730158805847, 0.6080772280693054, 0.30633318424224854, 0.014439626596868038, 0.003313667606562376, 0.003824967658147216, 0.03781319409608841, 0.07351307570934296, 0.0844561755657196, 0.01522244606167078], "count": [848]}, "timestamp": {"min": [0.0], "max": [28.233333333333334], "mean": [14.116666666666667], "std": [8.159878130898225], "count": [848]}, "frame_index": {"min": [0], "max": [847], "mean": [423.5], "std": [244.79634392694675], "count": [848]}, "episode_index": {"min": [32], "max": [32], "mean": [32.0], "std": [0.0], "count": [848]}, "index": {"min": [19379], "max": [20226], "mean": [19802.5], "std": [244.79634392694675], "count": [848]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [848]}}} +{"episode_index": 33, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5094227266069826]], [[0.47808407480639314]], [[0.4351927189176324]]], "std": [[[0.24536307576759822]], [[0.2339918739325044]], [[0.23482076937369123]]], "count": [119]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5190321396532469]], [[0.49825030894710826]], [[0.4576608561725344]]], "std": [[[0.2432222374033248]], [[0.21842614336874058]], [[0.23024189518194468]]], "count": [119]}, "observation.state": {"min": [0.441292405128479, -0.16711221635341644, 0.12491568922996521, -1.1126148700714111, -0.7132425308227539, 0.10011033713817596, -0.6251243352890015, -0.492231547832489, 0.16307199001312256, 0.9792520403862, -0.632490336894989, 0.731513261795044], "max": [0.5675899982452393, -0.04452928155660629, 0.1467970609664917, -0.4697054624557495, 0.35662126541137695, 1.1356925964355469, -0.44125378131866455, -0.3840978443622589, 0.1951940506696701, 1.6919881105422974, -0.09865155071020126, 1.3267338275909424], "mean": [0.519828200340271, -0.10581371188163757, 0.13339801132678986, -0.7787604928016663, -0.02938011847436428, 0.64228755235672, -0.5701962113380432, -0.433560848236084, 0.18177646398544312, 1.4598685503005981, -0.4184975326061249, 0.9784115552902222], "std": [0.03200283646583557, 0.033613186329603195, 0.005190652795135975, 0.18074454367160797, 0.23966562747955322, 0.2837650179862976, 0.05218346416950226, 0.02825881540775299, 0.00975201465189457, 0.21867258846759796, 0.17298896610736847, 0.1596694141626358], "count": [586]}, "action": {"min": [-0.12549646198749542, -0.1103978082537651, 0.11178585141897202, -0.3755047619342804, -0.6671297550201416, -0.665743887424469, -0.45610707998275757, 0.10633436590433121, -0.1420716941356659, 0.07351605594158173, -0.13710176944732666, -0.18661826848983765, -0.22063185274600983, 0.969532310962677], "max": [-0.1046709194779396, -0.08225566893815994, 0.13395270705223083, 0.34409618377685547, 0.7881313562393188, 0.8282554149627686, 0.44488152861595154, 0.1380150467157364, -0.11532926559448242, 0.08784563839435577, 0.09696250408887863, 0.10052142292261124, 0.10914352536201477, 0.999701201915741], "mean": [-0.11247957497835159, -0.09296540915966034, 0.1229158490896225, 0.03360271081328392, 0.018777647987008095, 0.17555837333202362, -0.05483675375580788, 0.1174999251961708, -0.130949929356575, 0.07996878772974014, -0.019847353920340538, -0.0712459534406662, -0.0005986929754726589, 0.9865384101867676], "std": [0.006098960526287556, 0.005588376894593239, 0.005852638743817806, 0.25088557600975037, 0.6219851970672607, 0.6303809285163879, 0.3427845239639282, 0.009361039847135544, 0.007159617729485035, 0.004053222946822643, 0.05029718205332756, 0.0778115913271904, 0.11232226341962814, 0.008420133963227272], "count": [586]}, "timestamp": {"min": [0.0], "max": [19.5], "mean": [9.75], "std": [5.638779418751308], "count": [586]}, "frame_index": {"min": [0], "max": [585], "mean": [292.5], "std": [169.16338256253923], "count": [586]}, "episode_index": {"min": [33], "max": [33], "mean": [33.0], "std": [0.0], "count": [586]}, "index": {"min": [20227], "max": [20812], "mean": [20519.5], "std": [169.16338256253923], "count": [586]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [586]}}} +{"episode_index": 34, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5134297930283224]], [[0.4815597875816994]], [[0.43856750816993467]]], "std": [[[0.23808358032625057]], [[0.22780576098687105]], [[0.22894099611183238]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5226015904139434]], [[0.5008529466230937]], [[0.4602617674291939]]], "std": [[[0.2379752848151869]], [[0.21397268699367747]], [[0.2261241897191324]]], "count": [100]}, "observation.state": {"min": [0.45849093794822693, -0.15850909054279327, 0.12489365041255951, -1.3258695602416992, -0.4085431396961212, -0.24392719566822052, -0.6258966326713562, -0.5002400279045105, 0.1705995351076126, 0.928716778755188, -0.7017650604248047, 0.9525942802429199], "max": [0.5669180750846863, -0.038405150175094604, 0.13995914161205292, -0.3021632134914398, 0.3008735775947571, 0.9142864346504211, -0.36889177560806274, -0.4102933406829834, 0.19683516025543213, 1.5923854112625122, -0.2015388458967209, 1.1687737703323364], "mean": [0.5118265748023987, -0.08025191724300385, 0.1326250582933426, -0.7126376628875732, -0.08849459886550903, 0.42796558141708374, -0.5376115441322327, -0.4386709928512573, 0.18350395560264587, 1.3435357809066772, -0.4674747586250305, 1.0483887195587158], "std": [0.028743237257003784, 0.0348590612411499, 0.004032208118587732, 0.17911894619464874, 0.18231084942817688, 0.2618672847747803, 0.08842401951551437, 0.030836204066872597, 0.008912274613976479, 0.20170201361179352, 0.1593095064163208, 0.05231396481394768], "count": [465]}, "action": {"min": [-0.12307112663984299, -0.0997280478477478, 0.11077802628278732, -0.2823616862297058, -0.6796556711196899, -0.6786268353462219, -0.5773822069168091, 0.1037035658955574, -0.14182716608047485, 0.0700380802154541, -0.08478348702192307, -0.1664314717054367, -0.17668721079826355, 0.9704757928848267], "max": [-0.10776855051517487, -0.0808866024017334, 0.1348608136177063, 0.2903507947921753, 0.7507118582725525, 0.950110673904419, 0.4250946342945099, 0.14747148752212524, -0.1268632858991623, 0.08723142743110657, 0.021881189197301865, 0.16323818266391754, 0.11221617460250854, 0.9991415739059448], "mean": [-0.11429338902235031, -0.08954815566539764, 0.12571409344673157, 0.06438419967889786, -0.24537880718708038, 0.45140549540519714, -0.25756677985191345, 0.12176358699798584, -0.13414409756660461, 0.08160854130983353, -0.026270026341080666, -0.00818080734461546, -0.003962792456150055, 0.9912970066070557], "std": [0.004773631226271391, 0.0044626835733652115, 0.006714371498674154, 0.17055054008960724, 0.49592193961143494, 0.546528160572052, 0.3030140697956085, 0.014573917724192142, 0.004411834292113781, 0.005480966065078974, 0.025701293721795082, 0.09376483410596848, 0.08394477516412735, 0.0076420982368290424], "count": [465]}, "timestamp": {"min": [0.0], "max": [15.466666666666667], "mean": [7.733333333333333], "std": [4.474454239428619], "count": [465]}, "frame_index": {"min": [0], "max": [464], "mean": [232.0], "std": [134.23362718285858], "count": [465]}, "episode_index": {"min": [34], "max": [34], "mean": [34.0], "std": [0.0], "count": [465]}, "index": {"min": [20813], "max": [21277], "mean": [21045.0], "std": [134.23362718285858], "count": [465]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [465]}}} +{"episode_index": 35, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5148792592592593]], [[0.4821824074074074]], [[0.4390673965141612]]], "std": [[[0.23552570278431884]], [[0.22539214911332378]], [[0.22666703593794416]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5267916530501089]], [[0.5040854765795207]], [[0.4636493600217865]]], "std": [[[0.23304882709953245]], [[0.2092035941255317]], [[0.22153947148974754]]], "count": [100]}, "observation.state": {"min": [0.42420199513435364, -0.14534956216812134, 0.12209495902061462, -0.9220066666603088, -0.823781430721283, 0.20881901681423187, -0.6399828791618347, -0.47405222058296204, 0.16174976527690887, 1.2338156700134277, -0.5061016082763672, 0.9184278249740601], "max": [0.57292640209198, -0.046390458941459656, 0.14497967064380646, -0.27951669692993164, 0.2861168384552002, 0.8851732015609741, -0.3906853199005127, -0.3723052442073822, 0.1954183131456375, 1.6144028902053833, 0.40321430563926697, 1.2601730823516846], "mean": [0.5023670196533203, -0.08205343037843704, 0.132637158036232, -0.5763607621192932, -0.24435196816921234, 0.5188620686531067, -0.5303376317024231, -0.421926885843277, 0.17898115515708923, 1.4342457056045532, -0.17039087414741516, 1.0779913663864136], "std": [0.04144261032342911, 0.03174620494246483, 0.005638617556542158, 0.15472902357578278, 0.3096933960914612, 0.17385564744472504, 0.07617183774709702, 0.024826789274811745, 0.011427030898630619, 0.131109818816185, 0.33341050148010254, 0.11987978219985962], "count": [459]}, "action": {"min": [-0.13041049242019653, -0.10811244696378708, 0.11226379871368408, -0.26867133378982544, -0.6705214977264404, -0.6701165437698364, -0.5435537695884705, 0.1044088751077652, -0.1394580751657486, 0.07299980521202087, -0.13415609300136566, -0.17688316106796265, -0.357124000787735, 0.9174612760543823], "max": [-0.10639084875583649, -0.08349147439002991, 0.13770854473114014, 0.2620528042316437, 0.7422146797180176, 0.7508144974708557, 0.4990294873714447, 0.14286412298679352, -0.11689818650484085, 0.08910379558801651, 0.0024722714442759752, -0.004977855831384659, 0.04991285130381584, 0.9987746477127075], "mean": [-0.1164010539650917, -0.09108367562294006, 0.12525424361228943, 0.06228148564696312, 0.022525247186422348, 0.11527974903583527, -0.06624558568000793, 0.12154490500688553, -0.12860094010829926, 0.08213073015213013, -0.06246582418680191, -0.10681606829166412, -0.109322190284729, 0.9717625379562378], "std": [0.00807485356926918, 0.005147028714418411, 0.006520229857414961, 0.1550643891096115, 0.6160414814949036, 0.6282348036766052, 0.4239155948162079, 0.012671819888055325, 0.007373776752501726, 0.0042043412104249, 0.04244057834148407, 0.04468895122408867, 0.1538110226392746, 0.03095744363963604], "count": [459]}, "timestamp": {"min": [0.0], "max": [15.266666666666667], "mean": [7.633333333333334], "std": [4.416719077257167], "count": [459]}, "frame_index": {"min": [0], "max": [458], "mean": [229.0], "std": [132.50157231771504], "count": [459]}, "episode_index": {"min": [35], "max": [35], "mean": [35.0], "std": [0.0], "count": [459]}, "index": {"min": [21278], "max": [21736], "mean": [21507.0], "std": [132.50157231771504], "count": [459]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [459]}}} +{"episode_index": 36, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5095501066245708]], [[0.47717238331302386]], [[0.4333185997562867]]], "std": [[[0.23032199605057327]], [[0.22034856132552935]], [[0.2216566753656724]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5227212506000517]], [[0.5000232127691001]], [[0.4587250955466933]]], "std": [[[0.22764694865626994]], [[0.204065604827732]], [[0.21653315486955824]]], "count": [118]}, "observation.state": {"min": [0.4396011233329773, -0.1339971423149109, 0.1240030974149704, -1.0480303764343262, -0.9004345536231995, -0.13495269417762756, -0.6171236038208008, -0.49919745326042175, 0.1622786670923233, 1.069838047027588, -0.48587939143180847, 0.7213346362113953], "max": [0.5607476234436035, -0.03149329870939255, 0.14462189376354218, -0.14091163873672485, 0.3578509986400604, 0.9026815295219421, -0.3858509063720703, -0.3901602029800415, 0.19440461695194244, 1.8173826932907104, 0.27013036608695984, 1.2530373334884644], "mean": [0.5071081519126892, -0.07369787245988846, 0.13329191505908966, -0.5391725301742554, -0.23060591518878937, 0.4570591449737549, -0.5346965193748474, -0.4284469783306122, 0.17941221594810486, 1.5292127132415771, -0.18687804043293, 0.9468880891799927], "std": [0.033767394721508026, 0.026748979464173317, 0.004975023213773966, 0.283225953578949, 0.32356464862823486, 0.27013343572616577, 0.07350161671638489, 0.03343948349356651, 0.01059753354638815, 0.25779613852500916, 0.27279600501060486, 0.15702615678310394], "count": [582]}, "action": {"min": [-0.12740643322467804, -0.1059119775891304, 0.11595003306865692, -0.20471228659152985, -0.6651372909545898, -0.6697092056274414, -0.5986475944519043, 0.10315582156181335, -0.13912901282310486, 0.07164948433637619, -0.12374985963106155, -0.26499229669570923, -0.34370821714401245, 0.9315384030342102], "max": [-0.10518290102481842, -0.08188071846961975, 0.1357201635837555, 0.28979477286338806, 0.7614936828613281, 0.856593132019043, 0.6163797974586487, 0.143899604678154, -0.1151503399014473, 0.09016741067171097, 0.08883767575025558, 0.001966403564438224, 0.08433491736650467, 0.9931812882423401], "mean": [-0.11483760923147202, -0.09003328531980515, 0.12601466476917267, 0.06631190329790115, 0.1550169587135315, 0.09585318714380264, 0.06105763092637062, 0.12105615437030792, -0.12928514182567596, 0.08167412877082825, -0.020891867578029633, -0.14227640628814697, -0.0672312006354332, 0.9682551026344299], "std": [0.006740680430084467, 0.004587842151522636, 0.004966342356055975, 0.1426301747560501, 0.5759890675544739, 0.6347061395645142, 0.45132896304130554, 0.012494229711592197, 0.006742437370121479, 0.005111080128699541, 0.05542842298746109, 0.07759512960910797, 0.16672158241271973, 0.019832618534564972], "count": [582]}, "timestamp": {"min": [0.0], "max": [19.366666666666667], "mean": [9.683333333333335], "std": [5.600289344376837], "count": [582]}, "frame_index": {"min": [0], "max": [581], "mean": [290.5], "std": [168.0086803313051], "count": [582]}, "episode_index": {"min": [36], "max": [36], "mean": [36.0], "std": [0.0], "count": [582]}, "index": {"min": [21737], "max": [22318], "mean": [22027.5], "std": [168.0086803313051], "count": [582]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [582]}}} +{"episode_index": 37, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5339730261228424]], [[0.5005471132897603]], [[0.4571565066197419]]], "std": [[[0.22757474240171038]], [[0.21902088600400477]], [[0.221799547530121]]], "count": [104]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5513631038419642]], [[0.5269562070554717]], [[0.48709086695575665]]], "std": [[[0.22445001535477718]], [[0.20174437384597343]], [[0.21593052219814335]]], "count": [104]}, "observation.state": {"min": [0.45872262120246887, -0.13796661794185638, 0.1274525374174118, -0.7789981365203857, -0.5061016082763672, 0.14182524383068085, -0.5914686918258667, -0.5161565542221069, 0.16738992929458618, 1.1706990003585815, -0.14756742119789124, 0.42279934883117676], "max": [0.5681305527687073, -0.01529872976243496, 0.14137078821659088, -0.1614612638950348, 0.20700429379940033, 0.8890374302864075, -0.25671908259391785, -0.416888564825058, 0.191202774643898, 1.6741645336151123, 0.4738553762435913, 1.08907151222229], "mean": [0.5024672746658325, -0.06082304194569588, 0.1324547380208969, -0.5195554494857788, -0.047682810574769974, 0.4422834515571594, -0.4365074336528778, -0.46726199984550476, 0.18018583953380585, 1.4203003644943237, 0.22410018742084503, 0.7257820963859558], "std": [0.03314086049795151, 0.04061220958828926, 0.0031947472598403692, 0.16370487213134766, 0.22912253439426422, 0.2245476245880127, 0.1250530481338501, 0.031419817358255386, 0.0056717307306826115, 0.19530874490737915, 0.21014614403247833, 0.20998303592205048], "count": [491]}, "action": {"min": [-0.12231936305761337, -0.0984572172164917, 0.1133059710264206, -0.3056536614894867, -0.6512409448623657, -0.645618736743927, -0.6215220093727112, 0.10689640045166016, -0.14268867671489716, 0.06953787803649902, -0.03965238109230995, -0.3325209319591522, -0.3719877302646637, 0.8916149735450745], "max": [-0.10812915861606598, -0.07925212383270264, 0.13658872246742249, 0.30166739225387573, 0.753014087677002, 0.77390456199646, 0.6514503359794617, 0.15836091339588165, -0.12309280037879944, 0.08528123795986176, 0.2798682153224945, -0.11669440567493439, -0.0425834059715271, 0.9742259979248047], "mean": [-0.11541380733251572, -0.08672408759593964, 0.1280231475830078, 0.05838409438729286, 0.016681862995028496, 0.15947380661964417, -0.09831976890563965, 0.1326899379491806, -0.1362491250038147, 0.08117779344320297, 0.12435618042945862, -0.21718908846378326, -0.21838656067848206, 0.9298322796821594], "std": [0.005038153845816851, 0.005650519859045744, 0.006855472456663847, 0.16694636642932892, 0.543933629989624, 0.6415672302246094, 0.47525903582572937, 0.018384044989943504, 0.004924981389194727, 0.0038738769944757223, 0.10617433488368988, 0.06193568930029869, 0.096046581864357, 0.02737330086529255], "count": [491]}, "timestamp": {"min": [0.0], "max": [16.333333333333332], "mean": [8.166666666666668], "std": [4.724639903973871], "count": [491]}, "frame_index": {"min": [0], "max": [490], "mean": [245.0], "std": [141.7391971192161], "count": [491]}, "episode_index": {"min": [37], "max": [37], "mean": [37.0], "std": [0.0], "count": [491]}, "index": {"min": [22319], "max": [22809], "mean": [22564.0], "std": [141.7391971192161], "count": [491]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [491]}}} +{"episode_index": 38, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5326301706117882]], [[0.4987938066743214]], [[0.4557819510687158]]], "std": [[[0.22999517581730078]], [[0.2213861243790878]], [[0.22353242176920948]]], "count": [148]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5524482607607608]], [[0.5274709341694636]], [[0.4879212116528293]]], "std": [[[0.224908071347357]], [[0.20268481761957027]], [[0.21582412963863984]]], "count": [148]}, "observation.state": {"min": [0.43214094638824463, -0.17438702285289764, 0.1252099573612213, -1.0358682870864868, -0.6639167666435242, -0.02034473977982998, -0.49933645129203796, -0.5311618447303772, 0.16037310659885406, 0.7500609159469604, 0.866275429725647, -0.03918122127652168], "max": [0.5530403256416321, -0.029091529548168182, 0.1453944742679596, -0.1870434284210205, 0.4622412919998169, 0.7427275776863098, -0.20370252430438995, -0.38809821009635925, 0.18970945477485657, 1.5816912651062012, 1.4170571565628052, 1.2393059730529785], "mean": [0.5073531270027161, -0.09062448143959045, 0.13358506560325623, -0.6966448426246643, 0.13376891613006592, 0.33863675594329834, -0.41945549845695496, -0.4650578796863556, 0.17982512712478638, 1.3368217945098877, 1.0643019676208496, 0.6118732690811157], "std": [0.03133324906229973, 0.03800038993358612, 0.004439526237547398, 0.24204109609127045, 0.2798917591571808, 0.19398543238639832, 0.08175221085548401, 0.036153100430965424, 0.0049139875918626785, 0.13546854257583618, 0.18015718460083008, 0.3030024766921997], "count": [786]}, "action": {"min": [-0.1269083470106125, -0.10380565375089645, 0.11458951234817505, -0.27247998118400574, -0.6120097041130066, -0.586624026298523, -0.5484378337860107, 0.11744869500398636, -0.1422962099313736, 0.0671498253941536, -0.056883879005908966, -0.5086531639099121, -0.6445912718772888, 0.6045693755149841], "max": [-0.1028704047203064, -0.08242551237344742, 0.13682232797145844, 0.4070764183998108, 0.7207839488983154, 0.8200197219848633, 0.5852996706962585, 0.16234470903873444, -0.11625970155000687, 0.08701806515455246, 0.27843019366264343, -0.3121606111526489, -0.4068034887313843, 0.7730087041854858], "mean": [-0.11319078505039215, -0.09020977467298508, 0.1254533976316452, 0.2295375019311905, -0.2959561049938202, 0.5802424550056458, -0.28911900520324707, 0.13133522868156433, -0.13137489557266235, 0.07961277663707733, 0.15274715423583984, -0.4299328327178955, -0.49171143770217896, 0.7278680205345154], "std": [0.0062976740300655365, 0.005155013408511877, 0.006149168126285076, 0.13289926946163177, 0.3761204183101654, 0.42012760043144226, 0.3222045302391052, 0.012228654697537422, 0.005580818746238947, 0.004820195492357016, 0.10312953591346741, 0.047849658876657486, 0.07837904989719391, 0.034438420087099075], "count": [786]}, "timestamp": {"min": [0.0], "max": [26.166666666666668], "mean": [13.083333333333334], "std": [7.563282405195561], "count": [786]}, "frame_index": {"min": [0], "max": [785], "mean": [392.5], "std": [226.8984721558668], "count": [786]}, "episode_index": {"min": [38], "max": [38], "mean": [38.0], "std": [0.0], "count": [786]}, "index": {"min": [22810], "max": [23595], "mean": [23202.5], "std": [226.8984721558668], "count": [786]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [786]}}} +{"episode_index": 39, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4292440927674225]], [[0.3989766736598617]], [[0.3568255181016165]]], "std": [[[0.2276685643759105]], [[0.21490575601782694]], [[0.21568717058411335]]], "count": [162]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4497385654536163]], [[0.431328665039404]], [[0.3924198455445278]]], "std": [[[0.2465691415832524]], [[0.21737027532274417]], [[0.2276485382078842]]], "count": [162]}, "observation.state": {"min": [0.43026435375213623, -0.18319867551326752, 0.12314754724502563, -1.1860063076019287, -0.601473867893219, -0.015180660411715508, -0.6260973811149597, -0.5176315903663635, 0.15931014716625214, 1.3751466274261475, -0.735650897026062, 0.6350776553153992], "max": [0.5370311141014099, -0.0033671099226921797, 0.14362764358520508, 0.19102753698825836, 0.46292445063591003, 0.8310804963111877, -0.3246019184589386, -0.39724966883659363, 0.19753515720367432, 1.7469269037246704, 0.22804631292819977, 1.0113779306411743], "mean": [0.4979451298713684, -0.0728481262922287, 0.1342371255159378, -0.5491693615913391, 0.031572505831718445, 0.3220531642436981, -0.5423627495765686, -0.44843241572380066, 0.1858309656381607, 1.6065573692321777, -0.4573459327220917, 0.763507068157196], "std": [0.02619001641869545, 0.05057208985090256, 0.005053285975009203, 0.3494483530521393, 0.257345587015152, 0.24895061552524567, 0.09110957384109497, 0.03706010431051254, 0.012165026739239693, 0.09015096724033356, 0.2986053228378296, 0.10158275067806244], "count": [890]}, "action": {"min": [-0.12661100924015045, -0.10354065150022507, 0.11286918073892593, -0.3974212408065796, -0.6457496881484985, -0.6464709043502808, -0.6175262331962585, 0.1029459536075592, -0.15182237327098846, 0.0746842697262764, -0.005947606172412634, -0.22888058423995972, -0.22966602444648743, 0.9602417349815369], "max": [-0.10678848624229431, -0.07967057824134827, 0.13853766024112701, 0.4209616780281067, 0.6572685837745667, 0.8001343607902527, 0.7088156938552856, 0.15428297221660614, -0.12212850898504257, 0.08875568956136703, 0.15046696364879608, -0.02703309990465641, 0.15134423971176147, 0.9912358522415161], "mean": [-0.11461933702230453, -0.08900709450244904, 0.12834319472312927, 0.1372489482164383, -0.3522455096244812, 0.5684104561805725, -0.3580282926559448, 0.11983856558799744, -0.13580240309238434, 0.0816248431801796, 0.060444582253694534, -0.10047921538352966, 0.06551941484212875, 0.982498824596405], "std": [0.005744505673646927, 0.005208516027778387, 0.007469938602298498, 0.18068036437034607, 0.3392375707626343, 0.38388603925704956, 0.3327387571334839, 0.015420017763972282, 0.007481306791305542, 0.004525832366198301, 0.028329333290457726, 0.04279126599431038, 0.11821435391902924, 0.006775551475584507], "count": [890]}, "timestamp": {"min": [0.0], "max": [29.633333333333333], "mean": [14.816666666666665], "std": [8.564023587076345], "count": [890]}, "frame_index": {"min": [0], "max": [889], "mean": [444.5], "std": [256.92070761229036], "count": [890]}, "episode_index": {"min": [39], "max": [39], "mean": [39.0], "std": [0.0], "count": [890]}, "index": {"min": [23596], "max": [24485], "mean": [24040.5], "std": [256.92070761229036], "count": [890]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [890]}}} +{"episode_index": 40, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43871512559272074]], [[0.4072086328976035]], [[0.36449941208509545]]], "std": [[[0.2283467161110872]], [[0.21556786156463034]], [[0.21754059865787603]]], "count": [170]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4647104414968602]], [[0.44319492182493914]], [[0.40450821639113166]]], "std": [[[0.24650962473946014]], [[0.21775885269959985]], [[0.22907664262328978]]], "count": [170]}, "observation.state": {"min": [0.4351605474948883, -0.18926873803138733, 0.12933732569217682, -1.7400071620941162, -0.4321812391281128, -0.269144743680954, -0.5317178964614868, -0.48840105533599854, 0.15409258008003235, 0.9935109615325928, 0.545452892780304, -0.5780215859413147], "max": [0.5376489162445068, -0.03248953819274902, 0.1459726244211197, -0.022646509110927582, 0.3812158405780792, 1.1228927373886108, -0.2481931895017624, -0.42029428482055664, 0.18700279295444489, 1.5699485540390015, 1.047592043876648, 0.7494856715202332], "mean": [0.49314358830451965, -0.11510055512189865, 0.1355246752500534, -0.7938026189804077, -0.02008732594549656, 0.6108542084693909, -0.42457765340805054, -0.4484314024448395, 0.17551571130752563, 1.3888992071151733, 0.7628104090690613, 0.2629084885120392], "std": [0.024486007168889046, 0.04652244597673416, 0.003462208667770028, 0.39064887166023254, 0.20625868439674377, 0.28272557258605957, 0.07047592848539352, 0.01465653721243143, 0.009790999814867973, 0.13276611268520355, 0.14560629427433014, 0.3586568832397461], "count": [946]}, "action": {"min": [-0.12462808191776276, -0.11092818528413773, 0.11488007754087448, -0.39675697684288025, -0.6691386103630066, -0.6714785695075989, -0.6077824831008911, 0.11284270137548447, -0.13730528950691223, 0.0703536868095398, -0.4994337558746338, -0.5803707242012024, -0.3870227336883545, -0.5761762261390686], "max": [-0.10593689233064651, -0.08309467136859894, 0.13649708032608032, 0.42205795645713806, 0.7820320129394531, 0.9726659059524536, 0.6477882266044617, 0.16183456778526306, -0.11693313717842102, 0.08673194795846939, 0.480819970369339, 0.5775589346885681, 0.3160881996154785, 0.8923951387405396], "mean": [-0.1156417727470398, -0.09653378278017044, 0.12547457218170166, 0.032385680824518204, 0.032044488936662674, 0.16129305958747864, 0.007850351743400097, 0.13221463561058044, -0.12859812378883362, 0.08062528073787689, 0.2848372757434845, -0.4338977634906769, -0.3004639744758606, 0.7647244334220886], "std": [0.004552608355879784, 0.0073875063098967075, 0.005359157454222441, 0.23303267359733582, 0.601800799369812, 0.6438040137290955, 0.3753599524497986, 0.012086452916264534, 0.0056384592317044735, 0.003907098434865475, 0.12966687977313995, 0.1243128702044487, 0.0629306361079216, 0.1388891041278839], "count": [946]}, "timestamp": {"min": [0.0], "max": [31.5], "mean": [15.75], "std": [9.102884158331358], "count": [946]}, "frame_index": {"min": [0], "max": [945], "mean": [472.5], "std": [273.08652474994074], "count": [946]}, "episode_index": {"min": [40], "max": [40], "mean": [40.0], "std": [0.0], "count": [946]}, "index": {"min": [24486], "max": [25431], "mean": [24958.5], "std": [273.08652474994074], "count": [946]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [946]}}} +{"episode_index": 41, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4557649105876504]], [[0.42393912210671]], [[0.38265426006345865]]], "std": [[[0.22889377058210325]], [[0.21621527270536722]], [[0.21817827000797804]]], "count": [149]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4837958558143616]], [[0.4621911435715225]], [[0.4247398287055314]]], "std": [[[0.24666685607745056]], [[0.21773722256000216]], [[0.22971680503590608]]], "count": [149]}, "observation.state": {"min": [0.44079041481018066, -0.17276525497436523, 0.12329921871423721, -0.9729613661766052, -1.0046881437301636, -0.20348361134529114, -0.504078209400177, -0.5220181345939636, 0.16278809309005737, 1.3329989910125732, 0.8340291976928711, -0.06254228949546814], "max": [0.5290921330451965, -0.03992652893066406, 0.14466208219528198, 0.6351508498191833, 0.3452804386615753, 0.7772414684295654, -0.20382608473300934, -0.42119014263153076, 0.19217239320278168, 1.626564860343933, 1.3011894226074219, 1.0409399271011353], "mean": [0.48787081241607666, -0.09482196718454361, 0.13272428512573242, -0.3146872818470001, -0.11783259361982346, 0.31725066900253296, -0.3892522156238556, -0.4775156080722809, 0.17521946132183075, 1.5011029243469238, 1.0124406814575195, 0.5696071982383728], "std": [0.025023896247148514, 0.03956343233585358, 0.004548249766230583, 0.39952903985977173, 0.3315059542655945, 0.21078184247016907, 0.07920802384614944, 0.025473250076174736, 0.008414219133555889, 0.06246161833405495, 0.1288803219795227, 0.26530271768569946], "count": [794]}, "action": {"min": [-0.125045508146286, -0.1030908152461052, 0.11123469471931458, -0.3431341052055359, -0.6400261521339417, -0.6420606970787048, -0.6435883045196533, 0.11343438923358917, -0.13812999427318573, 0.07034387439489365, -0.007800163701176643, -0.594305157661438, -0.5955482721328735, 0.6241454482078552], "max": [-0.1080281212925911, -0.0818488672375679, 0.13686338067054749, 0.33854150772094727, 0.7483198046684265, 0.7812017798423767, 0.6987599730491638, 0.16491596400737762, -0.12602561712265015, 0.08687365800142288, 0.39156457781791687, -0.31301334500312805, -0.30467167496681213, 0.7843952178955078], "mean": [-0.11732818931341171, -0.09267416596412659, 0.12515631318092346, 0.0900544822216034, -0.08176887035369873, 0.1928921341896057, -0.060356996953487396, 0.13697567582130432, -0.13077867031097412, 0.07672350108623505, 0.19211557507514954, -0.4686880111694336, -0.4047035574913025, 0.7440952062606812], "std": [0.004221281502395868, 0.004872819408774376, 0.006591863464564085, 0.1800491213798523, 0.5257365107536316, 0.5900930762290955, 0.5360291600227356, 0.013288510963320732, 0.003959353081882, 0.0037924882490187883, 0.10406514257192612, 0.07927369326353073, 0.08391722291707993, 0.042463518679142], "count": [794]}, "timestamp": {"min": [0.0], "max": [26.433333333333334], "mean": [13.216666666666669], "std": [7.6402625027620035], "count": [794]}, "frame_index": {"min": [0], "max": [793], "mean": [396.5], "std": [229.2078750828601], "count": [794]}, "episode_index": {"min": [41], "max": [41], "mean": [41.0], "std": [0.0], "count": [794]}, "index": {"min": [25432], "max": [26225], "mean": [25828.5], "std": [229.2078750828601], "count": [794]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [794]}}} +{"episode_index": 42, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43770413441184197]], [[0.40662783919714457]], [[0.36531092105873086]]], "std": [[[0.2294967934878892]], [[0.21637703721928536]], [[0.2175207910898597]]], "count": [141]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46566707806053864]], [[0.44536392713113615]], [[0.40774495704507174]]], "std": [[[0.2473201289664195]], [[0.21839779536171688]], [[0.22934932210498768]]], "count": [141]}, "observation.state": {"min": [0.4343342185020447, -0.17883533239364624, 0.12507513165473938, -1.0163671970367432, -0.9955335259437561, 0.19225287437438965, -0.5184038877487183, -0.5248523950576782, 0.15285074710845947, 0.8769233226776123, 0.8215952515602112, -0.20468902587890625], "max": [0.5648406744003296, -0.03499943017959595, 0.14276431500911713, 0.23107832670211792, 0.18637219071388245, 1.039222002029419, -0.21577316522598267, -0.37941786646842957, 0.19342072308063507, 1.6668254137039185, 1.2570557594299316, 1.3799408674240112], "mean": [0.5100501775741577, -0.09773813933134079, 0.13375458121299744, -0.4449041783809662, -0.15322470664978027, 0.5402583479881287, -0.4117022156715393, -0.46502551436424255, 0.17460690438747406, 1.390378475189209, 1.059592366218567, 0.627895712852478], "std": [0.03757038712501526, 0.044248066842556, 0.004321749322116375, 0.3415862023830414, 0.288371205329895, 0.24529218673706055, 0.08569580316543579, 0.039955317974090576, 0.012125718407332897, 0.17283126711845398, 0.1318848580121994, 0.4358106553554535], "count": [735]}, "action": {"min": [-0.12901292741298676, -0.10643050819635391, 0.1103057712316513, -0.3105737566947937, -0.6674244999885559, -0.6673919558525085, -0.6261666417121887, 0.11130806058645248, -0.13719706237316132, 0.06845554709434509, -0.11532596498727798, -0.5498920679092407, -0.5984084010124207, 0.5969021916389465], "max": [-0.10375253856182098, -0.08277926594018936, 0.13630545139312744, 0.33647698163986206, 0.7752323746681213, 0.8117467761039734, 0.6945613622665405, 0.1631484478712082, -0.10437653958797455, 0.08439040929079056, 0.3494802415370941, -0.2849622964859009, -0.36739543080329895, 0.7903650403022766], "mean": [-0.11401758342981339, -0.09304890781641006, 0.12405844777822495, 0.0021996237337589264, 0.16691921651363373, -0.04328066110610962, 0.08226191997528076, 0.13391295075416565, -0.1277579814195633, 0.0769122987985611, 0.1451275795698166, -0.44386476278305054, -0.46861982345581055, 0.7232858538627625], "std": [0.005865402985364199, 0.005795378237962723, 0.007469120901077986, 0.19850759208202362, 0.5883394479751587, 0.5905877947807312, 0.47869643568992615, 0.014393030665814877, 0.009924693964421749, 0.004439718089997768, 0.1535501927137375, 0.08668696135282516, 0.07429590076208115, 0.0506267249584198], "count": [735]}, "timestamp": {"min": [0.0], "max": [24.466666666666665], "mean": [12.233333333333333], "std": [7.0725342516484675], "count": [735]}, "frame_index": {"min": [0], "max": [734], "mean": [367.0], "std": [212.176027549454], "count": [735]}, "episode_index": {"min": [42], "max": [42], "mean": [42.0], "std": [0.0], "count": [735]}, "index": {"min": [26226], "max": [26960], "mean": [26593.0], "std": [212.176027549454], "count": [735]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [735]}}} +{"episode_index": 43, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44112853349673203]], [[0.40899105846042116]], [[0.367417996550472]]], "std": [[[0.231594053848515]], [[0.21850581746638562]], [[0.21960430453328633]]], "count": [120]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46867838825344954]], [[0.44677380628177193]], [[0.4089621164669571]]], "std": [[[0.24853351976765348]], [[0.2194083596516125]], [[0.22986322679377796]]], "count": [120]}, "observation.state": {"min": [0.44306862354278564, -0.17803987860679626, 0.1231669932603836, -0.8289043307304382, -0.7989135980606079, 0.14960138499736786, -0.5026417970657349, -0.5167744159698486, 0.14965668320655823, 0.5298864841461182, 0.5257772207260132, -0.3379816710948944], "max": [0.5614426732063293, -0.039725739508867264, 0.14326855540275574, -0.08723101764917374, 0.14838723838329315, 0.9746029376983643, -0.19152377545833588, -0.35607975721359253, 0.1902305632829666, 1.6494210958480835, 1.321001648902893, 1.3830084800720215], "mean": [0.5065008401870728, -0.09673328697681427, 0.13364459574222565, -0.4724934995174408, -0.3008277714252472, 0.5522768497467041, -0.4056824743747711, -0.42075031995773315, 0.1725960075855255, 1.4471319913864136, 0.8458687663078308, 0.9831899404525757], "std": [0.02748497948050499, 0.03746577352285385, 0.004842725582420826, 0.23497454822063446, 0.2589568793773651, 0.1980021595954895, 0.09456577152013779, 0.03729771077632904, 0.013582304120063782, 0.21712946891784668, 0.2358933985233307, 0.3742029070854187], "count": [592]}, "action": {"min": [-0.12501564621925354, -0.10717210918664932, 0.1112719476222992, -0.22062824666500092, -0.6644553542137146, -0.6650806665420532, -0.5734042525291443, 0.11780022084712982, -0.13991974294185638, 0.07567168772220612, -0.17649173736572266, -0.5068076848983765, -0.5776554942131042, 0.5785888433456421], "max": [-0.10612913221120834, -0.08029472827911377, 0.13500387966632843, 0.24561536312103271, 0.799646258354187, 0.7681974172592163, 0.5621001124382019, 0.1670389324426651, -0.10310904681682587, 0.09179563820362091, 0.3018801808357239, -0.2661938965320587, -0.3416038155555725, 0.8883619904518127], "mean": [-0.11541213095188141, -0.09402602910995483, 0.12392356991767883, 0.024247638881206512, 0.21454136073589325, -0.052528273314237595, 0.06919173896312714, 0.13476109504699707, -0.12383154034614563, 0.08247172832489014, -0.011052259244024754, -0.3440055549144745, -0.45066460967063904, 0.8046707510948181], "std": [0.004613298457115889, 0.00641150726005435, 0.006023250985890627, 0.13586871325969696, 0.607804536819458, 0.5933879613876343, 0.45369797945022583, 0.015651294961571693, 0.010789046064019203, 0.003980943933129311, 0.11954674124717712, 0.06875884532928467, 0.07823587954044342, 0.07619021087884903], "count": [592]}, "timestamp": {"min": [0.0], "max": [19.7], "mean": [9.85], "std": [5.696514528883235], "count": [592]}, "frame_index": {"min": [0], "max": [591], "mean": [295.5], "std": [170.89543586649702], "count": [592]}, "episode_index": {"min": [43], "max": [43], "mean": [43.0], "std": [0.0], "count": [592]}, "index": {"min": [26961], "max": [27552], "mean": [27256.5], "std": [170.89543586649702], "count": [592]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [592]}}} +{"episode_index": 44, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43387550820853277]], [[0.402106131954094]], [[0.3597607753074983]]], "std": [[[0.22889796708629598]], [[0.21550490866913047]], [[0.21615611180476405]]], "count": [127]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4619736589298887]], [[0.4411149409019951]], [[0.40214364074588715]]], "std": [[[0.24457805988873269]], [[0.21517842969906337]], [[0.2256792921223374]]], "count": [127]}, "observation.state": {"min": [0.45103076100349426, -0.16341303288936615, 0.12388773262500763, -0.8312109112739563, -0.9247558116912842, 0.01377703994512558, -0.49589985609054565, -0.4887717664241791, 0.14794817566871643, -0.08848915994167328, 0.550508439540863, -0.7891560196876526], "max": [0.5507621169090271, -0.024944430217146873, 0.1422652304172516, -0.08177907764911652, 0.11832720786333084, 0.9434903860092163, -0.1844651997089386, -0.38229843974113464, 0.1942918300628662, 1.7408459186553955, 1.4010707139968872, 1.3825052976608276], "mean": [0.5080316066741943, -0.08989656716585159, 0.13344937562942505, -0.39696767926216125, -0.34371089935302734, 0.5208346247673035, -0.405801922082901, -0.4346393346786499, 0.18077901005744934, 1.3439404964447021, 1.064176082611084, 0.7422881126403809], "std": [0.026188820600509644, 0.03618832677602768, 0.004765466786921024, 0.20545712113380432, 0.22599659860134125, 0.2344323992729187, 0.09854374825954437, 0.029897553846240044, 0.016478290781378746, 0.4337523877620697, 0.20902779698371887, 0.5242465138435364], "count": [639]}, "action": {"min": [-0.12562356889247894, -0.10712599009275436, 0.11226261407136917, -0.14713579416275024, -0.6642493009567261, -0.6657187342643738, -0.5959655046463013, 0.11359056085348129, -0.14033615589141846, 0.07494670152664185, -0.22721193730831146, -0.49359390139579773, -0.6039319634437561, -0.5992485284805298], "max": [-0.10501474887132645, -0.08172548562288284, 0.13443267345428467, 0.21544517576694489, 0.7879660725593567, 0.7457391619682312, 0.5921677947044373, 0.1681249588727951, -0.10438786447048187, 0.0898711085319519, 0.16162528097629547, 0.501281201839447, 0.6617693901062012, 0.8820827007293701], "mean": [-0.11527854204177856, -0.09322535991668701, 0.12414782494306564, 0.014805887825787067, 0.33564355969429016, -0.16078929603099823, 0.18433383107185364, 0.131816565990448, -0.12972696125507355, 0.08443446457386017, 0.009412234649062157, -0.3026508390903473, -0.34479424357414246, 0.5960278511047363], "std": [0.005613669753074646, 0.005668256897479296, 0.004819345660507679, 0.09163717180490494, 0.5486875176429749, 0.5567058324813843, 0.45597735047340393, 0.017623931169509888, 0.01091927569359541, 0.0040634553879499435, 0.12339919805526733, 0.3027135133743286, 0.37168073654174805, 0.4349386692047119], "count": [639]}, "timestamp": {"min": [0.0], "max": [21.266666666666666], "mean": [10.633333333333333], "std": [6.148772837518671], "count": [639]}, "frame_index": {"min": [0], "max": [638], "mean": [319.0], "std": [184.46318512556013], "count": [639]}, "episode_index": {"min": [44], "max": [44], "mean": [44.0], "std": [0.0], "count": [639]}, "index": {"min": [27553], "max": [28191], "mean": [27872.0], "std": [184.46318512556013], "count": [639]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [639]}}} +{"episode_index": 45, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4391241966230937]], [[0.40724072031590414]], [[0.3655777528140886]]], "std": [[[0.23219717344671378]], [[0.2188680367071453]], [[0.2195820867427903]]], "count": [120]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46799243827160497]], [[0.4465347040668119]], [[0.40851609477124184]]], "std": [[[0.2478344655344085]], [[0.21851702830187308]], [[0.2292380306259111]]], "count": [120]}, "observation.state": {"min": [0.4544210433959961, -0.13600504398345947, 0.1260460466146469, -0.8029028177261353, -0.6573582291603088, 0.2584330141544342, -0.4986105263233185, -0.5101328492164612, 0.1572127491235733, 0.1096678376197815, 0.9503068327903748, -0.7034726142883301], "max": [0.5489318370819092, -0.04820530116558075, 0.13846710324287415, -0.2063349038362503, 0.3950161337852478, 0.9617530703544617, -0.16143600642681122, -0.3852176368236542, 0.1939055472612381, 1.567012906074524, 1.3010528087615967, 1.3551256656646729], "mean": [0.5060943961143494, -0.09285248816013336, 0.13380278646945953, -0.5054888129234314, -0.09936738014221191, 0.5673268437385559, -0.38683974742889404, -0.4616517424583435, 0.17836831510066986, 1.0669924020767212, 1.1256569623947144, 0.3839114308357239], "std": [0.026542097330093384, 0.02568179741501808, 0.003114858642220497, 0.16646847128868103, 0.20661874115467072, 0.14407283067703247, 0.11069737374782562, 0.03252406045794487, 0.012482033111155033, 0.39618009328842163, 0.08453113585710526, 0.5986782908439636], "count": [594]}, "action": {"min": [-0.1229269951581955, -0.10172905772924423, 0.11937327682971954, -0.24493959546089172, -0.644427478313446, -0.6448259353637695, -0.5632156133651733, 0.11537100374698639, -0.14097049832344055, 0.07702670246362686, -0.3695295751094818, -0.5200299620628357, -0.6030465364456177, -0.6025346517562866], "max": [-0.1073988527059555, -0.08102409541606903, 0.1328822672367096, 0.3529026508331299, 0.7484151124954224, 0.7572952508926392, 0.559554398059845, 0.17020270228385925, -0.1105513796210289, 0.08870775252580643, 0.32232919335365295, 0.4535774290561676, 0.6382248401641846, 0.7553592324256897], "mean": [-0.11447812616825104, -0.09244173765182495, 0.12543025612831116, 0.05967950075864792, -0.10008817911148071, 0.2170019894838333, -0.12646684050559998, 0.13618260622024536, -0.12966306507587433, 0.08209118992090225, 0.11066005378961563, -0.34277820587158203, -0.4348752796649933, 0.5934070944786072], "std": [0.0046859257854521275, 0.004158546682447195, 0.004346380475908518, 0.1746983528137207, 0.5934122800827026, 0.5805553793907166, 0.4512593448162079, 0.017604809254407883, 0.00865314994007349, 0.002664298750460148, 0.2037687450647354, 0.24688902497291565, 0.320252925157547, 0.3520943820476532], "count": [594]}, "timestamp": {"min": [0.0], "max": [19.766666666666666], "mean": [9.883333333333333], "std": [5.715759565220305], "count": [594]}, "frame_index": {"min": [0], "max": [593], "mean": [296.5], "std": [171.47278695660916], "count": [594]}, "episode_index": {"min": [45], "max": [45], "mean": [45.0], "std": [0.0], "count": [594]}, "index": {"min": [28192], "max": [28785], "mean": [28488.5], "std": [171.47278695660916], "count": [594]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [594]}}} +{"episode_index": 46, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4505510733345326]], [[0.417699391377346]], [[0.37620793857808155]]], "std": [[[0.22972911946405244]], [[0.21725464319687135]], [[0.21838290871112087]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47914870780116325]], [[0.456761735224161]], [[0.41868469049189505]]], "std": [[[0.24733448281404394]], [[0.21806563297262285]], [[0.22907084124756208]]], "count": [109]}, "observation.state": {"min": [0.4307972192764282, -0.1548176258802414, 0.12422606348991394, -0.8209361433982849, -0.796454131603241, 0.37823057174682617, -0.4687235355377197, -0.47237640619277954, 0.15426239371299744, 0.5963581800460815, 0.9175140857696533, -0.2673893868923187], "max": [0.5579597353935242, -0.04129344969987869, 0.14309096336364746, -0.038582950830459595, 0.33434951305389404, 1.014543890953064, -0.2048068791627884, -0.3516700863838196, 0.19351406395435333, 2.1826627254486084, 1.3867238759994507, 1.381494402885437], "mean": [0.4979238212108612, -0.08437172323465347, 0.13219183683395386, -0.34243276715278625, -0.20494285225868225, 0.645612359046936, -0.36658892035484314, -0.4145292341709137, 0.17424921691417694, 1.3936266899108887, 1.2228012084960938, 0.6712496280670166], "std": [0.041052088141441345, 0.034656863659620285, 0.003949553705751896, 0.22575034201145172, 0.28789985179901123, 0.15595588088035583, 0.09608035534620285, 0.03498583659529686, 0.015033750794827938, 0.48090118169784546, 0.15246938169002533, 0.5538696646690369], "count": [524]}, "action": {"min": [-0.12872016429901123, -0.10738568007946014, 0.11148680746555328, -0.2901628911495209, -0.645557701587677, -0.644847571849823, -0.5880388021469116, 0.1178707405924797, -0.13634689152240753, 0.07907288521528244, -0.08517657220363617, -0.530342698097229, -0.6292157173156738, 0.6013757586479187], "max": [-0.1068914532661438, -0.08394575119018555, 0.1331724375486374, 0.3136046826839447, 0.7855504751205444, 0.7095536589622498, 0.636395275592804, 0.16630004346370697, -0.10249856859445572, 0.09016279876232147, 0.26390740275382996, -0.40467095375061035, -0.4469607174396515, 0.7517074346542358], "mean": [-0.11674317717552185, -0.09123242646455765, 0.1249498724937439, -0.020417502149939537, 0.3348698914051056, -0.16562935709953308, 0.23611366748809814, 0.13898897171020508, -0.12321719527244568, 0.08454576134681702, 0.11584043502807617, -0.4686872363090515, -0.5297195911407471, 0.6848810911178589], "std": [0.006944045424461365, 0.0051362053491175175, 0.006057113874703646, 0.17902496457099915, 0.5416393280029297, 0.5137056112289429, 0.4636227786540985, 0.017139144241809845, 0.011253807693719864, 0.0035259267315268517, 0.11205451190471649, 0.034564223140478134, 0.04625330865383148, 0.03683978691697121], "count": [524]}, "timestamp": {"min": [0.0], "max": [17.433333333333334], "mean": [8.716666666666665], "std": [5.042183169135281], "count": [524]}, "frame_index": {"min": [0], "max": [523], "mean": [261.5], "std": [151.26549507405844], "count": [524]}, "episode_index": {"min": [46], "max": [46], "mean": [46.0], "std": [0.0], "count": [524]}, "index": {"min": [28786], "max": [29309], "mean": [29047.5], "std": [151.26549507405844], "count": [524]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [524]}}} +{"episode_index": 47, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44079102287999067]], [[0.40888460462942094]], [[0.36643060772627484]]], "std": [[[0.22910848440251808]], [[0.2159494316518547]], [[0.2169883370650451]]], "count": [261]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46744036365078173]], [[0.44612081069124115]], [[0.40738444916067745]]], "std": [[[0.2441496229207316]], [[0.21515732792345163]], [[0.22613117453790046]]], "count": [261]}, "observation.state": {"min": [0.34963127970695496, -0.1848050057888031, 0.11591295897960663, -1.435537338256836, -0.6055729985237122, 0.16382774710655212, -0.5058621764183044, -0.4856826663017273, 0.1574305295944214, -1.494040846824646, 0.5966916084289551, -1.39504075050354], "max": [0.5719610452651978, -0.03896119073033333, 0.14387652277946472, -0.32439035177230835, 0.45513617992401123, 1.1899261474609375, -0.3679109811782837, -0.3712086081504822, 0.19846847653388977, 1.4946699142456055, 1.4423348903656006, 0.5780719518661499], "mean": [0.4882591664791107, -0.10239771753549576, 0.13145530223846436, -0.7320443987846375, 0.01568005047738552, 0.6465072631835938, -0.4375855624675751, -0.4402570426464081, 0.18304336071014404, 0.9011768102645874, 1.0573393106460571, -0.25450369715690613], "std": [0.045899875462055206, 0.03329774737358093, 0.005999746732413769, 0.2439696490764618, 0.25684285163879395, 0.22668719291687012, 0.023798871785402298, 0.02339133992791176, 0.007191412150859833, 0.4622277319431305, 0.15271387994289398, 0.43074777722358704], "count": [1669]}, "action": {"min": [-0.1456521451473236, -0.10561855137348175, 0.1116509884595871, -0.43708696961402893, -0.6518464088439941, -0.6549324989318848, -0.5465410947799683, 0.11664596199989319, -0.14447812736034393, 0.07671576738357544, -0.49263182282447815, -0.5798367261886597, -0.5621165037155151, -0.5850501656532288], "max": [-0.10411202907562256, -0.07991133630275726, 0.13571442663669586, 0.42053672671318054, 0.7756866216659546, 0.8401402235031128, 0.5428001880645752, 0.15728232264518738, -0.1080879271030426, 0.09649421274662018, 0.5314140319824219, 0.6522718071937561, 0.8207219839096069, 0.8545678853988647], "mean": [-0.11782568693161011, -0.09252280741930008, 0.1239929348230362, 0.04032937437295914, 0.0017287252703681588, 0.1723318099975586, -0.04784262180328369, 0.12821969389915466, -0.13000378012657166, 0.086610808968544, 0.1451409012079239, -0.22053037583827972, -0.1982002854347229, 0.35873761773109436], "std": [0.00904890801757574, 0.005171658471226692, 0.0055180205963552, 0.2623145580291748, 0.607353687286377, 0.6238370537757874, 0.3735279440879822, 0.0061960844323039055, 0.005289528984576464, 0.0058052982203662395, 0.3226160407066345, 0.4826308786869049, 0.3876769542694092, 0.5244209170341492], "count": [1669]}, "timestamp": {"min": [0.0], "max": [55.6], "mean": [27.799999999999997], "std": [16.059957105242287], "count": [1669]}, "frame_index": {"min": [0], "max": [1668], "mean": [834.0], "std": [481.7987131572686], "count": [1669]}, "episode_index": {"min": [47], "max": [47], "mean": [47.0], "std": [0.0], "count": [1669]}, "index": {"min": [29310], "max": [30978], "mean": [30144.0], "std": [481.7987131572686], "count": [1669]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1669]}}} +{"episode_index": 48, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4242138227643343]], [[0.3935141830794005]], [[0.3515240571330725]]], "std": [[[0.2281694174771056]], [[0.21485238916691085]], [[0.21541265460906078]]], "count": [299]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4496919178671097]], [[0.4307012299531481]], [[0.3919640750577451]]], "std": [[[0.2448830311491714]], [[0.21549049293469205]], [[0.2262350858675189]]], "count": [299]}, "observation.state": {"min": [0.4389137923717499, -0.17937591671943665, 0.11376240849494934, -1.609999418258667, -1.2494041919708252, 0.07979690283536911, -0.5993226766586304, -0.5168747901916504, 0.16170181334018707, 1.2084431648254395, -0.605163037776947, 0.4896651804447174], "max": [0.5790350437164307, -0.04235146939754486, 0.1499263048171997, 0.6819117069244385, 0.795497715473175, 1.2121199369430542, -0.3040671646595001, -0.3889554440975189, 0.19790847599506378, 2.1283528804779053, 0.5595264434814453, 1.0502289533615112], "mean": [0.5057728290557861, -0.10270479321479797, 0.13226409256458282, -0.6166189312934875, -0.0794914960861206, 0.5086503028869629, -0.5375814437866211, -0.44619879126548767, 0.18325644731521606, 1.7327762842178345, -0.18049199879169464, 0.7520073652267456], "std": [0.027716603130102158, 0.03179948031902313, 0.008529380895197392, 0.46994835138320923, 0.4947405457496643, 0.2352946698665619, 0.06626387685537338, 0.03219839558005333, 0.007386635988950729, 0.2638310194015503, 0.3311365842819214, 0.13074633479118347], "count": [2006]}, "action": {"min": [-0.1276605725288391, -0.1095702201128006, 0.10235774517059326, -0.5527994632720947, -0.6481235027313232, -0.6486691236495972, -0.5288121700286865, 0.10719803720712662, -0.14224779605865479, 0.06726878136396408, -0.05404428765177727, -0.4913949966430664, -0.3469465672969818, 0.8346279859542847], "max": [-0.10574238747358322, -0.07735056430101395, 0.13481327891349792, 0.6056503653526306, 0.8265305757522583, 0.8602442741394043, 0.6262891292572021, 0.15312950313091278, -0.11625435203313828, 0.09262600541114807, 0.25051021575927734, -0.0852247029542923, 0.24321837723255157, 0.9935352802276611], "mean": [-0.11456634104251862, -0.0924430564045906, 0.12204986065626144, 0.17352598905563354, 0.015710623934864998, 0.22805404663085938, 0.0199733879417181, 0.11960664391517639, -0.1337457299232483, 0.08107040822505951, 0.04844760149717331, -0.22901998460292816, 0.004862585570663214, 0.9495142698287964], "std": [0.005172537639737129, 0.007213328965008259, 0.007191414013504982, 0.2423570603132248, 0.5930485129356384, 0.5857131481170654, 0.404636949300766, 0.009990178979933262, 0.0053596412762999535, 0.005690416786819696, 0.055964145809412, 0.08194064348936081, 0.18167516589164734, 0.02746237814426422], "count": [2006]}, "timestamp": {"min": [0.0], "max": [66.83333333333333], "mean": [33.416666666666664], "std": [19.30274160147551], "count": [2006]}, "frame_index": {"min": [0], "max": [2005], "mean": [1002.5], "std": [579.0822480442653], "count": [2006]}, "episode_index": {"min": [48], "max": [48], "mean": [48.0], "std": [0.0], "count": [2006]}, "index": {"min": [30979], "max": [32984], "mean": [31981.5], "std": [579.0822480442653], "count": [2006]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [2006]}}} +{"episode_index": 49, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4483268171197626]], [[0.4157035556976414]], [[0.37370560804837233]]], "std": [[[0.2292990841426714]], [[0.21638588267250325]], [[0.2176304990249789]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4771017551545578]], [[0.4546265570237757]], [[0.4165560331217833]]], "std": [[[0.24589907652772267]], [[0.21682200401108664]], [[0.22793310292311744]]], "count": [138]}, "observation.state": {"min": [0.417035311460495, -0.1539372354745865, 0.12110459804534912, -1.3193690776824951, -0.8890936970710754, -0.08231102675199509, -0.557442307472229, -0.46578118205070496, 0.15669812262058258, 1.3975834846496582, -0.1821364462375641, 0.49732285737991333], "max": [0.5488855242729187, -0.034713681787252426, 0.14339949190616608, 0.14196008443832397, 0.357987642288208, 0.9520511627197266, -0.2927919626235962, -0.3992421329021454, 0.18982870876789093, 1.659486174583435, 0.7663941383361816, 1.1922060251235962], "mean": [0.4936421811580658, -0.08927381783723831, 0.13169428706169128, -0.5153743028640747, -0.06379935145378113, 0.5598019957542419, -0.4609473645687103, -0.43162477016448975, 0.17401286959648132, 1.565281629562378, 0.14627830684185028, 0.9415031671524048], "std": [0.03602781519293785, 0.03516517952084541, 0.004863901995122433, 0.35882285237312317, 0.35551318526268005, 0.20418067276477814, 0.08350814878940582, 0.01930021494626999, 0.011134142987430096, 0.08727053552865982, 0.25927022099494934, 0.1644284725189209], "count": [718]}, "action": {"min": [-0.12893779575824738, -0.10345496982336044, 0.11244616657495499, -0.39706897735595703, -0.6451197266578674, -0.6425439715385437, -0.5737269520759583, 0.1129336878657341, -0.1394675076007843, 0.07608383148908615, -0.10616235435009003, -0.42781707644462585, -0.3537570834159851, 0.8016825318336487], "max": [-0.10737019032239914, -0.08153297752141953, 0.1354091763496399, 0.38626548647880554, 0.7765408754348755, 0.887194812297821, 0.6255362629890442, 0.15605351328849792, -0.11498363316059113, 0.08727340400218964, 0.2226308137178421, -0.16202709078788757, -0.035986293107271194, 0.9778178930282593], "mean": [-0.11686702072620392, -0.09082410484552383, 0.12466568499803543, 0.10599447786808014, -0.058550626039505005, 0.22543035447597504, -0.06705930083990097, 0.13087821006774902, -0.12786400318145752, 0.081776924431324, 0.005488062743097544, -0.23271852731704712, -0.16911546885967255, 0.9459735751152039], "std": [0.006415956187993288, 0.004652684088796377, 0.006472735200077295, 0.22626212239265442, 0.5855123996734619, 0.5725678205490112, 0.4562544524669647, 0.013337072916328907, 0.007951811887323856, 0.002842778107151389, 0.07960356026887894, 0.05358392000198364, 0.10940000414848328, 0.0341961532831192], "count": [718]}, "timestamp": {"min": [0.0], "max": [23.9], "mean": [11.950000000000003], "std": [6.908951520390856], "count": [718]}, "frame_index": {"min": [0], "max": [717], "mean": [358.5], "std": [207.26854561172567], "count": [718]}, "episode_index": {"min": [49], "max": [49], "mean": [49.0], "std": [0.0], "count": [718]}, "index": {"min": [32985], "max": [33702], "mean": [33343.5], "std": [207.26854561172567], "count": [718]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [718]}}} +{"episode_index": 50, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40882965895760015]], [[0.39230193145634323]], [[0.360199537037037]]], "std": [[[0.21981432380873056]], [[0.21737441452985917]], [[0.22145585730424572]]], "count": [130]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41837311463046756]], [[0.4175357214680744]], [[0.3862633840288252]]], "std": [[[0.2195387773044407]], [[0.2025052689776498]], [[0.21691283208860826]]], "count": [130]}, "observation.state": {"min": [0.41310444474220276, -0.14521826803684235, 0.1245073601603508, -2.01763653755188, -0.46169471740722656, -0.3462839722633362, -0.6786119937896729, -0.4366510510444641, 0.1729639768600464, -0.2616930603981018, 0.3232819736003876, -0.8047659993171692], "max": [0.5503373742103577, -0.018140699714422226, 0.15274184942245483, -0.2547732889652252, 1.381941556930542, 1.1375106573104858, -0.4458179175853729, -0.3071485161781311, 0.19691811501979828, 1.057885766029358, 1.0387107133865356, 0.8641122579574585], "mean": [0.48949357867240906, -0.09733489900827408, 0.14232423901557922, -1.2514017820358276, 0.7848398685455322, 0.279009073972702, -0.5299590826034546, -0.39311373233795166, 0.18259623646736145, 0.6712169051170349, 0.6645530462265015, 0.48891812562942505], "std": [0.04053286463022232, 0.03167349472641945, 0.006813897285610437, 0.5548464059829712, 0.34878432750701904, 0.37446048855781555, 0.07317301630973816, 0.041286054998636246, 0.007571535650640726, 0.3503933846950531, 0.2068384289741516, 0.40657109022140503], "count": [659]}, "action": {"min": [-0.12538620829582214, -0.10583218187093735, 0.12081225216388702, -0.07770971953868866, -0.5226918458938599, 0.47601595520973206, -0.5481055974960327, 0.08467704057693481, -0.13469792902469635, 0.08198592066764832, -0.4112043082714081, -0.2618573009967804, -0.688221275806427, -0.685969889163971], "max": [-0.0964946448802948, -0.0812041237950325, 0.14221613109111786, 0.8093612194061279, -0.1019233763217926, 0.9543033242225647, 0.06691230833530426, 0.13449913263320923, -0.11606111377477646, 0.09486379474401474, 0.31224775314331055, 0.2728410065174103, 0.7754139304161072, 0.9029533863067627], "mean": [-0.10978485643863678, -0.0933745875954628, 0.12935638427734375, 0.5588280558586121, -0.29244107007980347, 0.6924185156822205, -0.21105170249938965, 0.11487539112567902, -0.12306874245405197, 0.08792952448129654, 0.07093807309865952, -0.13267695903778076, -0.4101007580757141, 0.6259098052978516], "std": [0.009911604225635529, 0.007278127130120993, 0.005745910108089447, 0.16208140552043915, 0.078935906291008, 0.11615407466888428, 0.17947186529636383, 0.014742161147296429, 0.005052007734775543, 0.004063619766384363, 0.16651438176631927, 0.12169081717729568, 0.432799369096756, 0.433090478181839], "count": [659]}, "timestamp": {"min": [0.0], "max": [21.933333333333334], "mean": [10.966666666666667], "std": [6.341223155757185], "count": [659]}, "frame_index": {"min": [0], "max": [658], "mean": [329.0], "std": [190.23669467271554], "count": [659]}, "episode_index": {"min": [50], "max": [50], "mean": [50.0], "std": [0.0], "count": [659]}, "index": {"min": [33703], "max": [34361], "mean": [34032.0], "std": [190.23669467271554], "count": [659]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [659]}}} +{"episode_index": 51, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4021003458605664]], [[0.38758552287581705]], [[0.3558364188453159]]], "std": [[[0.221076534592093]], [[0.21911987347669895]], [[0.22284773666698096]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40984315904139434]], [[0.41209690904139434]], [[0.3803302450980392]]], "std": [[[0.2200574700915806]], [[0.204106888031645]], [[0.21838162877963538]]], "count": [100]}, "observation.state": {"min": [0.42590099573135376, -0.19620375335216522, 0.12484180182218552, -1.9000005722045898, 0.45117372274398804, -0.7449309825897217, -0.617262601852417, -0.43674370646476746, 0.18234781920909882, -0.2264651358127594, 0.7383836507797241, -0.982228696346283], "max": [0.5484221577644348, -0.054344870150089264, 0.15216758847236633, -0.1432182341814041, 1.407902479171753, 1.2622557878494263, -0.4625917077064514, -0.2816635072231293, 0.20150698721408844, 0.9939303398132324, 1.3274235725402832, 0.4425218105316162], "mean": [0.49040570855140686, -0.11974391341209412, 0.14367076754570007, -1.1226965188980103, 0.9848967790603638, 0.3130210041999817, -0.5230779051780701, -0.3605884909629822, 0.19564120471477509, 0.6483307480812073, 1.0733671188354492, -0.022032542154192924], "std": [0.03218661993741989, 0.04341743141412735, 0.005190767347812653, 0.6396270394325256, 0.21706536412239075, 0.4085513651371002, 0.04741186648607254, 0.044442348182201385, 0.005046009086072445, 0.32353851199150085, 0.16834071278572083, 0.3439524173736572], "count": [390]}, "action": {"min": [-0.1240989938378334, -0.11080378293991089, 0.11530931293964386, -0.5215249061584473, -0.3799557387828827, -0.5905733704566956, -0.5876612663269043, 0.09124509245157242, -0.13487301766872406, 0.08816994726657867, -0.21864533424377441, -0.48622244596481323, -0.6089436411857605, -0.6063951849937439], "max": [-0.09753619879484177, -0.08427879959344864, 0.14234505593776703, 0.8104405999183655, 0.23723027110099792, 0.8902921080589294, 0.6152912378311157, 0.12289386987686157, -0.11462321877479553, 0.10528523474931717, 0.3515577018260956, 0.5446472764015198, 0.6611932516098022, 0.6921656727790833], "mean": [-0.10927306115627289, -0.09600252658128738, 0.12738172709941864, 0.47477930784225464, -0.20037809014320374, 0.4639691412448883, -0.10030154883861542, 0.1088588535785675, -0.12569545209407806, 0.09902820736169815, 0.10343413800001144, -0.18953724205493927, -0.2539392411708832, 0.34356364607810974], "std": [0.007734090089797974, 0.008650732226669788, 0.0074022323824465275, 0.4125997722148895, 0.18526911735534668, 0.4416691064834595, 0.3308630883693695, 0.009381480515003204, 0.007258825469762087, 0.004172866698354483, 0.18941447138786316, 0.4057154357433319, 0.533412516117096, 0.5346438884735107], "count": [390]}, "timestamp": {"min": [0.0], "max": [12.966666666666667], "mean": [6.483333333333333], "std": [3.752764413168077], "count": [390]}, "frame_index": {"min": [0], "max": [389], "mean": [194.5], "std": [112.5829323950423], "count": [390]}, "episode_index": {"min": [51], "max": [51], "mean": [51.0], "std": [0.0], "count": [390]}, "index": {"min": [34362], "max": [34751], "mean": [34556.5], "std": [112.5829323950423], "count": [390]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [390]}}} +{"episode_index": 52, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40799439814814814]], [[0.3928405555555555]], [[0.36133483387799564]]], "std": [[[0.22338054393358792]], [[0.22156227103439152]], [[0.2254022772266904]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4179098175381264]], [[0.4184845996732026]], [[0.38725196350762525]]], "std": [[[0.2216347508956651]], [[0.205992943913141]], [[0.22017116055638153]]], "count": [100]}, "observation.state": {"min": [0.4491618573665619, -0.1565706878900528, 0.1296912133693695, -2.0017001628875732, 0.10985574871301651, -0.4802130460739136, -0.611640453338623, -0.3942532539367676, 0.1847602128982544, 0.08052094280719757, 0.9932107329368591, -1.1864508390426636], "max": [0.49972259998321533, -0.0768025815486908, 0.15088686347007751, -0.4889969527721405, 1.3167659044265747, 0.6653040647506714, -0.42689722776412964, -0.2625420391559601, 0.2017545849084854, 1.1325353384017944, 1.3984745740890503, -0.03546315059065819], "mean": [0.47396090626716614, -0.12011948972940445, 0.14538928866386414, -1.3819849491119385, 0.9273644685745239, 0.15791594982147217, -0.5027711987495422, -0.34175363183021545, 0.1963621824979782, 0.8278841376304626, 1.1405712366104126, -0.45395272970199585], "std": [0.012682896107435226, 0.021730033680796623, 0.004960628226399422, 0.48253121972084045, 0.296932190656662, 0.2663767337799072, 0.0644744262099266, 0.04480382055044174, 0.00420870678499341, 0.17938923835754395, 0.10923246294260025, 0.17516382038593292], "count": [353]}, "action": {"min": [-0.11964539438486099, -0.10984951257705688, 0.12006918340921402, 0.2395232915878296, -0.3898434042930603, 0.5854476094245911, -0.4594361186027527, 0.0901457890868187, -0.1341782957315445, 0.09314922243356705, -0.4261336922645569, -0.6033543944358826, -0.4683825671672821, -0.6047855019569397], "max": [-0.10480250418186188, -0.08788740634918213, 0.1378864198923111, 0.7461203932762146, -0.06497822701931, 0.9480720162391663, 0.04617897421121597, 0.12628914415836334, -0.11114206165075302, 0.10637825727462769, 0.37651920318603516, 0.6672245860099792, 0.49969202280044556, 0.63292396068573], "mean": [-0.11041376739740372, -0.09869363903999329, 0.12943372130393982, 0.6073067784309387, -0.24977178871631622, 0.692589521408081, -0.2003096640110016, 0.11005689203739166, -0.12423952668905258, 0.10205089300870895, -0.2759104371070862, 0.49726274609565735, 0.3296227753162384, -0.4448212683200836], "std": [0.004063591361045837, 0.0072145359590649605, 0.0035315470304340124, 0.09441164135932922, 0.05582425370812416, 0.09369148313999176, 0.1678696572780609, 0.011544640175998211, 0.00775074353441596, 0.003142962232232094, 0.21771468222141266, 0.36493179202079773, 0.2508438527584076, 0.3557928800582886], "count": [353]}, "timestamp": {"min": [0.0], "max": [11.733333333333333], "mean": [5.866666666666667], "std": [3.396730454095199], "count": [353]}, "frame_index": {"min": [0], "max": [352], "mean": [176.0], "std": [101.90191362285597], "count": [353]}, "episode_index": {"min": [52], "max": [52], "mean": [52.0], "std": [0.0], "count": [353]}, "index": {"min": [34752], "max": [35104], "mean": [34928.0], "std": [101.90191362285597], "count": [353]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [353]}}} +{"episode_index": 53, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4050208850762527]], [[0.3907176334422658]], [[0.35869515522875817]]], "std": [[[0.22246360396223056]], [[0.22056924254159216]], [[0.22431291622921978]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4133764460784314]], [[0.4149934994553377]], [[0.38353890250544664]]], "std": [[[0.22057618970156642]], [[0.2049111450337998]], [[0.21883445992970488]]], "count": [100]}, "observation.state": {"min": [0.4315077066421509, -0.19540059566497803, 0.12744085490703583, -1.8976939916610718, -0.3247849643230438, -0.6060839891433716, -0.5953145623207092, -0.3880132734775543, 0.1880035251379013, -0.11637791991233826, 0.9695726037025452, -1.395787239074707], "max": [0.5559440851211548, -0.06752757728099823, 0.14699409902095795, -0.5831477046012878, 1.3033756017684937, 0.7824589610099792, -0.44717711210250854, -0.2736782133579254, 0.20458567142486572, 1.261704444885254, 1.400660753250122, 0.06166540086269379], "mean": [0.48887985944747925, -0.1330312341451645, 0.14054368436336517, -1.349449872970581, 0.7185811996459961, 0.04756598174571991, -0.5061941146850586, -0.343561053276062, 0.19926190376281738, 0.4666712284088135, 1.2221922874450684, -0.8462161421775818], "std": [0.039463434368371964, 0.04148386791348457, 0.005379457958042622, 0.41152164340019226, 0.4728967249393463, 0.3019941449165344, 0.046543292701244354, 0.03850623220205307, 0.003496849909424782, 0.2473471611738205, 0.13503111898899078, 0.29365119338035583], "count": [379]}, "action": {"min": [-0.1192890927195549, -0.11045553535223007, 0.10969365388154984, 0.06876938790082932, -0.41234275698661804, 0.5666999816894531, -0.4423276484012604, 0.09338229894638062, -0.13345806300640106, 0.09691183269023895, -0.4135209321975708, 0.6048189997673035, 0.3845877945423126, -0.612391471862793], "max": [-0.0997062474489212, -0.08626832067966461, 0.1381455361843109, 0.7265365123748779, -0.03569868579506874, 0.9800021648406982, 0.038156431168317795, 0.12106819450855255, -0.1139858067035675, 0.10840760171413422, -0.2194237858057022, 0.721001923084259, 0.5241355299949646, -0.4240456223487854], "mean": [-0.11126789450645447, -0.097913958132267, 0.12456240504980087, 0.513663649559021, -0.231044739484787, 0.7505064010620117, -0.2121262103319168, 0.1103721335530281, -0.1253504753112793, 0.10528673976659775, -0.34776240587234497, 0.6582168340682983, 0.43169525265693665, -0.502409815788269], "std": [0.006031133700162172, 0.007912053726613522, 0.007052629720419645, 0.1731186956167221, 0.05757782608270645, 0.1259397566318512, 0.15925884246826172, 0.008926650509238243, 0.006488954182714224, 0.0025337154511362314, 0.059479471296072006, 0.03295799717307091, 0.03215911611914635, 0.03711264580488205], "count": [379]}, "timestamp": {"min": [0.0], "max": [12.6], "mean": [6.3], "std": [3.6469165057620936], "count": [379]}, "frame_index": {"min": [0], "max": [378], "mean": [189.0], "std": [109.40749517286281], "count": [379]}, "episode_index": {"min": [53], "max": [53], "mean": [53.0], "std": [0.0], "count": [379]}, "index": {"min": [35105], "max": [35483], "mean": [35294.0], "std": [109.40749517286281], "count": [379]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [379]}}} +{"episode_index": 54, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40798980119825706]], [[0.39306531045751636]], [[0.36108782135076256]]], "std": [[[0.21976852185940807]], [[0.21728916732538178]], [[0.22146301106800076]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4150791230936819]], [[0.4159734776688453]], [[0.3851355664488017]]], "std": [[[0.22016967830085735]], [[0.20366395469944362]], [[0.21773097118724885]]], "count": [100]}, "observation.state": {"min": [0.4441884160041809, -0.17595474421977997, 0.12022311985492706, -2.457775831222534, -0.2908990979194641, -0.7371801733970642, -0.6709046959877014, -0.3978211283683777, 0.1748047173023224, 1.12582528591156, -0.3797128200531006, 0.26719972491264343], "max": [0.5169597268104553, -0.03292972967028618, 0.1493222415447235, -0.37429654598236084, 1.2405227422714233, 0.5898494124412537, -0.49206164479255676, -0.27828097343444824, 0.20092105865478516, 1.6462757587432861, 0.34883299469947815, 0.7442482113838196], "mean": [0.4839141070842743, -0.09569701552391052, 0.14095266163349152, -1.4044864177703857, 0.7855110764503479, -0.03854703903198242, -0.5916057825088501, -0.34552955627441406, 0.18961888551712036, 1.4700123071670532, -0.14075466990470886, 0.568077802658081], "std": [0.01782197691500187, 0.04906801879405975, 0.006530043203383684, 0.6806320548057556, 0.2507529854774475, 0.42490872740745544, 0.046836357563734055, 0.0355587899684906, 0.0060996622778475285, 0.15421773493289948, 0.21163637936115265, 0.14282046258449554], "count": [367]}, "action": {"min": [-0.1207197904586792, -0.10899776220321655, 0.11090827733278275, 0.02950304187834263, -0.4100932776927948, 0.596626877784729, -0.570248544216156, 0.08878117054700851, -0.1361909806728363, 0.08304668217897415, 0.06162429228425026, -0.347499281167984, -0.24866768717765808, 0.8780776858329773], "max": [-0.10218226909637451, -0.08062873035669327, 0.1429803967475891, 0.7716817855834961, 0.003380115609616041, 0.9854949116706848, 0.08984226733446121, 0.12325912714004517, -0.11308824270963669, 0.0969243124127388, 0.28508424758911133, -0.056895919144153595, 0.03453312814235687, 0.9853957295417786], "mean": [-0.11144623160362244, -0.09376505762338638, 0.12866811454296112, 0.5473160147666931, -0.215947225689888, 0.7182347774505615, -0.24714912474155426, 0.10508381575345993, -0.1251278966665268, 0.09302502870559692, 0.1500086784362793, -0.19035695493221283, -0.09204930812120438, 0.9544673562049866], "std": [0.005188336130231619, 0.008970450609922409, 0.0066474424675107, 0.1409696489572525, 0.11280666291713715, 0.08303339034318924, 0.19332872331142426, 0.009439975023269653, 0.0069105010479688644, 0.0032814473379403353, 0.06229965761303902, 0.08494912087917328, 0.09760785847902298, 0.03400641679763794], "count": [367]}, "timestamp": {"min": [0.0], "max": [12.2], "mean": [6.1], "std": [3.531446036839741], "count": [367]}, "frame_index": {"min": [0], "max": [366], "mean": [183.0], "std": [105.94338110519222], "count": [367]}, "episode_index": {"min": [54], "max": [54], "mean": [54.0], "std": [0.0], "count": [367]}, "index": {"min": [35484], "max": [35850], "mean": [35667.0], "std": [105.94338110519222], "count": [367]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [367]}}} +{"episode_index": 55, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3962861687024537]], [[0.3832711525411622]], [[0.351363483963713]]], "std": [[[0.2188382705686001]], [[0.21513057141616884]], [[0.21873092988402118]]], "count": [122]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39979874281224326]], [[0.40373257527054535]], [[0.37342059984285153]]], "std": [[[0.21993289904278446]], [[0.20224535071521743]], [[0.21529451477988248]]], "count": [122]}, "observation.state": {"min": [0.4406668543815613, -0.17726761102676392, 0.1255858689546585, -2.1415634155273438, 0.16328062117099762, -0.7081629037857056, -0.6832533478736877, -0.44780266284942627, 0.17232878506183624, 0.9429756999015808, -1.0030485391616821, 0.40216049551963806], "max": [0.5709339380264282, -0.0449385792016983, 0.15027759969234467, 0.037534501403570175, 0.9591882228851318, 1.4099115133285522, -0.5155465006828308, -0.3421788513660431, 0.20155364274978638, 1.80605947971344, 0.43641698360443115, 1.3584165573120117], "mean": [0.4971628785133362, -0.11461222171783447, 0.13991941511631012, -0.7523408532142639, 0.5992032885551453, 0.568249523639679, -0.5964595079421997, -0.39564642310142517, 0.1877114325761795, 1.415696382522583, -0.2289712131023407, 0.8437520265579224], "std": [0.028040239587426186, 0.03711281344294548, 0.005742450710386038, 0.630426824092865, 0.1799907237291336, 0.49009090662002563, 0.041435789316892624, 0.029517704620957375, 0.007551002781838179, 0.2668893039226532, 0.3066837191581726, 0.2176399528980255], "count": [611]}, "action": {"min": [-0.12015286087989807, -0.11007877439260483, 0.11666642874479294, -0.6165130138397217, -0.6155573129653931, -0.5921245217323303, -0.5851432085037231, 0.09333495050668716, -0.13762708008289337, 0.07700994610786438, -0.10013177245855331, -0.27148711681365967, -0.43896201252937317, 0.8264822363853455], "max": [-0.10429073125123978, -0.08223292231559753, 0.142721027135849, 0.647835910320282, 0.6728124618530273, 0.8619741201400757, 0.6417503356933594, 0.12729984521865845, -0.11571786552667618, 0.09073343127965927, 0.2511001229286194, 0.13692814111709595, 0.145597904920578, 0.9984451532363892], "mean": [-0.11110005527734756, -0.09466050565242767, 0.12793751060962677, 0.2714516222476959, -0.18632888793945312, 0.40249964594841003, -0.14221742749214172, 0.10799042135477066, -0.12953977286815643, 0.08531854301691055, 0.04390060529112816, -0.14207737147808075, -0.0860336422920227, 0.9613940119743347], "std": [0.005090395454317331, 0.008145480416715145, 0.006591149605810642, 0.4171910881996155, 0.37372085452079773, 0.4877616763114929, 0.3971607983112335, 0.009304625913500786, 0.006328096613287926, 0.0036655256990343332, 0.0896916538476944, 0.10271886736154556, 0.15836460888385773, 0.05031341686844826], "count": [611]}, "timestamp": {"min": [0.0], "max": [20.333333333333332], "mean": [10.166666666666666], "std": [5.879342366852493], "count": [611]}, "frame_index": {"min": [0], "max": [610], "mean": [305.0], "std": [176.38027100557477], "count": [611]}, "episode_index": {"min": [55], "max": [55], "mean": [55.0], "std": [0.0], "count": [611]}, "index": {"min": [35851], "max": [36461], "mean": [36156.0], "std": [176.38027100557477], "count": [611]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [611]}}} +{"episode_index": 56, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3773608430021449]], [[0.35942021752714864]], [[0.3249367283950617]]], "std": [[[0.20898615038409754]], [[0.20481134846695923]], [[0.20754432976831802]]], "count": [129]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38133640497542687]], [[0.380823048082282]], [[0.34726590287277703]]], "std": [[[0.20946603540235512]], [[0.19118863541244915]], [[0.2042965482467161]]], "count": [129]}, "observation.state": {"min": [0.42655742168426514, -0.16825518012046814, 0.12323181331157684, -1.9977160692214966, -0.07323715835809708, -0.6503201723098755, -0.6334648728370667, -0.4185026288032532, 0.1732024848461151, 0.7456574440002441, -0.44147253036499023, 0.03389846161007881], "max": [0.5407302975654602, -0.03171725943684578, 0.14894501864910126, 0.07003644108772278, 1.232871174812317, 1.4036449193954468, -0.47784408926963806, -0.31876352429389954, 0.193431094288826, 1.61838698387146, 1.0951415300369263, 0.9988895058631897], "mean": [0.4948192834854126, -0.11006683111190796, 0.13749559223651886, -0.9984648823738098, 0.5586168169975281, 0.41259631514549255, -0.551299512386322, -0.38199710845947266, 0.18467214703559875, 1.3029228448867798, 0.050651561468839645, 0.730758786201477], "std": [0.023260721936821938, 0.03465424105525017, 0.007252044044435024, 0.6758415699005127, 0.2953356206417084, 0.5219528079032898, 0.040388427674770355, 0.023046327754855156, 0.005204388406127691, 0.19897796213626862, 0.25786417722702026, 0.17722728848457336], "count": [656]}, "action": {"min": [-0.12543180584907532, -0.1102716401219368, 0.11628542840480804, -0.579179048538208, -0.5797378420829773, -0.6278819441795349, -0.6368749141693115, 0.09858296811580658, -0.13365353643894196, 0.08138887584209442, -0.025802023708820343, -0.46067288517951965, -0.5726426839828491, 0.6447112560272217], "max": [-0.10202662646770477, -0.07983344793319702, 0.1428120881319046, 0.7459969520568848, 0.6726726293563843, 0.9595280885696411, 0.6887750029563904, 0.12587106227874756, -0.1131693571805954, 0.09385710209608078, 0.2862778604030609, -0.024703552946448326, -0.03570186346769333, 0.9975757598876953], "mean": [-0.11234831064939499, -0.09331147372722626, 0.12644003331661224, 0.230830118060112, -0.09884069859981537, 0.4157159924507141, -0.029737384989857674, 0.1131972223520279, -0.12733902037143707, 0.08848578482866287, 0.10769638419151306, -0.1728174239397049, -0.21191057562828064, 0.9404723048210144], "std": [0.005726756528019905, 0.007275472395122051, 0.006481933873146772, 0.4284915328025818, 0.3695954382419586, 0.5519230961799622, 0.3720470666885376, 0.007007166277617216, 0.005794328637421131, 0.0028324094600975513, 0.06595714390277863, 0.09017401188611984, 0.11599113047122955, 0.05663035809993744], "count": [656]}, "timestamp": {"min": [0.0], "max": [21.833333333333332], "mean": [10.916666666666668], "std": [6.312355608909668], "count": [656]}, "frame_index": {"min": [0], "max": [655], "mean": [327.5], "std": [189.37066826729], "count": [656]}, "episode_index": {"min": [56], "max": [56], "mean": [56.0], "std": [0.0], "count": [656]}, "index": {"min": [36462], "max": [37117], "mean": [36789.5], "std": [189.37066826729], "count": [656]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [656]}}} +{"episode_index": 57, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3780440847795057]], [[0.3598582539816693]], [[0.32479131920967624]]], "std": [[[0.2090659618589107]], [[0.20506906739429082]], [[0.20806636122082428]]], "count": [116]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3840637747915258]], [[0.38244230805348955]], [[0.34845512405153634]]], "std": [[[0.20912229691657735]], [[0.19124055236017834]], [[0.20451790884341398]]], "count": [116]}, "observation.state": {"min": [0.4238390326499939, -0.17956125736236572, 0.12056922912597656, -2.0813822746276855, -0.4789109230041504, -0.6693326234817505, -0.6362218856811523, -0.4526834189891815, 0.17295101284980774, 1.0234966278076172, -0.00013663650315720588, 0.4301843047142029], "max": [0.5652422308921814, -0.02643490955233574, 0.1535157412290573, -0.09016668051481247, 0.9911611676216125, 1.3985373973846436, -0.436967670917511, -0.31176674365997314, 0.19276739656925201, 1.509557843208313, 0.8151733875274658, 1.0099869966506958], "mean": [0.5012477040290833, -0.11180464923381805, 0.14009392261505127, -1.0302903652191162, 0.5798962712287903, 0.46387240290641785, -0.5277647376060486, -0.3951724171638489, 0.1844785064458847, 1.2390472888946533, 0.31691068410873413, 0.6718185544013977], "std": [0.022908931598067284, 0.046116262674331665, 0.00849898625165224, 0.5490801930427551, 0.26989856362342834, 0.4819396734237671, 0.06306586414575577, 0.04317985102534294, 0.005324976984411478, 0.1311476081609726, 0.18480335175991058, 0.18955223262310028], "count": [567]}, "action": {"min": [-0.12446922808885574, -0.1142544150352478, 0.10635679215192795, -0.04347990080714226, -0.5786129832267761, 0.38605251908302307, -0.538428544998169, 0.09522563219070435, -0.13626451790332794, 0.07914914190769196, -0.009221154265105724, -0.3751523792743683, -0.4686669707298279, 0.7910624146461487], "max": [-0.1015147790312767, -0.07769659906625748, 0.14216946065425873, 0.6878188848495483, -0.06215589866042137, 0.9913322925567627, -0.0005208705551922321, 0.13126924633979797, -0.11669223010540009, 0.09315964579582214, 0.23631523549556732, -0.10573793202638626, -0.2018214762210846, 0.9649461507797241], "mean": [-0.10989736020565033, -0.09457934647798538, 0.12727436423301697, 0.4881683886051178, -0.3877515494823456, 0.6799241304397583, -0.2569989860057831, 0.1149943545460701, -0.1282268911600113, 0.0875040590763092, 0.14157164096832275, -0.22742511332035065, -0.3178301751613617, 0.9000284671783447], "std": [0.0056802863255143166, 0.010174675844609737, 0.00715959258377552, 0.14560849964618683, 0.11892690509557724, 0.13677290081977844, 0.17012745141983032, 0.011203867383301258, 0.006088550202548504, 0.004093570169061422, 0.07878241688013077, 0.07722815871238708, 0.05883217602968216, 0.03917878866195679], "count": [567]}, "timestamp": {"min": [0.0], "max": [18.866666666666667], "mean": [9.433333333333334], "std": [5.455951558381673], "count": [567]}, "frame_index": {"min": [0], "max": [566], "mean": [283.0], "std": [163.6785467514502], "count": [567]}, "episode_index": {"min": [57], "max": [57], "mean": [57.0], "std": [0.0], "count": [567]}, "index": {"min": [37118], "max": [37684], "mean": [37401.0], "std": [163.6785467514502], "count": [567]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [567]}}} +{"episode_index": 58, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4102697112281126]], [[0.3924618105987251]], [[0.36107049846687644]]], "std": [[[0.21732976960304312]], [[0.2140871419050232]], [[0.2182439872617274]]], "count": [108]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4139755860162995]], [[0.41237447551036877]], [[0.3816928709755507]]], "std": [[[0.2189788440140389]], [[0.20061468887106987]], [[0.2145315391982298]]], "count": [108]}, "observation.state": {"min": [0.43210235238075256, -0.18139155209064484, 0.12002868205308914, -1.5284299850463867, -1.2211203575134277, -0.7891406416893005, -0.6785270571708679, -0.4091426730155945, 0.1817191243171692, 1.2182985544204712, -0.6020204424858093, 0.5033042430877686], "max": [0.5064954161643982, -0.04306967929005623, 0.1478276252746582, 0.33298763632774353, 1.1350394487380981, 0.9829115271568298, -0.5026031732559204, -0.3186013400554657, 0.1987692266702652, 1.731829285621643, 0.15098333358764648, 0.9955073595046997], "mean": [0.4709937274456024, -0.125260591506958, 0.1398080289363861, -0.7860367894172668, 0.47069695591926575, 0.36833512783050537, -0.5895693302154541, -0.36589163541793823, 0.19128884375095367, 1.3862155675888062, -0.27831703424453735, 0.8468402624130249], "std": [0.017854128032922745, 0.04009836167097092, 0.006467005237936974, 0.376451700925827, 0.4998089671134949, 0.2688799500465393, 0.03397237882018089, 0.01860674098134041, 0.004091582261025906, 0.07245023548603058, 0.21410465240478516, 0.12731584906578064], "count": [520]}, "action": {"min": [-0.12957142293453217, -0.11241788417100906, 0.11083938181400299, -0.3998243808746338, -0.630534827709198, -0.5999133586883545, -0.6057591438293457, 0.09250633418560028, -0.13866198062896729, 0.08691917359828949, -0.028258191421628, -0.31033456325531006, -0.23653370141983032, 0.9113898873329163], "max": [-0.10570695251226425, -0.08454599231481552, 0.14334611594676971, 0.6812179088592529, 0.8215097784996033, 0.9416024088859558, 0.6125423908233643, 0.12163912504911423, -0.11957872658967972, 0.0982229933142662, 0.18934166431427002, -0.019983066245913506, 0.10652701556682587, 0.9995662569999695], "mean": [-0.11535787582397461, -0.0975441262125969, 0.1280430555343628, 0.33871304988861084, -0.19619841873645782, 0.5509700775146484, -0.24462512135505676, 0.10645844787359238, -0.12944884598255157, 0.09161925315856934, 0.04080278426408768, -0.10396753996610641, -0.08513084053993225, 0.9816978573799133], "std": [0.006090660113841295, 0.008377237245440483, 0.006851141806691885, 0.2422439008951187, 0.37971723079681396, 0.40601280331611633, 0.3400830924510956, 0.006232996471226215, 0.004872420337051153, 0.002069825539365411, 0.055773984640836716, 0.08028419315814972, 0.07961630821228027, 0.025541488081216812], "count": [520]}, "timestamp": {"min": [0.0], "max": [17.3], "mean": [8.65], "std": [5.003693080560042], "count": [520]}, "frame_index": {"min": [0], "max": [519], "mean": [259.5], "std": [150.11079241680127], "count": [520]}, "episode_index": {"min": [58], "max": [58], "mean": [58.0], "std": [0.0], "count": [520]}, "index": {"min": [37685], "max": [38204], "mean": [37944.5], "std": [150.11079241680127], "count": [520]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [520]}}} +{"episode_index": 59, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38910552240219765]], [[0.3698626063952151]], [[0.3352327670198514]]], "std": [[[0.20996582524219937]], [[0.20694740599092779]], [[0.21064140288981315]]], "count": [161]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39583069290518136]], [[0.3923764462306662]], [[0.359186846236079]]], "std": [[[0.21033286146898555]], [[0.19338018449926359]], [[0.2075287614519737]]], "count": [161]}, "observation.state": {"min": [0.41937530040740967, -0.1548948436975479, 0.1268743872642517, -1.4716039896011353, -0.4737187325954437, -0.7438517212867737, -0.5241341590881348, -0.4893818497657776, 0.18174633383750916, -0.1589449793100357, 0.38476836681365967, -1.0360918045043945], "max": [0.5326446294784546, -0.007722729817032814, 0.1475411355495453, -0.2484825849533081, 0.8828084468841553, 1.0778083801269531, -0.4308589994907379, -0.4145485758781433, 0.19941607117652893, 0.30572792887687683, 0.9154645204544067, -0.26412269473075867], "mean": [0.4791739284992218, -0.08172876387834549, 0.13831673562526703, -0.8715096116065979, 0.3905636966228485, 0.3096925616264343, -0.4757552146911621, -0.45442914962768555, 0.19068138301372528, 0.06421104818582535, 0.7515038847923279, -0.600777804851532], "std": [0.027479160577058792, 0.03761560097336769, 0.0046946266666054726, 0.2866106331348419, 0.3467787504196167, 0.4207793176174164, 0.02355349063873291, 0.015927905216813087, 0.0032446589320898056, 0.10242876410484314, 0.15844573080539703, 0.12597227096557617], "count": [877]}, "action": {"min": [-0.12536001205444336, -0.1030343696475029, 0.1176503375172615, -0.35045963525772095, -0.6165265440940857, -0.6114816665649414, -0.6077983379364014, 0.11264824122190475, -0.1430301070213318, 0.08297906816005707, -0.543201744556427, 0.12487281858921051, 0.627511203289032, -0.6192490458488464], "max": [-0.10511647909879684, -0.07958102971315384, 0.1415286362171173, 0.5838680863380432, 0.78355473279953, 0.9841367602348328, 0.6127991080284119, 0.1336553394794464, -0.13378457725048065, 0.09609583765268326, -0.33264002203941345, 0.3891196846961975, 0.7279995083808899, -0.39678701758384705], "mean": [-0.11430887877941132, -0.09096767008304596, 0.13128556311130524, 0.2343771606683731, -0.04649568721652031, 0.4478585422039032, -0.1976403146982193, 0.12359612435102463, -0.13785210251808167, 0.09032845497131348, -0.41378530859947205, 0.3100621700286865, 0.6699972748756409, -0.5225784182548523], "std": [0.003932490013539791, 0.007861767895519733, 0.005197957158088684, 0.28022751212120056, 0.43773889541625977, 0.5616931915283203, 0.34296396374702454, 0.005158770363777876, 0.002715116599574685, 0.0028294564690440893, 0.05757797881960869, 0.07212982326745987, 0.0219434704631567, 0.04073481261730194], "count": [877]}, "timestamp": {"min": [0.0], "max": [29.2], "mean": [14.600000000000001], "std": [8.438930948618761], "count": [877]}, "frame_index": {"min": [0], "max": [876], "mean": [438.0], "std": [253.16792845856287], "count": [877]}, "episode_index": {"min": [59], "max": [59], "mean": [59.0], "std": [0.0], "count": [877]}, "index": {"min": [38205], "max": [39081], "mean": [38643.0], "std": [253.16792845856287], "count": [877]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [877]}}} +{"episode_index": 60, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.380902710889424]], [[0.36233109018461185]], [[0.3278584045216527]]], "std": [[[0.20963340684843648]], [[0.20650699529459163]], [[0.21034757807672086]]], "count": [114]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3883645319726331]], [[0.38647935060963956]], [[0.3529838942399572]]], "std": [[[0.20981067430586267]], [[0.19271176828564074]], [[0.20711933216181386]]], "count": [114]}, "observation.state": {"min": [0.48053160309791565, -0.1908055543899536, 0.12230107188224792, -2.0140719413757324, -0.8293835520744324, -0.34782353043556213, -0.6014850735664368, -0.42400118708610535, 0.18011300265789032, -0.2889527380466461, -0.30702221393585205, -0.9521782994270325], "max": [0.570887565612793, -0.03396458178758621, 0.15171130001544952, -0.19606010615825653, 0.8635426759719849, 1.3921319246292114, -0.4348130226135254, -0.34398597478866577, 0.19303831458091736, 0.20570583641529083, 0.35675790905952454, -0.12402915209531784], "mean": [0.5113893747329712, -0.11512617021799088, 0.1381065994501114, -1.2042752504348755, 0.3872111737728119, 0.4375448524951935, -0.4957275390625, -0.39428815245628357, 0.1850665956735611, -0.09022067487239838, -0.06407338380813599, -0.44782555103302], "std": [0.02068598009645939, 0.041848260909318924, 0.006849481724202633, 0.4842844307422638, 0.4134292006492615, 0.5458948612213135, 0.04877742379903793, 0.0216484684497118, 0.003975206054747105, 0.1665668934583664, 0.1950714886188507, 0.282970130443573], "count": [555]}, "action": {"min": [-0.12456264346837997, -0.11135157942771912, 0.11046265065670013, -0.635361909866333, -0.6351887583732605, -0.6096552014350891, -0.5088329911231995, 0.1050572469830513, -0.138377845287323, 0.08613630384206772, -0.6379287838935852, -0.13756808638572693, -0.6373468041419983, -0.5042557120323181], "max": [-0.09868893027305603, -0.08290065824985504, 0.14131347835063934, 0.6402260661125183, 0.734268307685852, 0.975845992565155, 0.4382738471031189, 0.13155925273895264, -0.11925565451383591, 0.09730251878499985, 0.7937017679214478, 0.11722783744335175, 0.7745503783226013, 0.4084171950817108], "mean": [-0.10983859747648239, -0.09468473494052887, 0.12494711577892303, 0.23922628164291382, -0.20110082626342773, 0.5572302937507629, -0.11165890842676163, 0.12192650884389877, -0.13200493156909943, 0.09061487019062042, -0.12647917866706848, -0.05341571569442749, 0.3133734464645386, -0.2167205810546875], "std": [0.005388242658227682, 0.007899949327111244, 0.005775980185717344, 0.39246705174446106, 0.4016074538230896, 0.46407103538513184, 0.22062461078166962, 0.008455540984869003, 0.0052462974563241005, 0.0026708233635872602, 0.5938608646392822, 0.07152459025382996, 0.5779874920845032, 0.3796353042125702], "count": [555]}, "timestamp": {"min": [0.0], "max": [18.466666666666665], "mean": [9.233333333333333], "std": [5.340481321074042], "count": [555]}, "frame_index": {"min": [0], "max": [554], "mean": [277.0], "std": [160.21443963222126], "count": [555]}, "episode_index": {"min": [60], "max": [60], "mean": [60.0], "std": [0.0], "count": [555]}, "index": {"min": [39082], "max": [39636], "mean": [39359.0], "std": [160.21443963222126], "count": [555]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [555]}}} +{"episode_index": 61, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3803201952463084]], [[0.362830279063786]], [[0.3286426542453401]]], "std": [[[0.2112469543066109]], [[0.20755851356215238]], [[0.21094309633422834]]], "count": [144]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38514534729786976]], [[0.38493355687182285]], [[0.35181629939784553]]], "std": [[[0.21293153006244356]], [[0.19501630994539876]], [[0.20876605019251568]]], "count": [144]}, "observation.state": {"min": [0.43021029233932495, -0.18712182343006134, 0.11372093111276627, -2.0509772300720215, -0.29554474353790283, -0.7348253130912781, -0.6356427073478699, -0.4665611684322357, 0.1712295413017273, -0.03732480853796005, 0.15549233555793762, 0.1834065169095993], "max": [0.564045250415802, -0.059665828943252563, 0.14635244011878967, 0.26567715406417847, 0.8333460092544556, 1.1252036094665527, -0.5071055293083191, -0.3458780348300934, 0.1922786980867386, 0.3302616477012634, 0.6458807587623596, 0.4495738744735718], "mean": [0.49727410078048706, -0.12834835052490234, 0.13698460161685944, -0.8285531401634216, 0.4424264132976532, 0.46264785528182983, -0.5585784316062927, -0.42531853914260864, 0.18624095618724823, 0.10094613581895828, 0.49266180396080017, 0.2775907814502716], "std": [0.03214392066001892, 0.02309943176805973, 0.007130312267690897, 0.5899152159690857, 0.2747458517551422, 0.4859931766986847, 0.03253444656729698, 0.029355540871620178, 0.004590019583702087, 0.09144831448793411, 0.15795394778251648, 0.07617068290710449], "count": [760]}, "action": {"min": [-0.12774379551410675, -0.10605564713478088, 0.10740936547517776, -0.457398384809494, -0.605059802532196, -0.6081303358078003, -0.6220188736915588, 0.10113626718521118, -0.13872657716274261, 0.07633163034915924, -0.25459614396095276, -0.025916699320077896, -0.6819068193435669, -0.6832490563392639], "max": [-0.10089745372533798, -0.08437983691692352, 0.14048387110233307, 0.6007368564605713, 0.7274966239929199, 0.9933763146400452, 0.7253782749176025, 0.12620185315608978, -0.1149623692035675, 0.09159277379512787, 0.3577606976032257, 0.16814279556274414, 0.7467705607414246, 0.7449142336845398], "mean": [-0.11262919008731842, -0.09624345600605011, 0.1244988813996315, 0.06280055642127991, 0.07931669801473618, 0.20571176707744598, 0.03262714296579361, 0.1125594973564148, -0.12993578612804413, 0.08550959080457687, -0.04686937853693962, 0.03581715002655983, 0.24757742881774902, -0.15009252727031708], "std": [0.006097182631492615, 0.00507401954382658, 0.006744243670254946, 0.41437599062919617, 0.45913928747177124, 0.6235578060150146, 0.4183807969093323, 0.006459585390985012, 0.005416008643805981, 0.0031304804142564535, 0.25730156898498535, 0.05617525801062584, 0.6449950933456421, 0.6536967754364014], "count": [760]}, "timestamp": {"min": [0.0], "max": [25.3], "mean": [12.65], "std": [7.313097079137464], "count": [760]}, "frame_index": {"min": [0], "max": [759], "mean": [379.5], "std": [219.39291237412388], "count": [760]}, "episode_index": {"min": [61], "max": [61], "mean": [61.0], "std": [0.0], "count": [760]}, "index": {"min": [39637], "max": [40396], "mean": [40016.5], "std": [219.39291237412388], "count": [760]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [760]}}} +{"episode_index": 62, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38762683551198257]], [[0.3682839133986928]], [[0.3334625980392157]]], "std": [[[0.2109379438589263]], [[0.20725330512686535]], [[0.21081024432389703]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39491626089324616]], [[0.3919253839869281]], [[0.35855937636165575]]], "std": [[[0.21104141108580798]], [[0.19319755635379338]], [[0.20739643415511302]]], "count": [100]}, "observation.state": {"min": [0.4481733739376068, -0.1571730673313141, 0.11900979280471802, -1.7530078887939453, -0.29021593928337097, -0.3880158066749573, -0.5595428943634033, -0.4265960454940796, 0.16915935277938843, 3.36531400680542, -0.6453341841697693, -0.7569677233695984], "max": [0.5495496988296509, -0.024674130603671074, 0.1500663161277771, -0.28224265575408936, 1.0078308582305908, 1.320490837097168, -0.47380509972572327, -0.3291119933128357, 0.1877092719078064, 3.84613299369812, -0.08416807651519775, -0.17869092524051666], "mean": [0.5058513283729553, -0.109452985227108, 0.1370888501405716, -1.140156626701355, 0.5100862383842468, 0.3599640727043152, -0.5245385766029358, -0.396627813577652, 0.18071052432060242, 3.639967203140259, -0.3007107079029083, -0.5409786105155945], "std": [0.02725541964173317, 0.03267570585012436, 0.006090028677135706, 0.4285958409309387, 0.35137492418289185, 0.43521299958229065, 0.02507392317056656, 0.029444361105561256, 0.0043878741562366486, 0.14840540289878845, 0.17933708429336548, 0.19316960871219635], "count": [433]}, "action": {"min": [-0.12564995884895325, -0.10259540379047394, 0.11479402333498001, 0.10007955878973007, -0.5941401720046997, 0.42556604743003845, -0.5003626346588135, 0.1111413985490799, -0.13107556104660034, 0.08113144338130951, -0.11732593923807144, -0.28627797961235046, 0.6666635870933533, 0.42322078347206116], "max": [-0.09814999997615814, -0.07940075546503067, 0.13832688331604004, 0.6730282306671143, -0.12699753046035767, 0.9702053070068359, 0.043243587017059326, 0.12787309288978577, -0.11259253323078156, 0.09584680199623108, 0.090207539498806, -0.17022299766540527, 0.8862808346748352, 0.7031430006027222], "mean": [-0.11056224256753922, -0.09235366433858871, 0.12534546852111816, 0.44254836440086365, -0.35752370953559875, 0.7283115983009338, -0.21774433553218842, 0.11841579526662827, -0.12554147839546204, 0.08775169402360916, 0.024793487042188644, -0.2055729776620865, 0.8112698793411255, 0.528846263885498], "std": [0.007308989763259888, 0.006165908183902502, 0.005485253408551216, 0.1693154275417328, 0.1133175939321518, 0.1545647531747818, 0.18187585473060608, 0.00483647221699357, 0.005826214328408241, 0.004000379703938961, 0.06507019698619843, 0.03497215360403061, 0.07079774141311646, 0.09390617161989212], "count": [433]}, "timestamp": {"min": [0.0], "max": [14.4], "mean": [7.200000000000001], "std": [4.166533331199932], "count": [433]}, "frame_index": {"min": [0], "max": [432], "mean": [216.0], "std": [124.99599993599796], "count": [433]}, "episode_index": {"min": [62], "max": [62], "mean": [62.0], "std": [0.0], "count": [433]}, "index": {"min": [40397], "max": [40829], "mean": [40613.0], "std": [124.99599993599796], "count": [433]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [433]}}} +{"episode_index": 63, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3897401485575588]], [[0.37081849402699185]], [[0.33607544486847685]]], "std": [[[0.21123636049404232]], [[0.2083763508910906]], [[0.21214441861354963]]], "count": [149]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3976707991548596]], [[0.39456981364507027]], [[0.3614520185404512]]], "std": [[[0.21105493378128917]], [[0.19418526134305297]], [[0.20844028576123633]]], "count": [149]}, "observation.state": {"min": [0.44886839389801025, -0.18283569812774658, 0.11504963040351868, -2.2260684967041016, -0.642464816570282, -0.7649890780448914, -0.594102144241333, -0.44860583543777466, 0.17018084228038788, 2.9509665966033936, -0.8396313190460205, 0.09782151132822037], "max": [0.5493797659873962, -0.04804312065243721, 0.14798186719417572, 0.5716148018836975, 0.7613385915756226, 1.2406927347183228, -0.43189382553100586, -0.2868609130382538, 0.19244073331356049, 3.8457136154174805, -0.31877294182777405, 0.9826707243919373], "mean": [0.4886637330055237, -0.14011770486831665, 0.13700509071350098, -0.7528548836708069, 0.35472097992897034, 0.3985360860824585, -0.49707043170928955, -0.4039677381515503, 0.1830490678548813, 3.5604496002197266, -0.5320432782173157, 0.33673208951950073], "std": [0.02057527005672455, 0.03348332643508911, 0.008317703381180763, 0.5694581866264343, 0.23586106300354004, 0.46302172541618347, 0.047889117151498795, 0.046174731105566025, 0.005210029426962137, 0.1780209094285965, 0.12306884676218033, 0.19363699853420258], "count": [790]}, "action": {"min": [-0.12981539964675903, -0.10903231799602509, 0.10955105721950531, -0.5101545453071594, -0.6208050847053528, -0.6591991186141968, -0.6658614277839661, 0.1003303974866867, -0.13387158513069153, 0.0812559649348259, -0.4994448125362396, -0.5726659893989563, 0.40408051013946533, 0.4214516878128052], "max": [-0.10700294375419617, -0.08313190191984177, 0.14066417515277863, 0.4492001235485077, 0.7461861371994019, 0.9962781071662903, 0.8081821203231812, 0.13259516656398773, -0.10875558108091354, 0.1016479879617691, -0.10174401104450226, -0.3292374312877655, 0.6993691921234131, 0.7153772115707397], "mean": [-0.11455326527357101, -0.09847910702228546, 0.12459801882505417, 0.09189894795417786, -0.021705569699406624, 0.28984832763671875, -0.016981633380055428, 0.12077359855175018, -0.12710067629814148, 0.09032871574163437, -0.25788772106170654, -0.45721110701560974, 0.6308643817901611, 0.5551442503929138], "std": [0.005160033702850342, 0.007243794854730368, 0.007620044518262148, 0.3487648069858551, 0.44129499793052673, 0.6291468739509583, 0.44111138582229614, 0.009645781479775906, 0.006740674842149019, 0.0049836705438792706, 0.09192943572998047, 0.05327027291059494, 0.0656081885099411, 0.05181699991226196], "count": [790]}, "timestamp": {"min": [0.0], "max": [26.3], "mean": [13.15], "std": [7.601772454134919], "count": [790]}, "frame_index": {"min": [0], "max": [789], "mean": [394.5], "std": [228.0531736240476], "count": [790]}, "episode_index": {"min": [63], "max": [63], "mean": [63.0], "std": [0.0], "count": [790]}, "index": {"min": [40830], "max": [41619], "mean": [41224.5], "std": [228.0531736240476], "count": [790]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [790]}}} +{"episode_index": 64, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3831898049118637]], [[0.36456268568033273]], [[0.33026978857199446]]], "std": [[[0.21312767449629572]], [[0.2098365406949118]], [[0.21310380627137998]]], "count": [110]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38970284709843533]], [[0.387582573281838]], [[0.35445898940384235]]], "std": [[[0.21292664108106998]], [[0.19579380640842922]], [[0.20968951978573303]]], "count": [110]}, "observation.state": {"min": [0.44838187098503113, -0.17673474550247192, 0.12140922993421555, -2.1931471824645996, -0.3113945722579956, -0.4787377715110779, -0.6141425967216492, -0.4282873272895813, 0.18519316613674164, 2.5454261302948, -1.132033348083496, -0.16964943706989288], "max": [0.5598132014274597, -0.029446780681610107, 0.14559152722358704, 0.43489694595336914, 0.8616297841072083, 1.4039280414581299, -0.48680245876312256, -0.25591591000556946, 0.20205272734165192, 3.727238655090332, -0.5503718256950378, 1.3879448175430298], "mean": [0.4945452809333801, -0.11430687457323074, 0.135370671749115, -0.7507988214492798, 0.27644845843315125, 0.6179367303848267, -0.5326204299926758, -0.36424747109413147, 0.19327113032341003, 3.3640410900115967, -0.8047399520874023, 0.3555045425891876], "std": [0.026179002597928047, 0.04387606307864189, 0.005684829317033291, 0.8305466771125793, 0.2456904500722885, 0.5412881970405579, 0.03588167950510979, 0.04776381328701973, 0.005731293931603432, 0.39322009682655334, 0.13193349540233612, 0.5143095254898071], "count": [532]}, "action": {"min": [-0.12538474798202515, -0.10548137128353119, 0.1117776557803154, -0.5838560461997986, -0.6346538066864014, -0.6387595534324646, -0.5906434655189514, 0.09797150641679764, -0.1382780820131302, 0.09080735594034195, -0.5667091012001038, -0.4586835503578186, 0.23153774440288544, 0.5916902422904968], "max": [-0.1040017232298851, -0.08323841542005539, 0.14085662364959717, 0.5595303773880005, 0.8129151463508606, 0.9807065725326538, 0.7719704508781433, 0.11939365416765213, -0.1036008670926094, 0.10573434829711914, -0.2187112718820572, -0.21618027985095978, 0.7221404910087585, 0.7480025887489319], "mean": [-0.11442504078149796, -0.09457562863826752, 0.12533724308013916, 0.007634169887751341, 0.1173476055264473, 0.2060239166021347, 0.21150729060173035, 0.1106099858880043, -0.1264193207025528, 0.09882648289203644, -0.35018154978752136, -0.3034078776836395, 0.5692037343978882, 0.6491439342498779], "std": [0.005305059719830751, 0.006381736136972904, 0.0077650719322264194, 0.39935997128486633, 0.47533389925956726, 0.5882682204246521, 0.409267783164978, 0.006925052031874657, 0.010487658903002739, 0.003754163859412074, 0.09518852084875107, 0.07345505058765411, 0.1505955308675766, 0.05292056128382683], "count": [532]}, "timestamp": {"min": [0.0], "max": [17.7], "mean": [8.850000000000001], "std": [5.119163343099469], "count": [532]}, "frame_index": {"min": [0], "max": [531], "mean": [265.5], "std": [153.57490029298407], "count": [532]}, "episode_index": {"min": [64], "max": [64], "mean": [64.0], "std": [0.0], "count": [532]}, "index": {"min": [41620], "max": [42151], "mean": [41885.5], "std": [153.57490029298407], "count": [532]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [532]}}} +{"episode_index": 65, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3800039297385621]], [[0.3619096623093682]], [[0.3264562227668845]]], "std": [[[0.20927379520845613]], [[0.20535176558262372]], [[0.20879164421482024]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38581622276688454]], [[0.3837186465141612]], [[0.3503143246187364]]], "std": [[[0.21019640126322256]], [[0.1925634383845892]], [[0.2060646956498552]]], "count": [100]}, "observation.state": {"min": [0.43297502398490906, -0.1612892746925354, 0.1290767788887024, -1.8542882204055786, 0.3620867133140564, -0.288962185382843, -0.656053900718689, -0.4901232421398163, 0.17818932235240936, 2.753019332885742, -0.821458637714386, 0.07038868218660355], "max": [0.5233155488967896, -0.06640005856752396, 0.15110981464385986, -0.5307252407073975, 1.15594482421875, 0.967197060585022, -0.5124651193618774, -0.2671988308429718, 0.1968909054994583, 3.2965354919433594, -0.5476390719413757, 0.6901945471763611], "mean": [0.4793189465999603, -0.12489069253206253, 0.14009055495262146, -1.1992464065551758, 0.8103951215744019, 0.2832597494125366, -0.5716873407363892, -0.39673930406570435, 0.1888132095336914, 3.095407485961914, -0.6479634046554565, 0.3023942708969116], "std": [0.024229876697063446, 0.01864464581012726, 0.004447438754141331, 0.41148489713668823, 0.19850800931453705, 0.3750133216381073, 0.045119043439626694, 0.07687714695930481, 0.004837148357182741, 0.15972428023815155, 0.06912776082754135, 0.1803542673587799], "count": [439]}, "action": {"min": [-0.11831381171941757, -0.10173667222261429, 0.11850810796022415, 0.30579128861427307, -0.5113880634307861, 0.5225461721420288, -0.44148361682891846, 0.09229219704866409, -0.14382238686084747, 0.0803757980465889, -0.2950250804424286, -0.40373513102531433, 0.417934775352478, 0.6895697116851807], "max": [-0.10315676778554916, -0.08612911403179169, 0.13510443270206451, 0.701356828212738, -0.13946770131587982, 0.8563376069068909, -0.05925371125340462, 0.12090785056352615, -0.10661302506923676, 0.09892871975898743, -0.09719822555780411, -0.2750890552997589, 0.6070638298988342, 0.8071695566177368], "mean": [-0.11209838092327118, -0.09614934027194977, 0.1263173371553421, 0.5571168661117554, -0.3029647469520569, 0.7044407725334167, -0.24240230023860931, 0.10930388420820236, -0.1265726387500763, 0.08993446081876755, -0.19245967268943787, -0.3482951521873474, 0.5388088226318359, 0.7366414070129395], "std": [0.004471810534596443, 0.003962068352848291, 0.003941160626709461, 0.08577229082584381, 0.08068320155143738, 0.10691419988870621, 0.13244007527828217, 0.009247333742678165, 0.012318344786763191, 0.0067651355639100075, 0.05794113129377365, 0.030345534905791283, 0.05672800913453102, 0.034608472138643265], "count": [439]}, "timestamp": {"min": [0.0], "max": [14.6], "mean": [7.3], "std": [4.2242685099842365], "count": [439]}, "frame_index": {"min": [0], "max": [438], "mean": [219.0], "std": [126.7280552995271], "count": [439]}, "episode_index": {"min": [65], "max": [65], "mean": [65.0], "std": [0.0], "count": [439]}, "index": {"min": [42152], "max": [42590], "mean": [42371.0], "std": [126.7280552995271], "count": [439]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [439]}}} +{"episode_index": 66, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3854578104575163]], [[0.3671825925925926]], [[0.3325859068627451]]], "std": [[[0.21186336207003575]], [[0.2085442454623533]], [[0.21201514727716445]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39170614651416125]], [[0.38953766339869283]], [[0.35654267973856213]]], "std": [[[0.21283101974920252]], [[0.1955358196299205]], [[0.20918988759218676]]], "count": [100]}, "observation.state": {"min": [0.44596466422080994, -0.1647258847951889, 0.12145459651947021, -1.8509330749511719, -0.20905384421348572, -0.445315420627594, -0.5704782605171204, -0.4613560736179352, 0.17430174350738525, 3.0415525436401367, -0.7203476428985596, -0.7347502708435059], "max": [0.5295400619506836, -0.055503278970718384, 0.1465650349855423, -0.2308686226606369, 1.2442119121551514, 1.3333367109298706, -0.48566722869873047, -0.3307492136955261, 0.1922411024570465, 3.769805908203125, -0.21930158138275146, 0.22149139642715454], "mean": [0.486666738986969, -0.128120556473732, 0.1381855458021164, -1.211938500404358, 0.6665815114974976, 0.273470014333725, -0.5383368730545044, -0.4122936725616455, 0.1846437007188797, 3.3755767345428467, -0.45449337363243103, -0.3215788006782532], "std": [0.02128523588180542, 0.027849914506077766, 0.004666161723434925, 0.5928967595100403, 0.3303646445274353, 0.3707302212715149, 0.0210505910217762, 0.044169340282678604, 0.004650742281228304, 0.2792885899543762, 0.16781820356845856, 0.3707066774368286], "count": [435]}, "action": {"min": [-0.11961738765239716, -0.1041460931301117, 0.11289967596530914, 0.20874625444412231, -0.43290573358535767, 0.44074830412864685, -0.5536038875579834, 0.11068466305732727, -0.14098894596099854, 0.07706336677074432, -0.16499149799346924, -0.3183688521385193, 0.547920823097229, 0.4979661703109741], "max": [-0.10247397422790527, -0.08465475589036942, 0.13688038289546967, 0.7731544375419617, -0.05582311376929283, 0.9752383828163147, 0.04390254616737366, 0.1266237497329712, -0.11401701718568802, 0.09502215683460236, 0.11102061718702316, -0.14062842726707458, 0.8437909483909607, 0.7661098837852478], "mean": [-0.11299516260623932, -0.09610258787870407, 0.1249522715806961, 0.5049222707748413, -0.2992287874221802, 0.7247353196144104, -0.21648159623146057, 0.11563871800899506, -0.12853559851646423, 0.0874977558851242, -0.00408396078273654, -0.2325982302427292, 0.7084032297134399, 0.6346328258514404], "std": [0.005042781122028828, 0.005575323943048716, 0.005217351950705051, 0.12315979599952698, 0.06859291344881058, 0.1323632001876831, 0.2145160436630249, 0.00375798880122602, 0.008940691128373146, 0.004687684588134289, 0.10045919567346573, 0.05618735030293465, 0.12266149371862411, 0.11398282647132874], "count": [435]}, "timestamp": {"min": [0.0], "max": [14.466666666666667], "mean": [7.233333333333333], "std": [4.18577839126019], "count": [435]}, "frame_index": {"min": [0], "max": [434], "mean": [217.0], "std": [125.57335173780568], "count": [435]}, "episode_index": {"min": [66], "max": [66], "mean": [66.0], "std": [0.0], "count": [435]}, "index": {"min": [42591], "max": [43025], "mean": [42808.0], "std": [125.57335173780568], "count": [435]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [435]}}} +{"episode_index": 67, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38035751357708947]], [[0.3565509101386126]], [[0.31886700964604847]]], "std": [[[0.210321769275684]], [[0.20085353156729746]], [[0.20280912485469194]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3866996226832118]], [[0.3788093247766095]], [[0.34222563030848413]]], "std": [[[0.2098589447900535]], [[0.18622140658189404]], [[0.19920965329353324]]], "count": [138]}, "observation.state": {"min": [0.4931042194366455, -0.19285209476947784, 0.120954230427742, -1.7620246410369873, -0.6342666149139404, -0.8518087863922119, -0.516365110874176, -0.44899970293045044, 0.15885774791240692, 2.8383631706237793, -0.9263954758644104, -0.24805520474910736], "max": [0.5848734378814697, -0.06956637650728226, 0.15460072457790375, -0.07339148223400116, 0.8855411410331726, 0.8033318519592285, -0.35872092843055725, -0.3644743859767914, 0.1879776120185852, 4.091889381408691, -0.12611548602581024, 0.7970290780067444], "mean": [0.5351571440696716, -0.13245639204978943, 0.14098075032234192, -1.1088001728057861, 0.33321887254714966, 0.23004332184791565, -0.437942236661911, -0.40574362874031067, 0.16869768500328064, 3.5106072425842285, -0.5939788222312927, 0.18486131727695465], "std": [0.022826949134469032, 0.026994163170456886, 0.008613751269876957, 0.30868762731552124, 0.36247676610946655, 0.3247349262237549, 0.03943770006299019, 0.024704841896891594, 0.006145492196083069, 0.3641863167285919, 0.19922292232513428, 0.27715274691581726], "count": [714]}, "action": {"min": [-0.12284962087869644, -0.10947541892528534, 0.11364192515611649, -0.33667054772377014, -0.6595281362533569, -0.6011651158332825, -0.6261336803436279, 0.12112704664468765, -0.1308683604001999, 0.07806278020143509, -0.4135659337043762, -0.5559964179992676, 0.3362669348716736, 0.41904962062835693], "max": [-0.09305944293737411, -0.08750872313976288, 0.13651123642921448, 0.5694180727005005, 0.48766428232192993, 0.9843466281890869, 0.667030930519104, 0.14611373841762543, -0.10746605694293976, 0.10019002109766006, -0.053587958216667175, -0.17846395075321198, 0.7702288031578064, 0.7601739764213562], "mean": [-0.10477618128061295, -0.0978417843580246, 0.12348878383636475, 0.34224459528923035, -0.3710378110408783, 0.7509607672691345, -0.2359364777803421, 0.13515132665634155, -0.11845486611127853, 0.0865587592124939, -0.2095923125743866, -0.3591006398200989, 0.6587348580360413, 0.5955830812454224], "std": [0.007960928604006767, 0.0058273873291909695, 0.005667262244969606, 0.1882222443819046, 0.15970644354820251, 0.17978724837303162, 0.17981672286987305, 0.0067219920456409454, 0.005444635171443224, 0.004975465591996908, 0.0832338035106659, 0.07293982803821564, 0.11838135868310928, 0.11047330498695374], "count": [714]}, "timestamp": {"min": [0.0], "max": [23.766666666666666], "mean": [11.883333333333335], "std": [6.8704614649047215], "count": [714]}, "frame_index": {"min": [0], "max": [713], "mean": [356.5], "std": [206.11384394714165], "count": [714]}, "episode_index": {"min": [67], "max": [67], "mean": [67.0], "std": [0.0], "count": [714]}, "index": {"min": [43026], "max": [43739], "mean": [43382.5], "std": [206.11384394714165], "count": [714]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [714]}}} +{"episode_index": 68, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4107463870733479]], [[0.38918643336964415]], [[0.35304693400508347]]], "std": [[[0.2170255331541837]], [[0.20934757006925658]], [[0.21229529688724]]], "count": [120]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41963690994916486]], [[0.41322196350762525]], [[0.3773211669389978]]], "std": [[[0.21525006653316667]], [[0.19283154166164482]], [[0.20686551704940387]]], "count": [120]}, "observation.state": {"min": [0.42273467779159546, -0.22062303125858307, 0.12608234584331512, -1.753427267074585, -0.08813054114580154, -0.6906713843345642, -0.49136659502983093, -0.5037615895271301, 0.17492136359214783, 1.7106505632400513, -1.415280818939209, -0.7179223895072937], "max": [0.5705632567405701, -0.06755074113607407, 0.15590998530387878, -0.22059382498264313, 1.1238352060317993, 0.9499234557151794, -0.3719422519207001, -0.37449848651885986, 0.18898612260818481, 4.16381311416626, -0.9673864245414734, 1.4177546501159668], "mean": [0.5089675188064575, -0.1459188014268875, 0.1451101005077362, -0.9671012163162231, 0.776699423789978, 0.1682693213224411, -0.4354889690876007, -0.4619256258010864, 0.18353696167469025, 3.5918991565704346, -1.2222704887390137, -0.06038687005639076], "std": [0.03732726722955704, 0.04024531692266464, 0.007370493374764919, 0.34412050247192383, 0.17691296339035034, 0.43964168429374695, 0.035320792347192764, 0.025627823546528816, 0.004571656230837107, 0.6409744024276733, 0.12011159956455231, 0.5849274396896362], "count": [594]}, "action": {"min": [-0.12242428213357925, -0.11047445237636566, 0.10670313239097595, -0.5278556942939758, -0.5145610570907593, -0.5097923874855042, -0.5355103611946106, 0.12026908248662949, -0.1392938643693924, 0.07998594641685486, -0.5233989357948303, -0.18070831894874573, 0.4628455638885498, 0.6031595468521118], "max": [-0.0953807607293129, -0.09002657979726791, 0.1426558494567871, 0.6353746652603149, 0.42231515049934387, 0.9623957872390747, 0.5425344109535217, 0.14073459804058075, -0.11547282338142395, 0.0959588810801506, -0.2603670060634613, 0.06809082627296448, 0.7445067167282104, 0.8283548355102539], "mean": [-0.10551639646291733, -0.09996092319488525, 0.126013845205307, 0.4938746392726898, -0.2676745355129242, 0.691403329372406, -0.38307273387908936, 0.13112951815128326, -0.13117346167564392, 0.08556240051984787, -0.354827880859375, -0.10206497460603714, 0.6419322490692139, 0.6604219675064087], "std": [0.008514637127518654, 0.004944187123328447, 0.006908063311129808, 0.10275640338659286, 0.1511840969324112, 0.11609555035829544, 0.11296350508928299, 0.006543651223182678, 0.005095863714814186, 0.0030901096761226654, 0.05796743556857109, 0.05848585441708565, 0.07577100396156311, 0.05406951531767845], "count": [594]}, "timestamp": {"min": [0.0], "max": [19.766666666666666], "mean": [9.883333333333333], "std": [5.715759565220305], "count": [594]}, "frame_index": {"min": [0], "max": [593], "mean": [296.5], "std": [171.47278695660916], "count": [594]}, "episode_index": {"min": [68], "max": [68], "mean": [68.0], "std": [0.0], "count": [594]}, "index": {"min": [43740], "max": [44333], "mean": [44036.5], "std": [171.47278695660916], "count": [594]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [594]}}} +{"episode_index": 69, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43248365494345886]], [[0.41375394491129786]], [[0.38094102604004565]]], "std": [[[0.21951420190798593]], [[0.21172908673619606]], [[0.215463204989743]]], "count": [105]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44093471833177716]], [[0.43683245409274823]], [[0.40527623975516136]]], "std": [[[0.21805224511353535]], [[0.19458368591319253]], [[0.20861811396352956]]], "count": [105]}, "observation.state": {"min": [0.4598346948623657, -0.2024591714143753, 0.1313919574022293, -1.7846710681915283, 0.46087491512298584, -0.25872698426246643, -0.6027284264564514, -0.46294695138931274, 0.17256860435009003, 2.292330503463745, -1.322641372680664, 0.7023633122444153], "max": [0.5825875401496887, -0.08848706632852554, 0.15740719437599182, 0.32250311970710754, 1.338217854499817, 1.4148626327514648, -0.4483587145805359, -0.274589478969574, 0.19325220584869385, 3.356297254562378, -0.5153928995132446, 1.4123598337173462], "mean": [0.5191428065299988, -0.156763955950737, 0.14763936400413513, -0.9447275400161743, 0.9058488011360168, 0.4601600766181946, -0.4941597580909729, -0.3938917815685272, 0.18673184514045715, 2.81969952583313, -1.16885507106781, 1.168479323387146], "std": [0.029128320515155792, 0.0337531715631485, 0.00568454060703516, 0.5769876837730408, 0.19764940440654755, 0.45231232047080994, 0.04662015661597252, 0.05222807452082634, 0.005890798754990101, 0.28320586681365967, 0.1911657601594925, 0.22109724581241608], "count": [500]}, "action": {"min": [-0.11814095824956894, -0.11291790008544922, 0.1123885065317154, -0.617359459400177, -0.6281989812850952, -0.5849816799163818, -0.6183164715766907, 0.09901119768619537, -0.13231238722801208, 0.08471368998289108, -0.6126922369003296, -0.3867119550704956, -0.49378666281700134, -0.6160046458244324], "max": [-0.09232518076896667, -0.09106934070587158, 0.13956773281097412, 0.7631072402000427, 0.6665816903114319, 0.8578469157218933, 0.6451364159584045, 0.13795863091945648, -0.10697609186172485, 0.10448446869850159, 0.6306473016738892, 0.3485778272151947, 0.5119647979736328, 0.8264841437339783], "mean": [-0.10324517637491226, -0.10221219807863235, 0.12496023625135422, 0.41593989729881287, -0.22742551565170288, 0.43662726879119873, -0.13866902887821198, 0.12427175790071487, -0.12436866760253906, 0.09579218924045563, -0.3574252128601074, -0.1666974276304245, 0.28955158591270447, 0.4529772400856018], "std": [0.006195687688887119, 0.0065461574122309685, 0.006866574753075838, 0.43006011843681335, 0.265624463558197, 0.4349120259284973, 0.34748050570487976, 0.010888172313570976, 0.007264410611242056, 0.005597318988293409, 0.42499491572380066, 0.21076373755931854, 0.3432001769542694, 0.4610884487628937], "count": [500]}, "timestamp": {"min": [0.0], "max": [16.633333333333333], "mean": [8.316666666666668], "std": [4.811242620732772], "count": [500]}, "frame_index": {"min": [0], "max": [499], "mean": [249.5], "std": [144.33727862198316], "count": [500]}, "episode_index": {"min": [69], "max": [69], "mean": [69.0], "std": [0.0], "count": [500]}, "index": {"min": [44334], "max": [44833], "mean": [44583.5], "std": [144.33727862198316], "count": [500]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [500]}}} +{"episode_index": 70, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43564953093306286]], [[0.41604468578619186]], [[0.38257629732927656]]], "std": [[[0.21797337839133604]], [[0.20980745418891603]], [[0.21327453355141351]]], "count": [116]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44439572064457966]], [[0.43880511653895277]], [[0.40703890344451954]]], "std": [[[0.2163814505872549]], [[0.19260568675000747]], [[0.20646702360444236]]], "count": [116]}, "observation.state": {"min": [0.468507319688797, -0.2054169774055481, 0.13380564749240875, -1.962068796157837, -0.2839306592941284, -0.8235609531402588, -0.5924339890480042, -0.45655250549316406, 0.17667655646800995, 2.179307699203491, -1.0721865892410278, 0.7942924499511719], "max": [0.5481672883033752, -0.05933376029133797, 0.1535416543483734, -0.0025162799283862114, 1.2790542840957642, 0.9308603405952454, -0.43207916617393494, -0.23213763535022736, 0.19346609711647034, 3.0906200408935547, -0.3144005835056305, 1.3894349336624146], "mean": [0.5083920359611511, -0.15790122747421265, 0.14597080647945404, -1.1098506450653076, 0.7851864099502563, 0.15913410484790802, -0.4955225884914398, -0.3754861652851105, 0.18730096518993378, 2.8100337982177734, -0.9150679707527161, 1.1200066804885864], "std": [0.01640147715806961, 0.03727971762418747, 0.004719640128314495, 0.6395984292030334, 0.3342732787132263, 0.5110436081886292, 0.053528305143117905, 0.07134237885475159, 0.004136165603995323, 0.2798304855823517, 0.24164199829101562, 0.15557296574115753], "count": [570]}, "action": {"min": [-0.11586170643568039, -0.11425124108791351, 0.11322184652090073, -0.5674901008605957, -0.4880276024341583, -0.6289374232292175, -0.6275137066841125, 0.10544325411319733, -0.13549309968948364, 0.08887551724910736, -0.5759314894676208, -0.3880999982357025, 0.06211044639348984, 0.6128602623939514], "max": [-0.09799668937921524, -0.08657866716384888, 0.14220301806926727, 0.7138330936431885, 0.3251156210899353, 0.9703744053840637, 0.6648332476615906, 0.134842187166214, -0.10484212636947632, 0.10581019520759583, -0.41889554262161255, -0.2702975571155548, 0.46962156891822815, 0.8384091854095459], "mean": [-0.1062839925289154, -0.10279224812984467, 0.12508229911327362, 0.4189300537109375, -0.17171284556388855, 0.5655707716941833, -0.1524779498577118, 0.12226316332817078, -0.12454105913639069, 0.09826752543449402, -0.48853257298469543, -0.3393429219722748, 0.38855263590812683, 0.685745358467102], "std": [0.004793131723999977, 0.008177339099347591, 0.005995048675686121, 0.35831311345100403, 0.18859224021434784, 0.4267168641090393, 0.32534611225128174, 0.008948919363319874, 0.010292090475559235, 0.004251860082149506, 0.032534535974264145, 0.025375258177518845, 0.13771988451480865, 0.06552308797836304], "count": [570]}, "timestamp": {"min": [0.0], "max": [18.966666666666665], "mean": [9.483333333333333], "std": [5.484819116501541], "count": [570]}, "frame_index": {"min": [0], "max": [569], "mean": [284.5], "std": [164.54457349504622], "count": [570]}, "episode_index": {"min": [70], "max": [70], "mean": [70.0], "std": [0.0], "count": [570]}, "index": {"min": [44834], "max": [45403], "mean": [45118.5], "std": [164.54457349504622], "count": [570]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [570]}}} +{"episode_index": 71, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43264771861770907]], [[0.41295583585737816]], [[0.3800430681757798]]], "std": [[[0.22004266986248208]], [[0.2119559173013497]], [[0.21520996118386396]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44059545539082845]], [[0.4359147492782117]], [[0.40375522964379973]]], "std": [[[0.21814278118752697]], [[0.1945768243607304]], [[0.20869788306028497]]], "count": [123]}, "observation.state": {"min": [0.44981831312179565, -0.21668444573879242, 0.13682341575622559, -2.083059787750244, -0.4914814829826355, -1.008302092552185, -0.5408616065979004, -0.3618486523628235, 0.1775839477777481, 2.339510679244995, -0.5531045794487, 1.330013632774353], "max": [0.555403470993042, -0.09213220328092575, 0.1550440639257431, 0.43930041790008545, 1.3578935861587524, 1.1734955310821533, -0.3973500430583954, -0.3010089695453644, 0.1990194022655487, 2.731001853942871, -0.05342486873269081, 1.403668761253357], "mean": [0.4907020032405853, -0.15038225054740906, 0.1469925045967102, -1.1177445650100708, 0.8117003440856934, -0.11242686957120895, -0.47139865159988403, -0.33507630228996277, 0.18920055031776428, 2.5020477771759033, -0.30398452281951904, 1.3818247318267822], "std": [0.020679781213402748, 0.02950291894376278, 0.004727862775325775, 0.7391787767410278, 0.5714358687400818, 0.6517694592475891, 0.03947962448000908, 0.01914745755493641, 0.005699611734598875, 0.1211903989315033, 0.16629838943481445, 0.016046466305851936], "count": [612]}, "action": {"min": [-0.12021713703870773, -0.11435117572546005, 0.11717438697814941, -0.5960037112236023, -0.31484928727149963, -0.6072635054588318, -0.6011413931846619, 0.10832474380731583, -0.1312175691127777, 0.09873302280902863, -0.471589058637619, -0.5237822532653809, 0.04379009082913399, 0.6966739296913147], "max": [-0.10090069472789764, -0.09043919295072556, 0.1409022957086563, 0.7413235306739807, 0.41219717264175415, 0.9857568740844727, 0.7450393438339233, 0.13815301656723022, -0.12213229387998581, 0.10939565300941467, -0.32995057106018066, -0.3762543797492981, 0.245071142911911, 0.8258978724479675], "mean": [-0.10957849025726318, -0.10299161821603775, 0.1274716854095459, 0.40376800298690796, -0.05223219096660614, 0.5974539518356323, -0.21990111470222473, 0.12276914715766907, -0.12725643813610077, 0.10480630397796631, -0.39150306582450867, -0.462433397769928, 0.1457304060459137, 0.7762378454208374], "std": [0.005340097937732935, 0.005349238868802786, 0.006899879779666662, 0.3642154633998871, 0.17192156612873077, 0.38236838579177856, 0.34715741872787476, 0.007920805364847183, 0.0024246678221970797, 0.0030877995304763317, 0.0482955202460289, 0.032408058643341064, 0.06377813220024109, 0.04061704874038696], "count": [612]}, "timestamp": {"min": [0.0], "max": [20.366666666666667], "mean": [10.183333333333334], "std": [5.888964884205662], "count": [612]}, "frame_index": {"min": [0], "max": [611], "mean": [305.5], "std": [176.66894652616986], "count": [612]}, "episode_index": {"min": [71], "max": [71], "mean": [71.0], "std": [0.0], "count": [612]}, "index": {"min": [45404], "max": [46015], "mean": [45709.5], "std": [176.66894652616986], "count": [612]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [612]}}} +{"episode_index": 72, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4036159286281265]], [[0.38402510091030384]], [[0.3498918359764233]]], "std": [[[0.21218671507330625]], [[0.20466897057984063]], [[0.20800736005525935]]], "count": [129]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40929068078566483]], [[0.40572090489942747]], [[0.37194962295857187]]], "std": [[[0.21119994633399175]], [[0.18803394658412168]], [[0.20208969143001287]]], "count": [129]}, "observation.state": {"min": [0.42124420404434204, -0.26407885551452637, 0.12703771889209747, -1.6538245677947998, 0.45472627878189087, -0.5319334268569946, -0.6049988865852356, -0.5331697463989258, 0.17847968637943268, 2.109480857849121, -1.4260751008987427, -1.2998371124267578], "max": [0.5489241480827332, -0.08902765810489655, 0.15073129534721375, -0.2002539038658142, 1.1899672746658325, 1.0451239347457886, -0.4016902446746826, -0.2788678705692291, 0.20330363512039185, 4.4504594802856445, -0.46675029397010803, 1.3883060216903687], "mean": [0.5017013549804688, -0.19590513408184052, 0.14335550367832184, -0.9689850211143494, 0.8551117181777954, 0.25119903683662415, -0.4725828170776367, -0.4387616217136383, 0.1936553567647934, 3.8420755863189697, -1.1794376373291016, -0.6796363592147827], "std": [0.036524198949337006, 0.04152148962020874, 0.005027578212320805, 0.3263300657272339, 0.16644763946533203, 0.3766223192214966, 0.05458233505487442, 0.06400831788778305, 0.00661697331815958, 0.6826075315475464, 0.24729667603969574, 0.7991158962249756], "count": [657]}, "action": {"min": [-0.12429936230182648, -0.11855832487344742, 0.10324349999427795, 0.369711697101593, -0.5381935238838196, 0.4887910485267639, -0.5673697590827942, 0.10794203728437424, -0.14452025294303894, 0.07813053578138351, -0.4192036986351013, -0.320793479681015, 0.08996772766113281, 0.6752669215202332], "max": [-0.09975670278072357, -0.08952156454324722, 0.13179047405719757, 0.6854935884475708, 0.007263457402586937, 0.8019214868545532, -0.13343335688114166, 0.13624103367328644, -0.10835789144039154, 0.09739244729280472, -0.182408407330513, 0.14615972340106964, 0.6867289543151855, 0.8730940818786621], "mean": [-0.10821674764156342, -0.10617971420288086, 0.11939948052167892, 0.5238637924194336, -0.30930793285369873, 0.666343092918396, -0.3770209550857544, 0.11958543956279755, -0.13555163145065308, 0.08932117372751236, -0.259528785943985, 0.025230858474969864, 0.589099645614624, 0.7299934029579163], "std": [0.00596596160903573, 0.008023494854569435, 0.006400593556463718, 0.06890356540679932, 0.13647159934043884, 0.07233059406280518, 0.12301935255527496, 0.007848905399441719, 0.009137005545198917, 0.005947396159172058, 0.058139536529779434, 0.12818092107772827, 0.17180795967578888, 0.052448123693466187], "count": [657]}, "timestamp": {"min": [0.0], "max": [21.866666666666667], "mean": [10.933333333333332], "std": [6.3219781245593865], "count": [657]}, "frame_index": {"min": [0], "max": [656], "mean": [328.0], "std": [189.65934373678155], "count": [657]}, "episode_index": {"min": [72], "max": [72], "mean": [72.0], "std": [0.0], "count": [657]}, "index": {"min": [46016], "max": [46672], "mean": [46344.0], "std": [189.65934373678155], "count": [657]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [657]}}} +{"episode_index": 73, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3997460321984091]], [[0.38070166122004356]], [[0.34673541286669707]]], "std": [[[0.21502543888544992]], [[0.2045502123173099]], [[0.20746850154452276]]], "count": [172]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40105277366114406]], [[0.3984214435451183]], [[0.3661070752267315]]], "std": [[[0.21563636344235637]], [[0.18984204534991303]], [[0.20279908234959906]]], "count": [172]}, "observation.state": {"min": [0.47823795676231384, -0.204667866230011, 0.12354551255702972, -1.7154734134674072, -0.050145599991083145, -0.4287277162075043, -0.6145519018173218, -0.4749094545841217, 0.16534048318862915, 4.020385265350342, -0.7215773463249207, -1.1282198429107666], "max": [0.5965734124183655, -0.04213523119688034, 0.15065352618694305, -0.44013920426368713, 1.1008802652359009, 0.6270365118980408, -0.4364425241947174, -0.3159678876399994, 0.18735797703266144, 4.5389485359191895, 0.36058372259140015, -0.48569053411483765], "mean": [0.5386934280395508, -0.13125692307949066, 0.13957594335079193, -1.0451074838638306, 0.636224627494812, -0.0008356135222129524, -0.5442704558372498, -0.41157108545303345, 0.17995145916938782, 4.352670192718506, 0.05888316407799721, -0.8644659519195557], "std": [0.02585458569228649, 0.0406821109354496, 0.005460620392113924, 0.2948947548866272, 0.3389175236225128, 0.2622210681438446, 0.03898044303059578, 0.03127118572592735, 0.005647139623761177, 0.15075188875198364, 0.2505917549133301, 0.1553971916437149], "count": [960]}, "action": {"min": [-0.11341524124145508, -0.11020272225141525, 0.10362760722637177, 0.1506577581167221, -0.5121937394142151, 0.5703314542770386, -0.5920285582542419, 0.1083856076002121, -0.13393497467041016, 0.07326977699995041, -0.3592343032360077, -0.2420080155134201, 0.8251475691795349, 0.0373239740729332], "max": [-0.09439902007579803, -0.08598043769598007, 0.14280492067337036, 0.7064977288246155, -0.03809595853090286, 0.8734400868415833, -0.10451869666576385, 0.13269834220409393, -0.10693341493606567, 0.08621664345264435, 0.031870320439338684, 0.06246042624115944, 0.9968007206916809, 0.42526477575302124], "mean": [-0.1038946583867073, -0.09481392800807953, 0.12123367935419083, 0.41956159472465515, -0.26032203435897827, 0.7337888479232788, -0.3834187090396881, 0.11830605566501617, -0.12797346711158752, 0.08293619751930237, -0.07981554418802261, -0.07654159516096115, 0.9600985646247864, 0.20164526998996735], "std": [0.004582568071782589, 0.0065107583068311214, 0.009038248099386692, 0.16038554906845093, 0.14744916558265686, 0.058898527175188065, 0.1407497376203537, 0.005937498062849045, 0.00679683405905962, 0.0029846616089344025, 0.08489613980054855, 0.06268969923257828, 0.0358254499733448, 0.11357896029949188], "count": [960]}, "timestamp": {"min": [0.0], "max": [31.966666666666665], "mean": [15.983333333333333], "std": [9.237599295311567], "count": [960]}, "frame_index": {"min": [0], "max": [959], "mean": [479.5], "std": [277.12797885934697], "count": [960]}, "episode_index": {"min": [73], "max": [73], "mean": [73.0], "std": [0.0], "count": [960]}, "index": {"min": [46673], "max": [47632], "mean": [47152.5], "std": [277.12797885934697], "count": [960]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [960]}}} +{"episode_index": 74, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4078112020980518]], [[0.38549138772400415]], [[0.35027702375105474]]], "std": [[[0.21578391671129105]], [[0.20551011991887239]], [[0.20895960425706792]]], "count": [173]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.414166754820104]], [[0.40624950885942046]], [[0.3728303565806541]]], "std": [[[0.2160858076424881]], [[0.19085609594711433]], [[0.20460973705445806]]], "count": [173]}, "observation.state": {"min": [0.45029711723327637, -0.17446425557136536, 0.12655678391456604, -1.92306649684906, -0.28283753991127014, -0.7851813435554504, -0.6383688449859619, -0.4847482144832611, 0.1707797348499298, 2.911125421524048, -1.2125122547149658, -0.9645065665245056], "max": [0.5825257301330566, -0.06032998859882355, 0.15476146340370178, 0.02033991925418377, 1.3957418203353882, 1.4011623859405518, -0.3758653998374939, -0.2731762230396271, 0.19762200117111206, 4.443120002746582, 0.06626869738101959, 1.3551745414733887], "mean": [0.5132393836975098, -0.11805571615695953, 0.14504285156726837, -1.0901163816452026, 0.7288613319396973, 0.17951421439647675, -0.4898512661457062, -0.40210771560668945, 0.18307535350322723, 3.9301350116729736, -0.7579072117805481, -0.3222910761833191], "std": [0.029181862249970436, 0.029438911005854607, 0.0045068650506436825, 0.4547986090183258, 0.30802294611930847, 0.4007450044155121, 0.06162106990814209, 0.057697590440511703, 0.005828510504215956, 0.3527062237262726, 0.270127534866333, 0.5807520747184753], "count": [964]}, "action": {"min": [-0.11417137086391449, -0.11071179807186127, 0.11144813150167465, -0.620849072933197, -0.6193947792053223, -0.619563102722168, -0.6331104040145874, 0.09368133544921875, -0.13701559603214264, 0.07854995131492615, -0.5777920484542847, -0.4220840632915497, -0.5083274245262146, -0.578599214553833], "max": [-0.09311904013156891, -0.08489886671304703, 0.13968519866466522, 0.7814363837242126, 0.6632586121559143, 0.9660701751708984, 0.6271151304244995, 0.14247789978981018, -0.1035304069519043, 0.10192634165287018, 0.5933714509010315, 0.4025467336177826, 0.9349620938301086, 0.63974928855896], "mean": [-0.10494232177734375, -0.09669715166091919, 0.12816409766674042, 0.44424688816070557, -0.21941646933555603, 0.6492403745651245, -0.2947496771812439, 0.12052991986274719, -0.12551993131637573, 0.0894320160150528, -0.26340293884277344, -0.15453632175922394, 0.7335225939750671, 0.5107406973838806], "std": [0.005132091231644154, 0.006474594585597515, 0.006355690769851208, 0.2714999318122864, 0.21752704679965973, 0.2875479757785797, 0.2059047520160675, 0.011188152246177197, 0.008241680450737476, 0.00594521127641201, 0.16530416905879974, 0.12251626700162888, 0.19676801562309265, 0.16362148523330688], "count": [964]}, "timestamp": {"min": [0.0], "max": [32.1], "mean": [16.05], "std": [9.276089334053081], "count": [964]}, "frame_index": {"min": [0], "max": [963], "mean": [481.5], "std": [278.28268002159245], "count": [964]}, "episode_index": {"min": [74], "max": [74], "mean": [74.0], "std": [0.0], "count": [964]}, "index": {"min": [47633], "max": [48596], "mean": [48114.5], "std": [278.28268002159245], "count": [964]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [964]}}} +{"episode_index": 75, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4120562956193149]], [[0.38681681190994915]], [[0.3505209294954642]]], "std": [[[0.21554680198185652]], [[0.20528855459915404]], [[0.20843362817952216]]], "count": [177]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42001476127174037]], [[0.40869987260440904]], [[0.37366498959910394]]], "std": [[[0.21520760035039863]], [[0.18981442168592516]], [[0.20351579751686555]]], "count": [177]}, "observation.state": {"min": [0.47985973954200745, -0.18744617700576782, 0.12915456295013428, -1.9736016988754272, -0.20645774900913239, -0.6702908277511597, -0.5659913420677185, -0.4394852817058563, 0.16666918992996216, 2.2478761672973633, -1.0568833351135254, -0.029542850330471992], "max": [0.5613499879837036, -0.055727239698171616, 0.1515570431947708, -0.11637791991233826, 1.0745093822479248, 0.9688727855682373, -0.3750545084476471, -0.23660136759281158, 0.19748589396476746, 3.43639874458313, 0.13977913558483124, 1.4055618047714233], "mean": [0.5163211822509766, -0.1372511386871338, 0.14348062872886658, -0.9846967458724976, 0.605079174041748, 0.11738354712724686, -0.4954703450202942, -0.3357684910297394, 0.1818939596414566, 2.7555758953094482, -0.5118857026100159, 0.7081516981124878], "std": [0.017458131536841393, 0.029369516298174858, 0.0054197958670556545, 0.32529035210609436, 0.22493897378444672, 0.3419297933578491, 0.05147505924105644, 0.055680178105831146, 0.008250506594777107, 0.34370842576026917, 0.2991124391555786, 0.4000040888786316], "count": [998]}, "action": {"min": [-0.11293953657150269, -0.10916043817996979, 0.11342304944992065, -0.5617014765739441, -0.5746465921401978, -0.6342478394508362, -0.6411853432655334, 0.10311665385961533, -0.13486865162849426, 0.0880204364657402, -0.5670568943023682, -0.5285845398902893, 0.15759943425655365, 0.5441523790359497], "max": [-0.09620949625968933, -0.08501902967691422, 0.14115682244300842, 0.6006547212600708, 0.6003491878509521, 0.9736388921737671, 0.6787587404251099, 0.1432570517063141, -0.09942533820867538, 0.10992065072059631, 0.2011834681034088, -0.23730941116809845, 0.5411568880081177, 0.9081763625144958], "mean": [-0.10559044033288956, -0.09873636066913605, 0.1261100023984909, 0.40267881751060486, -0.25426504015922546, 0.7177944779396057, -0.34210824966430664, 0.12235870212316513, -0.1192941814661026, 0.09932320564985275, -0.21762996912002563, -0.38856571912765503, 0.3820634186267853, 0.7560104727745056], "std": [0.0032781779300421476, 0.005109769757837057, 0.006153209134936333, 0.17017313838005066, 0.1580035537481308, 0.23230428993701935, 0.1817782074213028, 0.009929899126291275, 0.00916785653680563, 0.004444975405931473, 0.23284338414669037, 0.0819629579782486, 0.1025397777557373, 0.11261292546987534], "count": [998]}, "timestamp": {"min": [0.0], "max": [33.233333333333334], "mean": [16.616666666666667], "std": [9.603254656625534], "count": [998]}, "frame_index": {"min": [0], "max": [997], "mean": [498.5], "std": [288.097639698766], "count": [998]}, "episode_index": {"min": [75], "max": [75], "mean": [75.0], "std": [0.0], "count": [998]}, "index": {"min": [48597], "max": [49594], "mean": [49095.5], "std": [288.097639698766], "count": [998]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [998]}}} +{"episode_index": 76, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4088023762956361]], [[0.3845385245428138]], [[0.3491715397438437]]], "std": [[[0.2168140350121417]], [[0.2057093205308168]], [[0.20840095025246683]]], "count": [132]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4160333853238265]], [[0.40642156450122136]], [[0.372363533207896]]], "std": [[[0.21678869461442746]], [[0.1902724492978828]], [[0.20387689344036553]]], "count": [132]}, "observation.state": {"min": [0.48294880986213684, -0.23806868493556976, 0.12171774357557297, -2.0004420280456543, -0.2872099280357361, -0.7610675692558289, -0.5842093229293823, -0.4493163228034973, 0.17554229497909546, 2.6932575702667236, -1.3144431114196777, 0.15481966733932495], "max": [0.5769422054290771, -0.07411506772041321, 0.15583868324756622, 0.10316745191812515, 1.1056625843048096, 1.2146308422088623, -0.3560488820075989, -0.26224082708358765, 0.19013722240924835, 3.6997692584991455, -0.5346586108207703, 1.2476897239685059], "mean": [0.5374650359153748, -0.15700437128543854, 0.14361362159252167, -0.7492711544036865, 0.7089999318122864, 0.23656074702739716, -0.44984835386276245, -0.39789727330207825, 0.18273819983005524, 3.0264031887054443, -0.8668293952941895, 0.7587019205093384], "std": [0.023146165534853935, 0.035808101296424866, 0.008473087102174759, 0.35629385709762573, 0.27043646574020386, 0.44261878728866577, 0.05528150498867035, 0.04981457442045212, 0.00427234498783946, 0.24627698957920074, 0.22047536075115204, 0.2597295939922333], "count": [678]}, "action": {"min": [-0.11178215593099594, -0.10994189977645874, 0.09711446613073349, -0.556764543056488, -0.5310031771659851, -0.6328226327896118, -0.6350823044776917, 0.10730250179767609, -0.13497278094291687, 0.08705124258995056, -0.5488292574882507, -0.4329150319099426, 0.3915584981441498, 0.5896053910255432], "max": [-0.09064154326915741, -0.08750797063112259, 0.1407303512096405, 0.694523274898529, 0.4493202269077301, 0.9567448496818542, 0.7161887288093567, 0.14148850739002228, -0.10489803552627563, 0.1044989600777626, -0.218235582113266, -0.14754176139831543, 0.6354625821113586, 0.7702166438102722], "mean": [-0.10300679504871368, -0.0993136614561081, 0.12278110533952713, 0.28684160113334656, -0.19087061285972595, 0.48994162678718567, -0.23681791126728058, 0.13019897043704987, -0.1255895495414734, 0.09562546014785767, -0.370223730802536, -0.3370538651943207, 0.48578137159347534, 0.6995933651924133], "std": [0.006486896891146898, 0.005525397602468729, 0.008681101724505424, 0.36912772059440613, 0.23855260014533997, 0.4854855239391327, 0.39535513520240784, 0.009370311163365841, 0.00852311123162508, 0.004278724081814289, 0.10308729857206345, 0.08030768483877182, 0.06253810226917267, 0.054102350026369095], "count": [678]}, "timestamp": {"min": [0.0], "max": [22.566666666666666], "mean": [11.283333333333333], "std": [6.524050945596665], "count": [678]}, "frame_index": {"min": [0], "max": [677], "mean": [338.5], "std": [195.72152836789994], "count": [678]}, "episode_index": {"min": [76], "max": [76], "mean": [76.0], "std": [0.0], "count": [678]}, "index": {"min": [49595], "max": [50272], "mean": [49933.5], "std": [195.72152836789994], "count": [678]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [678]}}} +{"episode_index": 77, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40147625136165577]], [[0.37838974673202613]], [[0.34287755310457513]]], "std": [[[0.2163913488715795]], [[0.20550283351216714]], [[0.20835308948279202]]], "count": [200]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40943005855119824]], [[0.40107896786492375]], [[0.36642131399782135]]], "std": [[[0.21630269920804673]], [[0.1901400824861047]], [[0.2037870076533332]]], "count": [200]}, "observation.state": {"min": [0.47972843050956726, -0.19953997433185577, 0.12530198693275452, -1.8698052167892456, -0.5786556005477905, -0.6793500185012817, -0.6357739567756653, -0.48229238390922546, 0.16717474162578583, 3.090200662612915, -1.1999417543411255, -1.4007762670516968], "max": [0.6297734379768372, -0.07991483807563782, 0.1614982932806015, 0.5735020041465759, 1.2958605289459229, 1.3242608308792114, -0.3754560947418213, -0.2814163863658905, 0.18897056579589844, 4.541254997253418, -0.08184526115655899, 0.9892163276672363], "mean": [0.5592056512832642, -0.15599773824214935, 0.1453450322151184, -0.7407470345497131, 0.5139079093933105, 0.48604828119277954, -0.44572120904922485, -0.40786120295524597, 0.18013428151607513, 3.8689966201782227, -0.6737621426582336, -0.27456405758857727], "std": [0.031108200550079346, 0.024431608617305756, 0.006422273814678192, 0.6335666179656982, 0.41808047890663147, 0.46654418110847473, 0.05373966693878174, 0.044438645243644714, 0.005302287172526121, 0.4398352801799774, 0.2501719295978546, 0.5974721312522888], "count": [1173]}, "action": {"min": [-0.1133711189031601, -0.11245011538267136, 0.10642258077859879, -0.5921040177345276, -0.5984072089195251, -0.6279553174972534, -0.637336254119873, 0.09830091893672943, -0.13797016441822052, 0.0797211080789566, -0.5054928064346313, -0.5791081190109253, -0.5729994177818298, -0.5787945985794067], "max": [-0.08540032804012299, -0.08897237479686737, 0.1379517763853073, 0.7722348570823669, 0.7335165143013, 0.930174708366394, 0.7313153743743896, 0.14175733923912048, -0.10621540248394012, 0.10314825177192688, 0.35394954681396484, 0.5793601274490356, 0.9463760256767273, 0.7407745122909546], "mean": [-0.09853477030992508, -0.10130670666694641, 0.12111085653305054, 0.22919343411922455, -0.03417706489562988, 0.32322487235069275, 0.015407388098537922, 0.1286076158285141, -0.12652428448200226, 0.09041997045278549, -0.2252410352230072, -0.19762244820594788, 0.725277304649353, 0.5306826829910278], "std": [0.006148782093077898, 0.00532764894887805, 0.005805003456771374, 0.4180562198162079, 0.46155062317848206, 0.5140916109085083, 0.43531662225723267, 0.008971801027655602, 0.007174429018050432, 0.005747456569224596, 0.09925123304128647, 0.20107866823673248, 0.1622210144996643, 0.16112284362316132], "count": [1173]}, "timestamp": {"min": [0.0], "max": [39.06666666666667], "mean": [19.53333333333333], "std": [11.287193660992122], "count": [1173]}, "frame_index": {"min": [0], "max": [1172], "mean": [586.0], "std": [338.6158098297637], "count": [1173]}, "episode_index": {"min": [77], "max": [77], "mean": [77.0], "std": [0.0], "count": [1173]}, "index": {"min": [50273], "max": [51445], "mean": [50859.0], "std": [338.6158098297637], "count": [1173]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1173]}}} +{"episode_index": 78, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4150652050206484]], [[0.39083241878841085]], [[0.3551290260299808]]], "std": [[[0.21567005231032702]], [[0.20538376945156775]], [[0.20863441578506028]]], "count": [134]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42338686266380515]], [[0.41336239757096865]], [[0.37911012137027283]]], "std": [[[0.21480970314323702]], [[0.1892932224963349]], [[0.20344128437693454]]], "count": [134]}, "observation.state": {"min": [0.4689166247844696, -0.21189634501934052, 0.12872807681560516, -2.0147008895874023, -0.2249036729335785, -1.0045193433761597, -0.593422532081604, -0.4431767463684082, 0.15620683133602142, 4.055822849273682, -1.145696997642517, -0.7968233823776245], "max": [0.5656515955924988, -0.07877960056066513, 0.15688349306583405, 0.3887651562690735, 1.071366786956787, 0.9113019704818726, -0.3755951225757599, -0.2657701373100281, 0.18740075826644897, 4.539158344268799, -0.16669653356075287, -0.17641854286193848], "mean": [0.5216500163078308, -0.14745213091373444, 0.14475403726100922, -1.1524076461791992, 0.6496149301528931, -0.02442150190472603, -0.45908600091934204, -0.38586148619651794, 0.17671339213848114, 4.401926040649414, -0.5786244869232178, -0.39127883315086365], "std": [0.023851873353123665, 0.026272378861904144, 0.006449467036873102, 0.5841040015220642, 0.262369841337204, 0.5154691338539124, 0.056121718138456345, 0.05281612277030945, 0.00711400480940938, 0.1615634560585022, 0.23237121105194092, 0.1447809636592865], "count": [690]}, "action": {"min": [-0.11359380930662155, -0.109187550842762, 0.11154859513044357, -0.47901079058647156, -0.5237513780593872, -0.6343368291854858, -0.6277735829353333, 0.10107944160699844, -0.1327158808708191, 0.0749775841832161, -0.5875840783119202, -0.34525734186172485, 0.6335548758506775, 0.19656556844711304], "max": [-0.09228171408176422, -0.08935560286045074, 0.13556887209415436, 0.66658616065979, 0.4518936574459076, 0.9492024183273315, 0.7954028844833374, 0.14365436136722565, -0.10335761308670044, 0.09712333977222443, -0.19248376786708832, -0.08803823590278625, 0.9482240676879883, 0.554145336151123], "mean": [-0.10433745384216309, -0.10096929967403412, 0.12478317320346832, 0.3234613239765167, -0.11542654782533646, 0.547801673412323, -0.0989735797047615, 0.12654957175254822, -0.12239887565374374, 0.08868367224931717, -0.33678415417671204, -0.2248106300830841, 0.8333233594894409, 0.33906978368759155], "std": [0.00680988235399127, 0.004731972701847553, 0.005774857476353645, 0.3468998968601227, 0.22980263829231262, 0.51387619972229, 0.3673545718193054, 0.010809478349983692, 0.008633686229586601, 0.006539343390613794, 0.06795038282871246, 0.06674285233020782, 0.07044169306755066, 0.11228275299072266], "count": [690]}, "timestamp": {"min": [0.0], "max": [22.966666666666665], "mean": [11.483333333333333], "std": [6.639521122847697], "count": [690]}, "frame_index": {"min": [0], "max": [689], "mean": [344.5], "std": [199.1856336854309], "count": [690]}, "episode_index": {"min": [78], "max": [78], "mean": [78.0], "std": [0.0], "count": [690]}, "index": {"min": [51446], "max": [52135], "mean": [51790.5], "std": [199.1856336854309], "count": [690]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [690]}}} +{"episode_index": 79, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43681635076252723]], [[0.4091661328976035]], [[0.3703192047930283]]], "std": [[[0.21333316180605363]], [[0.20408562738380315]], [[0.20705990874736213]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44542042483660127]], [[0.4314383306100218]], [[0.3945845479302832]]], "std": [[[0.21072914432743375]], [[0.18655538833319796]], [[0.2000218019025675]]], "count": [100]}, "observation.state": {"min": [0.4791569709777832, -0.18767784535884857, 0.13303953409194946, -2.148902654647827, -0.31754323840141296, -0.801457405090332, -0.5833675265312195, -0.4450688064098358, 0.16884437203407288, 2.9450953006744385, -1.1622300148010254, -0.1660955846309662], "max": [0.5587474703788757, -0.0854906514286995, 0.15549127757549286, 0.2352721244096756, 1.3925992250442505, 1.497558832168579, -0.42574653029441833, -0.31660887598991394, 0.1926312893629074, 3.817615032196045, -0.7639346718788147, 0.9708997011184692], "mean": [0.5191793441772461, -0.14531873166561127, 0.1450788676738739, -1.2048711776733398, 0.6546255946159363, 0.16622059047222137, -0.4829302728176117, -0.4147104024887085, 0.18490925431251526, 3.583303213119507, -1.010331153869629, 0.07357919216156006], "std": [0.01765615865588188, 0.022869477048516273, 0.005589720793068409, 0.7883095145225525, 0.5374438762664795, 0.5147454142570496, 0.04438203573226929, 0.04079294577240944, 0.004904011730104685, 0.23168040812015533, 0.12261612713336945, 0.2833028733730316], "count": [460]}, "action": {"min": [-0.11607857793569565, -0.10787370800971985, 0.11706027388572693, -0.5768826603889465, -0.5542816519737244, -0.5878061652183533, -0.6215595602989197, 0.10340067744255066, -0.13452818989753723, 0.0836506187915802, -0.4367518424987793, -0.42950981855392456, 0.4469902813434601, 0.6118709444999695], "max": [-0.09429484605789185, -0.09022921323776245, 0.13916203379631042, 0.784712553024292, 0.5064805150032043, 0.9633969068527222, 0.6936581134796143, 0.139531672000885, -0.10927427560091019, 0.09680047631263733, -0.2531363368034363, -0.1322980523109436, 0.6828165054321289, 0.7136486172676086], "mean": [-0.10585623234510422, -0.10051830857992172, 0.12555456161499023, 0.3227947950363159, -0.1077648177742958, 0.5192371010780334, -0.004587151575833559, 0.12188456207513809, -0.12624052166938782, 0.09062161296606064, -0.35017162561416626, -0.2260296642780304, 0.6274299025535583, 0.6488777995109558], "std": [0.006260541267693043, 0.004900560714304447, 0.004801705479621887, 0.42772459983825684, 0.21615654230117798, 0.5006762742996216, 0.3663517236709595, 0.008690061047673225, 0.0075450194999575615, 0.0031598259229213, 0.05120440572500229, 0.071200430393219, 0.0570337139070034, 0.02520526573061943], "count": [460]}, "timestamp": {"min": [0.0], "max": [15.3], "mean": [7.65], "std": [4.426341604530766], "count": [460]}, "frame_index": {"min": [0], "max": [459], "mean": [229.5], "std": [132.79024813592298], "count": [460]}, "episode_index": {"min": [79], "max": [79], "mean": [79.0], "std": [0.0], "count": [460]}, "index": {"min": [52136], "max": [52595], "mean": [52365.5], "std": [132.79024813592298], "count": [460]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [460]}}} +{"episode_index": 80, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44334890411926087]], [[0.41499591251109497]], [[0.3759448655491003]]], "std": [[[0.21430594961644073]], [[0.20574022732756167]], [[0.20929117030225566]]], "count": [108]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45424209483175987]], [[0.439039941902687]], [[0.4019143089849109]]], "std": [[[0.21117689820416202]], [[0.18810641357860888]], [[0.20210674869605727]]], "count": [108]}, "observation.state": {"min": [0.471086710691452, -0.18801765143871307, 0.13486601412296295, -1.9541006088256836, -0.2770988345146179, -0.6841928958892822, -0.5639988780021667, -0.4072583317756653, 0.17131119966506958, 3.088313579559326, -1.2731789350509644, -0.5604904294013977], "max": [0.5559209585189819, -0.0655505582690239, 0.1566903442144394, 0.03271162882447243, 1.0471820831298828, 1.028685212135315, -0.390623539686203, -0.2664420008659363, 0.19254572689533234, 4.538528919219971, -0.6315339207649231, 1.091639757156372], "mean": [0.519011378288269, -0.14656339585781097, 0.144120991230011, -0.9620242714881897, 0.48552462458610535, 0.27227503061294556, -0.4397626221179962, -0.37151598930358887, 0.18676866590976715, 4.274883270263672, -1.0956469774246216, 0.0996197983622551], "std": [0.022278431802988052, 0.036613501608371735, 0.004481113515794277, 0.7030823230743408, 0.4102036654949188, 0.5137711763381958, 0.04754464700818062, 0.037601884454488754, 0.004403272643685341, 0.30223238468170166, 0.0802297294139862, 0.254494845867157], "count": [519]}, "action": {"min": [-0.11548206955194473, -0.11044750362634659, 0.11494654417037964, -0.5531030297279358, -0.48768913745880127, -0.5577093958854675, -0.5611178278923035, 0.10511371493339539, -0.13226261734962463, 0.08599132299423218, -0.6283045411109924, -0.35824814438819885, -0.6282612085342407, -0.5538497567176819], "max": [-0.09753218293190002, -0.08816108852624893, 0.14035362005233765, 0.6546335220336914, 0.48494818806648254, 0.9682255983352661, 0.6843391060829163, 0.13545560836791992, -0.10848931968212128, 0.10554493963718414, 0.6470288634300232, 0.3549096882343292, 0.8591579794883728, 0.4804758131504059], "mean": [-0.10667836666107178, -0.10078179091215134, 0.12614838778972626, 0.18978667259216309, -0.10258810967206955, 0.43071064352989197, 0.025725075975060463, 0.12358156591653824, -0.12524530291557312, 0.09576760232448578, -0.34236472845077515, -0.20611082017421722, 0.4471023678779602, 0.2241884022951126], "std": [0.004835011903196573, 0.006722648162394762, 0.006751327775418758, 0.4111030101776123, 0.2945603132247925, 0.5903109312057495, 0.40378785133361816, 0.007744744420051575, 0.006898184772580862, 0.003953801468014717, 0.4595485329627991, 0.23213261365890503, 0.47455137968063354, 0.31602904200553894], "count": [519]}, "timestamp": {"min": [0.0], "max": [17.266666666666666], "mean": [8.633333333333333], "std": [4.994070558246123], "count": [519]}, "frame_index": {"min": [0], "max": [518], "mean": [259.0], "std": [149.8221167473837], "count": [519]}, "episode_index": {"min": [80], "max": [80], "mean": [80.0], "std": [0.0], "count": [519]}, "index": {"min": [52596], "max": [53114], "mean": [52855.0], "std": [149.8221167473837], "count": [519]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [519]}}} +{"episode_index": 81, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43715737832349766]], [[0.40937324174545764]], [[0.37033636070393633]]], "std": [[[0.213818127737993]], [[0.20436058309213478]], [[0.207454431433642]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4462196258222814]], [[0.43251718859064664]], [[0.39530948188336823]]], "std": [[[0.21054869637881457]], [[0.18607122321205796]], [[0.19953783199815095]]], "count": [103]}, "observation.state": {"min": [0.46147963404655457, -0.1889057755470276, 0.13093435764312744, -1.9687788486480713, -0.37397411465644836, -0.9133222699165344, -0.5495110750198364, -0.428766131401062, 0.17319470643997192, 2.6687238216400146, -1.2656638622283936, 0.24027137458324432], "max": [0.5690341591835022, -0.07179825007915497, 0.15120704472064972, -0.04487365111708641, 1.1358592510223389, 0.9956337809562683, -0.43194788694381714, -0.2668127119541168, 0.19477924704551697, 3.7347874641418457, -0.718298077583313, 1.3965705633163452], "mean": [0.5132895708084106, -0.14190849661827087, 0.14287856221199036, -0.9049166440963745, 0.7217965126037598, 0.32030731439590454, -0.4806165397167206, -0.3866843283176422, 0.18890823423862457, 3.3748250007629395, -1.062315821647644, 0.6389995813369751], "std": [0.02585979923605919, 0.031877342611551285, 0.0046482691541314125, 0.648514986038208, 0.2580709457397461, 0.5619336366653442, 0.035120125859975815, 0.050230711698532104, 0.0042752716690301895, 0.2893345057964325, 0.1395527571439743, 0.3350239396095276], "count": [486]}, "action": {"min": [-0.11691050976514816, -0.10666748136281967, 0.11182290315628052, -0.5582595467567444, -0.5267549753189087, -0.6125645041465759, -0.6161715388298035, 0.10670914500951767, -0.13357461988925934, 0.08788023889064789, -0.5679382681846619, -0.453098863363266, -0.5696491599082947, -0.5628330111503601], "max": [-0.09578496962785721, -0.08658896386623383, 0.1413579285144806, 0.7222252488136292, 0.42006999254226685, 0.9747674465179443, 0.6226626634597778, 0.1358257383108139, -0.10648804903030396, 0.10600533336400986, 0.5833327770233154, 0.27855801582336426, 0.621884286403656, 0.6934642791748047], "mean": [-0.1071566492319107, -0.09854497015476227, 0.1253567934036255, 0.35986560583114624, -0.17109207808971405, 0.4962746798992157, -0.16568583250045776, 0.12096042931079865, -0.12566602230072021, 0.09731806814670563, -0.30972346663475037, -0.23502060770988464, 0.3518783152103424, 0.4252309799194336], "std": [0.005623314995318651, 0.005681800656020641, 0.007097243331372738, 0.38606563210487366, 0.2614147961139679, 0.4653046727180481, 0.36550113558769226, 0.007603837177157402, 0.008306797593832016, 0.004135856404900551, 0.3894655406475067, 0.213484525680542, 0.4046398997306824, 0.42802420258522034], "count": [486]}, "timestamp": {"min": [0.0], "max": [16.166666666666668], "mean": [8.083333333333334], "std": [4.676527280729516], "count": [486]}, "frame_index": {"min": [0], "max": [485], "mean": [242.5], "std": [140.2958184218855], "count": [486]}, "episode_index": {"min": [81], "max": [81], "mean": [81.0], "std": [0.0], "count": [486]}, "index": {"min": [53115], "max": [53600], "mean": [53357.5], "std": [140.2958184218855], "count": [486]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [486]}}} +{"episode_index": 82, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.441428401416122]], [[0.4121149482570806]], [[0.37292298747276686]]], "std": [[[0.21269580839727908]], [[0.20364475846178756]], [[0.20679340518790712]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4509944389978214]], [[0.43534370642701525]], [[0.398048052832244]]], "std": [[[0.21005820147370727]], [[0.1859711965466307]], [[0.19986451091952306]]], "count": [100]}, "observation.state": {"min": [0.4764385521411896, -0.18380104005336761, 0.13002565503120422, -2.1612741947174072, 0.08225516974925995, -0.6634288430213928, -0.5253775119781494, -0.4666229784488678, 0.16973750293254852, 2.9323041439056396, -1.2770047187805176, 0.0368272103369236], "max": [0.5634428858757019, -0.057310398668050766, 0.1531773954629898, -0.09100543707609177, 1.1655093431472778, 1.2081336975097656, -0.40777572989463806, -0.2853240966796875, 0.1932833194732666, 3.9589462280273438, -1.013023018836975, 1.4004720449447632], "mean": [0.5201534032821655, -0.13127268850803375, 0.1430913656949997, -1.0552335977554321, 0.6847363114356995, 0.21322627365589142, -0.45651495456695557, -0.3859599828720093, 0.18535004556179047, 3.6549596786499023, -1.1343729496002197, 0.46400508284568787], "std": [0.02269548550248146, 0.035280343145132065, 0.005583552643656731, 0.7181010246276855, 0.2938818633556366, 0.5575920939445496, 0.03649911284446716, 0.0491056814789772, 0.005351250991225243, 0.2034352868795395, 0.07370470464229584, 0.29207056760787964], "count": [396]}, "action": {"min": [-0.11360462009906769, -0.10712172091007233, 0.11423742771148682, -0.5436094999313354, -0.5030891299247742, -0.5944960713386536, -0.5851517915725708, 0.11246581375598907, -0.1307101547718048, 0.08383499830961227, -0.5845479965209961, -0.43147969245910645, -0.5817469954490662, -0.5706658959388733], "max": [-0.09564472734928131, -0.08684054762125015, 0.14278270304203033, 0.7181581258773804, 0.4717274010181427, 0.9542780518531799, 0.5965783596038818, 0.14125917851924896, -0.10644438862800598, 0.102558933198452, 0.6191436052322388, 0.4552299678325653, 0.6565174460411072, 0.5926547646522522], "mean": [-0.10595552623271942, -0.0971611887216568, 0.12600620090961456, 0.3372638523578644, -0.14298368990421295, 0.5057491064071655, -0.10396414995193481, 0.12442483007907867, -0.12323077768087387, 0.09586294740438461, -0.2352071851491928, -0.16320578753948212, 0.3302982747554779, 0.28539666533470154], "std": [0.005508376285433769, 0.0065994467586278915, 0.007881115190684795, 0.4015694260597229, 0.2275059074163437, 0.5029873847961426, 0.364972323179245, 0.00728607177734375, 0.008301949128508568, 0.004411920439451933, 0.47053661942481995, 0.25999319553375244, 0.48066478967666626, 0.4554702937602997], "count": [396]}, "timestamp": {"min": [0.0], "max": [13.166666666666666], "mean": [6.583333333333333], "std": [3.8104996270052838], "count": [396]}, "frame_index": {"min": [0], "max": [395], "mean": [197.5], "std": [114.31498881015851], "count": [396]}, "episode_index": {"min": [82], "max": [82], "mean": [82.0], "std": [0.0], "count": [396]}, "index": {"min": [53601], "max": [53996], "mean": [53798.5], "std": [114.31498881015851], "count": [396]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [396]}}} +{"episode_index": 83, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4400128077342048]], [[0.4114380310457516]], [[0.3711935375816994]]], "std": [[[0.21228810395171774]], [[0.20266015154754619]], [[0.20626316903850253]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4517198611111111]], [[0.435537704248366]], [[0.3976969498910676]]], "std": [[[0.20881671389997358]], [[0.18464093432660195]], [[0.19876530569582346]]], "count": [100]}, "observation.state": {"min": [0.48707276582717896, -0.1907978355884552, 0.12562216818332672, -1.640404462814331, -0.00737837003543973, -0.8294752836227417, -0.5680610537528992, -0.4213600158691406, 0.17150823771953583, 3.1130568981170654, -1.359669804573059, -0.12407635897397995], "max": [0.5752509236335754, -0.08606214076280594, 0.15028926730155945, 0.07318179309368134, 0.9937572479248047, 1.1453516483306885, -0.34416359663009644, -0.28198015689849854, 0.19074906408786774, 4.403488636016846, -0.9253023862838745, 0.9796610474586487], "mean": [0.5394030809402466, -0.15497228503227234, 0.14005281031131744, -0.8535828590393066, 0.5470032691955566, 0.18009962141513824, -0.4511585235595703, -0.37992629408836365, 0.18395809829235077, 3.8641483783721924, -1.0645023584365845, 0.23939155042171478], "std": [0.020576834678649902, 0.0303786788135767, 0.0058642043732106686, 0.47839340567588806, 0.249808669090271, 0.5984491109848022, 0.05285197123885155, 0.04519016295671463, 0.004435402806848288, 0.34073179960250854, 0.1293422281742096, 0.3215337097644806], "count": [413]}, "action": {"min": [-0.11322230100631714, -0.10606656223535538, 0.1067257970571518, -0.5778242349624634, -0.5470597147941589, -0.5786407589912415, -0.5738245248794556, 0.10905873030424118, -0.1328548938035965, 0.08642242103815079, -0.5742800235748291, -0.340772807598114, -0.5752466320991516, -0.5712623000144958], "max": [-0.09504501521587372, -0.08867954462766647, 0.1382952481508255, 0.6237732172012329, 0.603042483329773, 0.9631756544113159, 0.6788620948791504, 0.14329637587070465, -0.10435383021831512, 0.10265187919139862, 0.6613807678222656, 0.22975541651248932, 0.7013037204742432, 0.5754458904266357], "mean": [-0.10467158257961273, -0.09876269847154617, 0.12051567435264587, 0.25728148221969604, -0.15873026847839355, 0.5349615216255188, -0.16755306720733643, 0.12478706240653992, -0.12280355393886566, 0.09505786001682281, -0.26337799429893494, -0.2090025395154953, 0.46691766381263733, 0.29944753646850586], "std": [0.004650321323424578, 0.004561249166727066, 0.007539792917668819, 0.35442137718200684, 0.288743793964386, 0.49281635880470276, 0.3774886429309845, 0.007445565424859524, 0.00884696189314127, 0.003995811566710472, 0.4236067533493042, 0.20031866431236267, 0.444813996553421, 0.40229225158691406], "count": [413]}, "timestamp": {"min": [0.0], "max": [13.733333333333333], "mean": [6.866666666666667], "std": [3.974082703383679], "count": [413]}, "frame_index": {"min": [0], "max": [412], "mean": [206.0], "std": [119.22248110151038], "count": [413]}, "episode_index": {"min": [83], "max": [83], "mean": [83.0], "std": [0.0], "count": [413]}, "index": {"min": [53997], "max": [54409], "mean": [54203.0], "std": [119.22248110151038], "count": [413]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [413]}}} +{"episode_index": 84, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4389133387799564]], [[0.410474795751634]], [[0.3706876116557734]]], "std": [[[0.21317336521789687]], [[0.2032992932663525]], [[0.2064247218833845]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44801528050108935]], [[0.433020174291939]], [[0.3957287854030501]]], "std": [[[0.21015825818625336]], [[0.18542652901843737]], [[0.19902933121721406]]], "count": [100]}, "observation.state": {"min": [0.4906870126724243, -0.18597884476184845, 0.12566106021404266, -1.9824087619781494, -0.16191424429416656, -0.7424243092536926, -0.6037400960922241, -0.436318963766098, 0.17211231589317322, 2.7540676593780518, -1.221256971359253, 0.13416139781475067], "max": [0.5674895644187927, -0.07562872022390366, 0.14895279705524445, -0.07506900280714035, 1.0715034008026123, 0.7408838272094727, -0.42123645544052124, -0.25954562425613403, 0.19202850759029388, 3.6429433822631836, -0.8323895335197449, 1.2777884006500244], "mean": [0.5264391303062439, -0.1413433849811554, 0.14044025540351868, -1.099144458770752, 0.668475866317749, 0.08126460015773773, -0.4843445122241974, -0.3889288604259491, 0.1867484599351883, 3.398702621459961, -1.0032798051834106, 0.46615898609161377], "std": [0.022032756358385086, 0.030380647629499435, 0.0063537112437188625, 0.6171368360519409, 0.2836627662181854, 0.49782148003578186, 0.04842919111251831, 0.05066247656941414, 0.0047071548178792, 0.25482505559921265, 0.0718589723110199, 0.32604455947875977], "count": [470]}, "action": {"min": [-0.11659692972898483, -0.10697267204523087, 0.11135242879390717, -0.5267829298973083, -0.4430897533893585, -0.5714045166969299, -0.5700216293334961, 0.10209247469902039, -0.13137899339199066, 0.08837535232305527, -0.5553286075592041, -0.41146814823150635, 0.38355889916419983, 0.5982394218444824], "max": [-0.09513256698846817, -0.08878382295370102, 0.13876040279865265, 0.6751689314842224, 0.36658918857574463, 0.9786785840988159, 0.6333913207054138, 0.14073163270950317, -0.1036047637462616, 0.10415484011173248, -0.3631030023097992, -0.2601466476917267, 0.6394913196563721, 0.6923134922981262], "mean": [-0.10594967752695084, -0.09711449593305588, 0.12235886603593826, 0.31381967663764954, -0.12343645840883255, 0.5388525128364563, -0.10462165623903275, 0.1212543398141861, -0.12463594973087311, 0.09573971480131149, -0.42675185203552246, -0.29470473527908325, 0.5700028538703918, 0.6276382803916931], "std": [0.006091699935495853, 0.005215976387262344, 0.007556645665317774, 0.38700371980667114, 0.21731361746788025, 0.5059909820556641, 0.36324793100357056, 0.008451120927929878, 0.008834904991090298, 0.0037941844202578068, 0.06258109956979752, 0.03947106748819351, 0.07754310965538025, 0.026679830625653267], "count": [470]}, "timestamp": {"min": [0.0], "max": [15.633333333333333], "mean": [7.816666666666666], "std": [4.5225668719335825], "count": [470]}, "frame_index": {"min": [0], "max": [469], "mean": [234.5], "std": [135.6770061580075], "count": [470]}, "episode_index": {"min": [84], "max": [84], "mean": [84.0], "std": [0.0], "count": [470]}, "index": {"min": [54410], "max": [54879], "mean": [54644.5], "std": [135.6770061580075], "count": [470]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [470]}}} +{"episode_index": 85, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44460488674949455]], [[0.41510901587862375]], [[0.37534999950931325]]], "std": [[[0.21003602488343365]], [[0.20128124753213422]], [[0.20471314144213704]]], "count": [111]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45473992129384283]], [[0.43867756727315554]], [[0.4008756452530962]]], "std": [[[0.20723281535270385]], [[0.18340056131157162]], [[0.1974661638258425]]], "count": [111]}, "observation.state": {"min": [0.46617504954338074, -0.22018283605575562, 0.13183917105197906, -2.120384693145752, -0.4099094867706299, -0.8344247937202454, -0.5689337253570557, -0.3903455436229706, 0.17030268907546997, 3.8083887100219727, -1.0500514507293701, -0.5892201066017151], "max": [0.569814145565033, -0.08491916954517365, 0.14886075258255005, 0.46907639503479004, 1.0195815563201904, 0.9914019107818604, -0.4192439913749695, -0.2550587058067322, 0.19119758903980255, 4.337646007537842, -0.6680158376693726, 0.24016231298446655], "mean": [0.5170475840568542, -0.1525728404521942, 0.14168956875801086, -0.9349197149276733, 0.6595818400382996, 0.2142803817987442, -0.4730272889137268, -0.3550644814968109, 0.18208728730678558, 4.180299282073975, -0.7975138425827026, -0.3070041239261627], "std": [0.027085959911346436, 0.030414879322052002, 0.005279360804706812, 0.603338897228241, 0.31801629066467285, 0.47586801648139954, 0.039031803607940674, 0.03753889724612236, 0.0048911129124462605, 0.13402871787548065, 0.12018326669931412, 0.23090729117393494], "count": [534]}, "action": {"min": [-0.11704451590776443, -0.11112978309392929, 0.11083915829658508, -0.5686289072036743, -0.4852198362350464, -0.629917562007904, -0.6339768171310425, 0.1036185622215271, -0.13013514876365662, 0.08770334720611572, -0.5272935628890991, -0.33174577355384827, 0.6139377951622009, 0.4036933481693268], "max": [-0.09649267047643661, -0.08894021809101105, 0.136588454246521, 0.6406520009040833, 0.5886198878288269, 0.9653851985931396, 0.7848095297813416, 0.1333516389131546, -0.10399458557367325, 0.10260695964097977, -0.29876235127449036, -0.12988820672035217, 0.8311542868614197, 0.534217357635498], "mean": [-0.1070597916841507, -0.09958440810441971, 0.12304094433784485, 0.2949114143848419, -0.14197319746017456, 0.49169933795928955, -0.10959416627883911, 0.12077582627534866, -0.12050706893205643, 0.0949171856045723, -0.3710898458957672, -0.20233632624149323, 0.7709319591522217, 0.46345144510269165], "std": [0.00541301304474473, 0.006272577214986086, 0.006229091435670853, 0.3867139220237732, 0.2711314260959625, 0.5060524940490723, 0.3999282717704773, 0.0074507854878902435, 0.007141863461583853, 0.0036316236946731806, 0.07312441617250443, 0.040691256523132324, 0.06608956307172775, 0.029293375089764595], "count": [534]}, "timestamp": {"min": [0.0], "max": [17.766666666666666], "mean": [8.883333333333335], "std": [5.138408385944109], "count": [534]}, "frame_index": {"min": [0], "max": [533], "mean": [266.5], "std": [154.15225157832327], "count": [534]}, "episode_index": {"min": [85], "max": [85], "mean": [85.0], "std": [0.0], "count": [534]}, "index": {"min": [54880], "max": [55413], "mean": [55146.5], "std": [154.15225157832327], "count": [534]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [534]}}} +{"episode_index": 86, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44320935842890613]], [[0.41396912124388535]], [[0.3742390348172812]]], "std": [[[0.2121021677605213]], [[0.20293193191088033]], [[0.20631312872815147]]], "count": [106]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4535842402474617]], [[0.4375669574957866]], [[0.3997555185596251]]], "std": [[[0.20898473367914705]], [[0.18495982583992698]], [[0.19901221260657342]]], "count": [106]}, "observation.state": {"min": [0.47636133432388306, -0.1924196034669876, 0.12501421570777893, -2.1658873558044434, -0.2678075432777405, -0.7481793761253357, -0.5249373316764832, -0.40284863114356995, 0.17214730381965637, 3.342877149581909, -1.2187975645065308, -0.5396990776062012], "max": [0.5622844696044922, -0.06576678901910782, 0.14832280576229095, 0.17089730501174927, 1.171931266784668, 1.3656387329101562, -0.3638874590396881, -0.2835169732570648, 0.18752649426460266, 4.53810977935791, -0.7480848431587219, 0.8223464488983154], "mean": [0.5272938013076782, -0.1461644470691681, 0.1404455602169037, -1.0458528995513916, 0.5676736831665039, 0.2024867683649063, -0.4471718668937683, -0.3587353825569153, 0.18200914561748505, 4.160037517547607, -0.9706597328186035, 0.029777975752949715], "std": [0.02285255305469036, 0.0360989011824131, 0.005221642088145018, 0.716138482093811, 0.41940775513648987, 0.4435146152973175, 0.04342091828584671, 0.03317621350288391, 0.003988996613770723, 0.3537059426307678, 0.13305404782295227, 0.4037129580974579], "count": [506]}, "action": {"min": [-0.11502477526664734, -0.10913798213005066, 0.10931166261434555, -0.5709974765777588, -0.5480554103851318, -0.612282395362854, -0.6186028122901917, 0.11240259557962418, -0.12756846845149994, 0.08908958733081818, -0.5924628973007202, -0.38333234190940857, -0.5909997820854187, -0.5504764318466187], "max": [-0.09705759584903717, -0.08440583199262619, 0.13889844715595245, 0.6983487010002136, 0.7167167067527771, 0.939363956451416, 0.6651877164840698, 0.13902845978736877, -0.10879719257354736, 0.10596154630184174, 0.6062052845954895, 0.38947516679763794, 0.8162854313850403, 0.5066929459571838], "mean": [-0.10664156824350357, -0.09809564054012299, 0.12224970757961273, 0.26013341546058655, -0.10014152526855469, 0.4658324420452118, -0.01623462699353695, 0.12461791932582855, -0.12063324451446533, 0.0956445038318634, -0.23838278651237488, -0.1390361338853836, 0.4579862356185913, 0.2056896835565567], "std": [0.004943599924445152, 0.0075138104148209095, 0.007069578394293785, 0.3968886435031891, 0.27816465497016907, 0.5520326495170593, 0.406697154045105, 0.007072378881275654, 0.0056588314473629, 0.004749117884784937, 0.44146472215652466, 0.24548763036727905, 0.5255701541900635, 0.37470483779907227], "count": [506]}, "timestamp": {"min": [0.0], "max": [16.833333333333332], "mean": [8.416666666666666], "std": [4.868977761752917], "count": [506]}, "frame_index": {"min": [0], "max": [505], "mean": [252.5], "std": [146.0693328525875], "count": [506]}, "episode_index": {"min": [86], "max": [86], "mean": [86.0], "std": [0.0], "count": [506]}, "index": {"min": [55414], "max": [55919], "mean": [55666.5], "std": [146.0693328525875], "count": [506]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [506]}}} +{"episode_index": 87, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43811945806100216]], [[0.4087761955337691]], [[0.36905768518518517]]], "std": [[[0.21298379381441254]], [[0.20375461149957944]], [[0.2067218261004148]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44745397875816995]], [[0.43226726579520697]], [[0.3941827450980392]]], "std": [[[0.20996765428009825]], [[0.1854348469254162]], [[0.19913450130265306]]], "count": [100]}, "observation.state": {"min": [0.4779522120952606, -0.19534653425216675, 0.12867234647274017, -1.3923412561416626, -0.08457799255847931, -0.5847627520561218, -0.5358572602272034, -0.4273296892642975, 0.17337748408317566, 2.893092155456543, -1.0981475114822388, -0.33818814158439636], "max": [0.5849429368972778, -0.051232609897851944, 0.1494259387254715, 0.0018872099462896585, 1.0608457326889038, 1.0577378273010254, -0.37191909551620483, -0.28967198729515076, 0.19207647442817688, 4.062742710113525, -0.8468730449676514, 1.3208091259002686], "mean": [0.5298118591308594, -0.13537102937698364, 0.14263282716274261, -0.6668899059295654, 0.613126277923584, 0.4561713635921478, -0.45274320244789124, -0.3753458559513092, 0.18596184253692627, 3.7631044387817383, -0.9419049620628357, 0.06562160700559616], "std": [0.03336048871278763, 0.04548906162381172, 0.004332692828029394, 0.4910770654678345, 0.2589249014854431, 0.3337247967720032, 0.047360360622406006, 0.03927361220121384, 0.0059637343510985374, 0.28471049666404724, 0.07551609724760056, 0.42850083112716675], "count": [459]}, "action": {"min": [-0.1149020716547966, -0.11127863824367523, 0.1119617149233818, -0.587979257106781, -0.5391169190406799, -0.6033658981323242, -0.6051267981529236, 0.10817597806453705, -0.1311834156513214, 0.08933455497026443, -0.5291121602058411, -0.399260014295578, 0.42781883478164673, 0.5273498296737671], "max": [-0.09335366636514664, -0.08349044620990753, 0.13882343471050262, 0.6344677805900574, 0.5001063346862793, 0.9688776731491089, 0.6533196568489075, 0.1458934098482132, -0.11245503276586533, 0.10695347189903259, -0.31793221831321716, -0.18442919850349426, 0.7555276155471802, 0.6339997053146362], "mean": [-0.10529261827468872, -0.09688936173915863, 0.12545844912528992, 0.12494534999132156, -0.1494358330965042, 0.27384716272354126, 0.007623677141964436, 0.12380895763635635, -0.12438707798719406, 0.0975959524512291, -0.38416144251823425, -0.2418840527534485, 0.6742241382598877, 0.5668686032295227], "std": [0.007110974285751581, 0.00872543454170227, 0.007826139219105244, 0.4457426071166992, 0.33603623509407043, 0.6047520041465759, 0.45790302753448486, 0.010096668265759945, 0.0063715591095387936, 0.004493530839681625, 0.07721700519323349, 0.059080932289361954, 0.08705324679613113, 0.03102532960474491], "count": [459]}, "timestamp": {"min": [0.0], "max": [15.266666666666667], "mean": [7.633333333333334], "std": [4.416719077257167], "count": [459]}, "frame_index": {"min": [0], "max": [458], "mean": [229.0], "std": [132.50157231771504], "count": [459]}, "episode_index": {"min": [87], "max": [87], "mean": [87.0], "std": [0.0], "count": [459]}, "index": {"min": [55920], "max": [56378], "mean": [56149.0], "std": [132.50157231771504], "count": [459]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [459]}}} +{"episode_index": 88, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44047009531590414]], [[0.41123796296296294]], [[0.371628954248366]]], "std": [[[0.2134370682551591]], [[0.20405243752776392]], [[0.20699510951826736]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4497877723311547]], [[0.43459397875816996]], [[0.3967446432461874]]], "std": [[[0.21085614385313609]], [[0.18621008911132303]], [[0.1999766591040834]]], "count": [100]}, "observation.state": {"min": [0.489652156829834, -0.18631865084171295, 0.12536032497882843, -1.6750032901763916, -0.0748768001794815, -0.7079293131828308, -0.5188440680503845, -0.4142010509967804, 0.1757030338048935, 2.919512987136841, -1.1950228214263916, -0.2962646484375], "max": [0.5635432600975037, -0.05785099044442177, 0.1485314965248108, -0.242191880941391, 0.9449780583381653, 0.8430846333503723, -0.3704672157764435, -0.30328717827796936, 0.19004130363464355, 4.123342990875244, -0.8015097379684448, 1.2352102994918823], "mean": [0.5264266133308411, -0.13531064987182617, 0.14135977625846863, -1.0090383291244507, 0.6359434723854065, 0.1736084669828415, -0.44882655143737793, -0.3748377561569214, 0.18512794375419617, 3.9521918296813965, -0.9179574251174927, -0.07608583569526672], "std": [0.022143062204122543, 0.03543347865343094, 0.004755795933306217, 0.45841649174690247, 0.24766357243061066, 0.386575311422348, 0.03834832087159157, 0.03504738584160805, 0.003673079889267683, 0.19159919023513794, 0.09713277965784073, 0.2622291147708893], "count": [450]}, "action": {"min": [-0.1121753454208374, -0.10810632258653641, 0.10579308867454529, -0.4924161732196808, -0.49670594930648804, -0.5952016115188599, -0.5932906866073608, 0.11199747025966644, -0.13145411014556885, 0.0919187068939209, -0.5423611402511597, -0.32927414774894714, 0.4778568744659424, 0.4902147948741913], "max": [-0.09738203883171082, -0.0835961326956749, 0.13862507045269012, 0.6157137155532837, 0.24417029321193695, 0.9712628722190857, 0.6048052310943604, 0.14572589099407196, -0.11124595254659653, 0.10405474901199341, -0.3218342065811157, -0.1990050971508026, 0.7665621042251587, 0.6078709959983826], "mean": [-0.10531557351350784, -0.09668947011232376, 0.12388038635253906, 0.38448822498321533, -0.2386600375175476, 0.6317950487136841, -0.24221085011959076, 0.12401933968067169, -0.12450253218412399, 0.0965661033987999, -0.3864361345767975, -0.23881974816322327, 0.7136667370796204, 0.5262648463249207], "std": [0.004681857768446207, 0.0070818946696817875, 0.007004676386713982, 0.2757532298564911, 0.18052256107330322, 0.3819115161895752, 0.28791409730911255, 0.007197755388915539, 0.006976467557251453, 0.0026268165092915297, 0.05466030165553093, 0.03111705370247364, 0.05356251820921898, 0.023075038567185402], "count": [450]}, "timestamp": {"min": [0.0], "max": [14.966666666666667], "mean": [7.483333333333333], "std": [4.330116327237342], "count": [450]}, "frame_index": {"min": [0], "max": [449], "mean": [224.5], "std": [129.90348981712026], "count": [450]}, "episode_index": {"min": [88], "max": [88], "mean": [88.0], "std": [0.0], "count": [450]}, "index": {"min": [56379], "max": [56828], "mean": [56603.5], "std": [129.90348981712026], "count": [450]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [450]}}} +{"episode_index": 89, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5092119991242684]], [[0.47699078879917983]], [[0.436674673736597]]], "std": [[[0.21181423467996197]], [[0.2077613752924534]], [[0.21312380399912007]]], "count": [102]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5246414546755521]], [[0.5037543466188218]], [[0.4679409922465718]]], "std": [[[0.20699568461619927]], [[0.1867557004827946]], [[0.20137851305082588]]], "count": [102]}, "observation.state": {"min": [0.46327129006385803, -0.20768746733665466, 0.12345995754003525, -1.9587137699127197, -0.09222964197397232, -0.6693212389945984, -0.526311993598938, -0.453702837228775, 0.17909154295921326, 3.4213011264801025, -1.1398216485977173, -0.5705657005310059], "max": [0.5561448931694031, -0.040042370557785034, 0.14683206379413605, -0.18914033472537994, 0.8843114376068115, 0.7253180742263794, -0.4055670499801636, -0.31674015522003174, 0.19163574278354645, 4.394472122192383, -0.6665128469467163, 0.37535184621810913], "mean": [0.5036230087280273, -0.1369524598121643, 0.13654430210590363, -1.1443480253219604, 0.5236862897872925, 0.1422988325357437, -0.4681679308414459, -0.39348480105400085, 0.18575839698314667, 4.179229259490967, -0.8575254082679749, -0.31550055742263794], "std": [0.021052652969956398, 0.04631839692592621, 0.005654138512909412, 0.4446912705898285, 0.24384872615337372, 0.28766345977783203, 0.03411630168557167, 0.036365706473588943, 0.0034361400175839663, 0.32586371898651123, 0.15792657434940338, 0.3183887302875519], "count": [482]}, "action": {"min": [-0.12259098887443542, -0.10948316007852554, 0.11023429036140442, -0.4495932161808014, -0.5125917196273804, -0.5929849147796631, -0.5923168063163757, 0.11190638691186905, -0.13394269347190857, 0.0854882001876831, -0.47344017028808594, -0.30182868242263794, 0.5747990012168884, 0.40646520256996155], "max": [-0.09971915930509567, -0.08198146522045135, 0.1382276564836502, 0.6178980469703674, 0.33378201723098755, 0.9607316255569458, 0.6182968616485596, 0.13203653693199158, -0.1135142594575882, 0.10175114125013351, -0.33533865213394165, -0.14371651411056519, 0.8291901350021362, 0.6443347334861755], "mean": [-0.11117056757211685, -0.09645841270685196, 0.12203042954206467, 0.35359781980514526, -0.2583464980125427, 0.6742518544197083, -0.1831907331943512, 0.12116217613220215, -0.1274513602256775, 0.09216547012329102, -0.3879219591617584, -0.19418750703334808, 0.7539027333259583, 0.47583529353141785], "std": [0.005491165444254875, 0.008195540867745876, 0.007021699566394091, 0.25559741258621216, 0.19601663947105408, 0.37547484040260315, 0.2744400203227997, 0.005909167230129242, 0.006635284051299095, 0.004576896782964468, 0.0489727146923542, 0.032899100333452225, 0.08725769817829132, 0.0769675150513649], "count": [482]}, "timestamp": {"min": [0.0], "max": [16.033333333333335], "mean": [8.016666666666666], "std": [4.6380371806281255], "count": [482]}, "frame_index": {"min": [0], "max": [481], "mean": [240.5], "std": [139.14111541884375], "count": [482]}, "episode_index": {"min": [89], "max": [89], "mean": [89.0], "std": [0.0], "count": [482]}, "index": {"min": [56829], "max": [57310], "mean": [57069.5], "std": [139.14111541884375], "count": [482]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [482]}}} +{"episode_index": 90, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5034067892156863]], [[0.47155913671023963]], [[0.4311792156862745]]], "std": [[[0.21607420240549452]], [[0.21144367422172264]], [[0.2167771274260224]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5204384749455337]], [[0.49936285675381265]], [[0.4632586328976035]]], "std": [[[0.21017078709857098]], [[0.18961946578244748]], [[0.20395102886787153]]], "count": [100]}, "observation.state": {"min": [0.4614487290382385, -0.1776614636182785, 0.12523587048053741, -1.5384950637817383, 0.08580771833658218, -0.5138360857963562, -0.5502369999885559, -0.43600234389305115, 0.17929506301879883, 2.721775531768799, -1.1753472089767456, -0.27729615569114685], "max": [0.5402592420578003, -0.08122769743204117, 0.14768242835998535, -0.3308907151222229, 1.0190349817276, 0.7511047720909119, -0.40378308296203613, -0.28878387808799744, 0.19430997967720032, 3.962510824203491, -0.9161477088928223, 1.1280735731124878], "mean": [0.49917399883270264, -0.14716432988643646, 0.14068225026130676, -1.1428124904632568, 0.6381568312644958, 0.2176872044801712, -0.47280192375183105, -0.37744709849357605, 0.19023756682872772, 3.5494918823242188, -0.9864833950996399, 0.19225285947322845], "std": [0.01979171112179756, 0.027836186811327934, 0.00620264234021306, 0.3986479341983795, 0.24473460018634796, 0.286954790353775, 0.04358459636569023, 0.05161880701780319, 0.00405326671898365, 0.444760262966156, 0.0635724812746048, 0.5128340721130371], "count": [364]}, "action": {"min": [-0.12138790637254715, -0.11139199137687683, 0.11240218579769135, 0.2114453762769699, -0.4662593901157379, 0.567004382610321, -0.5291532278060913, 0.1073300912976265, -0.13440430164337158, 0.09180305898189545, -0.5258046388626099, -0.33600735664367676, 0.3987945020198822, 0.5619356036186218], "max": [-0.09985616058111191, -0.08713884651660919, 0.13428844511508942, 0.6416010856628418, -0.09569405764341354, 0.9509554505348206, -0.11536501348018646, 0.1401132047176361, -0.1150384172797203, 0.1097550168633461, -0.3211614787578583, -0.17744937539100647, 0.7336428165435791, 0.703408420085907], "mean": [-0.10956490784883499, -0.09979657083749771, 0.12371418625116348, 0.47738686203956604, -0.32128357887268066, 0.741597592830658, -0.27431386709213257, 0.12039926648139954, -0.1266908496618271, 0.09904459863901138, -0.3874330520629883, -0.22523106634616852, 0.6246158480644226, 0.6208446025848389], "std": [0.004983389750123024, 0.007270349655300379, 0.005307313520461321, 0.10382818430662155, 0.060439079999923706, 0.10387437045574188, 0.13579601049423218, 0.007852335460484028, 0.007275509648025036, 0.0060669113881886005, 0.07240933179855347, 0.04199851304292679, 0.11820098757743835, 0.05094011127948761], "count": [364]}, "timestamp": {"min": [0.0], "max": [12.1], "mean": [6.05], "std": [3.5025784153328465], "count": [364]}, "frame_index": {"min": [0], "max": [363], "mean": [181.5], "std": [105.0773524599854], "count": [364]}, "episode_index": {"min": [90], "max": [90], "mean": [90.0], "std": [0.0], "count": [364]}, "index": {"min": [57311], "max": [57674], "mean": [57492.5], "std": [105.0773524599854], "count": [364]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [364]}}} +{"episode_index": 91, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49918135893246185]], [[0.46747910130718956]], [[0.42734682189542483]]], "std": [[[0.21803370648629408]], [[0.21314037823316298]], [[0.21802779567845865]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5152361465141612]], [[0.4949047766884532]], [[0.45880356209150325]]], "std": [[[0.2134369153710659]], [[0.19249047142363285]], [[0.20646857118180198]]], "count": [100]}, "observation.state": {"min": [0.467410683631897, -0.1857471764087677, 0.12640902400016785, -1.6081122159957886, 0.3174065947532654, -0.4249827563762665, -0.5189830660820007, -0.41882696747779846, 0.18311652541160583, 3.011357307434082, -1.2231699228286743, -0.541577160358429], "max": [0.538313090801239, -0.061063650995492935, 0.1513185203075409, -0.19815699756145477, 1.0321521759033203, 0.9199846386909485, -0.443423867225647, -0.29377275705337524, 0.19697126746177673, 4.146409034729004, -0.9093158841133118, 0.8877776265144348], "mean": [0.5011491775512695, -0.14360612630844116, 0.14197532832622528, -1.0746064186096191, 0.6580244302749634, 0.23181107640266418, -0.47557830810546875, -0.3639436662197113, 0.19211959838867188, 3.826390266418457, -1.0496057271957397, -0.16477426886558533], "std": [0.020756211131811142, 0.030200345441699028, 0.005723251029849052, 0.4733598530292511, 0.25328922271728516, 0.3200951814651489, 0.02628483437001705, 0.03625412657856941, 0.0031287698075175285, 0.2841092348098755, 0.10859204083681107, 0.34917885065078735], "count": [328]}, "action": {"min": [-0.12142471969127655, -0.1094585582613945, 0.11375630646944046, -0.5341580510139465, -0.4809606075286865, -0.5674241781234741, -0.5657944679260254, 0.10961616784334183, -0.13212993741035461, 0.09309424459934235, -0.4842201769351959, -0.3313123285770416, 0.49516603350639343, 0.5488535165786743], "max": [-0.09922825545072556, -0.0851791650056839, 0.13870811462402344, 0.6304952502250671, 0.27430975437164307, 0.8996567130088806, 0.5833159685134888, 0.13184276223182678, -0.11266970634460449, 0.1061580553650856, -0.29921236634254456, -0.10526754707098007, 0.7607986330986023, 0.6868997812271118], "mean": [-0.10888700932264328, -0.09947609156370163, 0.12513679265975952, 0.37741050124168396, -0.2513408958911896, 0.6216498613357544, -0.18614761531352997, 0.11743302643299103, -0.12597543001174927, 0.10034416615962982, -0.3797051012516022, -0.14692547917366028, 0.6742128133773804, 0.6055639982223511], "std": [0.005447546020150185, 0.007290731184184551, 0.006003353279083967, 0.31265968084335327, 0.17766180634498596, 0.40352046489715576, 0.28485238552093506, 0.005386681295931339, 0.006742512807250023, 0.003744545392692089, 0.06582727283239365, 0.04416752606630325, 0.0729316994547844, 0.036926526576280594], "count": [328]}, "timestamp": {"min": [0.0], "max": [10.9], "mean": [5.449999999999999], "std": [3.1561668030839067], "count": [328]}, "frame_index": {"min": [0], "max": [327], "mean": [163.5], "std": [94.6850040925172], "count": [328]}, "episode_index": {"min": [91], "max": [91], "mean": [91.0], "std": [0.0], "count": [328]}, "index": {"min": [57675], "max": [58002], "mean": [57838.5], "std": [94.6850040925172], "count": [328]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [328]}}} +{"episode_index": 92, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.501207614379085]], [[0.46944526960784316]], [[0.42919385076252725]]], "std": [[[0.21752929849168454]], [[0.21271162948908304]], [[0.21793952874584857]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5171264351851852]], [[0.4963490713507625]], [[0.4605499346405229]]], "std": [[[0.21301482261862323]], [[0.192251023335464]], [[0.20640331521094726]]], "count": [100]}, "observation.state": {"min": [0.42783939838409424, -0.1777309626340866, 0.12486643344163895, -1.578336238861084, 0.43846651911735535, -0.18970119953155518, -0.5593034625053406, -0.42473486065864563, 0.1792043149471283, 2.6429319381713867, -1.227952241897583, -0.7573845982551575], "max": [0.5351467728614807, -0.04018137976527214, 0.14742964506149292, 0.07947248965501785, 1.0615289211273193, 0.8504428267478943, -0.40845534205436707, -0.297363817691803, 0.1964644193649292, 4.5389485359191895, -0.7457619905471802, 1.3924177885055542], "mean": [0.49085837602615356, -0.1209610104560852, 0.1415577232837677, -0.6833775043487549, 0.7238648533821106, 0.4807954728603363, -0.4889495372772217, -0.36768433451652527, 0.1902613788843155, 3.9402685165405273, -0.9337211847305298, -0.12704309821128845], "std": [0.02626556158065796, 0.042184557765722275, 0.00497329281643033, 0.5610964298248291, 0.19134613871574402, 0.2731243669986725, 0.03676190599799156, 0.03369922935962677, 0.004152268636971712, 0.627901554107666, 0.13260193169116974, 0.7226644158363342], "count": [428]}, "action": {"min": [-0.12671196460723877, -0.10832370817661285, 0.1159747987985611, -0.5707388520240784, -0.42935502529144287, -0.5664917826652527, -0.5736002922058105, 0.10529524832963943, -0.13137437403202057, 0.09096452593803406, -0.5948482751846313, -0.4041875898838043, -0.4980120360851288, -0.5780584812164307], "max": [-0.09901507198810577, -0.08366765081882477, 0.14379015564918518, 0.6641778349876404, 0.34024226665496826, 0.8303101062774658, 0.6861332654953003, 0.13335168361663818, -0.11439978331327438, 0.10768540948629379, 0.6082569360733032, 0.3430909216403961, 0.8202468752861023, 0.6626812815666199], "mean": [-0.11134535074234009, -0.09536048769950867, 0.1288653463125229, 0.1829558163881302, -0.12739937007427216, 0.2964361608028412, 0.012061020359396935, 0.11657247692346573, -0.12632593512535095, 0.09730620682239532, -0.417481392621994, -0.16475780308246613, 0.6738170981407166, 0.5316104888916016], "std": [0.006152189802378416, 0.00759147759526968, 0.00811871886253357, 0.46418794989585876, 0.3145942687988281, 0.5767972469329834, 0.46383392810821533, 0.006797390058636665, 0.005296901799738407, 0.004690918605774641, 0.09817676246166229, 0.0983630046248436, 0.17079010605812073, 0.11593496054410934], "count": [428]}, "timestamp": {"min": [0.0], "max": [14.233333333333333], "mean": [7.116666666666667], "std": [4.1184206789604305], "count": [428]}, "frame_index": {"min": [0], "max": [427], "mean": [213.5], "std": [123.5526203688129], "count": [428]}, "episode_index": {"min": [92], "max": [92], "mean": [92.0], "std": [0.0], "count": [428]}, "index": {"min": [58003], "max": [58430], "mean": [58216.5], "std": [123.5526203688129], "count": [428]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [428]}}} +{"episode_index": 93, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5018204883805374]], [[0.4702108607575584]], [[0.43010411411153154]]], "std": [[[0.2163284490405348]], [[0.2109385671663439]], [[0.21611784204899892]]], "count": [114]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.517790027901999]], [[0.49722032307074876]], [[0.46167228289951456]]], "std": [[[0.21193597251776236]], [[0.1908171286063239]], [[0.20488892899800795]]], "count": [114]}, "observation.state": {"min": [0.461487352848053, -0.17372287809848785, 0.12535901367664337, -1.6611636877059937, -0.18049682676792145, -0.6509861350059509, -0.5487155914306641, -0.4482351541519165, 0.17573285102844238, 2.7695846557617188, -1.213332176208496, -0.7247893810272217], "max": [0.5526387691497803, -0.0686473697423935, 0.14959704875946045, 0.0807306319475174, 1.102656602859497, 1.1634955406188965, -0.43464311957359314, -0.3001285791397095, 0.19457313418388367, 4.5389485359191895, -0.33421286940574646, 1.2685704231262207], "mean": [0.49698370695114136, -0.12573346495628357, 0.14257290959358215, -0.8581141829490662, 0.770768940448761, 0.42524459958076477, -0.49088025093078613, -0.3884260654449463, 0.18520601093769073, 4.14763069152832, -0.7248606085777283, -0.3024929165840149], "std": [0.02608596906065941, 0.029241977259516716, 0.004357843194156885, 0.6056841611862183, 0.2256971001625061, 0.3876221179962158, 0.028807958588004112, 0.03689662367105484, 0.004269694909453392, 0.5032202005386353, 0.2952233850955963, 0.5482423305511475], "count": [554]}, "action": {"min": [-0.11801987886428833, -0.10898199677467346, 0.11411862820386887, -0.5798216462135315, -0.5008578300476074, -0.5780647993087769, -0.5805398225784302, 0.11014849692583084, -0.13492077589035034, 0.07934414595365524, -0.5576807856559753, -0.3856450915336609, 0.35713282227516174, 0.2522595524787903], "max": [-0.1004277840256691, -0.08652105927467346, 0.13902127742767334, 0.6819955706596375, 0.33895009756088257, 0.9850953817367554, 0.6343966722488403, 0.13259285688400269, -0.1128542572259903, 0.10453937202692032, -0.2506105601787567, -0.09697182476520538, 0.9099606275558472, 0.6632395386695862], "mean": [-0.10967724770307541, -0.09629524499177933, 0.12812741100788116, 0.2679141163825989, -0.1700567603111267, 0.39072299003601074, -0.0450611412525177, 0.1191512867808342, -0.1266009658575058, 0.09170106798410416, -0.3657640218734741, -0.1791709065437317, 0.7641072869300842, 0.44328880310058594], "std": [0.005559660028666258, 0.006100618280470371, 0.006802421063184738, 0.4591987729072571, 0.266868531703949, 0.5471065640449524, 0.4039802849292755, 0.00380463944748044, 0.005738995969295502, 0.006950968410819769, 0.08277981728315353, 0.06452234089374542, 0.15384848415851593, 0.13807855546474457], "count": [554]}, "timestamp": {"min": [0.0], "max": [18.433333333333334], "mean": [9.216666666666665], "std": [5.330858800939635], "count": [554]}, "frame_index": {"min": [0], "max": [553], "mean": [276.5], "std": [159.92576402818904], "count": [554]}, "episode_index": {"min": [93], "max": [93], "mean": [93.0], "std": [0.0], "count": [554]}, "index": {"min": [58431], "max": [58984], "mean": [58707.5], "std": [159.92576402818904], "count": [554]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [554]}}} +{"episode_index": 94, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4971146023965141]], [[0.4648822058823529]], [[0.4243821051198257]]], "std": [[[0.21641099298044014]], [[0.21089900732410774]], [[0.2159166836649785]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.513657818627451]], [[0.4926143191721133]], [[0.4565095533769063]]], "std": [[[0.21225854586373988]], [[0.1906783868280599]], [[0.2046357650908825]]], "count": [100]}, "observation.state": {"min": [0.4421573579311371, -0.18873587250709534, 0.12112534046173096, -1.8370935916900635, -0.05957350879907608, -0.5507028102874756, -0.5562916398048401, -0.4044858515262604, 0.17642506957054138, 2.7163236141204834, -1.1351760625839233, -0.873537540435791], "max": [0.5625161528587341, -0.06802182644605637, 0.14821909368038177, -0.20151203870773315, 1.1228787899017334, 0.8533828258514404, -0.4262716770172119, -0.29761096835136414, 0.1957462728023529, 4.372454643249512, -0.6799032092094421, 1.2338285446166992], "mean": [0.5140753388404846, -0.1306997537612915, 0.14169469475746155, -0.9681905508041382, 0.7373641133308411, 0.2767423987388611, -0.49676066637039185, -0.36756253242492676, 0.1875501126050949, 3.870234727859497, -0.8538036942481995, -0.25959792733192444], "std": [0.02863752841949463, 0.030834827572107315, 0.006435306742787361, 0.471290647983551, 0.225955992937088, 0.2903580963611603, 0.039017319679260254, 0.0409068763256073, 0.004955008625984192, 0.6140062808990479, 0.13241954147815704, 0.7429412603378296], "count": [373]}, "action": {"min": [-0.12491288781166077, -0.1071343719959259, 0.10968074947595596, -0.5443098545074463, -0.4944625496864319, -0.5844709873199463, -0.5888311862945557, 0.10329397767782211, -0.1324847936630249, 0.08800465613603592, -0.49593600630760193, -0.3586713373661041, 0.3870685398578644, 0.45759549736976624], "max": [-0.09528859704732895, -0.08464920520782471, 0.13672620058059692, 0.7081823945045471, 0.49135521054267883, 0.9740688800811768, 0.6105129718780518, 0.1358722448348999, -0.11441648006439209, 0.10833341628313065, -0.2588375210762024, -0.025877824053168297, 0.8388398885726929, 0.7175644040107727], "mean": [-0.10678032040596008, -0.09613504260778427, 0.12517160177230835, 0.43205174803733826, -0.2578548491001129, 0.6127774119377136, -0.260659396648407, 0.11684834212064743, -0.12443511933088303, 0.09582166373729706, -0.34422728419303894, -0.1286740005016327, 0.6975703239440918, 0.5698834657669067], "std": [0.006648453883826733, 0.007021734025329351, 0.006653386168181896, 0.27645719051361084, 0.1681443154811859, 0.34397292137145996, 0.2835208475589752, 0.0076209502294659615, 0.005508457776159048, 0.006843586917966604, 0.08014843612909317, 0.10818029940128326, 0.1637006551027298, 0.09303053468465805], "count": [373]}, "timestamp": {"min": [0.0], "max": [12.4], "mean": [6.199999999999998], "std": [3.5891812746394156], "count": [373]}, "frame_index": {"min": [0], "max": [372], "mean": [186.0], "std": [107.67543823918248], "count": [373]}, "episode_index": {"min": [94], "max": [94], "mean": [94.0], "std": [0.0], "count": [373]}, "index": {"min": [58985], "max": [59357], "mean": [59171.0], "std": [107.67543823918248], "count": [373]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [373]}}} +{"episode_index": 95, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5029735593681918]], [[0.46957630174291937]], [[0.42914863017429195]]], "std": [[[0.21684996301639542]], [[0.2115464385885436]], [[0.21679526267538862]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5194782461873638]], [[0.49747988017429196]], [[0.46145772058823525]]], "std": [[[0.21286206490495968]], [[0.19112434660060507]], [[0.20553782388285663]]], "count": [100]}, "observation.state": {"min": [0.4517875909805298, -0.16680331528186798, 0.12868140637874603, -2.048670768737793, 0.0769263505935669, -0.419065922498703, -0.5090516805648804, -0.4138767123222351, 0.1757989525794983, 2.8345887660980225, -1.070000410079956, -0.832372784614563], "max": [0.5529399514198303, -0.044629670679569244, 0.15213389694690704, -0.1291690170764923, 1.1398216485977173, 0.7536992430686951, -0.4415395259857178, -0.29774224758148193, 0.18975740671157837, 4.2791428565979, -0.7329182028770447, 1.1116807460784912], "mean": [0.5038057565689087, -0.1214178204536438, 0.14114736020565033, -1.17131769657135, 0.690047025680542, 0.2365361750125885, -0.4738505482673645, -0.3654855489730835, 0.18516121804714203, 4.059891223907471, -0.8860296607017517, -0.5458038449287415], "std": [0.02920052409172058, 0.03248720243573189, 0.005161758046597242, 0.6898233890533447, 0.31789159774780273, 0.37940406799316406, 0.02038806863129139, 0.03889584541320801, 0.003650663886219263, 0.31412312388420105, 0.11443941295146942, 0.4062897264957428], "count": [293]}, "action": {"min": [-0.12130977213382721, -0.10727046430110931, 0.11744876205921173, -0.5557407736778259, -0.37639501690864563, -0.5696942806243896, -0.5610787868499756, 0.11344840377569199, -0.13016098737716675, 0.08914055675268173, -0.44722461700439453, -0.394604355096817, 0.40882062911987305, 0.5004227161407471], "max": [-0.09439410269260406, -0.08382101356983185, 0.14087103307247162, 0.7057448625564575, 0.32690519094467163, 0.9069419503211975, 0.6119867563247681, 0.13343112170696259, -0.11291497200727463, 0.10280832648277283, -0.2536434531211853, 0.020286312326788902, 0.8157734274864197, 0.7038838863372803], "mean": [-0.10894978791475296, -0.09571391344070435, 0.1263100504875183, 0.31092655658721924, -0.14624424278736115, 0.48251399397850037, -0.00637798523530364, 0.11996208876371384, -0.12314536422491074, 0.09557659924030304, -0.30082303285598755, -0.07941438257694244, 0.749535322189331, 0.5683011412620544], "std": [0.007519088219851255, 0.00716553907841444, 0.005947404075413942, 0.4293445348739624, 0.23388168215751648, 0.5333168506622314, 0.3544192612171173, 0.00472291512414813, 0.006169996224343777, 0.004812823608517647, 0.04258791357278824, 0.0802333876490593, 0.08497920632362366, 0.05437914654612541], "count": [293]}, "timestamp": {"min": [0.0], "max": [9.733333333333333], "mean": [4.866666666666667], "std": [2.8193773938387334], "count": [293]}, "frame_index": {"min": [0], "max": [292], "mean": [146.0], "std": [84.581321815162], "count": [293]}, "episode_index": {"min": [95], "max": [95], "mean": [95.0], "std": [0.0], "count": [293]}, "index": {"min": [59358], "max": [59650], "mean": [59504.0], "std": [84.581321815162], "count": [293]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [293]}}} +{"episode_index": 96, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49540128267973854]], [[0.4638570969498911]], [[0.4233062908496732]]], "std": [[[0.21825699817523925]], [[0.21301257723146305]], [[0.21783278686920413]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5108780555555555]], [[0.4907023393246187]], [[0.4541897794117647]]], "std": [[[0.21393683395814117]], [[0.19266204768214365]], [[0.20649424396440308]]], "count": [100]}, "observation.state": {"min": [0.4482969343662262, -0.1915469467639923, 0.12654641270637512, -1.5844172239303589, 0.16205088794231415, -0.5592552423477173, -0.5706173181533813, -0.4173750877380371, 0.17793653905391693, 2.753648281097412, -1.1922900676727295, -0.1932418793439865], "max": [0.5666941404342651, -0.08308116346597672, 0.14872075617313385, 0.10211899876594543, 1.0518277883529663, 1.2822465896606445, -0.44819653034210205, -0.3041752874851227, 0.19744570553302765, 3.7903554439544678, -0.749451220035553, 1.2034035921096802], "mean": [0.5023882389068604, -0.14116348326206207, 0.14251506328582764, -0.8415812253952026, 0.7610786557197571, 0.4134964942932129, -0.5055203437805176, -0.3674125671386719, 0.1927202045917511, 3.396291971206665, -1.012462854385376, 0.23496238887310028], "std": [0.03233664855360985, 0.0345650352537632, 0.004470914136618376, 0.5842952132225037, 0.24812203645706177, 0.4352777302265167, 0.032977938652038574, 0.03738383576273918, 0.0044998531229794025, 0.3771001994609833, 0.09340360015630722, 0.44883349537849426], "count": [391]}, "action": {"min": [-0.12253397703170776, -0.10937842726707458, 0.11350142955780029, -0.593159019947052, -0.5300610065460205, -0.585004448890686, -0.5938168168067932, 0.10446061193943024, -0.13354822993278503, 0.0898350328207016, -0.46460822224617004, -0.4266744554042816, 0.34402236342430115, 0.6272922158241272], "max": [-0.09918190538883209, -0.08812975138425827, 0.1386616975069046, 0.6930962204933167, 0.31401151418685913, 0.9483487606048584, 0.6433248519897461, 0.12635599076747894, -0.11567220836877823, 0.10809963196516037, -0.3211727440357208, -0.13305015861988068, 0.6756805777549744, 0.7423938512802124], "mean": [-0.10923464596271515, -0.09815717488527298, 0.1262364238500595, 0.4171653389930725, -0.2565872073173523, 0.5651293396949768, -0.23755931854248047, 0.1149320974946022, -0.12578237056732178, 0.10011624544858932, -0.37380996346473694, -0.21199777722358704, 0.5805767774581909, 0.6783074140548706], "std": [0.005641820840537548, 0.007333393208682537, 0.007420038804411888, 0.31990671157836914, 0.1807425618171692, 0.3789895176887512, 0.3250982463359833, 0.005341452080756426, 0.006684667896479368, 0.0042393142357468605, 0.03477026894688606, 0.07330247759819031, 0.09962750226259232, 0.0405636765062809], "count": [391]}, "timestamp": {"min": [0.0], "max": [13.0], "mean": [6.5], "std": [3.76238694920599], "count": [391]}, "frame_index": {"min": [0], "max": [390], "mean": [195.0], "std": [112.8716084761797], "count": [391]}, "episode_index": {"min": [96], "max": [96], "mean": [96.0], "std": [0.0], "count": [391]}, "index": {"min": [59651], "max": [60041], "mean": [59846.0], "std": [112.8716084761797], "count": [391]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [391]}}} +{"episode_index": 97, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5087594253812636]], [[0.47541357843137255]], [[0.4351689705882353]]], "std": [[[0.21589166386176645]], [[0.21126439636642586]], [[0.21655684510321901]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5268485539215687]], [[0.5041074673202615]], [[0.4684596786492375]]], "std": [[[0.20924360445113385]], [[0.18895095221929054]], [[0.2034782858045622]]], "count": [100]}, "observation.state": {"min": [0.45224323868751526, -0.1835307478904724, 0.12404458224773407, -2.6207048892974854, -0.40225785970687866, -0.459856241941452, -0.494656503200531, -0.46442970633506775, 0.17061249911785126, 3.352522850036621, -1.4100886583328247, -0.8400662541389465], "max": [0.5534651279449463, -0.04751025140285492, 0.1461670696735382, -0.49109384417533875, 1.1444673538208008, 0.8672603368759155, -0.3973809480667114, -0.38014379143714905, 0.185684472322464, 4.505188465118408, -0.6342666149139404, 0.769232988357544], "mean": [0.5047096014022827, -0.12737293541431427, 0.13742096722126007, -1.5314096212387085, 0.41078147292137146, 0.10747338086366653, -0.4425290822982788, -0.4075421690940857, 0.1797904074192047, 4.199540138244629, -0.9302878975868225, -0.32185178995132446], "std": [0.026437316089868546, 0.03149767592549324, 0.006032932549715042, 0.6860836744308472, 0.526807427406311, 0.30364179611206055, 0.023644249886274338, 0.01834610477089882, 0.00396720552816987, 0.34086740016937256, 0.24228185415267944, 0.405124694108963], "count": [319]}, "action": {"min": [-0.12415874749422073, -0.10626119375228882, 0.11288478970527649, 0.16467511653900146, -0.4188355803489685, 0.5281667113304138, -0.5343958139419556, 0.11742578446865082, -0.12946295738220215, 0.07900792360305786, -0.5639652013778687, -0.4231127202510834, 0.5373531579971313, 0.37140074372291565], "max": [-0.09734468162059784, -0.08356489986181259, 0.13885106146335602, 0.7043968439102173, -0.09137452393770218, 0.96266770362854, 0.4462346136569977, 0.1395634412765503, -0.11914800107479095, 0.09290368854999542, -0.3177073895931244, -0.03244100138545036, 0.8535029292106628, 0.6129396557807922], "mean": [-0.111295685172081, -0.09513386338949203, 0.12385567277669907, 0.4239861071109772, -0.22633405029773712, 0.7774428725242615, -0.09148121625185013, 0.12762399017810822, -0.12502950429916382, 0.08877873420715332, -0.4077138900756836, -0.1705315113067627, 0.7435259222984314, 0.475420206785202], "std": [0.008346104063093662, 0.005369030404835939, 0.005586409009993076, 0.17377294600009918, 0.09269605576992035, 0.12674248218536377, 0.3183843195438385, 0.004762787371873856, 0.002586393617093563, 0.0033126564230769873, 0.06567039340734482, 0.06772643327713013, 0.10103897005319595, 0.08200596272945404], "count": [319]}, "timestamp": {"min": [0.0], "max": [10.6], "mean": [5.3], "std": [3.0695638488590236], "count": [319]}, "frame_index": {"min": [0], "max": [318], "mean": [159.0], "std": [92.0869154657707], "count": [319]}, "episode_index": {"min": [97], "max": [97], "mean": [97.0], "std": [0.0], "count": [319]}, "index": {"min": [60042], "max": [60360], "mean": [60201.0], "std": [92.0869154657707], "count": [319]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [319]}}} +{"episode_index": 98, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5008758544702284]], [[0.4688314070276428]], [[0.4280322050328796]]], "std": [[[0.21377488379528878]], [[0.20856231813401288]], [[0.2135411271544116]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5132085207171553]], [[0.49317447432591793]], [[0.45688018428574284]]], "std": [[[0.2118657822917504]], [[0.19007020907644767]], [[0.20400916801203886]]], "count": [109]}, "observation.state": {"min": [0.4790102243423462, -0.22972041368484497, 0.12788937985897064, -2.239278793334961, -0.5267336964607239, -0.38372525572776794, -0.6086594462394714, -0.45110800862312317, 0.17520396411418915, 2.643141746520996, -1.0285996198654175, -1.2166080474853516], "max": [0.5569557547569275, -0.009406290017068386, 0.15486128628253937, -0.05284186825156212, 0.9590516090393066, 1.0621165037155151, -0.47696369886398315, -0.32403814792633057, 0.195127934217453, 4.540206432342529, 0.5983312129974365, 1.1937514543533325], "mean": [0.5113400816917419, -0.09488602727651596, 0.14451685547828674, -0.9198228716850281, 0.4891297519207001, 0.3916608691215515, -0.5290404558181763, -0.38522955775260925, 0.1858994960784912, 3.5778310298919678, -0.15561705827713013, -0.038016367703676224], "std": [0.017249006778001785, 0.06672971695661545, 0.0064927805215120316, 0.6816548705101013, 0.3851184546947479, 0.3200889825820923, 0.03651030734181404, 0.03292685002088547, 0.005502776708453894, 0.8587862849235535, 0.4408797025680542, 0.9594417214393616], "count": [523]}, "action": {"min": [-0.11738228052854538, -0.11606089770793915, 0.11590752750635147, -0.5381060838699341, -0.519892692565918, -0.6016176342964172, -0.6037728190422058, 0.10618845373392105, -0.1383698731660843, 0.07762722671031952, -0.47715938091278076, -0.5305225253105164, 0.2968028485774994, -0.039684172719717026], "max": [-0.09423404186964035, -0.0813906192779541, 0.14937876164913177, 0.6641257405281067, 0.538195013999939, 0.9484702944755554, 0.6552433967590332, 0.1290418803691864, -0.11798883974552155, 0.10471125692129135, -0.02224808745086193, 0.10133951157331467, 0.9978032112121582, 0.8178808689117432], "mean": [-0.10718388110399246, -0.09281418472528458, 0.13264092803001404, 0.22244206070899963, -0.17497806251049042, 0.4218253493309021, -0.019205648452043533, 0.11763206869363785, -0.12840424478054047, 0.09219322353601456, -0.1802656054496765, -0.21930472552776337, 0.6472566723823547, 0.45993587374687195], "std": [0.0061582946218550205, 0.009795824065804482, 0.011192225851118565, 0.3854197561740875, 0.2865367829799652, 0.569212019443512, 0.43236878514289856, 0.006089877802878618, 0.0054784296080470085, 0.006942081265151501, 0.13223963975906372, 0.2508735656738281, 0.3027976453304291, 0.341783732175827], "count": [523]}, "timestamp": {"min": [0.0], "max": [17.4], "mean": [8.700000000000001], "std": [5.032560647092756], "count": [523]}, "frame_index": {"min": [0], "max": [522], "mean": [261.0], "std": [150.9768194127827], "count": [523]}, "episode_index": {"min": [98], "max": [98], "mean": [98.0], "std": [0.0], "count": [523]}, "index": {"min": [60361], "max": [60883], "mean": [60622.0], "std": [150.9768194127827], "count": [523]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [523]}}} +{"episode_index": 99, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4975898462021343]], [[0.46580412697093904]], [[0.4256033242864001]]], "std": [[[0.2171706923206882]], [[0.2109582918880134]], [[0.21553507629535548]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5089451575828071]], [[0.48971651480742956]], [[0.4539386516376796]]], "std": [[[0.21528805098110235]], [[0.1923971991375242]], [[0.20595590655255078]]], "count": [118]}, "observation.state": {"min": [0.4614255726337433, -0.1509794294834137, 0.12398625165224075, -1.7096021175384521, 0.24198323488235474, -0.5218575596809387, -0.6102426052093506, -0.5112680792808533, 0.169259175658226, 2.807748317718506, -0.8476928472518921, -0.9508742690086365], "max": [0.5852596163749695, -0.056738920509815216, 0.1526433229446411, -0.3713608980178833, 0.8095712661743164, 1.2185112237930298, -0.4470072090625763, -0.3432523012161255, 0.19463275372982025, 4.539158344268799, 0.6058462262153625, 0.30681926012039185], "mean": [0.5010775327682495, -0.11155478656291962, 0.14231334626674652, -1.1018229722976685, 0.5840501189231873, 0.4301534593105316, -0.5666890740394592, -0.4279415011405945, 0.1823551505804062, 3.9386022090911865, 0.0015969285741448402, -0.49215808510780334], "std": [0.03687756508588791, 0.029258595779538155, 0.005764748901128769, 0.4452984929084778, 0.12130848318338394, 0.5019626617431641, 0.03318214789032936, 0.04189743101596832, 0.005183955188840628, 0.6618106365203857, 0.5299119353294373, 0.3609561622142792], "count": [585]}, "action": {"min": [-0.11950994282960892, -0.10625852644443512, 0.11160944402217865, -0.6028479337692261, -0.6118319034576416, -0.6045740246772766, -0.5014249682426453, 0.1057519018650055, -0.14009317755699158, 0.06620673835277557, -0.29197824001312256, -0.3735453486442566, 0.48850440979003906, -0.06154376268386841], "max": [-0.09326384961605072, -0.0853295624256134, 0.14104363322257996, 0.6315962672233582, 0.6509592533111572, 0.9211893081665039, 0.18270067870616913, 0.13278168439865112, -0.11410614103078842, 0.09302075207233429, 0.10338898003101349, -0.07894165068864822, 0.9935046434402466, 0.8178187012672424], "mean": [-0.10819001495838165, -0.09557610005140305, 0.1288575977087021, 0.43104884028434753, -0.31546738743782043, 0.6419429779052734, -0.22978241741657257, 0.11632796376943588, -0.12923629581928253, 0.08186368644237518, -0.04048154875636101, -0.1782638132572174, 0.8394209146499634, 0.30935749411582947], "std": [0.007773019839078188, 0.006046125665307045, 0.005972431041300297, 0.24409733712673187, 0.26388218998908997, 0.3051021099090576, 0.1657758355140686, 0.005898972507566214, 0.0069057228974998, 0.007218933664262295, 0.05753302574157715, 0.07131564617156982, 0.19308705627918243, 0.3472393751144409], "count": [585]}, "timestamp": {"min": [0.0], "max": [19.466666666666665], "mean": [9.733333333333333], "std": [5.629156900230034], "count": [585]}, "frame_index": {"min": [0], "max": [584], "mean": [292.0], "std": [168.87470700690102], "count": [585]}, "episode_index": {"min": [99], "max": [99], "mean": [99.0], "std": [0.0], "count": [585]}, "index": {"min": [60884], "max": [61468], "mean": [61176.0], "std": [168.87470700690102], "count": [585]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [585]}}} +{"episode_index": 100, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4923066960877418]], [[0.44985452162821443]], [[0.3887639051822058]]], "std": [[[0.20229549552798484]], [[0.19734243082032152]], [[0.20106986189097154]]], "count": [117]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5079433597750591]], [[0.4788411005902836]], [[0.4213909930543917]]], "std": [[[0.20818215542224197]], [[0.18744427569833935]], [[0.20203604729284494]]], "count": [117]}, "observation.state": {"min": [0.4581820070743561, -0.16871081292629242, 0.12767678499221802, -1.6726967096328735, 0.3836752772331238, -0.10203682631254196, -0.5659682154655457, -0.36492231488227844, 0.1489618718624115, 1.7028920650482178, -0.4857427477836609, 0.2505159080028534], "max": [0.6326848864555359, -0.03976434841752052, 0.15779219567775726, -0.8083547353744507, 0.9652002453804016, 0.9645876884460449, -0.33284980058670044, -0.259784996509552, 0.18508169054985046, 2.035250663757324, -0.023638110607862473, 0.7202422618865967], "mean": [0.5482611656188965, -0.07540541887283325, 0.141509547829628, -1.2344263792037964, 0.5925415754318237, 0.3283039927482605, -0.48399871587753296, -0.3252065181732178, 0.16614924371242523, 1.893642783164978, -0.26108384132385254, 0.5266673564910889], "std": [0.04683181643486023, 0.032991912215948105, 0.008414297364652157, 0.19408920407295227, 0.14142809808254242, 0.2835969030857086, 0.051714327186346054, 0.030327223241329193, 0.009231972508132458, 0.08680280297994614, 0.13589206337928772, 0.1270935982465744], "count": [578]}, "action": {"min": [-0.1203702762722969, -0.10391008108854294, 0.1123582050204277, -0.5886698365211487, -0.5897878408432007, -0.5908176302909851, -0.33768439292907715, 0.11754253506660461, -0.12486346065998077, 0.08558768779039383, 0.0004939290811307728, -0.29429319500923157, -0.02527756243944168, 0.9361820816993713], "max": [-0.08470473438501358, -0.07581126689910889, 0.14053975045681, 0.6887079477310181, 0.6136912703514099, 0.8281911611557007, 0.1665424257516861, 0.15717586874961853, -0.09862503409385681, 0.10463254153728485, 0.18350708484649658, -0.15834306180477142, 0.21582339704036713, 0.985338032245636], "mean": [-0.10027500987052917, -0.08763039857149124, 0.12735490500926971, 0.45298540592193604, -0.3009740114212036, 0.6826928853988647, -0.19694557785987854, 0.13144412636756897, -0.11065264791250229, 0.0914006233215332, 0.08585573732852936, -0.21570619940757751, 0.10846662521362305, 0.9620774984359741], "std": [0.009904776699841022, 0.006628287956118584, 0.0066359685733914375, 0.23815825581550598, 0.21905434131622314, 0.289884477853775, 0.10307633131742477, 0.009303873404860497, 0.006569011136889458, 0.004975168500095606, 0.04664600268006325, 0.03617549687623978, 0.07176699489355087, 0.010293783619999886], "count": [578]}, "timestamp": {"min": [0.0], "max": [19.233333333333334], "mean": [9.616666666666669], "std": [5.561799269221346], "count": [578]}, "frame_index": {"min": [0], "max": [577], "mean": [288.5], "std": [166.8539780766404], "count": [578]}, "episode_index": {"min": [100], "max": [100], "mean": [100.0], "std": [0.0], "count": [578]}, "index": {"min": [61469], "max": [62046], "mean": [61757.5], "std": [166.8539780766404], "count": [578]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [578]}}} +{"episode_index": 101, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4988834168142854]], [[0.45607432349886995]], [[0.3944255288823733]]], "std": [[[0.19763240948911412]], [[0.19430564665629754]], [[0.19930891119869565]]], "count": [107]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5181756688656771]], [[0.48706599831001973]], [[0.43018153034838025]]], "std": [[[0.2039521782535686]], [[0.1851196107619894]], [[0.20035517338237463]]], "count": [107]}, "observation.state": {"min": [0.5145038962364197, -0.14029116928577423, 0.13216714560985565, -1.5275912284851074, 0.4396962523460388, 0.07691697031259537, -0.5009427666664124, -0.47602152824401855, 0.14073042571544647, 0.9148772358894348, -0.26029253005981445, 0.3724483251571655], "max": [0.6084895730018616, 0.007151249796152115, 0.1570805311203003, -0.959121823310852, 0.7993234992027283, 0.8889834880828857, -0.35509899258613586, -0.3257989287376404, 0.1772974729537964, 1.2103303670883179, 0.5580234527587891, 0.8177688121795654], "mean": [0.5495952367782593, -0.06313331425189972, 0.142936572432518, -1.1584532260894775, 0.5534946918487549, 0.38668015599250793, -0.4479557275772095, -0.39186638593673706, 0.1615770310163498, 1.1006981134414673, 0.15928518772125244, 0.5633487105369568], "std": [0.026771459728479385, 0.04144996032118797, 0.0054130712524056435, 0.12810449302196503, 0.07548855245113373, 0.21335569024085999, 0.035999149084091187, 0.04039384052157402, 0.00958974752575159, 0.07347381114959717, 0.25277769565582275, 0.1256706714630127], "count": [511]}, "action": {"min": [-0.10775770992040634, -0.09987391531467438, 0.11541303247213364, 0.43467506766319275, -0.5707199573516846, 0.5603027939796448, -0.33233362436294556, 0.12796005606651306, -0.13637280464172363, 0.07126767933368683, 0.06421738862991333, -0.28415748476982117, -0.4071517288684845, 0.8441647887229919], "max": [-0.08830810338258743, -0.07578913122415543, 0.13856258988380432, 0.6319658160209656, -0.2880105972290039, 0.8005884885787964, -0.0928109884262085, 0.15303213894367218, -0.10007040202617645, 0.09439720213413239, 0.31932568550109863, 0.1379217803478241, -0.17889189720153809, 0.9561732411384583], "mean": [-0.09945609420537949, -0.08640681207180023, 0.13001014292240143, 0.489375501871109, -0.38846737146377563, 0.7317457795143127, -0.23576170206069946, 0.13686278462409973, -0.11479934304952621, 0.08177726715803146, 0.19899137318134308, -0.10443306714296341, -0.2909843623638153, 0.9172534942626953], "std": [0.0057685887441039085, 0.006650863215327263, 0.006462180521339178, 0.047125499695539474, 0.08208055049180984, 0.06639036536216736, 0.07213743776082993, 0.006521862465888262, 0.010221606120467186, 0.005478302948176861, 0.06827235221862793, 0.10375825315713882, 0.08256714046001434, 0.03500968590378761], "count": [511]}, "timestamp": {"min": [0.0], "max": [17.0], "mean": [8.5], "std": [4.917090377222873], "count": [511]}, "frame_index": {"min": [0], "max": [510], "mean": [255.0], "std": [147.5127113166862], "count": [511]}, "episode_index": {"min": [101], "max": [101], "mean": [101.0], "std": [0.0], "count": [511]}, "index": {"min": [62047], "max": [62557], "mean": [62302.0], "std": [147.5127113166862], "count": [511]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [511]}}} +{"episode_index": 102, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5004007707658227]], [[0.4580303065670713]], [[0.3971051953461123]]], "std": [[[0.1993985078348495]], [[0.195196276406519]], [[0.19938835288144713]]], "count": [119]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5155776303985646]], [[0.4859741582907673]], [[0.42948919371670236]]], "std": [[[0.2041126572117078]], [[0.1840975941520602]], [[0.1989272278450316]]], "count": [119]}, "observation.state": {"min": [0.4856903851032257, -0.10485153645277023, 0.1311275064945221, -1.2958838939666748, -0.2813345491886139, 0.07701844722032547, -0.6015468239784241, -0.4129963219165802, 0.15148963034152985, 1.3279664516448975, -0.38299211859703064, 0.37697935104370117], "max": [0.6183978319168091, -0.03154736012220383, 0.14823205769062042, 0.1432182341814041, 0.6177335977554321, 1.2925164699554443, -0.38924118876457214, -0.28138551115989685, 0.17559026181697845, 1.7798482179641724, 0.14251187443733215, 0.6772953271865845], "mean": [0.5560424327850342, -0.06133431941270828, 0.13945496082305908, -0.7985596656799316, 0.21878917515277863, 0.5540374517440796, -0.49574223160743713, -0.35891735553741455, 0.1615748256444931, 1.5929886102676392, -0.11493957042694092, 0.5569771528244019], "std": [0.02891441062092781, 0.015864964574575424, 0.0053234221413731575, 0.31331145763397217, 0.19528557360172272, 0.37589317560195923, 0.0563277043402195, 0.03584728762507439, 0.007814399898052216, 0.10136491805315018, 0.14803306758403778, 0.08511301130056381], "count": [590]}, "action": {"min": [-0.11809339374303818, -0.09384550154209137, 0.12005215138196945, -0.49907124042510986, -0.6376760601997375, -0.6360256671905518, -0.5540710687637329, 0.11768048256635666, -0.12134276330471039, 0.0708070695400238, 0.0667332112789154, -0.3222077190876007, -0.15285703539848328, 0.937061607837677], "max": [-0.0939396321773529, -0.0779748260974884, 0.13514187932014465, 0.5211511254310608, 0.7745254039764404, 0.8122177720069885, 0.6382307410240173, 0.1498655080795288, -0.09810923784971237, 0.09989729523658752, 0.21337547898292542, -0.06048087403178215, 0.09854520857334137, 0.9795316457748413], "mean": [-0.1020057275891304, -0.08605964481830597, 0.12876370549201965, 0.15127922594547272, -0.09978947043418884, 0.4110354781150818, -0.12862293422222137, 0.13183745741844177, -0.11091578751802444, 0.08344732224941254, 0.14875762164592743, -0.19143711030483246, -0.04304119199514389, 0.963817298412323], "std": [0.006303081754595041, 0.004360421095043421, 0.003670416073873639, 0.3285229206085205, 0.5082974433898926, 0.5419647693634033, 0.3487737774848938, 0.008911765180528164, 0.005949942395091057, 0.005811873357743025, 0.03986369073390961, 0.06620628386735916, 0.06584495306015015, 0.01088079996407032], "count": [590]}, "timestamp": {"min": [0.0], "max": [19.633333333333333], "mean": [9.816666666666668], "std": [5.677269492360645], "count": [590]}, "frame_index": {"min": [0], "max": [589], "mean": [294.5], "std": [170.31808477081933], "count": [590]}, "episode_index": {"min": [102], "max": [102], "mean": [102.0], "std": [0.0], "count": [590]}, "index": {"min": [62558], "max": [63147], "mean": [62852.5], "std": [170.31808477081933], "count": [590]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [590]}}} +{"episode_index": 103, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47151183551198256]], [[0.43128779411764706]], [[0.37113372276688456]]], "std": [[[0.21091639776566196]], [[0.20282730777061636]], [[0.20437443027215696]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.483081947167756]], [[0.45750246732026145]], [[0.401059940087146]]], "std": [[[0.21990607031586126]], [[0.19604170124333942]], [[0.2079254365075585]]], "count": [100]}, "observation.state": {"min": [0.4945638179779053, -0.1306377500295639, 0.12846234440803528, -1.651098608970642, -0.40225785970687866, -0.1034434586763382, -0.586966335773468, -0.40939751267433167, 0.15187852084636688, 1.1325353384017944, -0.48137038946151733, 0.5042823553085327], "max": [0.6229310631752014, -0.026319069787859917, 0.15043574571609497, 0.016565509140491486, 0.8407244086265564, 1.4144006967544556, -0.3970411419868469, -0.286050021648407, 0.19096167385578156, 1.6705998182296753, -0.003552549984306097, 0.8339483737945557], "mean": [0.5634148120880127, -0.07579095661640167, 0.13783222436904907, -0.829188346862793, 0.4486050307750702, 0.6078543663024902, -0.5257871150970459, -0.3346191346645355, 0.17200921475887299, 1.3419413566589355, -0.2291361540555954, 0.6704207062721252], "std": [0.029637755826115608, 0.027972428128123283, 0.005835231859236956, 0.33851176500320435, 0.26964157819747925, 0.4341738224029541, 0.051264531910419464, 0.02974511869251728, 0.011236218735575676, 0.15314412117004395, 0.15606600046157837, 0.09451159089803696], "count": [468]}, "action": {"min": [-0.11474081873893738, -0.09379903227090836, 0.11375494301319122, -0.6038678288459778, -0.6041008830070496, -0.5876383185386658, -0.48391127586364746, 0.1087660938501358, -0.12782248854637146, 0.07747507095336914, 0.01398609671741724, -0.2839849889278412, -0.21122346818447113, 0.9513264894485474], "max": [-0.09058196097612381, -0.07722707837820053, 0.13464026153087616, 0.6334400177001953, 0.7817969918251038, 0.8706730008125305, 0.554618775844574, 0.14969110488891602, -0.10274707525968552, 0.10231447964906693, 0.20419323444366455, 0.016353826969861984, 0.0020794901065528393, 0.986709713935852], "mean": [-0.10116184502840042, -0.08536991477012634, 0.12505105137825012, 0.3317432999610901, -0.25062358379364014, 0.5130295753479004, -0.19960010051727295, 0.12326580286026001, -0.11499394476413727, 0.08994489908218384, 0.12434560805559158, -0.0768667608499527, -0.10679083317518234, 0.9756704568862915], "std": [0.0063032410107553005, 0.0043767704628407955, 0.005910853389650583, 0.3473135828971863, 0.40697672963142395, 0.39923402667045593, 0.2800899147987366, 0.01064970437437296, 0.006972233299165964, 0.006413920782506466, 0.05372356250882149, 0.09567534178495407, 0.05616897717118263, 0.009836581535637379], "count": [468]}, "timestamp": {"min": [0.0], "max": [15.566666666666666], "mean": [7.783333333333334], "std": [4.503321819213835], "count": [468]}, "frame_index": {"min": [0], "max": [467], "mean": [233.5], "std": [135.09965457641508], "count": [468]}, "episode_index": {"min": [103], "max": [103], "mean": [103.0], "std": [0.0], "count": [468]}, "index": {"min": [63148], "max": [63615], "mean": [63381.5], "std": [135.09965457641508], "count": [468]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [468]}}} +{"episode_index": 104, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45391444501777317]], [[0.4144534982609028]], [[0.3533195272585967]]], "std": [[[0.21152677740354917]], [[0.20283001485573096]], [[0.20371143276869932]]], "count": [171]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46070604479608607]], [[0.4369151441603282]], [[0.37919597809884187]]], "std": [[[0.21954023065940892]], [[0.1948260363787282]], [[0.2062857435715658]]], "count": [171]}, "observation.state": {"min": [0.4594176709651947, -0.15180575847625732, 0.12338866293430328, -1.4571354389190674, -0.09072663635015488, -0.13674859702587128, -0.6241589784622192, -0.4200626015663147, 0.14797410368919373, 1.1920872926712036, -0.30756875872612, 0.3892250061035156], "max": [0.6491883993148804, -0.03699189051985741, 0.15054075419902802, -0.2528860569000244, 0.6663762331008911, 1.2964391708374023, -0.3417772650718689, -0.30139508843421936, 0.18339522182941437, 1.7135862112045288, 0.16792626678943634, 0.7752073407173157], "mean": [0.5712956190109253, -0.09273842722177505, 0.13832896947860718, -0.8245929479598999, 0.3498499393463135, 0.6241037845611572, -0.5289241075515747, -0.36035454273223877, 0.16830343008041382, 1.4628301858901978, -0.09867771714925766, 0.5919665098190308], "std": [0.04761548340320587, 0.02567661553621292, 0.005984603427350521, 0.2268916517496109, 0.18727433681488037, 0.40738794207572937, 0.05858549848198891, 0.028029484674334526, 0.00872728880494833, 0.1290387362241745, 0.11015614867210388, 0.09416418522596359], "count": [955]}, "action": {"min": [-0.12277643382549286, -0.09820796549320221, 0.1115570217370987, -0.6010444164276123, -0.609829843044281, -0.6111984252929688, -0.5238233208656311, 0.11209673434495926, -0.12508584558963776, 0.07376627624034882, 0.06709039956331253, -0.27127495408058167, -0.26444247364997864, 0.9463583827018738], "max": [-0.08870057016611099, -0.0775732472538948, 0.13671931624412537, 0.6097197532653809, 0.7613253593444824, 0.8738548755645752, 0.5395947694778442, 0.15440362691879272, -0.09967851638793945, 0.09636519849300385, 0.24091394245624542, -0.06953775137662888, 0.035867635160684586, 0.9817643761634827], "mean": [-0.1001199260354042, -0.08845274150371552, 0.12329978495836258, 0.10528616607189178, -0.069771908223629, 0.3198454976081848, -0.14183476567268372, 0.12436971068382263, -0.11481587588787079, 0.08463647961616516, 0.14965872466564178, -0.16990549862384796, -0.10167240351438522, 0.963705837726593], "std": [0.00898405909538269, 0.005294347647577524, 0.005903786979615688, 0.41818028688430786, 0.5194223523139954, 0.5677836537361145, 0.3075316846370697, 0.00921145174652338, 0.006998943164944649, 0.005075485911220312, 0.04859493672847748, 0.05143600329756737, 0.06773438304662704, 0.008486781269311905], "count": [955]}, "timestamp": {"min": [0.0], "max": [31.8], "mean": [15.9], "std": [9.189486746639698], "count": [955]}, "frame_index": {"min": [0], "max": [954], "mean": [477.0], "std": [275.68460239919096], "count": [955]}, "episode_index": {"min": [104], "max": [104], "mean": [104.0], "std": [0.0], "count": [955]}, "index": {"min": [63616], "max": [64570], "mean": [64093.0], "std": [275.68460239919096], "count": [955]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [955]}}} +{"episode_index": 105, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4496686695887063]], [[0.41009221721721717]], [[0.3515532066993464]]], "std": [[[0.2196145471740556]], [[0.21016362332842814]], [[0.20990559865648792]]], "count": [296]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46313656395365954]], [[0.4395030057631161]], [[0.3838359830418654]]], "std": [[[0.2250054963227254]], [[0.20008574980831137]], [[0.21070095606165304]]], "count": [296]}, "observation.state": {"min": [0.5613113641738892, -0.13022072613239288, 0.12210793048143387, -1.596159815788269, -0.22913941740989685, -0.12988100945949554, -0.6819559335708618, -0.44516921043395996, 0.13430990278720856, 0.8869884610176086, -0.7852499485015869, 0.3573469817638397], "max": [0.6816393136978149, -0.015769820660352707, 0.15840275585651398, -0.34347212314605713, 0.8482393622398376, 1.4068084955215454, -0.4065478444099426, -0.2673223912715912, 0.1872309446334839, 1.7725090980529785, 0.122562937438488, 1.1512914896011353], "mean": [0.6158740520477295, -0.07344160228967667, 0.13963747024536133, -0.8722020387649536, 0.3043329417705536, 0.8767427206039429, -0.5797181725502014, -0.35633140802383423, 0.1657910794019699, 1.2052977085113525, -0.2597278952598572, 0.7070519328117371], "std": [0.02781357429921627, 0.027991309762001038, 0.008336189202964306, 0.3063202500343323, 0.22789286077022552, 0.4413192868232727, 0.04519375413656235, 0.03473760187625885, 0.011018198914825916, 0.17919562757015228, 0.2300703078508377, 0.18165791034698486], "count": [1978]}, "action": {"min": [-0.10383272171020508, -0.1006954237818718, 0.10902970284223557, -0.6107259392738342, -0.6515872478485107, -0.6523553729057312, -0.5112212896347046, 0.10692702233791351, -0.13404415547847748, 0.061890020966529846, -0.07767374813556671, -0.24733470380306244, -0.30026713013648987, 0.90776127576828], "max": [-0.08212387561798096, -0.07018949836492538, 0.13935020565986633, 0.6477357745170593, 0.8510159254074097, 0.8403680920600891, 0.41201871633529663, 0.1498062163591385, -0.09076020866632462, 0.09665108472108841, 0.31232884526252747, 0.1910262107849121, 0.050188422203063965, 0.9995993971824646], "mean": [-0.09293188154697418, -0.08433643728494644, 0.12236393988132477, 0.05190897732973099, 0.09166744351387024, 0.17420905828475952, -0.025889363139867783, 0.12054402381181717, -0.111177958548069, 0.08041225373744965, 0.14030513167381287, -0.04699109494686127, -0.14346066117286682, 0.9634726047515869], "std": [0.004460372030735016, 0.007305961102247238, 0.007783100474625826, 0.4651109278202057, 0.5983595848083496, 0.5569313764572144, 0.2708301246166229, 0.0069304960779845715, 0.008756428025662899, 0.008014630526304245, 0.09564998745918274, 0.09686431288719177, 0.10136760771274567, 0.02090958133339882], "count": [1978]}, "timestamp": {"min": [0.0], "max": [65.9], "mean": [32.949999999999996], "std": [19.033311441902182], "count": [1978]}, "frame_index": {"min": [0], "max": [1977], "mean": [988.5], "std": [570.9993432570654], "count": [1978]}, "episode_index": {"min": [105], "max": [105], "mean": [105.0], "std": [0.0], "count": [1978]}, "index": {"min": [64571], "max": [66548], "mean": [65559.5], "std": [570.9993432570654], "count": [1978]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1978]}}} +{"episode_index": 106, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44414991102463036]], [[0.40495275366295796]], [[0.34576787822847543]]], "std": [[[0.2219260014685402]], [[0.21104858850181846]], [[0.2112310903312469]]], "count": [131]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4447420795290126]], [[0.4246776846446806]], [[0.36836965939895894]]], "std": [[[0.22802276803959518]], [[0.20198871425589351]], [[0.21253931658187963]]], "count": [131]}, "observation.state": {"min": [0.5631571412086487, -0.1330549567937851, 0.1220444068312645, -1.6053862571716309, 0.1284383088350296, -0.27609631419181824, -0.6187994480133057, -0.3810473680496216, 0.15409646928310394, 1.089339256286621, -0.1791304498910904, 0.4981139004230499], "max": [0.6572818160057068, -0.04039762169122696, 0.1495283544063568, -0.20172172784805298, 0.7550532817840576, 1.1264123916625977, -0.4912970960140228, -0.3372749090194702, 0.17363545298576355, 1.2774311304092407, 0.09086327254772186, 0.7024644613265991], "mean": [0.5982732772827148, -0.08019877225160599, 0.1395188719034195, -1.026903510093689, 0.36154595017433167, 0.5643991231918335, -0.5876771211624146, -0.3617579936981201, 0.16519656777381897, 1.2219319343566895, -0.11313729733228683, 0.6281958222389221], "std": [0.021915679797530174, 0.021199040114879608, 0.00623955437913537, 0.3089543581008911, 0.12071657925844193, 0.36575430631637573, 0.023683441802859306, 0.012955634854733944, 0.0038407996762543917, 0.044954393059015274, 0.06315813213586807, 0.04859685152769089], "count": [666]}, "action": {"min": [-0.10178400576114655, -0.0943625420331955, 0.1066713035106659, -0.5945371389389038, -0.6237892508506775, -0.6213720440864563, -0.508251965045929, 0.11556875705718994, -0.1184113547205925, 0.07424569875001907, 0.1486096829175949, -0.15067771077156067, -0.2735799252986908, 0.9264929294586182], "max": [-0.08890866488218307, -0.07289160788059235, 0.13507597148418427, 0.6178662776947021, 0.6681686043739319, 0.8577689528465271, 0.5565547943115234, 0.13352863490581512, -0.10389915853738785, 0.08847848325967789, 0.2509511709213257, -0.06006579473614693, -0.1705029457807541, 0.9689784646034241], "mean": [-0.09501221030950546, -0.08612348884344101, 0.12283726036548615, 0.2395695149898529, -0.2500839829444885, 0.47640156745910645, -0.14178572595119476, 0.11865895241498947, -0.11081627756357193, 0.07906269282102585, 0.17422594130039215, -0.11170006543397903, -0.19098253548145294, 0.9585872888565063], "std": [0.0031842407770454884, 0.004971798975020647, 0.006391286384314299, 0.3657306432723999, 0.44133803248405457, 0.49021634459495544, 0.2532830536365509, 0.002750732935965061, 0.002751545747742057, 0.0037176243495196104, 0.024478506296873093, 0.01831594668328762, 0.027856500819325447, 0.0097301434725523], "count": [666]}, "timestamp": {"min": [0.0], "max": [22.166666666666668], "mean": [11.083333333333334], "std": [6.408580763898307], "count": [666]}, "frame_index": {"min": [0], "max": [665], "mean": [332.5], "std": [192.2574229169492], "count": [666]}, "episode_index": {"min": [106], "max": [106], "mean": [106.0], "std": [0.0], "count": [666]}, "index": {"min": [66549], "max": [67214], "mean": [66881.5], "std": [192.2574229169492], "count": [666]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [666]}}} +{"episode_index": 107, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45699047299943696]], [[0.41594911691268266]], [[0.35435632848645077]]], "std": [[[0.21159388683837727]], [[0.20260853427371092]], [[0.2029526328184935]]], "count": [178]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46885744841007565]], [[0.4430986527257595]], [[0.38493010881006584]]], "std": [[[0.21573990569170043]], [[0.19195455874710127]], [[0.20311178575462263]]], "count": [178]}, "observation.state": {"min": [0.4851498007774353, -0.12158671021461487, 0.12355069816112518, -2.0901894569396973, -0.5960084199905396, -0.4778692424297333, -0.5660068392753601, -0.3870016038417816, 0.14720021188259125, -0.1755104809999466, 0.5328823328018188, -0.5776557326316833], "max": [0.6590502858161926, -0.016240909695625305, 0.15391239523887634, -0.21493218839168549, 1.235330581665039, 1.3983027935028076, -0.45506203174591064, -0.3317299783229828, 0.1808532029390335, 0.4575434625148773, 0.9304945468902588, 0.1645425707101822], "mean": [0.5871891379356384, -0.05635394901037216, 0.14012132585048676, -1.1920254230499268, 0.4413604140281677, 0.41944584250450134, -0.5198156833648682, -0.35191887617111206, 0.1725868433713913, 0.24044901132583618, 0.6949372291564941, -0.0964861586689949], "std": [0.04223598539829254, 0.026693882420659065, 0.00818740576505661, 0.3458423316478729, 0.2977956533432007, 0.4319624602794647, 0.019699279218912125, 0.01441348996013403, 0.007060436997562647, 0.14322446286678314, 0.11533262580633163, 0.18074479699134827], "count": [1006]}, "action": {"min": [-0.11958527565002441, -0.0976104661822319, 0.1156502291560173, -0.6293826699256897, -0.6447640061378479, -0.6120017766952515, -0.38831207156181335, 0.11553089320659637, -0.11900938302278519, 0.07868293672800064, -0.3943901062011719, -0.2606295049190521, -0.671748161315918, -0.6715729832649231], "max": [-0.08113206923007965, -0.07412233203649521, 0.14022743701934814, 0.8014217019081116, 0.8688097596168518, 0.8762279152870178, 0.49612870812416077, 0.144051656126976, -0.0975821316242218, 0.09901328384876251, 0.2965657114982605, 0.31888940930366516, 0.7527520060539246, 0.7123449444770813], "mean": [-0.09583046287298203, -0.08318770676851273, 0.12536144256591797, 0.399385929107666, -0.27092549204826355, 0.6309767961502075, -0.15137594938278198, 0.12142093479633331, -0.11161266267299652, 0.09087379276752472, -0.13435089588165283, 0.09110464155673981, 0.28854161500930786, -0.2296416014432907], "std": [0.009595004841685295, 0.005969714373350143, 0.005805881228297949, 0.2851302921772003, 0.34311285614967346, 0.34417107701301575, 0.16901090741157532, 0.005023816134780645, 0.005055405665189028, 0.005009194370359182, 0.2596617341041565, 0.20369605720043182, 0.6124199032783508, 0.5947127938270569], "count": [1006]}, "timestamp": {"min": [0.0], "max": [33.5], "mean": [16.75], "std": [9.680234730854641], "count": [1006]}, "frame_index": {"min": [0], "max": [1005], "mean": [502.5], "std": [290.40704192563925], "count": [1006]}, "episode_index": {"min": [107], "max": [107], "mean": [107.0], "std": [0.0], "count": [1006]}, "index": {"min": [67215], "max": [68220], "mean": [67717.5], "std": [290.40704192563925], "count": [1006]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1006]}}} +{"episode_index": 108, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4565307287093942]], [[0.41208174608981235]], [[0.34603293377881833]]], "std": [[[0.20109031176388567]], [[0.1915917734149843]], [[0.1921571617610011]]], "count": [134]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4677094876922577]], [[0.43798211150131694]], [[0.37655820367118653]]], "std": [[[0.20352642360260778]], [[0.17833803659522104]], [[0.18855220950595725]]], "count": [134]}, "observation.state": {"min": [0.5588555335998535, -0.053696159273386, 0.1468631774187088, -1.3594199419021606, 0.008881369605660439, -0.15075144171714783, -0.5414717197418213, -0.25893551111221313, 0.15218184888362885, 1.4638454914093018, -0.0023228200152516365, 0.21931709349155426], "max": [0.6748664379119873, 0.03913109004497528, 0.16348160803318024, -0.7077035307884216, 0.4114125072956085, 1.3807218074798584, -0.4090191125869751, -0.1891760528087616, 0.17353953421115875, 1.615870714187622, 0.07842934876680374, 0.3745482265949249], "mean": [0.6176508665084839, -0.01130282785743475, 0.15491883456707, -0.9619230031967163, 0.19843220710754395, 0.6429811716079712, -0.4820721745491028, -0.24099639058113098, 0.16481830179691315, 1.5462361574172974, 0.03309381380677223, 0.2864913046360016], "std": [0.03664505481719971, 0.023080967366695404, 0.005116558633744717, 0.1126023679971695, 0.08548956364393234, 0.34663596749305725, 0.035225655883550644, 0.017145056277513504, 0.006809416227042675, 0.03857315704226494, 0.022309554740786552, 0.04961665719747543], "count": [689]}, "action": {"min": [-0.09742157906293869, -0.09025050699710846, 0.12860551476478577, -0.5613523125648499, -0.6278025507926941, -0.6224790811538696, -0.4105166494846344, 0.11692104488611221, -0.10657601803541183, 0.09414397180080414, 0.16896989941596985, -0.2643934488296509, -0.1265862137079239, 0.9275848865509033], "max": [-0.07373619079589844, -0.0761684998869896, 0.1512918323278427, 0.5308127999305725, 0.7378456592559814, 0.8768821358680725, 0.30404332280158997, 0.14316216111183167, -0.09161365032196045, 0.10471431910991669, 0.266020268201828, -0.20023128390312195, -0.04662289097905159, 0.949015736579895], "mean": [-0.0835818350315094, -0.08164791017770767, 0.1389695256948471, 0.1264510452747345, -0.1526452600955963, 0.3757331669330597, -0.12970317900180817, 0.1283237636089325, -0.10065644234418869, 0.09878849983215332, 0.23205460608005524, -0.23654039204120636, -0.08512026816606522, 0.9388659596443176], "std": [0.008257800713181496, 0.0031954499427229166, 0.004826257936656475, 0.3794507384300232, 0.5173860788345337, 0.5805432200431824, 0.23240040242671967, 0.007427890319377184, 0.003991628531366587, 0.003082351293414831, 0.024190813302993774, 0.019302459433674812, 0.02160133235156536, 0.007722644135355949], "count": [689]}, "timestamp": {"min": [0.0], "max": [22.933333333333334], "mean": [11.466666666666667], "std": [6.62989860824097], "count": [689]}, "frame_index": {"min": [0], "max": [688], "mean": [344.0], "std": [198.89695824722912], "count": [689]}, "episode_index": {"min": [108], "max": [108], "mean": [108.0], "std": [0.0], "count": [689]}, "index": {"min": [68221], "max": [68909], "mean": [68565.0], "std": [198.89695824722912], "count": [689]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [689]}}} +{"episode_index": 109, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4726019226579521]], [[0.42641086873638345]], [[0.3601081454248366]]], "std": [[[0.19222954907603407]], [[0.18583299270155285]], [[0.18796495770928315]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4877063153594771]], [[0.45364631263616556]], [[0.39252420479302835]]], "std": [[[0.19214750663364918]], [[0.16964946706079811]], [[0.18108136735700908]]], "count": [100]}, "observation.state": {"min": [0.5673737525939941, -0.05008191987872124, 0.1383219212293625, -1.5290590524673462, -0.4235731363296509, 0.19359439611434937, -0.517963707447052, -0.2680637836456299, 0.14157302677631378, 0.977993905544281, -0.3687819242477417, -0.012789109721779823], "max": [0.6996332406997681, 0.029500840231776237, 0.16472864151000977, -0.3812163174152374, 0.402667760848999, 1.3916800022125244, -0.3469746708869934, -0.13315536081790924, 0.17748413980007172, 1.3220950365066528, 0.09933473914861679, 0.32455116510391235], "mean": [0.6272972822189331, -0.005812978371977806, 0.15249072015285492, -0.8864830732345581, 0.12430115044116974, 0.7491516470909119, -0.4529454708099365, -0.20900601148605347, 0.1627500355243683, 1.1758772134780884, -0.15808901190757751, 0.1380677968263626], "std": [0.031925834715366364, 0.023348135873675346, 0.007101374678313732, 0.25211864709854126, 0.1845409870147705, 0.35998591780662537, 0.04405110329389572, 0.04159056022763252, 0.012112841010093689, 0.09157831221818924, 0.16696035861968994, 0.11451835185289383], "count": [441]}, "action": {"min": [-0.10150694847106934, -0.09162300825119019, 0.12609528005123138, -0.5136526226997375, -0.6108906865119934, -0.6164619326591492, -0.37288185954093933, 0.125100776553154, -0.11360623687505722, 0.09513498842716217, 0.2232370227575302, -0.1994093358516693, -0.3154630959033966, 0.8847979307174683], "max": [-0.07297546416521072, -0.07083786278963089, 0.14696566760540009, 0.5124732851982117, 0.813336193561554, 0.8082937002182007, 0.463962584733963, 0.15447530150413513, -0.08297765254974365, 0.11493300646543503, 0.4486582279205322, 0.003760689403861761, -0.10780585557222366, 0.9421923756599426], "mean": [-0.08381034433841705, -0.07978519797325134, 0.136781245470047, 0.03686967119574547, 0.12311404198408127, 0.1284027397632599, 0.01594560407102108, 0.13426415622234344, -0.09732218086719513, 0.10230271518230438, 0.33475953340530396, -0.0625811517238617, -0.18717293441295624, 0.9132335186004639], "std": [0.008116481825709343, 0.004885372705757618, 0.00523015484213829, 0.38692155480384827, 0.5821079015731812, 0.6250863075256348, 0.2957214117050171, 0.008905289694666862, 0.011178448796272278, 0.004749951884150505, 0.08104803413152695, 0.0631314367055893, 0.06450565159320831, 0.016580192372202873], "count": [441]}, "timestamp": {"min": [0.0], "max": [14.666666666666666], "mean": [7.333333333333333], "std": [4.243513568660693], "count": [441]}, "frame_index": {"min": [0], "max": [440], "mean": [220.0], "std": [127.30540705982078], "count": [441]}, "episode_index": {"min": [109], "max": [109], "mean": [109.0], "std": [0.0], "count": [441]}, "index": {"min": [68910], "max": [69350], "mean": [69130.0], "std": [127.30540705982078], "count": [441]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [441]}}} +{"episode_index": 110, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4565624636327961]], [[0.41029519682269044]], [[0.34542193906548124]]], "std": [[[0.2038674006585731]], [[0.1960709414008847]], [[0.1974822870691629]]], "count": [161]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47257450709752497]], [[0.43922770944126444]], [[0.37866815349328137]]], "std": [[[0.20673280039275696]], [[0.18270130844714083]], [[0.1932871772080388]]], "count": [161]}, "observation.state": {"min": [0.5843019485473633, -0.08203858882188797, 0.15233999490737915, -1.5655450820922852, -0.8825351595878601, 0.06436782330274582, -0.46990513801574707, -0.2509733736515045, 0.1602175533771515, -0.07821434736251831, 0.14961697161197662, -0.6069191694259644], "max": [0.6996178030967712, 0.013777360320091248, 0.16657455265522003, 0.21220621466636658, 1.1101715564727783, 1.2263429164886475, -0.36747851967811584, -0.1798778921365738, 0.1678164154291153, 0.23485274612903595, 0.3327098786830902, -0.38926205039024353], "mean": [0.6386270523071289, -0.01570974290370941, 0.15932171046733856, -0.38221344351768494, -0.04162106662988663, 0.4968845248222351, -0.432963103055954, -0.21920782327651978, 0.16365686058998108, 0.06072496250271797, 0.25267261266708374, -0.488576740026474], "std": [0.03731086105108261, 0.025120744481682777, 0.003412808757275343, 0.606316864490509, 0.7397161722183228, 0.3278844952583313, 0.03252779692411423, 0.01733425259590149, 0.001736022299155593, 0.07012862712144852, 0.04188067838549614, 0.06213883310556412], "count": [877]}, "action": {"min": [-0.09049341827630997, -0.08813222497701645, 0.12507282197475433, -0.5324336290359497, -0.5437486171722412, -0.624179482460022, -0.619949996471405, 0.12977726757526398, -0.10315556079149246, 0.10015923529863358, -0.5029938817024231, 0.09469899535179138, 0.6179102063179016, -0.6122413873672485], "max": [-0.06546100229024887, -0.07670664042234421, 0.14075255393981934, 0.7934298515319824, 0.7324798703193665, 0.7673123478889465, 0.7091227769851685, 0.14500463008880615, -0.09280388802289963, 0.11065519601106644, -0.4232032895088196, 0.21296413242816925, 0.7152149677276611, -0.49081555008888245], "mean": [-0.07805150002241135, -0.08414526283740997, 0.1360146850347519, 0.3229452967643738, 0.18436424434185028, -0.004142438527196646, 0.24995110929012299, 0.13544867932796478, -0.09725392609834671, 0.10465789586305618, -0.46483710408210754, 0.1613442748785019, 0.6732255816459656, -0.5492355823516846], "std": [0.008825493976473808, 0.0030022328719496727, 0.00391588918864727, 0.3099255859851837, 0.545566201210022, 0.5042072534561157, 0.3889754116535187, 0.004807078279554844, 0.002822475042194128, 0.0020325949881225824, 0.016196509823203087, 0.03190663084387779, 0.0211735051125288, 0.03568829968571663], "count": [877]}, "timestamp": {"min": [0.0], "max": [29.2], "mean": [14.600000000000001], "std": [8.438930948618761], "count": [877]}, "frame_index": {"min": [0], "max": [876], "mean": [438.0], "std": [253.16792845856287], "count": [877]}, "episode_index": {"min": [110], "max": [110], "mean": [110.0], "std": [0.0], "count": [877]}, "index": {"min": [69351], "max": [70227], "mean": [69789.0], "std": [253.16792845856287], "count": [877]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [877]}}} +{"episode_index": 111, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4655818824656299]], [[0.41871745407933286]], [[0.35269143471564873]]], "std": [[[0.1959063873470096]], [[0.1888526092191705]], [[0.19151234716958448]]], "count": [116]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4808883418788971]], [[0.4463771410863196]], [[0.38521999896701975]]], "std": [[[0.19460031343264908]], [[0.17244489302887736]], [[0.18409758185188105]]], "count": [116]}, "observation.state": {"min": [0.5888738036155701, -0.10154621303081512, 0.1513444483280182, -1.4734911918640137, -0.10001792013645172, 0.17857791483402252, -0.4836052656173706, -0.26407113671302795, 0.1582212746143341, 1.85261070728302, -0.15344278514385223, 0.21799695491790771], "max": [0.689755916595459, 0.003645129967480898, 0.16783195734024048, -0.5481294989585876, 0.667332649230957, 1.2482202053070068, -0.38939565420150757, -0.19964809715747833, 0.16427364945411682, 2.160435438156128, 0.0045090001076459885, 0.28447723388671875], "mean": [0.6285852789878845, -0.030687248334288597, 0.15592904388904572, -1.102455973625183, 0.2165435403585434, 0.5753667950630188, -0.4517218768596649, -0.24430903792381287, 0.16185599565505981, 2.0601720809936523, -0.11104311794042587, 0.24749580025672913], "std": [0.029061539098620415, 0.0209555272012949, 0.0035806181840598583, 0.22854961454868317, 0.18817777931690216, 0.2583808898925781, 0.02835262194275856, 0.02102803811430931, 0.0021201891358941793, 0.09204594045877457, 0.043906789273023605, 0.02034801058471203], "count": [571]}, "action": {"min": [-0.09075730293989182, -0.09572629630565643, 0.12405392527580261, -0.6199467778205872, -0.6133949160575867, -0.6017129421234131, -0.39154455065727234, 0.13050048053264618, -0.10251524299383163, 0.09641662985086441, 0.16257433593273163, -0.30025213956832886, 0.06535553187131882, 0.912906289100647], "max": [-0.0701344832777977, -0.07565727829933167, 0.14145667850971222, 0.6511739492416382, 0.6626444458961487, 0.8792392611503601, 0.2214326411485672, 0.14393912255764008, -0.09587816894054413, 0.10595537722110748, 0.19543352723121643, -0.2158052772283554, 0.21750988066196442, 0.9494842886924744], "mean": [-0.08135092258453369, -0.08464936912059784, 0.13655418157577515, 0.3247870206832886, -0.4030475318431854, 0.64161217212677, -0.18232505023479462, 0.13497479259967804, -0.10010062158107758, 0.09920654445886612, 0.17452655732631683, -0.27702632546424866, 0.1716451197862625, 0.9276995062828064], "std": [0.0067189522087574005, 0.0038959067314863205, 0.003449409967288375, 0.2539839744567871, 0.2981194853782654, 0.34395086765289307, 0.12438615411520004, 0.00414317287504673, 0.002235916443169117, 0.0029161544516682625, 0.006274281069636345, 0.01760329119861126, 0.04725728929042816, 0.011163473129272461], "count": [571]}, "timestamp": {"min": [0.0], "max": [19.0], "mean": [9.5], "std": [5.494441635770544], "count": [571]}, "frame_index": {"min": [0], "max": [570], "mean": [285.0], "std": [164.83324907311632], "count": [571]}, "episode_index": {"min": [111], "max": [111], "mean": [111.0], "std": [0.0], "count": [571]}, "index": {"min": [70228], "max": [70798], "mean": [70513.0], "std": [164.83324907311632], "count": [571]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [571]}}} +{"episode_index": 112, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4472244609721283]], [[0.4009826572008114]], [[0.3362305743370145]]], "std": [[[0.21004071052143622]], [[0.2000616692877488]], [[0.20045214711759982]]], "count": [145]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4641824092855533]], [[0.43089009465855305]], [[0.3708114078581624]]], "std": [[[0.21273934268449596]], [[0.18715391334141424]], [[0.19668294739668452]]], "count": [145]}, "observation.state": {"min": [0.5910207629203796, -0.10515273362398148, 0.15175797045230865, -1.7783803939819336, 0.14196531474590302, 0.019708240404725075, -0.49341312050819397, -0.25523632764816284, 0.15802942216396332, 0.0947798490524292, 0.35279545187950134, -0.28756701946258545], "max": [0.699332058429718, -0.017870400100946426, 0.16639049351215363, -0.6594748497009277, 1.2194807529449463, 1.3318594694137573, -0.29686957597732544, -0.18317550420761108, 0.1687108427286148, 1.1029690504074097, 0.48970523476600647, 0.11213032901287079], "mean": [0.6368594169616699, -0.042083729058504105, 0.15835599601268768, -1.2295067310333252, 0.5522019863128662, 0.6059465408325195, -0.44915974140167236, -0.23285293579101562, 0.1634354144334793, 0.38021841645240784, 0.4273446202278137, -0.1542607545852661], "std": [0.03186040744185448, 0.019210780039429665, 0.003973544575273991, 0.3057664632797241, 0.2534128725528717, 0.2540431022644043, 0.049249667674303055, 0.017628969624638557, 0.002397572621703148, 0.24278298020362854, 0.033944904804229736, 0.09164223074913025], "count": [767]}, "action": {"min": [-0.08886111527681351, -0.09340758621692657, 0.1214633509516716, 0.36499789357185364, -0.5797302722930908, 0.3916012644767761, -0.35135945677757263, 0.126774862408638, -0.10022766143083572, 0.09758629649877548, -0.38666975498199463, -0.2821694612503052, -0.6444888710975647, -0.6469882130622864], "max": [-0.06675387918949127, -0.07693113386631012, 0.1413712054491043, 0.7968785166740417, -0.1764264851808548, 0.8641186356544495, 0.07902106642723083, 0.15220655500888824, -0.09332913905382156, 0.11248377710580826, 0.3642996847629547, 0.1922258734703064, 0.6907497048377991, 0.8733583092689514], "mean": [-0.07731755077838898, -0.08529340475797653, 0.13438735902309418, 0.5478240847587585, -0.4355950653553009, 0.6681057214736938, -0.13629452884197235, 0.1324775069952011, -0.09671827405691147, 0.10206232219934464, 0.08551892638206482, -0.07426773756742477, -0.11096732318401337, 0.24196700751781464], "std": [0.006885000504553318, 0.003713971935212612, 0.004521142225712538, 0.11099760234355927, 0.07584956288337708, 0.11309883743524551, 0.11974681913852692, 0.006800453644245863, 0.0015183060895651579, 0.00355246989056468, 0.340949147939682, 0.17224973440170288, 0.5925541520118713, 0.6475121378898621], "count": [767]}, "timestamp": {"min": [0.0], "max": [25.533333333333335], "mean": [12.76666666666667], "std": [7.380454668318958], "count": [767]}, "frame_index": {"min": [0], "max": [766], "mean": [383.0], "std": [221.41364004956876], "count": [767]}, "episode_index": {"min": [112], "max": [112], "mean": [112.0], "std": [0.0], "count": [767]}, "index": {"min": [70799], "max": [71565], "mean": [71182.0], "std": [221.41364004956876], "count": [767]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [767]}}} +{"episode_index": 113, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46757277077497666]], [[0.41907132914894357]], [[0.35442774362831553]]], "std": [[[0.2059209022306179]], [[0.198904895437947]], [[0.20105537958310557]]], "count": [126]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4877025430542587]], [[0.45101123690216827]], [[0.3904230815783103]]], "std": [[[0.2056843830981365]], [[0.18249320574834277]], [[0.19489558002749088]]], "count": [126]}, "observation.state": {"min": [0.6104588508605957, -0.07988394796848297, 0.15424813330173492, -1.5917563438415527, -0.0013663599966093898, 0.11935635656118393, -0.45990419387817383, -0.2366708666086197, 0.15353907644748688, 0.20046359300613403, 0.3855881989002228, -0.5228891372680664], "max": [0.7105300426483154, -0.00546769006177783, 0.16613252460956573, -0.7337051033973694, 0.8776162266731262, 1.0228641033172607, -0.31748154759407043, -0.19864413142204285, 0.16180551052093506, 0.8089838027954102, 0.5144364237785339, 0.0727045014500618], "mean": [0.6364794969558716, -0.03180389851331711, 0.16014191508293152, -1.2723619937896729, 0.37579119205474854, 0.4623274803161621, -0.40643489360809326, -0.21812604367733002, 0.15848495066165924, 0.28406822681427, 0.471488893032074, -0.4008330702781677], "std": [0.028729280456900597, 0.018594402819871902, 0.002539945999160409, 0.19205328822135925, 0.24483613669872284, 0.2173987776041031, 0.0562732107937336, 0.012915387749671936, 0.0032496661879122257, 0.13829362392425537, 0.03275403752923012, 0.13636863231658936], "count": [635]}, "action": {"min": [-0.08382468670606613, -0.09176625311374664, 0.12421293556690216, 0.27081137895584106, -0.5143306851387024, 0.4913314878940582, -0.37463709712028503, 0.13296908140182495, -0.09709847718477249, 0.09885958582162857, -0.4364732503890991, -0.280633807182312, -0.6412916779518127, -0.6089529991149902], "max": [-0.06788458675146103, -0.07419328391551971, 0.14372195303440094, 0.71533203125, -0.3380114734172821, 0.8622327446937561, -0.012478552758693695, 0.15409404039382935, -0.08940489590167999, 0.10612566024065018, 0.4362867772579193, 0.2911120057106018, 0.6330122351646423, 0.8284845352172852], "mean": [-0.07682523131370544, -0.08556387573480606, 0.13745146989822388, 0.4656783938407898, -0.42302337288856506, 0.7397220730781555, -0.14876028895378113, 0.14032438397407532, -0.09272414445877075, 0.10287945717573166, -0.11711838841438293, 0.07550495117902756, 0.12707258760929108, -0.07878586649894714], "std": [0.004756472539156675, 0.004086657427251339, 0.005907838698476553, 0.12097646296024323, 0.04575337842106819, 0.10470105707645416, 0.08476810902357101, 0.008497070521116257, 0.002420571632683277, 0.0021312860772013664, 0.374896764755249, 0.2338813841342926, 0.6004428267478943, 0.6343878507614136], "count": [635]}, "timestamp": {"min": [0.0], "max": [21.133333333333333], "mean": [10.566666666666666], "std": [6.1102827721436554], "count": [635]}, "frame_index": {"min": [0], "max": [634], "mean": [317.0], "std": [183.30848316430968], "count": [635]}, "episode_index": {"min": [113], "max": [113], "mean": [113.0], "std": [0.0], "count": [635]}, "index": {"min": [71566], "max": [72200], "mean": [71883.0], "std": [183.30848316430968], "count": [635]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [635]}}} +{"episode_index": 114, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44489129747041867]], [[0.39866226696932927]], [[0.3331048067264164]]], "std": [[[0.20633211653609856]], [[0.19642129712515455]], [[0.19660365599851465]]], "count": [167]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4620561882770407]], [[0.42926122428345925]], [[0.3678140027135272]]], "std": [[[0.20855763079506703]], [[0.18259006142695014]], [[0.19226230652376877]]], "count": [167]}, "observation.state": {"min": [0.6030064225196838, -0.10268145799636841, 0.15334591269493103, -1.7349746227264404, 0.16136771440505981, 0.2770843505859375, -0.4988885521888733, -0.24283361434936523, 0.1575472056865692, 0.25498297810554504, 0.25168442726135254, -0.3345181941986084], "max": [0.7036027312278748, 0.016657929867506027, 0.16894418001174927, -0.7163008451461792, 1.1836819648742676, 1.2677080631256104, -0.354519784450531, -0.17546048760414124, 0.1726619452238083, 1.0002210140228271, 0.40348759293556213, 0.03204303979873657], "mean": [0.6440516114234924, -0.02745482139289379, 0.1612240970134735, -1.1787407398223877, 0.5166687965393066, 0.548542857170105, -0.43841275572776794, -0.21643874049186707, 0.1661636084318161, 0.7159374356269836, 0.3444324731826782, -0.16460171341896057], "std": [0.024859607219696045, 0.02928200550377369, 0.0037909746170043945, 0.25067582726478577, 0.22807972133159637, 0.21985140442848206, 0.027974678203463554, 0.017370877787470818, 0.0039949011988937855, 0.26505139470100403, 0.03195561468601227, 0.1088390126824379], "count": [920]}, "action": {"min": [-0.08217081427574158, -0.09659136831760406, 0.1218334510922432, 0.3322366178035736, -0.5812009572982788, 0.4109433591365814, -0.41305848956108093, 0.12255124747753143, -0.10299582034349442, 0.09900356829166412, 0.2852451205253601, -0.29217055439949036, -0.6255702972412109, 0.6438054442405701], "max": [-0.06498616188764572, -0.07346531003713608, 0.14910216629505157, 0.7910324931144714, -0.27428939938545227, 0.8051060438156128, 0.06441903859376907, 0.14472346007823944, -0.09109879285097122, 0.11506401747465134, 0.45007699728012085, -0.12234637141227722, -0.3458961248397827, 0.8203381299972534], "mean": [-0.0744418054819107, -0.08385282009840012, 0.1372050940990448, 0.528660774230957, -0.4285741448402405, 0.6817485690116882, -0.17744523286819458, 0.13207221031188965, -0.09783196449279785, 0.1054244190454483, 0.3924076557159424, -0.2287455052137375, -0.4519076943397522, 0.7560012936592102], "std": [0.004498698282986879, 0.005549590568989515, 0.006255432032048702, 0.1119951605796814, 0.06949885934591293, 0.08975040912628174, 0.12307529896497726, 0.004915909841656685, 0.003762352978810668, 0.0029009573627263308, 0.03858499601483345, 0.04520879313349724, 0.1024472713470459, 0.06249889358878136], "count": [920]}, "timestamp": {"min": [0.0], "max": [30.633333333333333], "mean": [15.316666666666668], "std": [8.852698897950713], "count": [920]}, "frame_index": {"min": [0], "max": [919], "mean": [459.5], "std": [265.5809669385214], "count": [920]}, "episode_index": {"min": [114], "max": [114], "mean": [114.0], "std": [0.0], "count": [920]}, "index": {"min": [72201], "max": [73120], "mean": [72660.5], "std": [265.5809669385214], "count": [920]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [920]}}} +{"episode_index": 115, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45040989656506425]], [[0.4061286115692383]], [[0.3405076583592939]]], "std": [[[0.20456318981575863]], [[0.19399350688539746]], [[0.1946628932314709]]], "count": [107]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4622589945635575]], [[0.43230668305743897]], [[0.3718696348217376]]], "std": [[[0.21296161331757948]], [[0.1861733284357544]], [[0.19530169097755185]]], "count": [107]}, "observation.state": {"min": [0.6032689809799194, -0.08477243781089783, 0.15025685727596283, -1.6093703508377075, 0.14551787078380585, 0.30991387367248535, -0.49172183871269226, -0.22345727682113647, 0.16721493005752563, 0.8551155924797058, 0.29622793197631836, -0.27631333470344543], "max": [0.6374884247779846, -0.0029037499334663153, 0.16507993638515472, -1.140923023223877, 0.5107472538948059, 0.6928998827934265, -0.38452258706092834, -0.18294382095336914, 0.18134579062461853, 1.2851896286010742, 0.4868358373641968, -0.10752605646848679], "mean": [0.6185722351074219, -0.036032140254974365, 0.15725894272327423, -1.3230229616165161, 0.32824429869651794, 0.5225162506103516, -0.4654097557067871, -0.19551439583301544, 0.17450301349163055, 0.9268288016319275, 0.3748800456523895, -0.2292032092809677], "std": [0.008727413602173328, 0.01871197111904621, 0.004928013309836388, 0.12027209252119064, 0.0889301672577858, 0.0908503606915474, 0.016829103231430054, 0.008678599260747433, 0.002523045754060149, 0.0830424427986145, 0.051153771579265594, 0.03238987922668457], "count": [513]}, "action": {"min": [-0.08633319288492203, -0.1000438705086708, 0.13339941203594208, 0.3639479875564575, -0.5650750398635864, 0.6674953103065491, -0.23227976262569427, 0.11751727014780045, -0.10204555094242096, 0.10540162771940231, 0.377323180437088, -0.3735223412513733, -0.38744643330574036, 0.7518647313117981], "max": [-0.07354467362165451, -0.08086247742176056, 0.14283466339111328, 0.5406860113143921, -0.36247238516807556, 0.7844226360321045, 0.05506058409810066, 0.13806039094924927, -0.09660331904888153, 0.11531522870063782, 0.4328104555606842, -0.2665408253669739, -0.21807999908924103, 0.8315194845199585], "mean": [-0.08122342079877853, -0.08664654195308685, 0.13707071542739868, 0.44717761874198914, -0.4689216613769531, 0.7457834482192993, -0.11998673528432846, 0.12377652525901794, -0.09938112646341324, 0.11101409047842026, 0.4207030236721039, -0.30771929025650024, -0.35922881960868835, 0.7726773619651794], "std": [0.0037806308828294277, 0.004936188459396362, 0.002612877171486616, 0.03985045850276947, 0.04319033399224281, 0.027657372877001762, 0.07305118441581726, 0.0028414656408131123, 0.0016604814445599914, 0.002373494440689683, 0.015239736065268517, 0.028734618797898293, 0.031042013317346573, 0.014882160350680351], "count": [513]}, "timestamp": {"min": [0.0], "max": [17.066666666666666], "mean": [8.533333333333333], "std": [4.936335422903047], "count": [513]}, "frame_index": {"min": [0], "max": [512], "mean": [256.0], "std": [148.09006268709143], "count": [513]}, "episode_index": {"min": [115], "max": [115], "mean": [115.0], "std": [0.0], "count": [513]}, "index": {"min": [73121], "max": [73633], "mean": [73377.0], "std": [148.09006268709143], "count": [513]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [513]}}} +{"episode_index": 116, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45866738554081765]], [[0.4124145961489171]], [[0.3461983451877483]]], "std": [[[0.20041069510877454]], [[0.1928973296995279]], [[0.1949886021748799]]], "count": [136]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47501205065359475]], [[0.44123124319172113]], [[0.3791126650006408]]], "std": [[[0.20026073293134694]], [[0.17775883171545523]], [[0.1897913983169534]]], "count": [136]}, "observation.state": {"min": [0.574447751045227, -0.0679832175374031, 0.14799873530864716, -1.4208590984344482, 0.1187371164560318, 0.24431267380714417, -0.47237640619277954, -0.23913441598415375, 0.15459555387496948, -0.02746937982738018, 0.0934593677520752, -0.5614561438560486], "max": [0.6805040240287781, 0.0038227499462664127, 0.16291125118732452, -0.7181880474090576, 0.5281000733375549, 0.633047878742218, -0.29047515988349915, -0.17427119612693787, 0.18048635125160217, 1.5527540445327759, 0.5588432550430298, -0.028956519439816475], "mean": [0.6244624257087708, -0.02392319217324257, 0.15465687215328217, -1.0856508016586304, 0.2838400900363922, 0.40848615765571594, -0.393276572227478, -0.20720629394054413, 0.1699749082326889, 0.5422269701957703, 0.25968676805496216, -0.40278056263923645], "std": [0.03075546957552433, 0.02151707001030445, 0.00470297085121274, 0.2740607261657715, 0.09881477057933807, 0.1195874735713005, 0.06424859911203384, 0.020555909723043442, 0.007605533115565777, 0.4954886734485626, 0.1278349608182907, 0.11910814046859741], "count": [706]}, "action": {"min": [-0.0915975496172905, -0.09211868047714233, 0.12766683101654053, 0.321455180644989, -0.5130795240402222, 0.6813504695892334, -0.4075773060321808, 0.12073393911123276, -0.10879354923963547, 0.10208305716514587, -0.48018744587898254, -0.4758208096027374, -0.627251923084259, -0.623680055141449], "max": [-0.0705539807677269, -0.07767191529273987, 0.14683008193969727, 0.5559009909629822, -0.3524058759212494, 0.802635133266449, -0.05672779679298401, 0.15602339804172516, -0.09248506277799606, 0.11622831970453262, 0.5452097654342651, 0.20938509702682495, 0.7033916115760803, 0.8523077368736267], "mean": [-0.08223837614059448, -0.0830429419875145, 0.1363653838634491, 0.41070738434791565, -0.4349737763404846, 0.7439171671867371, -0.25706836581230164, 0.13727769255638123, -0.10121137648820877, 0.11090226471424103, 0.15556809306144714, -0.13418568670749664, -0.03160495683550835, 0.2816462516784668], "std": [0.005641927942633629, 0.0027903036680072546, 0.0072765834629535675, 0.06402866542339325, 0.05408879369497299, 0.04454486817121506, 0.11666308343410492, 0.012291953898966312, 0.005214894190430641, 0.002853678073734045, 0.44392701983451843, 0.1962326318025589, 0.5234940052032471, 0.6065018773078918], "count": [706]}, "timestamp": {"min": [0.0], "max": [23.5], "mean": [11.75], "std": [6.793481352656301], "count": [706]}, "frame_index": {"min": [0], "max": [705], "mean": [352.5], "std": [203.80444057968904], "count": [706]}, "episode_index": {"min": [116], "max": [116], "mean": [116.0], "std": [0.0], "count": [706]}, "index": {"min": [73634], "max": [74339], "mean": [73986.5], "std": [203.80444057968904], "count": [706]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [706]}}} +{"episode_index": 117, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45376776351913845]], [[0.4085720238411535]], [[0.34255266840250104]]], "std": [[[0.20177260377629708]], [[0.1933663400250735]], [[0.19474897129667668]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4678401261136795]], [[0.43653481853445986]], [[0.37460854057069987]]], "std": [[[0.20460232593218308]], [[0.18008576122663114]], [[0.1910290218882199]]], "count": [123]}, "observation.state": {"min": [0.6035161018371582, -0.042621761560440063, 0.14734280109405518, -1.59511137008667, 0.05957350879907608, 0.20967209339141846, -0.4829874336719513, -0.223148375749588, 0.16624659299850464, 0.5110144019126892, 0.24116341769695282, -0.35365739464759827], "max": [0.6571428179740906, 0.0016217699740082026, 0.16607029736042023, -0.7374795079231262, 0.7486313581466675, 0.7968301177024841, -0.3481099009513855, -0.15728889405727386, 0.18431687355041504, 1.5179455280303955, 0.5510550141334534, -0.06809887290000916], "mean": [0.6324337124824524, -0.016194339841604233, 0.15790890157222748, -1.095658302307129, 0.2873847186565399, 0.45807182788848877, -0.44475850462913513, -0.20021717250347137, 0.17251744866371155, 0.7661358118057251, 0.32866957783699036, -0.3138739764690399], "std": [0.016703030094504356, 0.011082151904702187, 0.00526265986263752, 0.3064931631088257, 0.18396227061748505, 0.18589697778224945, 0.02458804100751877, 0.017578070983290672, 0.0046780044212937355, 0.18486328423023224, 0.053619176149368286, 0.04351732134819031], "count": [612]}, "action": {"min": [-0.08407900482416153, -0.0887899398803711, 0.12927863001823425, 0.31100228428840637, -0.6128087639808655, 0.5966068506240845, -0.37966272234916687, 0.12024358659982681, -0.10447949916124344, 0.10350052267313004, 0.3448217511177063, -0.41206347942352295, -0.5275876522064209, 0.6873229742050171], "max": [-0.07097496837377548, -0.07756390422582626, 0.1442347764968872, 0.6403313875198364, -0.3371002674102783, 0.8188803195953369, 0.0035159518010914326, 0.14229774475097656, -0.09329117089509964, 0.11942927539348602, 0.47897103428840637, -0.20389679074287415, -0.1281757354736328, 0.8319409489631653], "mean": [-0.07894304394721985, -0.08281715959310532, 0.1383790224790573, 0.42576101422309875, -0.4512237310409546, 0.7215739488601685, -0.24327798187732697, 0.12819504737854004, -0.09967313706874847, 0.1108706071972847, 0.4548679292201996, -0.2673056125640869, -0.4123486280441284, 0.736905038356781], "std": [0.004280219320207834, 0.00308261183090508, 0.005055554211139679, 0.08786304295063019, 0.10063358396291733, 0.0668780505657196, 0.11380781978368759, 0.004344240762293339, 0.0026580742560327053, 0.004319971427321434, 0.02477814443409443, 0.03741391375660896, 0.07641423493623734, 0.026997964829206467], "count": [612]}, "timestamp": {"min": [0.0], "max": [20.366666666666667], "mean": [10.183333333333334], "std": [5.888964884205662], "count": [612]}, "frame_index": {"min": [0], "max": [611], "mean": [305.5], "std": [176.66894652616986], "count": [612]}, "episode_index": {"min": [117], "max": [117], "mean": [117.0], "std": [0.0], "count": [612]}, "index": {"min": [74340], "max": [74951], "mean": [74645.5], "std": [176.66894652616986], "count": [612]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [612]}}} +{"episode_index": 118, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4428067326711386]], [[0.398405879127967]], [[0.3315976181773879]]], "std": [[[0.20308674838633184]], [[0.19253034872378796]], [[0.19201066344218326]]], "count": [152]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45388937263501894]], [[0.42361036220043574]], [[0.3607527591445935]]], "std": [[[0.20712783702012258]], [[0.18141872855475574]], [[0.19001373099887356]]], "count": [152]}, "observation.state": {"min": [0.5596973299980164, -0.05501674860715866, 0.1478652060031891, -1.7066664695739746, 0.16123107075691223, -0.34380102157592773, -0.48752841353416443, -0.24600766599178314, 0.16225531697273254, 0.2719678580760956, 0.03552548959851265, -0.5930769443511963], "max": [0.6660239100456238, 0.0037532499991357327, 0.1649516075849533, -0.9574442505836487, 1.0627586841583252, 0.7670001983642578, -0.3593541979789734, -0.18330678343772888, 0.18585039675235748, 1.3831148147583008, 0.5229078531265259, -0.1362801343202591], "mean": [0.6112945675849915, -0.02053910307586193, 0.15495552122592926, -1.3200277090072632, 0.5079772472381592, 0.2378038913011551, -0.4525168836116791, -0.21829047799110413, 0.17739221453666687, 0.5549842715263367, 0.19607964158058167, -0.38528504967689514], "std": [0.031168673187494278, 0.01485709473490715, 0.004625149071216583, 0.14026044309139252, 0.20581918954849243, 0.23370996117591858, 0.026772238314151764, 0.015327063389122486, 0.005920256022363901, 0.1901271641254425, 0.08590199053287506, 0.07120959460735321], "count": [814]}, "action": {"min": [-0.09509971737861633, -0.08970866352319717, 0.12671425938606262, 0.3125820457935333, -0.44194114208221436, 0.545893669128418, -0.3416743576526642, 0.12138334661722183, -0.1126471757888794, 0.10369670391082764, 0.3835289776325226, -0.3853934407234192, -0.5930714011192322, 0.5861455202102661], "max": [-0.07242932915687561, -0.07671155780553818, 0.14669480919837952, 0.7398444414138794, -0.08713304251432419, 0.8970861434936523, -0.011441905051469803, 0.1427299529314041, -0.09428517520427704, 0.11778124421834946, 0.5581701397895813, -0.10243669152259827, -0.17883192002773285, 0.8199979066848755], "mean": [-0.08305788785219193, -0.08239723742008209, 0.13669972121715546, 0.49838465452194214, -0.31851986050605774, 0.7660714387893677, -0.1892060935497284, 0.1261010766029358, -0.10563159734010696, 0.1117650717496872, 0.5073369741439819, -0.1952149122953415, -0.47977307438850403, 0.6806437373161316], "std": [0.0065016248263418674, 0.0025852208491414785, 0.0046812607906758785, 0.10109507292509079, 0.07885541766881943, 0.08207546919584274, 0.06571561098098755, 0.005358665715903044, 0.004653552081435919, 0.0034411209635436535, 0.02489510178565979, 0.05317822843790054, 0.07330299913883209, 0.047120362520217896], "count": [814]}, "timestamp": {"min": [0.0], "max": [27.1], "mean": [13.55], "std": [7.832712741374402], "count": [814]}, "frame_index": {"min": [0], "max": [813], "mean": [406.5], "std": [234.98138224123204], "count": [814]}, "episode_index": {"min": [118], "max": [118], "mean": [118.0], "std": [0.0], "count": [814]}, "index": {"min": [74952], "max": [75765], "mean": [75358.5], "std": [234.98138224123204], "count": [814]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [814]}}} +{"episode_index": 119, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45676960784313725]], [[0.4098271386837563]], [[0.34457402809608695]]], "std": [[[0.20477170591835858]], [[0.19640393451337565]], [[0.1981858308537772]]], "count": [154]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47520577448150975]], [[0.4409153050108932]], [[0.3799969035594036]]], "std": [[[0.20726764120243463]], [[0.1830822618748836]], [[0.19437168125639112]]], "count": [154]}, "observation.state": {"min": [0.567242443561554, -0.08342868089675903, 0.15274055302143097, -1.9790537357330322, 0.2355613261461258, -0.00275587011128664, -0.484678715467453, -0.2354584038257599, 0.16008663177490234, 0.3061473071575165, 0.15904489159584045, -0.5215760469436646], "max": [0.702444314956665, 0.0036605799105018377, 0.16533790528774261, -0.628650426864624, 1.1655093431472778, 1.252708077430725, -0.3002752959728241, -0.1767115741968155, 0.17294064164161682, 1.1671342849731445, 0.4241197109222412, -0.2658137083053589], "mean": [0.6282094717025757, -0.029606979340314865, 0.1590735912322998, -1.3497223854064941, 0.634395182132721, 0.4100992977619171, -0.4151117503643036, -0.206522598862648, 0.1651066392660141, 0.4822917580604553, 0.2893422245979309, -0.37595799565315247], "std": [0.037933431565761566, 0.02057517319917679, 0.0028496780432760715, 0.3637452721595764, 0.25676459074020386, 0.2805146276950836, 0.0567508339881897, 0.01631741225719452, 0.0036389518063515425, 0.14995774626731873, 0.06535697728395462, 0.05934827774763107], "count": [832]}, "action": {"min": [-0.08674857765436172, -0.09339673072099686, 0.12340749055147171, 0.37275081872940063, -0.47429174184799194, 0.4023730456829071, -0.33451008796691895, 0.12640424072742462, -0.10326611250638962, 0.10193335264921188, 0.4113791286945343, -0.30910763144493103, -0.5965724587440491, 0.6193382143974304], "max": [-0.06767255812883377, -0.07440277189016342, 0.14616352319717407, 0.7935951948165894, -0.186110720038414, 0.832582414150238, 0.1180175244808197, 0.15374602377414703, -0.08970976620912552, 0.11462312936782837, 0.4997098743915558, -0.12610656023025513, -0.23526540398597717, 0.7953860759735107], "mean": [-0.0780535489320755, -0.0841415748000145, 0.13617171347141266, 0.5727705359458923, -0.35350972414016724, 0.6932336091995239, -0.1324118673801422, 0.1362628936767578, -0.09686942398548126, 0.10729412734508514, 0.4628744125366211, -0.20539981126785278, -0.5227835774421692, 0.6801405549049377], "std": [0.005882008466869593, 0.004784856922924519, 0.006229043938219547, 0.1177498921751976, 0.07580579072237015, 0.1073397696018219, 0.13313518464565277, 0.008598795160651207, 0.0028537458274513483, 0.0033691530115902424, 0.027122721076011658, 0.03940270096063614, 0.05884608253836632, 0.04373827204108238], "count": [832]}, "timestamp": {"min": [0.0], "max": [27.7], "mean": [13.850000000000001], "std": [8.005917950005621], "count": [832]}, "frame_index": {"min": [0], "max": [831], "mean": [415.5], "std": [240.17753850016865], "count": [832]}, "episode_index": {"min": [119], "max": [119], "mean": [119.0], "std": [0.0], "count": [832]}, "index": {"min": [75766], "max": [76597], "mean": [76181.5], "std": [240.17753850016865], "count": [832]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [832]}}} +{"episode_index": 120, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5589524926866384]], [[0.5297604885892655]], [[0.4925291382520711]]], "std": [[[0.23709953156414929]], [[0.2317975095004042]], [[0.23551586875422953]]], "count": [461]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5777188118800184]], [[0.5580523850538046]], [[0.5255521458040917]]], "std": [[[0.23323039184157335]], [[0.213778144868765]], [[0.22694868631105436]]], "count": [461]}, "observation.state": {"min": [0.13304723799228668, -0.19769424200057983, 0.0999569222331047, -4.540416240692139, -0.9043970108032227, -1.4185758829116821, -0.638978898525238, -0.5203886032104492, 0.15334074199199677, 0.8284849524497986, -0.3922833800315857, -0.666191816329956], "max": [0.6323450803756714, -0.020249009132385254, 0.15811367332935333, -1.0562082529067993, 1.426621675491333, -0.028456300497055054, -0.23954373598098755, -0.28543221950531006, 0.20293937623500824, 1.9610203504562378, 1.1189162731170654, 0.49769842624664307], "mean": [0.5004390478134155, -0.12697625160217285, 0.13740967214107513, -3.593820571899414, 0.015406252816319466, -0.8141428232192993, -0.48800942301750183, -0.4049312174320221, 0.18257631361484528, 1.4065498113632202, 0.45448586344718933, -0.005890605505555868], "std": [0.06393137574195862, 0.037437643855810165, 0.008333797566592693, 0.6385276913642883, 0.4800627529621124, 0.4172765612602234, 0.08034109324216843, 0.03147726505994797, 0.009739493951201439, 0.2345747947692871, 0.40125343203544617, 0.29462260007858276], "count": [3562]}, "action": {"min": [-0.1770559847354889, -0.11102700978517532, 0.1018282100558281, 0.3247448801994324, -0.3631824553012848, 0.07333679497241974, -0.5210813283920288, 0.09609375149011612, -0.14076784253120422, 0.06399919092655182, -0.5189805626869202, -0.5922914147377014, -0.5409188270568848, -0.5890248417854309], "max": [-0.0944359079003334, -0.0845503956079483, 0.14133480191230774, 0.7961286902427673, 0.6397150158882141, 0.7218658924102783, 0.8995335102081299, 0.1621754914522171, -0.10563322901725769, 0.10777481645345688, 0.5661062598228455, 0.635967493057251, 0.363546222448349, 0.968130886554718], "mean": [-0.1124957874417305, -0.09805607795715332, 0.12345355749130249, 0.6155109405517578, 0.2854785621166229, 0.4128897786140442, 0.4465869963169098, 0.12112914770841599, -0.12845216691493988, 0.08729615062475204, 0.3410263657569885, -0.3513435125350952, -0.1505582332611084, 0.7357381582260132], "std": [0.011955184862017632, 0.004896712489426136, 0.00798810925334692, 0.12802135944366455, 0.19069305062294006, 0.1737012416124344, 0.2946264147758484, 0.013061709702014923, 0.006914026569575071, 0.005656618624925613, 0.19844725728034973, 0.22249816358089447, 0.15809482336044312, 0.28704869747161865], "count": [3562]}, "timestamp": {"min": [0.0], "max": [118.7], "mean": [59.35], "std": [34.275359630174236], "count": [3562]}, "frame_index": {"min": [0], "max": [3561], "mean": [1780.5], "std": [1028.2607889052272], "count": [3562]}, "episode_index": {"min": [120], "max": [120], "mean": [120.0], "std": [0.0], "count": [3562]}, "index": {"min": [76598], "max": [80159], "mean": [78378.5], "std": [1028.2607889052272], "count": [3562]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [3562]}}} +{"episode_index": 121, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6287644654912719]], [[0.5974371200812286]], [[0.5607279041932273]]], "std": [[[0.23273823081952924]], [[0.23387071875533896]], [[0.23596706037101117]]], "count": [162]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6457957566771565]], [[0.6226757241991447]], [[0.5916923431238065]]], "std": [[[0.212164188011732]], [[0.20098660643888305]], [[0.2130982419820265]]], "count": [162]}, "observation.state": {"min": [0.3858200013637543, -0.14833052456378937, 0.12530198693275452, -4.538528919219971, -0.7325083017349243, -0.9643422365188599, -0.5891441106796265, -0.40804603695869446, 0.1570364534854889, 1.3606780767440796, -0.511976957321167, 0.21996015310287476], "max": [0.5160021185874939, -0.048653218895196915, 0.14042969048023224, -3.3986546993255615, 0.15590225160121918, 0.052223920822143555, -0.3218989372253418, -0.3493223786354065, 0.19391460716724396, 1.7605568170547485, 0.190744549036026, 0.6489307284355164], "mean": [0.45366188883781433, -0.0811188593506813, 0.1327996402978897, -3.813203811645508, -0.17465516924858093, -0.4278731644153595, -0.47826066613197327, -0.3775991201400757, 0.17757050693035126, 1.5789166688919067, -0.13542291522026062, 0.45843568444252014], "std": [0.03446809574961662, 0.022317958995699883, 0.003166373586282134, 0.3326645791530609, 0.20441584289073944, 0.24732883274555206, 0.08489813655614853, 0.01642143353819847, 0.011450556106865406, 0.10996630787849426, 0.2060033231973648, 0.10740507394075394], "count": [886]}, "action": {"min": [-0.13263671100139618, -0.10090938210487366, 0.11890581995248795, 0.2910347580909729, 0.11638132482767105, 0.10109823942184448, 0.5112128853797913, 0.1080998107790947, -0.13495539128780365, 0.08568107336759567, 0.12662915885448456, -0.27460554242134094, -0.19367985427379608, 0.917724609375], "max": [-0.1090899109840393, -0.08351298421621323, 0.13957969844341278, 0.6652255654335022, 0.5633519887924194, 0.5903445482254028, 0.9404462575912476, 0.1543298214673996, -0.11244932562112808, 0.09486623853445053, 0.30808550119400024, -0.10855584591627121, 0.13031010329723358, 0.9799464344978333], "mean": [-0.12196572124958038, -0.09040595591068268, 0.13012604415416718, 0.4645891487598419, 0.24500340223312378, 0.42708998918533325, 0.6998317241668701, 0.12746869027614594, -0.1248592659831047, 0.09042312949895859, 0.19981428980827332, -0.17505837976932526, -0.026084426790475845, 0.9567074775695801], "std": [0.005928287748247385, 0.0029284441843628883, 0.005193662829697132, 0.09488409012556076, 0.11390476673841476, 0.14271704852581024, 0.09805310517549515, 0.014942001551389694, 0.006892301142215729, 0.002139111515134573, 0.054469916969537735, 0.0451572947204113, 0.09016397595405579, 0.01796785369515419], "count": [886]}, "timestamp": {"min": [0.0], "max": [29.5], "mean": [14.75], "std": [8.525533544724471], "count": [886]}, "frame_index": {"min": [0], "max": [885], "mean": [442.5], "std": [255.76600634173417], "count": [886]}, "episode_index": {"min": [121], "max": [121], "mean": [121.0], "std": [0.0], "count": [886]}, "index": {"min": [80160], "max": [81045], "mean": [80602.5], "std": [255.76600634173417], "count": [886]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [886]}}} +{"episode_index": 122, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6098419066124948]], [[0.5795847685921216]], [[0.5420178251781193]]], "std": [[[0.24103633722609122]], [[0.24065934066454184]], [[0.24244139630779696]]], "count": [185]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6268888682800448]], [[0.6057055025613849]], [[0.5736584466819761]]], "std": [[[0.22067945778555023]], [[0.20852897039744558]], [[0.2198454956815628]]], "count": [185]}, "observation.state": {"min": [0.4160853922367096, -0.14644618332386017, 0.12258496135473251, -4.538528919219971, -0.638638973236084, -0.7873450517654419, -0.5869045257568359, -0.4315154254436493, 0.1603018045425415, 1.2493326663970947, -0.612678050994873, 0.14654132723808289], "max": [0.5420972108840942, -0.06663946062326431, 0.1409689337015152, -3.603731393814087, 0.23187214136123657, 0.2062140256166458, -0.3082837760448456, -0.3257448673248291, 0.19618181884288788, 1.8479974269866943, 0.04782276973128319, 0.6863689422607422], "mean": [0.47616875171661377, -0.09754737466573715, 0.13105233013629913, -4.075581073760986, -0.047124579548835754, -0.31595370173454285, -0.5003712177276611, -0.38708820939064026, 0.18379169702529907, 1.5897884368896484, -0.2849431037902832, 0.4573380947113037], "std": [0.02763654664158821, 0.018237804993987083, 0.00362008111551404, 0.2886739671230316, 0.2526586055755615, 0.3184099495410919, 0.07468290627002716, 0.026591548696160316, 0.01073578279465437, 0.15973378717899323, 0.18835999071598053, 0.15936362743377686], "count": [1057]}, "action": {"min": [-0.13059629499912262, -0.10255862772464752, 0.11363783478736877, 0.21256472170352936, 0.02355160005390644, 0.14028297364711761, 0.5751786231994629, 0.10662439465522766, -0.1404377967119217, 0.0866151973605156, 0.11173005402088165, -0.25464674830436707, -0.18091513216495514, 0.9080299139022827], "max": [-0.10781987756490707, -0.08359832316637039, 0.13152281939983368, 0.6635596752166748, 0.4908488988876343, 0.4799968898296356, 0.957656741142273, 0.15680868923664093, -0.11397724598646164, 0.09700721502304077, 0.3398300111293793, -0.013103283010423183, 0.16327977180480957, 0.9884945154190063], "mean": [-0.11977558583021164, -0.09202386438846588, 0.12530332803726196, 0.46076714992523193, 0.21224385499954224, 0.3129502832889557, 0.7634211182594299, 0.12331090867519379, -0.12989673018455505, 0.0914609506726265, 0.1974932849407196, -0.12838278710842133, 0.024307960644364357, 0.9618749022483826], "std": [0.0053055910393595695, 0.003708453383296728, 0.004189460072666407, 0.14388954639434814, 0.12522338330745697, 0.10265693813562393, 0.12236551940441132, 0.013358955271542072, 0.007870848290622234, 0.0024158081505447626, 0.06646022945642471, 0.06546060740947723, 0.09764212369918823, 0.02202329784631729], "count": [1057]}, "timestamp": {"min": [0.0], "max": [35.2], "mean": [17.6], "std": [10.170982690423225], "count": [1057]}, "frame_index": {"min": [0], "max": [1056], "mean": [528.0], "std": [305.12948071269676], "count": [1057]}, "episode_index": {"min": [122], "max": [122], "mean": [122.0], "std": [0.0], "count": [1057]}, "index": {"min": [81046], "max": [82102], "mean": [81574.0], "std": [305.12948071269676], "count": [1057]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1057]}}} +{"episode_index": 123, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6171784494205308]], [[0.5864081422180969]], [[0.5485394348403398]]], "std": [[[0.23798563489004604]], [[0.23873632772775494]], [[0.24133785393200005]]], "count": [169]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6357700235912905]], [[0.6129779186164932]], [[0.580551544713875]]], "std": [[[0.2146246926379184]], [[0.20435808818763493]], [[0.21680587922727348]]], "count": [169]}, "observation.state": {"min": [0.38917940855026245, -0.13401257991790771, 0.1203397884964943, -4.540626049041748, -0.6262050867080688, -0.9448557496070862, -0.5487387776374817, -0.4240475296974182, 0.16156050562858582, 0.8484054803848267, 0.07419361919164658, 0.07556617259979248], "max": [0.5802938938140869, -0.04831342026591301, 0.14282004535198212, -3.3896379470825195, 0.2473120540380478, 0.09115202724933624, -0.29749512672424316, -0.3594391644001007, 0.19390684366226196, 1.5223489999771118, 0.7099632620811462, 0.46290692687034607], "mean": [0.471235454082489, -0.08750127255916595, 0.133731409907341, -3.841278553009033, -0.056468356400728226, -0.4685248136520386, -0.443219393491745, -0.393510103225708, 0.17888903617858887, 1.2323148250579834, 0.3594508469104767, 0.3044816851615906], "std": [0.0390724316239357, 0.01789805479347706, 0.004466087091714144, 0.19544140994548798, 0.1767975091934204, 0.23144783079624176, 0.07791854441165924, 0.018706586211919785, 0.009539050981402397, 0.1741843819618225, 0.17190130054950714, 0.11514634639024734], "count": [937]}, "action": {"min": [-0.1308378130197525, -0.10373002290725708, 0.11321373283863068, 0.26392921805381775, 0.060605037957429886, 0.11428824067115784, 0.4492361843585968, 0.1079140305519104, -0.13660907745361328, 0.08301277458667755, 0.18318761885166168, -0.34250718355178833, -0.5019346475601196, 0.8074812293052673], "max": [-0.10414071381092072, -0.0819474309682846, 0.1388387829065323, 0.6876224875450134, 0.4800412654876709, 0.5453044772148132, 0.9426541328430176, 0.15365982055664062, -0.11399929970502853, 0.09679032862186432, 0.4062212109565735, -0.18737758696079254, -0.09850107878446579, 0.9269260168075562], "mean": [-0.119344063103199, -0.09201549738645554, 0.12887264788150787, 0.519707977771759, 0.21159173548221588, 0.4045241177082062, 0.6996400952339172, 0.12893526256084442, -0.1269763559103012, 0.09037964791059494, 0.28404700756073, -0.2551943361759186, -0.27905598282814026, 0.8704580664634705], "std": [0.005720236338675022, 0.0039876592345535755, 0.00578852416947484, 0.09780711680650711, 0.095334492623806, 0.07006247341632843, 0.09183504432439804, 0.013453293591737747, 0.0071238200180232525, 0.0035230829380452633, 0.06508816033601761, 0.0429341197013855, 0.10529612749814987, 0.03816668689250946], "count": [937]}, "timestamp": {"min": [0.0], "max": [31.2], "mean": [15.600000000000001], "std": [9.016281569102272], "count": [937]}, "frame_index": {"min": [0], "max": [936], "mean": [468.0], "std": [270.4884470730682], "count": [937]}, "episode_index": {"min": [123], "max": [123], "mean": [123.0], "std": [0.0], "count": [937]}, "index": {"min": [82103], "max": [83039], "mean": [82571.0], "std": [270.4884470730682], "count": [937]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [937]}}} +{"episode_index": 124, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5983720139689863]], [[0.56932233435858]], [[0.5308337242086377]]], "std": [[[0.2398055618363725]], [[0.23924512857229951]], [[0.24039138560817513]]], "count": [170]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6118148324362425]], [[0.5923792755991285]], [[0.5590969002306805]]], "std": [[[0.21919894073688737]], [[0.20684338638518604]], [[0.21762231629963238]]], "count": [170]}, "observation.state": {"min": [0.4057678282260895, -0.13775038719177246, 0.12035144865512848, -4.313951015472412, -0.3686452805995941, -0.8356252312660217, -0.6195176243782043, -0.4335465133190155, 0.1610497683286667, 0.16481630504131317, -0.19716647267341614, -0.6125584840774536], "max": [0.5356023907661438, -0.055935751646757126, 0.13884691894054413, -3.4336729049682617, 0.08293835818767548, 0.1158086508512497, -0.36769476532936096, -0.37126266956329346, 0.19698423147201538, 1.686536192893982, 1.053604006767273, 0.6650015115737915], "mean": [0.4653013050556183, -0.08261312544345856, 0.13132041692733765, -3.7910702228546143, -0.09407180547714233, -0.4066428542137146, -0.5158146023750305, -0.40508484840393066, 0.18136101961135864, 1.4040160179138184, 0.13666272163391113, 0.34973740577697754], "std": [0.04078920558094978, 0.02012600749731064, 0.0035923344548791647, 0.23841306567192078, 0.09066031873226166, 0.2730182707309723, 0.07793737202882767, 0.020453721284866333, 0.011072797700762749, 0.36553847789764404, 0.3342024087905884, 0.3148137331008911], "count": [943]}, "action": {"min": [-0.1295209527015686, -0.09760655462741852, 0.1150708943605423, 0.2612859606742859, 0.11560717225074768, 0.24798481166362762, 0.5698023438453674, 0.10170240700244904, -0.1402307152748108, 0.07949180155992508, -0.3488403558731079, -0.5532042384147644, -0.5893363356590271, -0.5918524861335754], "max": [-0.10890178382396698, -0.08481135219335556, 0.13807456195354462, 0.6632810831069946, 0.3446040749549866, 0.5675428509712219, 0.9178215265274048, 0.14636023342609406, -0.11348950117826462, 0.09386283159255981, 0.39785316586494446, 0.42187854647636414, 0.6329211592674255, 0.9608533382415771], "mean": [-0.12115643918514252, -0.08997432142496109, 0.1282188892364502, 0.48008882999420166, 0.2121894359588623, 0.4381387233734131, 0.7059358358383179, 0.11997399479150772, -0.12825381755828857, 0.08596757054328918, 0.20393919944763184, -0.219807967543602, -0.07764548808336258, 0.8280119895935059], "std": [0.00594093045219779, 0.0024980136658996344, 0.006065376568585634, 0.11194241791963577, 0.05583377182483673, 0.08638235181570053, 0.1052083894610405, 0.014060305431485176, 0.00844067707657814, 0.00369728053919971, 0.1421087235212326, 0.17490556836128235, 0.20577947795391083, 0.3540184795856476], "count": [943]}, "timestamp": {"min": [0.0], "max": [31.4], "mean": [15.700000000000003], "std": [9.074016628691938], "count": [943]}, "frame_index": {"min": [0], "max": [942], "mean": [471.0], "std": [272.2204988607581], "count": [943]}, "episode_index": {"min": [124], "max": [124], "mean": [124.0], "std": [0.0], "count": [943]}, "index": {"min": [83040], "max": [83982], "mean": [83511.0], "std": [272.2204988607581], "count": [943]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [943]}}} +{"episode_index": 125, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5764598166689844]], [[0.5481369000023176]], [[0.509280582209243]]], "std": [[[0.24486184699756933]], [[0.24296937565882792]], [[0.24413852454620152]]], "count": [188]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5880881252027998]], [[0.5699888909168868]], [[0.536116443297177]]], "std": [[[0.22853296115363794]], [[0.21496436261586607]], [[0.2254107935767974]]], "count": [188]}, "observation.state": {"min": [0.395596981048584, -0.15706494450569153, 0.12211310863494873, -4.539158344268799, -0.6559918522834778, -1.0378551483154297, -0.6190233826637268, -0.45505431294441223, 0.1604638546705246, 1.1302287578582764, -0.564308762550354, 0.1765526384115219], "max": [0.604211151599884, -0.04085325822234154, 0.14368726313114166, -3.6165225505828857, 0.19115446507930756, 0.367068350315094, -0.3834027945995331, -0.3487895131111145, 0.19529646635055542, 1.8219959735870361, 0.2413000613451004, 0.6527963280677795], "mean": [0.480135053396225, -0.10682161152362823, 0.1338512897491455, -4.113653182983398, -0.1836233288049698, -0.3836802840232849, -0.5528820157051086, -0.41812458634376526, 0.1804673969745636, 1.6178938150405884, -0.2640931308269501, 0.44325533509254456], "std": [0.048624347895383835, 0.030518831685185432, 0.0058450847864151, 0.3247174620628357, 0.1768927425146103, 0.33034756779670715, 0.06061866134405136, 0.03283308446407318, 0.009204963222146034, 0.18354175984859467, 0.22788193821907043, 0.10892925411462784], "count": [1079]}, "action": {"min": [-0.12989598512649536, -0.10515119880437851, 0.10626967996358871, 0.1390736997127533, 0.08292447775602341, 0.07844578474760056, 0.5165807008743286, 0.10286729782819748, -0.14238105714321136, 0.07625771313905716, 0.12383396923542023, -0.294521301984787, -0.27547886967658997, 0.8586598634719849], "max": [-0.101552814245224, -0.08393412083387375, 0.1389891505241394, 0.7169959545135498, 0.5002120733261108, 0.4650493562221527, 0.9526275396347046, 0.14620935916900635, -0.11390379816293716, 0.09106530249118805, 0.3881881833076477, -0.08647362887859344, 0.15206757187843323, 0.9770200252532959], "mean": [-0.11734229326248169, -0.09383533149957657, 0.12606242299079895, 0.464032918214798, 0.28740471601486206, 0.29931744933128357, 0.7461956143379211, 0.11853624135255814, -0.128688782453537, 0.08239558339118958, 0.20711316168308258, -0.17355233430862427, 0.02345064841210842, 0.9504650235176086], "std": [0.006808548700064421, 0.0064683398231863976, 0.007505054585635662, 0.1399427056312561, 0.08806116133928299, 0.12151361256837845, 0.11648669093847275, 0.010255930945277214, 0.0076907421462237835, 0.0038000093773007393, 0.05811960622668266, 0.060443200170993805, 0.12451784312725067, 0.022696208208799362], "count": [1079]}, "timestamp": {"min": [0.0], "max": [35.93333333333333], "mean": [17.966666666666665], "std": [10.382677881933928], "count": [1079]}, "frame_index": {"min": [0], "max": [1078], "mean": [539.0], "std": [311.48033645801786], "count": [1079]}, "episode_index": {"min": [125], "max": [125], "mean": [125.0], "std": [0.0], "count": [1079]}, "index": {"min": [83983], "max": [85061], "mean": [84522.0], "std": [311.48033645801786], "count": [1079]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1079]}}} +{"episode_index": 126, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6076348787167449]], [[0.5770895892785909]], [[0.5393493241584584]]], "std": [[[0.23592163887693568]], [[0.23572844440447208]], [[0.23663222185612015]]], "count": [142]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6226339389824788]], [[0.6009565018104268]], [[0.5685644523458836]]], "std": [[[0.2161838013681833]], [[0.2040564790910584]], [[0.214688779774291]]], "count": [142]}, "observation.state": {"min": [0.4096909761428833, -0.15335802733898163, 0.12310347706079483, -4.031708717346191, -0.6490233540534973, -1.0212234258651733, -0.6174710988998413, -0.4335542321205139, 0.15402258932590485, 1.3353055715560913, 0.0476861409842968, -0.05323735997080803], "max": [0.5494183897972107, -0.03313051909208298, 0.1407109797000885, -3.196723222732544, 0.11860048025846481, 0.12299293279647827, -0.36869099736213684, -0.3595704436302185, 0.18732686340808868, 1.7054083347320557, 0.5085610747337341, 0.5416181683540344], "mean": [0.4753696024417877, -0.0860152319073677, 0.1333296000957489, -3.6303634643554688, -0.22293409705162048, -0.5728963613510132, -0.5123401284217834, -0.39774441719055176, 0.17264597117900848, 1.5106613636016846, 0.29218706488609314, 0.24265894293785095], "std": [0.03963744640350342, 0.029546180739998817, 0.00486074760556221, 0.2041873037815094, 0.17593133449554443, 0.28649473190307617, 0.07581059634685516, 0.02113497257232666, 0.010877542197704315, 0.10575833171606064, 0.14041739702224731, 0.18450479209423065], "count": [743]}, "action": {"min": [-0.12773215770721436, -0.09792834520339966, 0.11324422061443329, 0.2530222535133362, 0.11085756123065948, 0.29854345321655273, 0.446653813123703, 0.10446765273809433, -0.13134951889514923, 0.07388920336961746, 0.17755341529846191, -0.4446875751018524, -0.2517588436603546, 0.7647441625595093], "max": [-0.10548108071088791, -0.07967840880155563, 0.14254629611968994, 0.720121443271637, 0.49104565382003784, 0.6225711703300476, 0.7979028224945068, 0.14451715350151062, -0.10789104551076889, 0.08608854562044144, 0.44799894094467163, -0.22357478737831116, -0.027071310207247734, 0.9312366843223572], "mean": [-0.11841613054275513, -0.08995876461267471, 0.1288253515958786, 0.49777039885520935, 0.2877650856971741, 0.49346670508384705, 0.6247690320014954, 0.12254703044891357, -0.12111903727054596, 0.08160313218832016, 0.3146643340587616, -0.3482626676559448, -0.14408786594867706, 0.8610824346542358], "std": [0.005673777777701616, 0.003731566946953535, 0.00803038664162159, 0.11252716183662415, 0.08739814907312393, 0.07580559700727463, 0.09758506715297699, 0.013539259321987629, 0.007530187722295523, 0.002782519208267331, 0.08501718938350677, 0.05884002521634102, 0.06423377990722656, 0.05156761035323143], "count": [743]}, "timestamp": {"min": [0.0], "max": [24.733333333333334], "mean": [12.366666666666665], "std": [7.149514358021499], "count": [743]}, "frame_index": {"min": [0], "max": [742], "mean": [371.0], "std": [214.48543074064494], "count": [743]}, "episode_index": {"min": [126], "max": [126], "mean": [126.0], "std": [0.0], "count": [743]}, "index": {"min": [85062], "max": [85804], "mean": [85433.0], "std": [214.48543074064494], "count": [743]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [743]}}} +{"episode_index": 127, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6282690772669222]], [[0.5955489773495605]], [[0.5578577695765408]]], "std": [[[0.2324955869099213]], [[0.2335192239433786]], [[0.23541604209992995]]], "count": [174]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.647813235607142]], [[0.6224788849447824]], [[0.5904315055843538]]], "std": [[[0.21114037299946417]], [[0.200164354568433]], [[0.21214089384854073]]], "count": [174]}, "observation.state": {"min": [0.4045708179473877, -0.14972834289073944, 0.11523628979921341, -4.539158344268799, -0.5835744738578796, -0.8590545058250427, -0.5407226085662842, -0.42570793628692627, 0.15413536131381989, -0.7613841891288757, 0.20686766505241394, -1.3825154304504395], "max": [0.5565155744552612, -0.03367884084582329, 0.14519615471363068, -3.5118870735168457, 0.46961966156959534, 0.5578206181526184, -0.3318226635456085, -0.3418544828891754, 0.1905883252620697, 0.9763163924217224, 0.966976523399353, 0.256117045879364], "mean": [0.47042763233184814, -0.08992334455251694, 0.13250289857387543, -4.008781909942627, -0.09141683578491211, -0.28424495458602905, -0.4396297335624695, -0.37688589096069336, 0.17384131252765656, 0.2467113733291626, 0.593709409236908, -0.5532314777374268], "std": [0.03979387506842613, 0.028113072738051414, 0.005076543428003788, 0.2698407769203186, 0.19292618334293365, 0.31905627250671387, 0.06515071541070938, 0.023293955251574516, 0.011179589666426182, 0.5326470136642456, 0.23525254428386688, 0.545452892780304], "count": [973]}, "action": {"min": [-0.12834976613521576, -0.10596628487110138, 0.10515108704566956, 0.038685392588377, -0.021999090909957886, 0.0660136267542839, 0.5384640097618103, 0.1136576384305954, -0.13768614828586578, 0.08542297035455704, -0.5888451337814331, -0.3950973451137543, -0.6402875781059265, -0.6415061950683594], "max": [-0.10602137446403503, -0.08027296513319016, 0.13615354895591736, 0.6698972582817078, 0.4692777097225189, 0.5078767538070679, 0.996588945388794, 0.15908236801624298, -0.1052340567111969, 0.09961794316768646, 0.454290509223938, 0.4376116693019867, 0.7902472019195557, 0.8569362759590149], "mean": [-0.11988892406225204, -0.09149470180273056, 0.12775379419326782, 0.4346434473991394, 0.21641269326210022, 0.3507201075553894, 0.7673434615135193, 0.1330580711364746, -0.11930118501186371, 0.0926067978143692, -0.07478620857000351, 0.1468435674905777, 0.21314062178134918, 0.06316148489713669], "std": [0.005462312605232, 0.005185408517718315, 0.007161782123148441, 0.14421924948692322, 0.09689918160438538, 0.09914659708738327, 0.11140640079975128, 0.01394541934132576, 0.009787322953343391, 0.003167213872075081, 0.40070801973342896, 0.30220717191696167, 0.5473111867904663, 0.6099019050598145], "count": [973]}, "timestamp": {"min": [0.0], "max": [32.4], "mean": [16.2], "std": [9.36269192059634], "count": [973]}, "frame_index": {"min": [0], "max": [972], "mean": [486.0], "std": [280.88075761789025], "count": [973]}, "episode_index": {"min": [127], "max": [127], "mean": [127.0], "std": [0.0], "count": [973]}, "index": {"min": [85805], "max": [86777], "mean": [86291.0], "std": [280.88075761789025], "count": [973]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [973]}}} +{"episode_index": 128, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6137331523648886]], [[0.582278596528217]], [[0.5440260172886359]]], "std": [[[0.23916867755005117]], [[0.23935364206009518]], [[0.24067966407629918]]], "count": [155]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6319864466933727]], [[0.6092240863729005]], [[0.5760118595825426]]], "std": [[[0.21652653087294718]], [[0.20522803071476065]], [[0.21692715134049884]]], "count": [155]}, "observation.state": {"min": [0.4451846480369568, -0.12116196006536484, 0.1272982656955719, -3.977189064025879, -0.38285547494888306, -1.0385032892227173, -0.5290690064430237, -0.41606223583221436, 0.15973792970180511, 0.6645074486732483, -0.1781740039587021, -0.17466461658477783], "max": [0.593808650970459, -0.026404019445180893, 0.147003173828125, -3.2592108249664307, 0.6379558444023132, -0.33903536200523376, -0.364736944437027, -0.3530910611152649, 0.18595409393310547, 1.8339482545852661, 0.8446868658065796, 0.5725840926170349], "mean": [0.4991641640663147, -0.06824781745672226, 0.1371804177761078, -3.468027353286743, 0.3538495898246765, -0.6113593578338623, -0.470185786485672, -0.38719722628593445, 0.17484068870544434, 1.2770614624023438, 0.30286547541618347, 0.2118781954050064], "std": [0.04242986440658569, 0.02360665425658226, 0.0042876689694821835, 0.20578381419181824, 0.2846069037914276, 0.15941886603832245, 0.04849148541688919, 0.019013745710253716, 0.008920415304601192, 0.3817083537578583, 0.34882575273513794, 0.22976535558700562], "count": [834]}, "action": {"min": [-0.1250450760126114, -0.10399463772773743, 0.11726296693086624, 0.44893524050712585, -0.09024463593959808, 0.33880048990249634, 0.3899059593677521, 0.11518267542123795, -0.13243438303470612, 0.08214350044727325, 0.13740020990371704, -0.40670257806777954, -0.5220173001289368, 0.72054523229599], "max": [-0.0987662672996521, -0.08364017307758331, 0.13735808432102203, 0.8000717163085938, 0.42039528489112854, 0.5921323299407959, 0.7432116270065308, 0.14527639746665955, -0.10606031864881516, 0.09362230449914932, 0.44042831659317017, -0.1849628984928131, 0.08336292207241058, 0.9638444185256958], "mean": [-0.11446297913789749, -0.09239816665649414, 0.12915948033332825, 0.6552833318710327, 0.06914442032575607, 0.507170557975769, 0.5212485194206238, 0.12750425934791565, -0.12226158380508423, 0.08822178095579147, 0.29089057445526123, -0.2825128138065338, -0.23424005508422852, 0.8466469645500183], "std": [0.007273721043020487, 0.004601699765771627, 0.00499916123226285, 0.07603994011878967, 0.13998840749263763, 0.06333283334970474, 0.08666540682315826, 0.008192071691155434, 0.008731276728212833, 0.002353564603254199, 0.1053815707564354, 0.038948774337768555, 0.21121615171432495, 0.08157787472009659], "count": [834]}, "timestamp": {"min": [0.0], "max": [27.766666666666666], "mean": [13.883333333333335], "std": [8.025162972846143], "count": [834]}, "frame_index": {"min": [0], "max": [833], "mean": [416.5], "std": [240.7548891853843], "count": [834]}, "episode_index": {"min": [128], "max": [128], "mean": [128.0], "std": [0.0], "count": [834]}, "index": {"min": [86778], "max": [87611], "mean": [87194.5], "std": [240.7548891853843], "count": [834]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [834]}}} +{"episode_index": 129, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5587134738186462]], [[0.5258343231162197]], [[0.48629190331304933]]], "std": [[[0.22244335176902835]], [[0.2234454779830752]], [[0.22500846828875923]]], "count": [145]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5748552250018781]], [[0.5510609984223573]], [[0.5159383911802268]]], "std": [[[0.2032128618061898]], [[0.19358715455420633]], [[0.205571631830736]]], "count": [145]}, "observation.state": {"min": [0.4397478699684143, -0.12148631364107132, 0.12488458305597305, -4.096712589263916, -0.6763506531715393, -1.0792326927185059, -0.5198943614959717, -0.40216904878616333, 0.15863607823848724, 0.1518155187368393, 0.17448480427265167, -0.5311222076416016], "max": [0.5744014382362366, -0.018071189522743225, 0.14951150119304657, -3.2397096157073975, 0.31467387080192566, 0.04214351996779442, -0.35313740372657776, -0.34431806206703186, 0.19071148335933685, 1.3103524446487427, 0.9813233613967896, 0.3200090527534485], "mean": [0.5021823048591614, -0.06225435435771942, 0.1357160359621048, -3.5664286613464355, -0.03732817620038986, -0.5570623874664307, -0.4361676275730133, -0.3757336139678955, 0.17487803101539612, 0.8726080060005188, 0.47700250148773193, -0.02923329919576645], "std": [0.040935296565294266, 0.027439676225185394, 0.004787445534020662, 0.24397538602352142, 0.2742921710014343, 0.2803872525691986, 0.04881572723388672, 0.017674192786216736, 0.009505600668489933, 0.32255905866622925, 0.2500159442424774, 0.26135388016700745], "count": [766]}, "action": {"min": [-0.12707462906837463, -0.10056299716234207, 0.1176953986287117, 0.3091815114021301, 0.05928661301732063, 0.3073948621749878, 0.3505985140800476, 0.11273924261331558, -0.13143306970596313, 0.08666639775037766, -0.302531898021698, -0.3744887411594391, -0.6205800175666809, -0.6169347167015076], "max": [-0.10154207050800323, -0.08080299198627472, 0.1412573605775833, 0.7378571033477783, 0.48821890354156494, 0.6140874028205872, 0.7922021150588989, 0.14749999344348907, -0.10522790998220444, 0.0986868217587471, 0.5088233351707458, 0.3797035217285156, 0.6519448757171631, 0.9100644588470459], "mean": [-0.11336392164230347, -0.08805821090936661, 0.1301611214876175, 0.5354570150375366, 0.22610528767108917, 0.5131049752235413, 0.5913509130477905, 0.1313445121049881, -0.1210651770234108, 0.09220830351114273, 0.31520238518714905, -0.2046612799167633, -0.2941417992115021, 0.6795509457588196], "std": [0.0069240485318005085, 0.004407952539622784, 0.006577588152140379, 0.12289290130138397, 0.1195218488574028, 0.07628330588340759, 0.11824938654899597, 0.010250582359731197, 0.008596658706665039, 0.0028338851407170296, 0.19338060915470123, 0.17772406339645386, 0.30001047253608704, 0.38918474316596985], "count": [766]}, "timestamp": {"min": [0.0], "max": [25.5], "mean": [12.75], "std": [7.370832155643395], "count": [766]}, "frame_index": {"min": [0], "max": [765], "mean": [382.5], "std": [221.12496466930187], "count": [766]}, "episode_index": {"min": [129], "max": [129], "mean": [129.0], "std": [0.0], "count": [766]}, "index": {"min": [87612], "max": [88377], "mean": [87994.5], "std": [221.12496466930187], "count": [766]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [766]}}} +{"episode_index": 130, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6522922661870504]], [[0.6230466822620335]], [[0.5877172673625806]]], "std": [[[0.2495277487356718]], [[0.24260857625245016]], [[0.24656726506212573]]], "count": [139]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.675239224306829]], [[0.6546584516700364]], [[0.6245991853575963]]], "std": [[[0.23705652261337795]], [[0.21722999381599684]], [[0.23045233825958925]]], "count": [139]}, "observation.state": {"min": [0.44625040888786316, -0.08505818247795105, 0.12638698518276215, -4.088325023651123, -0.7300488352775574, -1.0522387027740479, -0.5539593696594238, -0.3219839036464691, 0.15707145631313324, 0.5437260270118713, 0.3600371778011322, -0.7057389616966248], "max": [0.5778843760490417, 0.007552830036729574, 0.1404426544904709, -3.179948091506958, 0.008061549626290798, -0.3137936294078827, -0.3495386242866516, -0.20341677963733673, 0.1902305632829666, 1.4982346296310425, 1.170701503753662, -0.031267210841178894], "mean": [0.4999159574508667, -0.04627136513590813, 0.13457795977592468, -3.644516944885254, -0.2198534905910492, -0.6508253216743469, -0.48439493775367737, -0.2754448652267456, 0.1766047328710556, 1.0794912576675415, 0.6584534645080566, -0.38654258847236633], "std": [0.03698005527257919, 0.01543140783905983, 0.0028574916068464518, 0.17737166583538055, 0.19777841866016388, 0.18186508119106293, 0.06317159533500671, 0.04142405465245247, 0.010421523824334145, 0.2748703062534332, 0.2255365401506424, 0.2045343518257141], "count": [722]}, "action": {"min": [-0.12406480312347412, -0.08963871747255325, 0.12329114228487015, 0.38806211948394775, 0.20212233066558838, 0.26817378401756287, 0.4350627362728119, 0.10567794740200043, -0.12090107798576355, 0.09350491315126419, -0.3884579837322235, -0.6015107035636902, -0.4858599305152893, -0.5982801914215088], "max": [-0.0994638204574585, -0.07507020980119705, 0.1391582190990448, 0.6507311463356018, 0.558485746383667, 0.6387025713920593, 0.7560093402862549, 0.14353248476982117, -0.08533268421888351, 0.1084308922290802, 0.5814018845558167, 0.6089128851890564, 0.42987412214279175, 0.8131692409515381], "mean": [-0.11360049992799759, -0.08375726640224457, 0.13162221014499664, 0.5184453129768372, 0.32623645663261414, 0.4779372215270996, 0.6096646785736084, 0.12028875201940536, -0.10806818306446075, 0.10034215450286865, 0.41661110520362854, -0.43336161971092224, -0.2476411610841751, 0.6521254181861877], "std": [0.0065687270835042, 0.0025814359541982412, 0.00432523712515831, 0.07508434355258942, 0.09443360567092896, 0.06572605669498444, 0.07611328363418579, 0.012334410101175308, 0.01155052799731493, 0.0040174974128603935, 0.17705857753753662, 0.19605079293251038, 0.16419175267219543, 0.23514728248119354], "count": [722]}, "timestamp": {"min": [0.0], "max": [24.033333333333335], "mean": [12.016666666666666], "std": [6.94744157546103], "count": [722]}, "frame_index": {"min": [0], "max": [721], "mean": [360.5], "std": [208.42324726383092], "count": [722]}, "episode_index": {"min": [130], "max": [130], "mean": [130.0], "std": [0.0], "count": [722]}, "index": {"min": [88378], "max": [89099], "mean": [88738.5], "std": [208.42324726383092], "count": [722]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [722]}}} +{"episode_index": 131, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6454779659338483]], [[0.6158790299509254]], [[0.5774476904117426]]], "std": [[[0.256453199464665]], [[0.2484341492716649]], [[0.25275707340331427]]], "count": [198]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6671079036552893]], [[0.6468255471380471]], [[0.6138478645386325]]], "std": [[[0.24284585721513188]], [[0.22265430318466994]], [[0.23622621489590934]]], "count": [198]}, "observation.state": {"min": [0.4049724042415619, -0.09691257029771805, 0.11960996687412262, -4.53873872756958, -0.6743011474609375, -1.39420747756958, -0.5736755132675171, -0.356952428817749, 0.1693330705165863, 0.34032678604125977, -0.08936026692390442, -0.7146002650260925], "max": [0.569049596786499, 0.03801129013299942, 0.14507818222045898, -3.0742642879486084, 0.6564017534255981, 0.20879143476486206, -0.34536832571029663, -0.2537767291069031, 0.1998477280139923, 1.6479532718658447, 0.7549166679382324, 0.14562298357486725], "mean": [0.4861816465854645, -0.038517389446496964, 0.13517938554286957, -3.829852819442749, -0.10097033530473709, -0.49447643756866455, -0.49998682737350464, -0.32620906829833984, 0.18750351667404175, 1.1378520727157593, 0.35560452938079834, -0.26576635241508484], "std": [0.03953920304775238, 0.027440091595053673, 0.004033289384096861, 0.4039554297924042, 0.31561195850372314, 0.4505544602870941, 0.06739939749240875, 0.027221614494919777, 0.008788647130131721, 0.3801751732826233, 0.2045629769563675, 0.22527815401554108], "count": [1155]}, "action": {"min": [-0.12951280176639557, -0.09151925891637802, 0.12450598925352097, 0.18459123373031616, 0.1009044498205185, 0.1383519470691681, 0.10226798802614212, 0.0990816131234169, -0.1331297606229782, 0.09512870013713837, 0.2596094012260437, -0.45782411098480225, -0.5473763942718506, 0.5667751431465149], "max": [-0.1015850156545639, -0.07485737651586533, 0.14677941799163818, 0.8438805341720581, 0.5344894528388977, 0.5921726226806641, 0.954794704914093, 0.14439772069454193, -0.10779549181461334, 0.10989606380462646, 0.6907145977020264, -0.12714242935180664, -0.04468652606010437, 0.8591795563697815], "mean": [-0.11557786166667938, -0.0843731239438057, 0.13316546380519867, 0.47092363238334656, 0.27602630853652954, 0.41087713837623596, 0.6540026068687439, 0.11537342518568039, -0.1234658882021904, 0.09971097111701965, 0.4903888404369354, -0.34608152508735657, -0.24791257083415985, 0.7256443500518799], "std": [0.007230924442410469, 0.0031700190156698227, 0.00433799484744668, 0.18398505449295044, 0.10042422264814377, 0.1251107007265091, 0.21427205204963684, 0.01295848935842514, 0.007363529875874519, 0.003939367830753326, 0.11297837644815445, 0.11274678260087967, 0.14226843416690826, 0.07751679420471191], "count": [1155]}, "timestamp": {"min": [0.0], "max": [38.46666666666667], "mean": [19.233333333333334], "std": [11.113988516313157], "count": [1155]}, "frame_index": {"min": [0], "max": [1154], "mean": [577.0], "std": [333.41965548939476], "count": [1155]}, "episode_index": {"min": [131], "max": [131], "mean": [131.0], "std": [0.0], "count": [1155]}, "index": {"min": [89100], "max": [90254], "mean": [89677.0], "std": [333.41965548939476], "count": [1155]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1155]}}} +{"episode_index": 132, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6455822017212681]], [[0.6136689569547626]], [[0.5766785578965886]]], "std": [[[0.24437858589480585]], [[0.2366520579552761]], [[0.24137143287142473]]], "count": [161]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6634031921947523]], [[0.6396369622728318]], [[0.6084426311587436]]], "std": [[[0.23664582725629893]], [[0.2156451695658282]], [[0.23040876772430402]]], "count": [161]}, "observation.state": {"min": [0.37873828411102295, -0.08267957717180252, 0.12375161796808243, -4.463250637054443, -0.6013372540473938, -1.420839786529541, -0.6343684792518616, -0.345754474401474, 0.16166292130947113, 0.48752912878990173, -0.16574007272720337, -0.4014582335948944], "max": [0.6010139584541321, 0.05645317956805229, 0.14498096704483032, -3.0168092250823975, 0.7497244477272034, 0.2202301174402237, -0.3892798125743866, -0.20075243711471558, 0.19423997402191162, 1.3837438821792603, 0.6708852052688599, 0.2788558006286621], "mean": [0.49533960223197937, 0.0025847984943538904, 0.13700418174266815, -3.733156681060791, -0.1419166773557663, -0.5709004998207092, -0.5319592952728271, -0.27387183904647827, 0.17992030084133148, 1.0444657802581787, 0.2045287936925888, -0.10329854488372803], "std": [0.05023534595966339, 0.031083514913916588, 0.0032980034593492746, 0.4149182140827179, 0.3378629684448242, 0.4873420298099518, 0.06866546720266342, 0.036080650985240936, 0.010761850513517857, 0.24024750292301178, 0.21148565411567688, 0.2229873389005661], "count": [883]}, "action": {"min": [-0.13340269029140472, -0.08783753961324692, 0.11869573593139648, 0.13984063267707825, 0.17262962460517883, 0.190715491771698, 0.06917010992765427, 0.09662315249443054, -0.12160570174455643, 0.09307113289833069, 0.26526179909706116, -0.36444091796875, -0.5520887970924377, 0.6654971241950989], "max": [-0.09719301760196686, -0.06805412471294403, 0.14954404532909393, 0.8224619626998901, 0.506188154220581, 0.6001250743865967, 0.9418458342552185, 0.14016024768352509, -0.0899149626493454, 0.10577785968780518, 0.5819941163063049, -0.18965990841388702, -0.10187876224517822, 0.9188412427902222], "mean": [-0.11307566612958908, -0.07807480543851852, 0.1374322474002838, 0.46161922812461853, 0.31940770149230957, 0.4506121873855591, 0.606415867805481, 0.11397510021924973, -0.11095017194747925, 0.10040982067584991, 0.41955408453941345, -0.25838977098464966, -0.28587791323661804, 0.8006542325019836], "std": [0.008791177533566952, 0.004315581638365984, 0.0062891654670238495, 0.20046553015708923, 0.0879051610827446, 0.1185285821557045, 0.22832618653774261, 0.013284871354699135, 0.009675197303295135, 0.003261338919401169, 0.10487834364175797, 0.04447030648589134, 0.1267412155866623, 0.07345873862504959], "count": [883]}, "timestamp": {"min": [0.0], "max": [29.4], "mean": [14.699999999999998], "std": [8.496666012815458], "count": [883]}, "frame_index": {"min": [0], "max": [882], "mean": [441.0], "std": [254.89998038446373], "count": [883]}, "episode_index": {"min": [132], "max": [132], "mean": [132.0], "std": [0.0], "count": [883]}, "index": {"min": [90255], "max": [91137], "mean": [90696.0], "std": [254.89998038446373], "count": [883]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [883]}}} +{"episode_index": 133, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6414248561610033]], [[0.6083813839839189]], [[0.5709425336125856]]], "std": [[[0.24833153811386227]], [[0.2406355286140082]], [[0.24551965457696162]]], "count": [181]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.66068465105502]], [[0.6358806271741355]], [[0.6038304881498333]]], "std": [[[0.2439145523938923]], [[0.22227909198311438]], [[0.2375168234047875]]], "count": [181]}, "observation.state": {"min": [0.441145658493042, -0.08881142735481262, 0.12134440988302231, -4.36301851272583, -0.6865984201431274, -1.4023175239562988, -0.618243396282196, -0.3103148639202118, 0.15870477259159088, 1.121212124824524, -0.29718437790870667, -0.16950273513793945], "max": [0.6028828620910645, 0.049966078251600266, 0.14623835682868958, -2.2881367206573486, 0.967932939529419, 0.36383575201034546, -0.40675634145736694, -0.19821937382221222, 0.18740464746952057, 1.8297544717788696, 0.40553712844848633, 0.33208516240119934], "mean": [0.5370259881019592, 0.004876004531979561, 0.13908912241458893, -3.3343112468719482, 0.024504050612449646, -0.802312970161438, -0.543337345123291, -0.25447526574134827, 0.17654182016849518, 1.556413173675537, -0.015127483755350113, 0.08268136531114578], "std": [0.03367726132273674, 0.034862712025642395, 0.004681192338466644, 0.4906957447528839, 0.412878155708313, 0.3942088782787323, 0.057665057480335236, 0.027497658506035805, 0.007839818485081196, 0.18596871197223663, 0.18953201174736023, 0.1602034717798233], "count": [1025]}, "action": {"min": [-0.12537091970443726, -0.0871967151761055, 0.11449248343706131, 0.1464235931634903, 0.08322329074144363, 0.2101866453886032, 0.023607458919286728, 0.10021071881055832, -0.11658583581447601, 0.09630151093006134, 0.1941620111465454, -0.36762648820877075, -0.33405840396881104, 0.8158926963806152], "max": [-0.09616010636091232, -0.06757071614265442, 0.14631147682666779, 0.8660613298416138, 0.5583878755569458, 0.8086994886398315, 0.9427004456520081, 0.137473464012146, -0.09160472452640533, 0.1047428622841835, 0.4405282437801361, -0.15400050580501556, 0.08231113106012344, 0.9675697684288025], "mean": [-0.10671481490135193, -0.077845998108387, 0.13615182042121887, 0.5347850322723389, 0.29030781984329224, 0.54736328125, 0.450511634349823, 0.11495611816644669, -0.10716057568788528, 0.10028622299432755, 0.31666311621665955, -0.25444266200065613, -0.04951014742255211, 0.8999980688095093], "std": [0.005279353819787502, 0.004381590522825718, 0.006739269010722637, 0.16658057272434235, 0.15223248302936554, 0.13964271545410156, 0.23819072544574738, 0.010206668637692928, 0.006524454802274704, 0.002231772756204009, 0.08273619413375854, 0.04391622915863991, 0.11028899252414703, 0.039980508387088776], "count": [1025]}, "timestamp": {"min": [0.0], "max": [34.13333333333333], "mean": [17.066666666666666], "std": [9.863062404750362], "count": [1025]}, "frame_index": {"min": [0], "max": [1024], "mean": [512.0], "std": [295.89187214251086], "count": [1025]}, "episode_index": {"min": [133], "max": [133], "mean": [133.0], "std": [0.0], "count": [1025]}, "index": {"min": [91138], "max": [92162], "mean": [91650.0], "std": [295.89187214251086], "count": [1025]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1025]}}} +{"episode_index": 134, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6306075526506899]], [[0.599025892641007]], [[0.5623194368796901]]], "std": [[[0.2566528733657502]], [[0.2486920538975471]], [[0.25235271901596257]]], "count": [180]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6506421780440571]], [[0.627939123396272]], [[0.5960577251270879]]], "std": [[[0.25077374239277334]], [[0.22913026602325376]], [[0.24273788433065374]]], "count": [180]}, "observation.state": {"min": [0.4468682110309601, -0.09190823882818222, 0.12524624168872833, -4.5454487800598145, -1.0690439939498901, -1.4025259017944336, -0.6083968877792358, -0.3271118104457855, 0.16008922457695007, 0.5556783676147461, -0.6677425503730774, -0.300920307636261], "max": [0.5933220982551575, 0.010201729834079742, 0.1512264907360077, -1.9545199871063232, 0.27491262555122375, 0.6213024258613586, -0.36971038579940796, -0.20732448995113373, 0.1964346021413803, 2.4248545169830322, 0.7031314373016357, 0.44797009229660034], "mean": [0.5240472555160522, -0.0447373241186142, 0.1421765387058258, -3.2188313007354736, -0.47833287715911865, -0.6921369433403015, -0.5166603922843933, -0.2746857702732086, 0.17990562319755554, 1.4805474281311035, 0.008015957660973072, 0.06790202111005783], "std": [0.03277177736163139, 0.023094460368156433, 0.004780868533998728, 0.7402799725532532, 0.3166041076183319, 0.5475114583969116, 0.06650764495134354, 0.039733901619911194, 0.010561706498265266, 0.5683727860450745, 0.49173247814178467, 0.20711073279380798], "count": [1017]}, "action": {"min": [-0.11989804357290268, -0.09757646918296814, 0.12042280286550522, -0.047231752425432205, 0.05053925886750221, 0.18732741475105286, 0.08937761187553406, 0.10057350248098373, -0.1237463653087616, 0.09386727213859558, 0.07981518656015396, -0.3682273030281067, -0.5675862431526184, 0.7192868590354919], "max": [-0.0910719558596611, -0.07270354777574539, 0.14812448620796204, 0.609100878238678, 0.6647237539291382, 0.852647066116333, 0.8485621213912964, 0.14265887439250946, -0.09102800488471985, 0.10726529359817505, 0.4832145869731903, -0.06318921595811844, 0.3897976577281952, 0.9742014408111572], "mean": [-0.1072833389043808, -0.08486029505729675, 0.13559967279434204, 0.33129772543907166, 0.41778525710105896, 0.6138507127761841, 0.47141140699386597, 0.11757607012987137, -0.11110887676477432, 0.10227058827877045, 0.2596764862537384, -0.23849429190158844, -0.08697888255119324, 0.8625195622444153], "std": [0.006171130575239658, 0.005261656828224659, 0.0064544216729700565, 0.18454430997371674, 0.13750451803207397, 0.16417114436626434, 0.19167642295360565, 0.011231440119445324, 0.010025804862380028, 0.002484641969203949, 0.1263132244348526, 0.08674079179763794, 0.30594199895858765, 0.0842832624912262], "count": [1017]}, "timestamp": {"min": [0.0], "max": [33.86666666666667], "mean": [16.933333333333334], "std": [9.786082331934848], "count": [1017]}, "frame_index": {"min": [0], "max": [1016], "mean": [508.0], "std": [293.58246995804546], "count": [1017]}, "episode_index": {"min": [134], "max": [134], "mean": [134.0], "std": [0.0], "count": [1017]}, "index": {"min": [92163], "max": [93179], "mean": [92671.0], "std": [293.58246995804546], "count": [1017]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1017]}}} +{"episode_index": 135, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6479102468601821]], [[0.6154902941977445]], [[0.5778299892669486]]], "std": [[[0.25383853720460453]], [[0.24744226371062833]], [[0.25200023387198506]]], "count": [136]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6678606445437653]], [[0.644258254036909]], [[0.6116823697616302]]], "std": [[[0.24726877223971439]], [[0.2272784737576953]], [[0.24212800385740266]]], "count": [136]}, "observation.state": {"min": [0.4189737141132355, -0.07050082832574844, 0.1341569423675537, -4.277255535125732, -0.8250111937522888, -1.1556085348129272, -0.5689569115638733, -0.32639357447624207, 0.16413624584674835, 0.4539787173271179, -0.06175969913601875, -0.3941201865673065], "max": [0.5891286730766296, 0.033501219004392624, 0.1624782830476761, -3.018486738204956, 0.451720267534256, 0.37371763586997986, -0.38688576221466064, -0.21617473661899567, 0.18994925916194916, 1.6689223051071167, 0.7454887628555298, 0.3530675768852234], "mean": [0.5169878005981445, -0.010085930116474628, 0.1441035121679306, -3.528571367263794, -0.2588227391242981, -0.5242987871170044, -0.49019020795822144, -0.26108604669570923, 0.17721594870090485, 1.3170750141143799, 0.22405683994293213, 0.1416090875864029], "std": [0.05148822069168091, 0.025969617068767548, 0.006041704211384058, 0.3701837956905365, 0.3120914697647095, 0.4728218913078308, 0.058494191616773605, 0.029431765899062157, 0.00834842212498188, 0.3538025915622711, 0.2521936893463135, 0.20180165767669678], "count": [705]}, "action": {"min": [-0.12380371242761612, -0.08928880840539932, 0.12486967444419861, 0.07636234909296036, 0.12759020924568176, 0.37557947635650635, 0.23847699165344238, 0.1047547236084938, -0.12053820490837097, 0.0970667228102684, 0.19155916571617126, -0.3919074237346649, -0.5612998008728027, 0.6637898683547974], "max": [-0.08320953696966171, -0.07480884343385696, 0.15043947100639343, 0.7290802597999573, 0.5570192933082581, 0.7057062387466431, 0.8552165031433105, 0.1398617923259735, -0.09710545837879181, 0.10664697736501694, 0.44329139590263367, -0.21821950376033783, -0.02423259988427162, 0.9463992118835449], "mean": [-0.10608340799808502, -0.081206314265728, 0.14029601216316223, 0.4216748774051666, 0.33300191164016724, 0.5476983785629272, 0.5699220299720764, 0.12094222009181976, -0.10936896502971649, 0.10326822847127914, 0.2812376916408539, -0.28130751848220825, -0.19998373091220856, 0.8722178936004639], "std": [0.010767413303256035, 0.003167542163282633, 0.006609701085835695, 0.19711469113826752, 0.11573293805122375, 0.08911679685115814, 0.16225090622901917, 0.010743046179413795, 0.007970131002366543, 0.002621821127831936, 0.05421164259314537, 0.049134451895952225, 0.17217464745044708, 0.07756883651018143], "count": [705]}, "timestamp": {"min": [0.0], "max": [23.466666666666665], "mean": [11.733333333333333], "std": [6.783858838503403], "count": [705]}, "frame_index": {"min": [0], "max": [704], "mean": [352.0], "std": [203.5157651551021], "count": [705]}, "episode_index": {"min": [135], "max": [135], "mean": [135.0], "std": [0.0], "count": [705]}, "index": {"min": [93180], "max": [93884], "mean": [93532.0], "std": [203.5157651551021], "count": [705]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [705]}}} +{"episode_index": 136, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6442019253264318]], [[0.6111859308973403]], [[0.5745740832127034]]], "std": [[[0.25101762960220586]], [[0.24345208091843504]], [[0.2466228986218892]]], "count": [149]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6681564149522597]], [[0.6429695994355982]], [[0.6108287256364142]]], "std": [[[0.24112409072487132]], [[0.2208671988035562]], [[0.23439049400048717]]], "count": [149]}, "observation.state": {"min": [0.4351682662963867, -0.08956825733184814, 0.13602229952812195, -4.212880611419678, -0.5925924777984619, -1.2572344541549683, -0.5502369999885559, -0.35563957691192627, 0.15414702892303467, -0.7471252679824829, -0.5879468321800232, -1.3027253150939941], "max": [0.590310275554657, -0.01763099990785122, 0.1593555212020874, -3.208256244659424, 0.13445031642913818, 0.45052775740623474, -0.378776878118515, -0.17787770926952362, 0.188205748796463, 1.9100656509399414, 1.017941951751709, 0.6035034656524658], "mean": [0.5114985108375549, -0.054597459733486176, 0.14470534026622772, -3.6290524005889893, -0.24062590301036835, -0.6742197275161743, -0.47316011786460876, -0.2605041563510895, 0.17412523925304413, 0.5362508893013, 0.22692877054214478, -0.6352156400680542], "std": [0.0447162464261055, 0.01915573514997959, 0.005301313474774361, 0.2759610712528229, 0.13115446269512177, 0.3795304298400879, 0.05021815001964569, 0.0515509769320488, 0.011192193254828453, 0.8593564629554749, 0.5015584230422974, 0.6872327327728271], "count": [795]}, "action": {"min": [-0.12083742767572403, -0.10223481804132462, 0.1254899650812149, 0.09602709114551544, 0.12501318752765656, 0.22372013330459595, 0.32509782910346985, 0.11576597392559052, -0.12511153519153595, 0.09385368227958679, -0.5702183842658997, -0.4402880072593689, -0.6348581314086914, -0.6210545897483826], "max": [-0.08954203128814697, -0.0822022408246994, 0.14750897884368896, 0.7211968898773193, 0.5156591534614563, 0.6063445806503296, 0.8869324922561646, 0.14964686334133148, -0.08557925373315811, 0.11287166178226471, 0.7298554182052612, 0.5335888266563416, 0.783860981464386, 0.9859804511070251], "mean": [-0.10692787170410156, -0.08920511603355408, 0.13744477927684784, 0.5066604614257812, 0.3449134826660156, 0.47362765669822693, 0.5898740887641907, 0.1275835484266281, -0.10673554986715317, 0.10427480190992355, 0.23108498752117157, -0.0576511025428772, 0.014863301068544388, 0.354943186044693], "std": [0.008385702967643738, 0.003976073116064072, 0.005705135874450207, 0.13186413049697876, 0.08482630550861359, 0.10064026713371277, 0.13169364631175995, 0.011031332425773144, 0.012846963480114937, 0.005125229246914387, 0.39590343832969666, 0.3515499234199524, 0.5064873099327087, 0.5293529629707336], "count": [795]}, "timestamp": {"min": [0.0], "max": [26.466666666666665], "mean": [13.233333333333333], "std": [7.649885014870533], "count": [795]}, "frame_index": {"min": [0], "max": [794], "mean": [397.0], "std": [229.496550446116], "count": [795]}, "episode_index": {"min": [136], "max": [136], "mean": [136.0], "std": [0.0], "count": [795]}, "index": {"min": [93885], "max": [94679], "mean": [94282.0], "std": [229.496550446116], "count": [795]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [795]}}} +{"episode_index": 137, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6226062079558919]], [[0.5898269884952031]], [[0.5519089410618049]]], "std": [[[0.26164514257738003]], [[0.25235657988712856]], [[0.25531865973934176]]], "count": [228]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.647421407378741]], [[0.6229481304705118]], [[0.5897394567232351]]], "std": [[[0.25230042828155125]], [[0.23052199564795442]], [[0.2434200614409381]]], "count": [228]}, "observation.state": {"min": [0.4417480528354645, -0.11221902817487717, 0.13239139318466187, -4.422360897064209, -0.9281717538833618, -1.401721715927124, -0.5546621084213257, -0.3076273500919342, 0.1580009013414383, 0.3044697940349579, -0.23433159291744232, -1.0015672445297241], "max": [0.6349244713783264, -0.01614823006093502, 0.1630810648202896, -2.8509445190429688, 1.0605725049972534, 0.13560348749160767, -0.42366912961006165, -0.15446238219738007, 0.18824204802513123, 1.3935993909835815, 0.8165397047996521, 0.3181738257408142], "mean": [0.5432611107826233, -0.06296756118535995, 0.1453571915626526, -3.6409881114959717, -0.14390303194522858, -0.5973999500274658, -0.49237510561943054, -0.25175872445106506, 0.17837226390838623, 0.9680567979812622, 0.17424319684505463, -0.14292575418949127], "std": [0.03708831965923309, 0.019227346405386925, 0.006521173287183046, 0.38618558645248413, 0.4791267514228821, 0.33532997965812683, 0.03632776066660881, 0.03893660008907318, 0.007370044942945242, 0.24750477075576782, 0.2722482979297638, 0.29098328948020935], "count": [1400]}, "action": {"min": [-0.12055333703756332, -0.10032079368829727, 0.11491058766841888, 0.2464652806520462, -0.08243774622678757, 0.2727542817592621, 0.09055835753679276, 0.1099192425608635, -0.12143119424581528, 0.09971519559621811, 0.13127653300762177, -0.4104447066783905, -0.6172922253608704, 0.4883808195590973], "max": [-0.08729665726423264, -0.07700257003307343, 0.14336355030536652, 0.9134082198143005, 0.6534276008605957, 0.7141954898834229, 0.8138436675071716, 0.1345696598291397, -0.08115645498037338, 0.11006099730730057, 0.6555051803588867, -0.03596429526805878, -0.09244991838932037, 0.9470773339271545], "mean": [-0.10144727677106857, -0.08988215029239655, 0.13309119641780853, 0.5138309001922607, 0.3112269639968872, 0.46832340955734253, 0.558871865272522, 0.12065444141626358, -0.10907117277383804, 0.10537528246641159, 0.4239230751991272, -0.22481900453567505, -0.3077196478843689, 0.7908449172973633], "std": [0.006948109250515699, 0.004994727671146393, 0.006333434488624334, 0.15931779146194458, 0.17887656390666962, 0.10262352973222733, 0.19884729385375977, 0.006160160060971975, 0.010510594584047794, 0.003010622225701809, 0.1208202913403511, 0.08993346989154816, 0.12926925718784332, 0.10110913217067719], "count": [1400]}, "timestamp": {"min": [0.0], "max": [46.63333333333333], "mean": [23.316666666666666], "std": [13.471502844482083], "count": [1400]}, "frame_index": {"min": [0], "max": [1399], "mean": [699.5], "std": [404.1450853344625], "count": [1400]}, "episode_index": {"min": [137], "max": [137], "mean": [137.0], "std": [0.0], "count": [1400]}, "index": {"min": [94680], "max": [96079], "mean": [95379.5], "std": [404.1450853344625], "count": [1400]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1400]}}} +{"episode_index": 138, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6601055975462811]], [[0.6253017672618396]], [[0.5866690872189969]]], "std": [[[0.24161233652241831]], [[0.23670477646009075]], [[0.24059035501737794]]], "count": [179]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.682381869134991]], [[0.6554328391816068]], [[0.6215469657136597]]], "std": [[[0.229132517275869]], [[0.21172348574490402]], [[0.22638505818335303]]], "count": [179]}, "observation.state": {"min": [0.41007712483406067, -0.08732093870639801, 0.12894585728645325, -4.337226867675781, -0.6231991052627563, -1.1475063562393188, -0.5337257981300354, -0.3396380841732025, 0.1610601395368576, -0.1352500170469284, 0.24444270133972168, -1.092454433441162], "max": [0.5756447911262512, -0.028852129355072975, 0.15471740067005157, -3.3151979446411133, 0.1022040992975235, -0.1549949049949646, -0.3216363787651062, -0.1277417242527008, 0.18945537507534027, 1.672067642211914, 0.7829271554946899, 0.1644980013370514], "mean": [0.49103450775146484, -0.05782220512628555, 0.14179188013076782, -3.7492029666900635, -0.14099040627479553, -0.7110846638679504, -0.45283758640289307, -0.27001503109931946, 0.17622427642345428, 0.7252782583236694, 0.4167892336845398, -0.5999131202697754], "std": [0.03781871497631073, 0.015389209613204002, 0.00640498474240303, 0.29602885246276855, 0.16959084570407867, 0.1941814124584198, 0.049596868455410004, 0.0673738569021225, 0.0072432332672178745, 0.29054608941078186, 0.14920030534267426, 0.28138771653175354], "count": [1009]}, "action": {"min": [-0.12720178067684174, -0.09908908605575562, 0.12719489634037018, 0.3960728347301483, 0.06378649920225143, 0.1318397969007492, 0.39694952964782715, 0.10887499898672104, -0.1214195266366005, 0.09416153281927109, -0.5562755465507507, -0.5487531423568726, -0.6125520467758179, -0.6125162839889526], "max": [-0.09197089076042175, -0.08181454986333847, 0.14155904948711395, 0.6882326602935791, 0.5036654472351074, 0.5786618590354919, 0.7765907645225525, 0.14378215372562408, -0.08927852660417557, 0.12921707332134247, 0.6799407601356506, 0.4663097858428955, 0.6611027121543884, 0.847960889339447], "mean": [-0.11166606098413467, -0.0901806652545929, 0.1362023800611496, 0.5686440467834473, 0.3022768199443817, 0.41538792848587036, 0.6106125116348267, 0.1266639232635498, -0.10965324193239212, 0.10446011275053024, 0.5057916641235352, -0.30378398299217224, -0.3278793394565582, 0.5794358253479004], "std": [0.008635259233415127, 0.004380691330879927, 0.003437067149206996, 0.06887055188417435, 0.10132616758346558, 0.13492968678474426, 0.0816134661436081, 0.008882779628038406, 0.01133075263351202, 0.00800604559481144, 0.2490912526845932, 0.17246118187904358, 0.23424017429351807, 0.24895909428596497], "count": [1009]}, "timestamp": {"min": [0.0], "max": [33.6], "mean": [16.8], "std": [9.709102258533827], "count": [1009]}, "frame_index": {"min": [0], "max": [1008], "mean": [504.0], "std": [291.2730677560148], "count": [1009]}, "episode_index": {"min": [138], "max": [138], "mean": [138.0], "std": [0.0], "count": [1009]}, "index": {"min": [96080], "max": [97088], "mean": [96584.0], "std": [291.2730677560148], "count": [1009]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1009]}}} +{"episode_index": 139, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6507572235355924]], [[0.618428548803288]], [[0.5778232474234769]]], "std": [[[0.2528902736231726]], [[0.2441014874136852]], [[0.24672450393901996]]], "count": [141]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6725878953630309]], [[0.6485377902934224]], [[0.6127464384492962]]], "std": [[[0.23963197391982083]], [[0.2201721021231633]], [[0.23310371955736908]]], "count": [141]}, "observation.state": {"min": [0.47446927428245544, -0.12476847320795059, 0.13198305666446686, -4.317096710205078, -0.5528312921524048, -0.9725234508514404, -0.5398962497711182, -0.34681248664855957, 0.16118976473808289, 0.7435605525970459, 0.1341770440340042, -0.5747076869010925], "max": [0.5853291153907776, -0.06671669334173203, 0.15148703753948212, -3.4508674144744873, 0.01789937913417816, 0.4961698055267334, -0.3777729272842407, -0.23144258558750153, 0.18917666375637054, 1.4627970457077026, 0.6385023593902588, -0.04362690821290016], "mean": [0.5275017619132996, -0.09064817428588867, 0.14154306054115295, -3.812673807144165, -0.21920496225357056, -0.3509817123413086, -0.47605380415916443, -0.3045828938484192, 0.17993879318237305, 1.1238701343536377, 0.3248486816883087, -0.2813364863395691], "std": [0.02866053581237793, 0.012961180880665779, 0.003982233349233866, 0.2119116485118866, 0.14214354753494263, 0.3920557200908661, 0.04488670825958252, 0.0363776721060276, 0.007112100254744291, 0.20866772532463074, 0.13686862587928772, 0.1774304211139679], "count": [736]}, "action": {"min": [-0.11688753962516785, -0.09913789480924606, 0.12025582790374756, 0.09397522360086441, 0.10227116197347641, 0.28424566984176636, 0.4803660213947296, 0.11188586056232452, -0.12558862566947937, 0.09376038610935211, 0.2862051725387573, -0.3703838586807251, -0.49005502462387085, 0.6596375107765198], "max": [-0.0971057265996933, -0.08235540241003036, 0.13898593187332153, 0.6753019094467163, 0.44911161065101624, 0.5404636859893799, 0.944442629814148, 0.14129741489887238, -0.09596423804759979, 0.10807307809591293, 0.6238532066345215, -0.2736917734146118, -0.08371923863887787, 0.8399825692176819], "mean": [-0.10597775131464005, -0.09277002513408661, 0.1301657259464264, 0.4340061843395233, 0.28084897994995117, 0.43863731622695923, 0.7011399269104004, 0.12204419076442719, -0.11662916839122772, 0.10061817616224289, 0.49005061388015747, -0.31963804364204407, -0.24411062896251678, 0.7595311999320984], "std": [0.004904026165604591, 0.0033836159855127335, 0.004567594733089209, 0.14705315232276917, 0.09347887337207794, 0.06506393104791641, 0.11902232468128204, 0.00790112279355526, 0.008412742987275124, 0.004233403131365776, 0.08255726844072342, 0.022051164880394936, 0.10404752194881439, 0.05546402186155319], "count": [736]}, "timestamp": {"min": [0.0], "max": [24.5], "mean": [12.25], "std": [7.082156765028888], "count": [736]}, "frame_index": {"min": [0], "max": [735], "mean": [367.5], "std": [212.46470295086664], "count": [736]}, "episode_index": {"min": [139], "max": [139], "mean": [139.0], "std": [0.0], "count": [736]}, "index": {"min": [97089], "max": [97824], "mean": [97456.5], "std": [212.46470295086664], "count": [736]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [736]}}} +{"episode_index": 140, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5836982618374861]], [[0.544063645812522]], [[0.5047979968794893]]], "std": [[[0.2478139943337899]], [[0.23803151254928887]], [[0.23927257415930422]]], "count": [229]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6068830747971192]], [[0.5764782444273197]], [[0.5405440498615749]]], "std": [[[0.2403461499755651]], [[0.21658983168385798]], [[0.22859428759926334]]], "count": [229]}, "observation.state": {"min": [0.48842424154281616, -0.12052097171545029, 0.1302615851163864, -4.5383195877075195, -0.8288370370864868, -1.4078410863876343, -0.552584707736969, -0.3491061329841614, 0.15417814254760742, 0.858470618724823, 0.20167547464370728, -0.32117193937301636], "max": [0.6555519104003906, 0.06663946062326431, 0.15830682218074799, -2.934401035308838, 0.836488664150238, 0.29425787925720215, -0.31472453474998474, -0.1685640960931778, 0.18545761704444885, 1.6492114067077637, 0.8049256205558777, 0.2959263026714325], "mean": [0.5850622653961182, 0.0005556269898079336, 0.14872582256793976, -3.768439292907715, -0.29986798763275146, -0.5003621578216553, -0.4625231921672821, -0.2376699149608612, 0.1754901111125946, 1.3641904592514038, 0.45092442631721497, -0.020768441259860992], "std": [0.024832963943481445, 0.04888661578297615, 0.0046528116799890995, 0.40873536467552185, 0.3609844446182251, 0.41683870553970337, 0.056438248604536057, 0.04409446567296982, 0.007768477313220501, 0.17357830703258514, 0.1429906040430069, 0.19595973193645477], "count": [1402]}, "action": {"min": [-0.11599553376436234, -0.10048919171094894, 0.11710721999406815, 0.12827515602111816, 0.17251470685005188, 0.177994504570961, 0.017480341717600822, 0.10785482078790665, -0.12399367988109589, 0.09383335709571838, 0.19851234555244446, -0.4900537431240082, -0.41578537225723267, 0.7289711236953735], "max": [-0.08303746581077576, -0.0626630187034607, 0.15032055974006653, 0.822566032409668, 0.5552859902381897, 0.6847789287567139, 0.9396683573722839, 0.14949405193328857, -0.08767081052064896, 0.11686453968286514, 0.4654111862182617, -0.323524534702301, -0.08629418909549713, 0.9033530950546265], "mean": [-0.09254415333271027, -0.07764210551977158, 0.13869765400886536, 0.4123661518096924, 0.39261409640312195, 0.4413844048976898, 0.6181935667991638, 0.12357807904481888, -0.10557054728269577, 0.10546033829450607, 0.3415960371494293, -0.3899070620536804, -0.19937771558761597, 0.8223927617073059], "std": [0.004249608144164085, 0.005953737534582615, 0.0079296650364995, 0.1733262538909912, 0.10678567737340927, 0.12584951519966125, 0.20381583273410797, 0.01034992840141058, 0.007865430787205696, 0.005516320466995239, 0.07285875827074051, 0.03836075961589813, 0.07708783447742462, 0.04980495572090149], "count": [1402]}, "timestamp": {"min": [0.0], "max": [46.7], "mean": [23.349999999999998], "std": [13.49074785835751], "count": [1402]}, "frame_index": {"min": [0], "max": [1401], "mean": [700.5], "std": [404.72243575072537], "count": [1402]}, "episode_index": {"min": [140], "max": [140], "mean": [140.0], "std": [0.0], "count": [1402]}, "index": {"min": [97825], "max": [99226], "mean": [98525.5], "std": [404.72243575072537], "count": [1402]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1402]}}} +{"episode_index": 141, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5924696926847662]], [[0.5578173949779343]], [[0.5169148284313725]]], "std": [[[0.2408649863619817]], [[0.23752654774770518]], [[0.24074229534689395]]], "count": [156]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6111966929221831]], [[0.5855013564186358]], [[0.5487006539439138]]], "std": [[[0.22570261026103097]], [[0.20993420832824217]], [[0.22478613422168342]]], "count": [156]}, "observation.state": {"min": [0.48652446269989014, -0.0834055170416832, 0.1284065991640091, -4.519028186798096, -0.72062087059021, -1.4009422063827515, -0.5278410911560059, -0.3020206391811371, 0.16530290246009827, -0.006919770035892725, 0.06531225144863129, -1.2219092845916748], "max": [0.6089220643043518, 0.019716139882802963, 0.15753035247325897, -2.8308141231536865, 0.9049435257911682, 0.34174811840057373, -0.31243088841438293, -0.1899946630001068, 0.1923149973154068, 1.5168970823287964, 0.7278626561164856, 0.16205337643623352], "mean": [0.5470285415649414, -0.024572545662522316, 0.148298978805542, -3.4670732021331787, -0.11309569329023361, -0.5987456440925598, -0.43384066224098206, -0.2550209164619446, 0.18083611130714417, 1.0414557456970215, 0.39508453011512756, -0.30815988779067993], "std": [0.027239946648478508, 0.025876466184854507, 0.005684475414454937, 0.4981907904148102, 0.3981824219226837, 0.4291401505470276, 0.06948269158601761, 0.03076528012752533, 0.007948060519993305, 0.3543255031108856, 0.1925596296787262, 0.35493025183677673], "count": [841]}, "action": {"min": [-0.11629506200551987, -0.09485194832086563, 0.11614035069942474, 0.13596326112747192, 0.06948577612638474, 0.17182645201683044, 0.041864171624183655, 0.10943571478128433, -0.12170056253671646, 0.10201704502105713, -0.5191236734390259, -0.4595155715942383, -0.5215951800346375, -0.5218163728713989], "max": [-0.08593742549419403, -0.0763978436589241, 0.14964702725410461, 0.8538988828659058, 0.5616021156311035, 0.8083351254463196, 0.9503207802772522, 0.14848464727401733, -0.09437858313322067, 0.11853349208831787, 0.589728832244873, 0.5056872963905334, 0.5699999332427979, 0.9048142433166504], "mean": [-0.09978143870830536, -0.08503849059343338, 0.13961103558540344, 0.46675747632980347, 0.29438936710357666, 0.5362147688865662, 0.5237581133842468, 0.12672249972820282, -0.11191407591104507, 0.10976876318454742, 0.3842483460903168, -0.28484341502189636, -0.2180560827255249, 0.7005748748779297], "std": [0.005705410614609718, 0.0036166778299957514, 0.005959807895123959, 0.18608862161636353, 0.1107635349035263, 0.16960737109184265, 0.24074728786945343, 0.0127432681620121, 0.0076673151925206184, 0.004006671253591776, 0.23686692118644714, 0.2013072669506073, 0.217490091919899, 0.29821428656578064], "count": [841]}, "timestamp": {"min": [0.0], "max": [28.0], "mean": [14.0], "std": [8.09252055226855], "count": [841]}, "frame_index": {"min": [0], "max": [840], "mean": [420.0], "std": [242.77561656805653], "count": [841]}, "episode_index": {"min": [141], "max": [141], "mean": [141.0], "std": [0.0], "count": [841]}, "index": {"min": [99227], "max": [100067], "mean": [99647.0], "std": [242.77561656805653], "count": [841]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [841]}}} +{"episode_index": 142, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6058248129992738]], [[0.57041883805374]], [[0.5296683859840232]]], "std": [[[0.23996907342500232]], [[0.23681776355744322]], [[0.2390408924157822]]], "count": [150]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6268122149600581]], [[0.5998648311546841]], [[0.5636246804647785]]], "std": [[[0.22273937827283974]], [[0.2076152968182479]], [[0.22107937637971417]]], "count": [150]}, "observation.state": {"min": [0.49305015802383423, -0.09980087727308273, 0.13039511442184448, -4.538528919219971, -0.7218506336212158, -1.3479669094085693, -0.5012130737304688, -0.3504576086997986, 0.16338439285755157, 1.180973768234253, 0.45609262585639954, -0.38787946105003357], "max": [0.5913141965866089, -0.01271934062242508, 0.15101130306720734, -2.7475674152374268, 0.30019038915634155, 0.39963507652282715, -0.30098578333854675, -0.2055482566356659, 0.188869446516037, 1.8691761493682861, 0.8778895139694214, 0.42989540100097656], "mean": [0.541803240776062, -0.05396422743797302, 0.14377783238887787, -3.6024603843688965, -0.24273227155208588, -0.480344295501709, -0.4122683107852936, -0.2782943546772003, 0.1772223711013794, 1.464269757270813, 0.6418197751045227, 0.0191188994795084], "std": [0.02932870388031006, 0.024818100035190582, 0.00510809849947691, 0.47055840492248535, 0.2714187204837799, 0.5008029341697693, 0.06832702457904816, 0.03806345537304878, 0.007876954041421413, 0.21944184601306915, 0.12041882425546646, 0.2769292891025543], "count": [798]}, "action": {"min": [-0.11623035371303558, -0.0957835465669632, 0.12294245511293411, 0.09950282424688339, 0.16590438783168793, 0.17948846518993378, 0.10237997770309448, 0.11361725628376007, -0.1218879297375679, 0.09018516540527344, 0.16166816651821136, -0.5579845905303955, -0.3434818387031555, 0.6613773703575134], "max": [-0.09171377867460251, -0.08122475445270538, 0.1445826143026352, 0.694762110710144, 0.5517613291740417, 0.6853635311126709, 0.9590629935264587, 0.14971308410167694, -0.0989079549908638, 0.11148137599229813, 0.47604161500930786, -0.3012959659099579, -0.040321800857782364, 0.9134560823440552], "mean": [-0.10238650441169739, -0.08707529306411743, 0.13417911529541016, 0.4146871864795685, 0.3304542303085327, 0.5080505609512329, 0.5919943451881409, 0.12996985018253326, -0.11283257603645325, 0.10364752262830734, 0.32494428753852844, -0.4583532214164734, -0.1894996464252472, 0.7871639132499695], "std": [0.005987703334540129, 0.0031846086494624615, 0.005438333842903376, 0.17915019392967224, 0.08610019832849503, 0.13654522597789764, 0.22827382385730743, 0.012123179621994495, 0.007523525971919298, 0.0047425744123756886, 0.10425902903079987, 0.07016292959451675, 0.0854467898607254, 0.07543929666280746], "count": [798]}, "timestamp": {"min": [0.0], "max": [26.566666666666666], "mean": [13.283333333333333], "std": [7.678752551081506], "count": [798]}, "frame_index": {"min": [0], "max": [797], "mean": [398.5], "std": [230.3625765324452], "count": [798]}, "episode_index": {"min": [142], "max": [142], "mean": [142.0], "std": [0.0], "count": [798]}, "index": {"min": [100068], "max": [100865], "mean": [100466.5], "std": [230.3625765324452], "count": [798]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [798]}}} +{"episode_index": 143, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6120639677710165]], [[0.5760657088122605]], [[0.5356173672150852]]], "std": [[[0.23850696001061977]], [[0.2356101503885414]], [[0.23773932015907726]]], "count": [145]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6316313424986852]], [[0.6041101063030576]], [[0.5681658740890992]]], "std": [[[0.22235444505917795]], [[0.20698111799918903]], [[0.22040262108339187]]], "count": [145]}, "observation.state": {"min": [0.48199892044067383, -0.12116196006536484, 0.13099917769432068, -4.5383195877075195, -0.8304766416549683, -1.4029802083969116, -0.5379655957221985, -0.3427117168903351, 0.15244629979133606, -0.20654459297657013, -0.5201751589775085, -1.3904988765716553], "max": [0.6116481423377991, -0.006672440096735954, 0.15631182491779327, -2.928110361099243, 0.8530216813087463, 0.4207305312156677, -0.26110559701919556, -0.1678304374217987, 0.18642854690551758, 2.258151054382324, 0.8627228736877441, 0.5965953469276428], "mean": [0.541893482208252, -0.0599832609295845, 0.14522713422775269, -3.5162200927734375, -0.16164077818393707, -0.622492790222168, -0.4170854687690735, -0.26015332341194153, 0.17184719443321228, 1.5403481721878052, 0.30825626850128174, 0.1080884262919426], "std": [0.033651236444711685, 0.032207079231739044, 0.006936073303222656, 0.3963693380355835, 0.4653942584991455, 0.4618702232837677, 0.0764169991016388, 0.045557793229818344, 0.009373417124152184, 0.584629237651825, 0.3186113238334656, 0.5258335471153259], "count": [765]}, "action": {"min": [-0.11785877496004105, -0.09734679013490677, 0.12112026661634445, 0.08563919365406036, 0.1313687115907669, 0.17048805952072144, -0.01174978632479906, 0.11347399652004242, -0.12050983309745789, 0.08899512141942978, -0.5106817483901978, -0.525596022605896, -0.4475221633911133, -0.5350968241691589], "max": [-0.0884542316198349, -0.08054718375205994, 0.14489072561264038, 0.8303863406181335, 0.5553007125854492, 0.6370144486427307, 0.9625612497329712, 0.15945760905742645, -0.08862709254026413, 0.11693192273378372, 0.45890486240386963, 0.5809013843536377, 0.5862041115760803, 0.9547366499900818], "mean": [-0.1018718034029007, -0.08888515084981918, 0.1339493989944458, 0.479421466588974, 0.3200230002403259, 0.5211362838745117, 0.5181167125701904, 0.13357560336589813, -0.10810045152902603, 0.10371889919042587, 0.15789197385311127, -0.2678847312927246, 0.0018274250905960798, 0.760771632194519], "std": [0.007771675940603018, 0.003642852185294032, 0.006205335259437561, 0.20674918591976166, 0.11035643517971039, 0.11257967352867126, 0.24518275260925293, 0.013472902588546276, 0.009475035592913628, 0.005951723549515009, 0.22582125663757324, 0.27679145336151123, 0.22430825233459473, 0.38289523124694824], "count": [765]}, "timestamp": {"min": [0.0], "max": [25.466666666666665], "mean": [12.733333333333333], "std": [7.361209642946424], "count": [765]}, "frame_index": {"min": [0], "max": [764], "mean": [382.0], "std": [220.8362892883927], "count": [765]}, "episode_index": {"min": [143], "max": [143], "mean": [143.0], "std": [0.0], "count": [765]}, "index": {"min": [100866], "max": [101630], "mean": [101248.0], "std": [220.8362892883927], "count": [765]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [765]}}} +{"episode_index": 144, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5893191106852098]], [[0.5539485191737514]], [[0.5130593149540519]]], "std": [[[0.25140765562095324]], [[0.2463874797468751]], [[0.24790804962151933]]], "count": [133]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6101588939669434]], [[0.5836352543941553]], [[0.547245065277573]]], "std": [[[0.23667746988740984]], [[0.21926219599174243]], [[0.23148739044461267]]], "count": [133]}, "observation.state": {"min": [0.5173459053039551, -0.10712975263595581, 0.13911135494709015, -3.91721773147583, -0.7666674256324768, -1.0508946180343628, -0.5521213412284851, -0.3371899724006653, 0.15030482411384583, 0.9540892243385315, -0.16464698314666748, -0.18888482451438904], "max": [0.6507174968719482, -0.02892163023352623, 0.15162962675094604, -3.1298320293426514, 0.182956263422966, 0.19433163106441498, -0.26986318826675415, -0.20004966855049133, 0.1846681833267212, 1.7681056261062622, 0.694796621799469, 0.48888343572616577], "mean": [0.5635991096496582, -0.06494122743606567, 0.1468946784734726, -3.507915496826172, -0.3110222816467285, -0.5242573618888855, -0.432875394821167, -0.28614142537117004, 0.17224673926830292, 1.4223756790161133, 0.3033415973186493, 0.19233551621437073], "std": [0.03358574956655502, 0.02429913356900215, 0.0022220804821699858, 0.23039096593856812, 0.2238936573266983, 0.3262135088443756, 0.08265633881092072, 0.0394413135945797, 0.010219220072031021, 0.24697557091712952, 0.3033532202243805, 0.20493200421333313], "count": [681]}, "action": {"min": [-0.10607665777206421, -0.09845069795846939, 0.11758728325366974, 0.1665516346693039, 0.15157164633274078, 0.34369179606437683, 0.4335160553455353, 0.11207208782434464, -0.12131145596504211, 0.09303728491067886, 0.10250026732683182, -0.45227059721946716, -0.4542446732521057, 0.7658315300941467], "max": [-0.08545132726430893, -0.08283116668462753, 0.14443828165531158, 0.7244237661361694, 0.45242631435394287, 0.7109352350234985, 0.7839952707290649, 0.15875467658042908, -0.09166111052036285, 0.10893382132053375, 0.44496503472328186, -0.1885126233100891, 0.03132651373744011, 0.9693410992622375], "mean": [-0.09775518625974655, -0.08867636322975159, 0.13389508426189423, 0.444598913192749, 0.32604560256004333, 0.5522364377975464, 0.583810567855835, 0.13097165524959564, -0.11082439124584198, 0.09996433556079865, 0.2676700949668884, -0.30197563767433167, -0.1697600930929184, 0.8730838894844055], "std": [0.004890565760433674, 0.003755785757675767, 0.006293342448771, 0.16254127025604248, 0.06250666081905365, 0.10410436242818832, 0.0951920822262764, 0.013585901819169521, 0.009787176735699177, 0.0034789980854839087, 0.10429777950048447, 0.08483605831861496, 0.15397244691848755, 0.06546849757432938], "count": [681]}, "timestamp": {"min": [0.0], "max": [22.666666666666668], "mean": [11.333333333333334], "std": [6.552918490317176], "count": [681]}, "frame_index": {"min": [0], "max": [680], "mean": [340.0], "std": [196.58755470951527], "count": [681]}, "episode_index": {"min": [144], "max": [144], "mean": [144.0], "std": [0.0], "count": [681]}, "index": {"min": [101631], "max": [102311], "mean": [101971.0], "std": [196.58755470951527], "count": [681]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [681]}}} +{"episode_index": 145, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6036450098557942]], [[0.5676908565895493]], [[0.5263771397447868]]], "std": [[[0.24115985156351566]], [[0.2386438388008876]], [[0.24165013827226609]]], "count": [126]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6259220333195007]], [[0.5983289241622575]], [[0.5615131842860601]]], "std": [[[0.22413362008967427]], [[0.2092690051481909]], [[0.2236848694915687]]], "count": [126]}, "observation.state": {"min": [0.4835434556007385, -0.09919077903032303, 0.12874622642993927, -3.94049334526062, -0.536981463432312, -0.9455254673957825, -0.49556005001068115, -0.3295367360115051, 0.15166333317756653, 0.8003864884376526, 0.24567243456840515, -0.38773971796035767], "max": [0.6077558994293213, -0.008834809996187687, 0.1516348272562027, -3.2216763496398926, -0.0661320686340332, 0.2471538633108139, -0.2609202563762665, -0.20219658315181732, 0.18462799489498138, 1.4638454914093018, 0.7489046454429626, 0.4368217885494232], "mean": [0.5435391664505005, -0.045532528311014175, 0.14392636716365814, -3.6161715984344482, -0.2904077470302582, -0.439431756734848, -0.39654412865638733, -0.27376124262809753, 0.16971708834171295, 1.0900566577911377, 0.5285310745239258, 0.05835562199354172], "std": [0.03682423755526543, 0.022306669503450394, 0.0042747859843075275, 0.14717549085617065, 0.10244061052799225, 0.2970629632472992, 0.07835951447486877, 0.04364548623561859, 0.01142673660069704, 0.19505056738853455, 0.1531924456357956, 0.26458656787872314], "count": [634]}, "action": {"min": [-0.11018332839012146, -0.09094535559415817, 0.11733211576938629, 0.18486134707927704, 0.168057382106781, 0.3842226266860962, 0.4950312077999115, 0.11797232925891876, -0.12310858070850372, 0.09705285727977753, 0.06596554070711136, -0.4017558693885803, -0.5061925649642944, 0.7104365229606628], "max": [-0.09139934927225113, -0.07668913155794144, 0.14637349545955658, 0.6608893871307373, 0.4642159342765808, 0.6506567597389221, 0.8360903859138489, 0.15947850048542023, -0.09007671475410461, 0.10841017216444016, 0.510201632976532, -0.1856374442577362, -0.1434188038110733, 0.8825938701629639], "mean": [-0.10205942392349243, -0.08536111563444138, 0.13539014756679535, 0.42937996983528137, 0.314788281917572, 0.5234929323196411, 0.6443125605583191, 0.13562078773975372, -0.10731205344200134, 0.10185672342777252, 0.30013182759284973, -0.3113931119441986, -0.3389368951320648, 0.812354326248169], "std": [0.005057458765804768, 0.002494429936632514, 0.007397856097668409, 0.11402405053377151, 0.06658921390771866, 0.049359988421201706, 0.08651959151029587, 0.014117986895143986, 0.01139164250344038, 0.0027783880941569805, 0.13793222606182098, 0.061945222318172455, 0.11017192900180817, 0.05618752911686897], "count": [634]}, "timestamp": {"min": [0.0], "max": [21.1], "mean": [10.549999999999999], "std": [6.10066025570639], "count": [634]}, "frame_index": {"min": [0], "max": [633], "mean": [316.5], "std": [183.0198076711917], "count": [634]}, "episode_index": {"min": [145], "max": [145], "mean": [145.0], "std": [0.0], "count": [634]}, "index": {"min": [102312], "max": [102945], "mean": [102628.5], "std": [183.0198076711917], "count": [634]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [634]}}} +{"episode_index": 146, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6142946972708002]], [[0.5764559007536949]], [[0.534678172657952]]], "std": [[[0.238304923482048]], [[0.23585917278890994]], [[0.23854984064082319]]], "count": [148]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6368582313931578]], [[0.6070722947211917]], [[0.5697333454778307]]], "std": [[[0.21848061532030694]], [[0.204688657293439]], [[0.21890995657419682]]], "count": [148]}, "observation.state": {"min": [0.4837906062602997, -0.110226571559906, 0.13050399720668793, -3.992706298828125, -0.5596631169319153, -1.0409579277038574, -0.48005279898643494, -0.2779720425605774, 0.15243981778621674, -0.475576788187027, 0.4515836238861084, -1.2471047639846802], "max": [0.6067287921905518, -0.0203802902251482, 0.15221425890922546, -3.0134541988372803, 0.5640354752540588, -0.1364688128232956, -0.2829532027244568, -0.13863077759742737, 0.18760298192501068, 1.0658539533615112, 1.0623488426208496, 0.22706975042819977], "mean": [0.5354993939399719, -0.05212114751338959, 0.14224770665168762, -3.244633197784424, 0.01348032895475626, -0.5850059986114502, -0.4042036533355713, -0.2315271943807602, 0.1746789664030075, 0.33815786242485046, 0.6231325268745422, -0.795070469379425], "std": [0.03048042766749859, 0.020094748586416245, 0.003967551048845053, 0.2068064957857132, 0.27051490545272827, 0.26959478855133057, 0.05920980125665665, 0.046427711844444275, 0.011207044124603271, 0.31928911805152893, 0.1549522578716278, 0.30478134751319885], "count": [789]}, "action": {"min": [-0.11681552231311798, -0.09423220902681351, 0.11980613321065903, 0.3458932042121887, 0.07443420588970184, 0.39182937145233154, 0.30529308319091797, 0.1180301085114479, -0.11433078348636627, 0.10617471486330032, -0.535374641418457, -0.47576579451560974, -0.6100873351097107, -0.6172103881835938], "max": [-0.09455069154500961, -0.08012446016073227, 0.14117273688316345, 0.7896894216537476, 0.4459165930747986, 0.7256433963775635, 0.7088382840156555, 0.1623786985874176, -0.0813797265291214, 0.11755876243114471, 0.5964134335517883, 0.5171532034873962, 0.6864593029022217, 0.8108280897140503], "mean": [-0.10496362298727036, -0.0884314477443695, 0.13336817920207977, 0.5379708409309387, 0.19375741481781006, 0.6290040016174316, 0.48325857520103455, 0.1341707408428192, -0.10373584181070328, 0.11153579503297806, 0.34394702315330505, -0.22984807193279266, -0.27647098898887634, 0.3767752945423126], "std": [0.005512669216841459, 0.0023672422394156456, 0.004906828049570322, 0.12780210375785828, 0.09370012581348419, 0.08127966523170471, 0.11018688976764679, 0.013345611281692982, 0.011737729422748089, 0.0024883404839783907, 0.33348146080970764, 0.35339051485061646, 0.4425620436668396, 0.42251479625701904], "count": [789]}, "timestamp": {"min": [0.0], "max": [26.266666666666666], "mean": [13.133333333333335], "std": [7.5921499419295415], "count": [789]}, "frame_index": {"min": [0], "max": [788], "mean": [394.0], "std": [227.76449825788623], "count": [789]}, "episode_index": {"min": [146], "max": [146], "mean": [146.0], "std": [0.0], "count": [789]}, "index": {"min": [102946], "max": [103734], "mean": [103340.0], "std": [227.76449825788623], "count": [789]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [789]}}} +{"episode_index": 147, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6110063329679698]], [[0.573962858090096]], [[0.531365468409586]]], "std": [[[0.2376807683053405]], [[0.23546216678369863]], [[0.23825082541025874]]], "count": [161]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6331951667140285]], [[0.6043514628073452]], [[0.5664644413320884]]], "std": [[[0.21675135123853728]], [[0.20325726540246528]], [[0.21729716418190673]]], "count": [161]}, "observation.state": {"min": [0.4894436299800873, -0.11597999930381775, 0.12940603494644165, -4.13886022567749, -0.6928836703300476, -1.3248974084854126, -0.49986931681632996, -0.33640995621681213, 0.150312602519989, -0.17572017014026642, 0.428082138299942, -1.1453310251235962], "max": [0.5962567329406738, -0.028875300660729408, 0.15204574167728424, -3.0329554080963135, 0.4612848162651062, 0.4997851252555847, -0.3102453351020813, -0.20383380353450775, 0.18876445293426514, 1.657179594039917, 1.1075754165649414, 0.13072828948497772], "mean": [0.5305709838867188, -0.06277935206890106, 0.1411897987127304, -3.421513080596924, -0.06712090224027634, -0.6707229018211365, -0.4216568171977997, -0.27616965770721436, 0.1763477325439453, 0.9324019551277161, 0.6953000426292419, -0.5557371377944946], "std": [0.026397347450256348, 0.020561859011650085, 0.003859260119497776, 0.32893165946006775, 0.28327006101608276, 0.5006744265556335, 0.04671172425150871, 0.041687507182359695, 0.009592625312507153, 0.40911921858787537, 0.1665026694536209, 0.29468756914138794], "count": [879]}, "action": {"min": [-0.11712150275707245, -0.09421181678771973, 0.11458175629377365, 0.10753995180130005, 0.10667955130338669, 0.37257781624794006, 0.15854935348033905, 0.11367147415876389, -0.12310155481100082, 0.0964842364192009, -0.38042837381362915, -0.5765379071235657, -0.5587790012359619, -0.5666210651397705], "max": [-0.09087590128183365, -0.07842618972063065, 0.13832220435142517, 0.7842451930046082, 0.553353488445282, 0.691306471824646, 0.9126023054122925, 0.15935082733631134, -0.08356169611215591, 0.11453361809253693, 0.6149925589561462, 0.5825549364089966, 0.5857694149017334, 0.8261297345161438], "mean": [-0.10598155111074448, -0.08920402079820633, 0.13206613063812256, 0.5236725211143494, 0.2832717299461365, 0.550719678401947, 0.4969724416732788, 0.12983916699886322, -0.10993953049182892, 0.10483194142580032, 0.4407489597797394, -0.4241459369659424, -0.2532338500022888, 0.6072758436203003], "std": [0.0046585071831941605, 0.002622645813971758, 0.004604804329574108, 0.18628191947937012, 0.09507329016923904, 0.08011864870786667, 0.21234750747680664, 0.010454121045768261, 0.011189032346010208, 0.003993598744273186, 0.18385684490203857, 0.2170000523328781, 0.20744432508945465, 0.262685626745224], "count": [879]}, "timestamp": {"min": [0.0], "max": [29.266666666666666], "mean": [14.633333333333335], "std": [8.458175970074207], "count": [879]}, "frame_index": {"min": [0], "max": [878], "mean": [439.0], "std": [253.7452791022262], "count": [879]}, "episode_index": {"min": [147], "max": [147], "mean": [147.0], "std": [0.0], "count": [879]}, "index": {"min": [103735], "max": [104613], "mean": [104174.0], "std": [253.7452791022262], "count": [879]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [879]}}} +{"episode_index": 148, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6111123751936901]], [[0.5736722123192711]], [[0.5322889899572425]]], "std": [[[0.23645867769555787]], [[0.23390167268590578]], [[0.23643073475341883]]], "count": [187]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6337960894993767]], [[0.6047736476646511]], [[0.5680240277632146]]], "std": [[[0.21950526616024557]], [[0.2044802782664259]], [[0.21877585908887712]]], "count": [187]}, "observation.state": {"min": [0.4769173562526703, -0.08423957228660583, 0.13101992011070251, -4.169055461883545, -0.6453341841697693, -1.102685570716858, -0.46605148911476135, -0.33824798464775085, 0.1505925953388214, 0.5242248773574829, 0.5693643093109131, -0.9510983824729919], "max": [0.6187222003936768, 0.010974000208079815, 0.15193556249141693, -3.1526882648468018, 0.4487142562866211, 0.21711160242557526, -0.1841331273317337, -0.14286284148693085, 0.18024004995822906, 1.468248963356018, 1.0272332429885864, 0.23010246455669403], "mean": [0.5469866394996643, -0.036397356539964676, 0.14326225221157074, -3.6720399856567383, -0.09568207710981369, -0.5075989961624146, -0.3825644552707672, -0.2609438896179199, 0.1675618588924408, 1.1239067316055298, 0.6852455139160156, -0.3427949845790863], "std": [0.03217974305152893, 0.018020404502749443, 0.0042148856446146965, 0.2745150327682495, 0.20813390612602234, 0.3216557800769806, 0.0684140995144844, 0.054345786571502686, 0.0079549765214324, 0.2642762362957001, 0.0950966477394104, 0.26180633902549744], "count": [1070]}, "action": {"min": [-0.11575210839509964, -0.09317389130592346, 0.12062034010887146, 0.21706394851207733, 0.08193430304527283, 0.30111515522003174, 0.26166313886642456, 0.12175655364990234, -0.11481869220733643, 0.0927048847079277, -0.5016698837280273, -0.5801798105239868, -0.5064792037010193, -0.5747107863426208], "max": [-0.09138522297143936, -0.07191527634859085, 0.141461580991745, 0.7478311061859131, 0.5106451511383057, 0.6517101526260376, 0.9002939462661743, 0.1689159870147705, -0.08521536737680435, 0.11397154629230499, 0.5603423118591309, 0.5868614912033081, 0.3770066499710083, 0.8710220456123352], "mean": [-0.1021263524889946, -0.08512333780527115, 0.13496407866477966, 0.5002853274345398, 0.2693979740142822, 0.47182920575141907, 0.632095217704773, 0.13773924112319946, -0.1038668230175972, 0.10220932960510254, 0.4116990268230438, -0.4235765039920807, -0.2583765387535095, 0.697724461555481], "std": [0.006302286870777607, 0.0039579193107783794, 0.004111206624656916, 0.1316172331571579, 0.10820051282644272, 0.09303446859121323, 0.13147585093975067, 0.011601565405726433, 0.00939882267266512, 0.006556357257068157, 0.1668364554643631, 0.14523997902870178, 0.13736766576766968, 0.17236703634262085], "count": [1070]}, "timestamp": {"min": [0.0], "max": [35.63333333333333], "mean": [17.81666666666667], "std": [10.296075304049921], "count": [1070]}, "frame_index": {"min": [0], "max": [1069], "mean": [534.5], "std": [308.8822591214976], "count": [1070]}, "episode_index": {"min": [148], "max": [148], "mean": [148.0], "std": [0.0], "count": [1070]}, "index": {"min": [104614], "max": [105683], "mean": [105148.5], "std": [308.8822591214976], "count": [1070]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1070]}}} +{"episode_index": 149, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6090917021881216]], [[0.5708589608790376]], [[0.5282131500426258]]], "std": [[[0.2363679575760711]], [[0.2335982924266678]], [[0.23591893686024218]]], "count": [115]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6320906602254428]], [[0.6020115681538316]], [[0.564116399071706]]], "std": [[[0.21659591447371043]], [[0.20218979995324052]], [[0.21595668064112486]]], "count": [115]}, "observation.state": {"min": [0.4917450249195099, -0.11104518175125122, 0.12630271911621094, -3.8218088150024414, -0.7301854491233826, -0.913807213306427, -0.4787321984767914, -0.2994566857814789, 0.1536712944507599, 0.4319612681865692, 0.11996684968471527, -0.8605945110321045], "max": [0.6074547171592712, -0.023531170561909676, 0.14765651524066925, -3.0503597259521484, 0.018719200044870377, 0.1575712114572525, -0.2659168541431427, -0.1717921942472458, 0.18177485466003418, 1.2503811120986938, 0.7672139406204224, -0.1011066883802414], "mean": [0.5396977663040161, -0.051802344620227814, 0.14065460860729218, -3.451852560043335, -0.3197440803050995, -0.44941574335098267, -0.4073799252510071, -0.25234198570251465, 0.17100265622138977, 0.924139142036438, 0.48962533473968506, -0.3055441975593567], "std": [0.02906419336795807, 0.024131814017891884, 0.0035848089028149843, 0.182156041264534, 0.1951896697282791, 0.31775522232055664, 0.07173806428909302, 0.04829409718513489, 0.009461411274969578, 0.26176735758781433, 0.1656770259141922, 0.15325625240802765], "count": [564]}, "action": {"min": [-0.11278044432401657, -0.0964561477303505, 0.11631262302398682, 0.13774481415748596, 0.17133942246437073, 0.4018353819847107, 0.43620800971984863, 0.12069505453109741, -0.11998989433050156, 0.09718111902475357, 0.19035188853740692, -0.39996814727783203, -0.572347104549408, 0.541486382484436], "max": [-0.0946791023015976, -0.07364721596240997, 0.14125986397266388, 0.6735787987709045, 0.45140838623046875, 0.6913934350013733, 0.7589454054832458, 0.15934990346431732, -0.08562785387039185, 0.1118873804807663, 0.6982690691947937, -0.22573785483837128, -0.19947606325149536, 0.8361028432846069], "mean": [-0.10461349040269852, -0.08472757786512375, 0.13287651538848877, 0.41024845838546753, 0.3031533658504486, 0.5924256443977356, 0.5929983854293823, 0.1340605467557907, -0.10527310520410538, 0.10513663291931152, 0.428305983543396, -0.33373376727104187, -0.34905558824539185, 0.7426048517227173], "std": [0.004463400691747665, 0.0036374377086758614, 0.005879001691937447, 0.14698974788188934, 0.05734175816178322, 0.05871783196926117, 0.0940057784318924, 0.013083790428936481, 0.011296109296381474, 0.003825294552370906, 0.11158734560012817, 0.03849373012781143, 0.12471708655357361, 0.04885238781571388], "count": [564]}, "timestamp": {"min": [0.0], "max": [18.766666666666666], "mean": [9.383333333333333], "std": [5.427083999786693], "count": [564]}, "frame_index": {"min": [0], "max": [563], "mean": [281.5], "std": [162.81251999360083], "count": [564]}, "episode_index": {"min": [149], "max": [149], "mean": [149.0], "std": [0.0], "count": [564]}, "index": {"min": [105684], "max": [106247], "mean": [105965.5], "std": [162.81251999360083], "count": [564]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [564]}}} +{"episode_index": 150, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7362049764350184]], [[0.706110256602641]], [[0.6741054949757681]]], "std": [[[0.2599894108189027]], [[0.26181844311432606]], [[0.26997821716655895]]], "count": [196]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7598917928282425]], [[0.7370292617046819]], [[0.7084608913009649]]], "std": [[[0.23649900057880832]], [[0.22594519898471963]], [[0.24125959338708997]]], "count": [196]}, "observation.state": {"min": [0.485891193151474, -0.0825328528881073, 0.12930233776569366, -4.5389485359191895, -0.6790834069252014, -1.1293234825134277, -0.5162338018417358, -0.3159215748310089, 0.14744390547275543, 0.24072405695915222, 0.27286309003829956, -0.906080424785614], "max": [0.664116382598877, 0.022573549300432205, 0.15390850603580475, -3.192110061645508, 0.23515142500400543, 0.28051912784576416, -0.24689577519893646, -0.13011260330677032, 0.1865309476852417, 1.7519594430923462, 0.6441044807434082, 0.1555103361606598], "mean": [0.5512977242469788, -0.019527625292539597, 0.14337562024593353, -3.7391932010650635, -0.05432624742388725, -0.40715402364730835, -0.42236095666885376, -0.24316389858722687, 0.16869641840457916, 1.2686516046524048, 0.4320449233055115, -0.27760159969329834], "std": [0.046501580625772476, 0.023447761312127113, 0.005581054370850325, 0.42264753580093384, 0.2742632329463959, 0.3825436234474182, 0.0736149325966835, 0.052924901247024536, 0.009915383532643318, 0.32259801030158997, 0.08918747305870056, 0.25199320912361145], "count": [1140]}, "action": {"min": [-0.11355035752058029, -0.09146531671285629, 0.12185050547122955, 0.15203115344047546, 0.053244877606630325, 0.13266728818416595, 0.4277811646461487, 0.11620435863733292, -0.1186358705163002, 0.09209806472063065, 0.19872161746025085, -0.44804689288139343, -0.5596160888671875, 0.5552188158035278], "max": [-0.08084392547607422, -0.06978138536214828, 0.14760833978652954, 0.7686503529548645, 0.5593830347061157, 0.6311678290367126, 0.9667260050773621, 0.15806660056114197, -0.0819898471236229, 0.11771129071712494, 0.6236663460731506, -0.26866236329078674, 0.014401870779693127, 0.8715537190437317], "mean": [-0.10165593028068542, -0.08249935507774353, 0.13606378436088562, 0.45433056354522705, 0.2514490485191345, 0.4498444199562073, 0.6564911007881165, 0.13256476819515228, -0.10335058718919754, 0.1029554232954979, 0.44223034381866455, -0.37842634320259094, -0.1937752515077591, 0.7696162462234497], "std": [0.008151006884872913, 0.005182660184800625, 0.0069774179719388485, 0.17149986326694489, 0.12764713168144226, 0.1552761197090149, 0.16492387652397156, 0.012537162750959396, 0.010567215271294117, 0.0068492223508656025, 0.09155310690402985, 0.034660063683986664, 0.12758544087409973, 0.07420439273118973], "count": [1140]}, "timestamp": {"min": [0.0], "max": [37.96666666666667], "mean": [18.983333333333334], "std": [10.969650894205373], "count": [1140]}, "frame_index": {"min": [0], "max": [1139], "mean": [569.5], "std": [329.0895268261612], "count": [1140]}, "episode_index": {"min": [150], "max": [150], "mean": [150.0], "std": [0.0], "count": [1140]}, "index": {"min": [106248], "max": [107387], "mean": [106817.5], "std": [329.0895268261612], "count": [1140]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1140]}}} +{"episode_index": 151, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7423758902253712]], [[0.7109866443309351]], [[0.6789695927390564]]], "std": [[[0.2552604243964155]], [[0.2578555924770788]], [[0.2657660864960164]]], "count": [119]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7670855257135534]], [[0.7424048465791545]], [[0.713826868329031]]], "std": [[[0.22979428868707386]], [[0.22035892717548994]], [[0.23555622575547613]]], "count": [119]}, "observation.state": {"min": [0.49083372950553894, -0.0898694396018982, 0.1314438134431839, -4.132359504699707, -0.7538235783576965, -0.9801871180534363, -0.461641788482666, -0.2872238755226135, 0.1547757238149643, 0.37786129117012024, 0.47535836696624756, -1.0180716514587402], "max": [0.6271554231643677, 0.00014673192345071584, 0.15190444886684418, -2.974451780319214, 0.542993426322937, 0.17683063447475433, -0.21605117619037628, -0.1485622078180313, 0.1787259727716446, 1.0318841934204102, 0.7542334794998169, -0.3405858874320984], "mean": [0.5529600381851196, -0.03405725955963135, 0.1445547491312027, -3.447627067565918, -0.32778221368789673, -0.44975289702415466, -0.3743954300880432, -0.23635289072990417, 0.1687149554491043, 0.760128378868103, 0.5938845872879028, -0.6544744372367859], "std": [0.03468998149037361, 0.02290479652583599, 0.0030586891807615757, 0.2489933967590332, 0.29199761152267456, 0.3869478702545166, 0.07539669424295425, 0.048218000680208206, 0.008135703392326832, 0.19928959012031555, 0.060869745910167694, 0.15021063387393951], "count": [586]}, "action": {"min": [-0.10809489339590073, -0.08961525559425354, 0.1231411024928093, 0.10578251630067825, 0.09998270124197006, 0.28162097930908203, 0.35691720247268677, 0.12357127666473389, -0.11173634231090546, 0.10032191127538681, 0.2782719135284424, -0.4512276351451874, -0.5557410717010498, 0.5207870602607727], "max": [-0.0857173427939415, -0.07337910681962967, 0.14981885254383087, 0.7727301120758057, 0.5147976279258728, 0.7335837483406067, 0.756665825843811, 0.1657572090625763, -0.08495545387268066, 0.11581668257713318, 0.6161194443702698, -0.30975016951560974, -0.2609160840511322, 0.7453019022941589], "mean": [-0.10041667520999908, -0.0829988345503807, 0.13594859838485718, 0.3985542356967926, 0.31402644515037537, 0.5950078368186951, 0.5689435601234436, 0.13924935460090637, -0.101793073117733, 0.10753566771745682, 0.506583571434021, -0.4089760184288025, -0.37028005719184875, 0.6470997333526611], "std": [0.005930549930781126, 0.003205742221325636, 0.006050584372133017, 0.19228242337703705, 0.07793623954057693, 0.0964885950088501, 0.11159853637218475, 0.013393753208220005, 0.009264069609344006, 0.004551560152322054, 0.08952151238918304, 0.0403318852186203, 0.08928973972797394, 0.05150870606303215], "count": [586]}, "timestamp": {"min": [0.0], "max": [19.5], "mean": [9.75], "std": [5.638779418751308], "count": [586]}, "frame_index": {"min": [0], "max": [585], "mean": [292.5], "std": [169.16338256253923], "count": [586]}, "episode_index": {"min": [151], "max": [151], "mean": [151.0], "std": [0.0], "count": [586]}, "index": {"min": [107388], "max": [107973], "mean": [107680.5], "std": [169.16338256253923], "count": [586]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [586]}}} +{"episode_index": 152, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7287713872634569]], [[0.6986841329318231]], [[0.6669241550605117]]], "std": [[[0.2690905795535002]], [[0.2698032752165642]], [[0.27768164070605267]]], "count": [191]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7522335717300299]], [[0.7297371391255746]], [[0.7008950983243791]]], "std": [[[0.24781739040842726]], [[0.23631226988984788]], [[0.2510818422701896]]], "count": [191]}, "observation.state": {"min": [0.47317183017730713, -0.07705742865800858, 0.13311731815338135, -4.090002536773682, -0.7662574648857117, -1.1059867143630981, -0.5212844610214233, -0.2818179726600647, 0.15697035193443298, -0.3501822054386139, 0.15521906316280365, -1.2753578424453735], "max": [0.6358203291893005, -0.009475789964199066, 0.15604738891124725, -3.102991819381714, 0.0573873296380043, 0.34778735041618347, -0.3382170796394348, -0.11075171083211899, 0.1852865070104599, 1.5619803667068481, 0.715975284576416, -0.11253850907087326], "mean": [0.5719664096832275, -0.05152022838592529, 0.1452587991952896, -3.477613687515259, -0.20072227716445923, -0.5356190204620361, -0.4445928931236267, -0.21445894241333008, 0.17597146332263947, 0.6529554724693298, 0.3844047784805298, -0.7129912972450256], "std": [0.04436826705932617, 0.01379981730133295, 0.0036892108619213104, 0.2555648684501648, 0.20901623368263245, 0.4325334429740906, 0.04369281232357025, 0.04165773093700409, 0.007987570017576218, 0.4797905683517456, 0.14271174371242523, 0.3704359531402588], "count": [1101]}, "action": {"min": [-0.11271291971206665, -0.09449075162410736, 0.12319473177194595, 0.06220889464020729, 0.12231072783470154, 0.3767484128475189, 0.3568030893802643, 0.11209134012460709, -0.11626192927360535, 0.10043789446353912, -0.5693113803863525, -0.4613420367240906, -0.571130633354187, -0.5292929410934448], "max": [-0.08517692238092422, -0.07555834203958511, 0.14527611434459686, 0.6941710114479065, 0.4708215892314911, 0.6779280304908752, 0.853218138217926, 0.14945179224014282, -0.0818481519818306, 0.11914240568876266, 0.7375742793083191, 0.4676536023616791, 0.7109312415122986, 0.816463053226471], "mean": [-0.09710972011089325, -0.08630826324224472, 0.1329747587442398, 0.4709216058254242, 0.3037610650062561, 0.5570680499076843, 0.5571303963661194, 0.12709255516529083, -0.10334344953298569, 0.11120492219924927, 0.47174420952796936, -0.3148190379142761, -0.30341196060180664, 0.5325874090194702], "std": [0.007624350022524595, 0.0032142868731170893, 0.0051561216823756695, 0.17751435935497284, 0.08121079206466675, 0.07210659235715866, 0.14810538291931152, 0.009128604084253311, 0.008853217586874962, 0.005132196005433798, 0.28709903359413147, 0.21607525646686554, 0.30482277274131775, 0.2839123010635376], "count": [1101]}, "timestamp": {"min": [0.0], "max": [36.666666666666664], "mean": [18.333333333333332], "std": [10.594373069735685], "count": [1101]}, "frame_index": {"min": [0], "max": [1100], "mean": [550.0], "std": [317.8311920920706], "count": [1101]}, "episode_index": {"min": [152], "max": [152], "mean": [152.0], "std": [0.0], "count": [1101]}, "index": {"min": [107974], "max": [109074], "mean": [108524.0], "std": [317.8311920920706], "count": [1101]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1101]}}} +{"episode_index": 153, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7311562286025521]], [[0.701550842281357]], [[0.6696451953003424]]], "std": [[[0.26796213895278737]], [[0.2687725994407988]], [[0.27673748187556385]]], "count": [140]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7573831699346405]], [[0.735470405384376]], [[0.7065074832710861]]], "std": [[[0.2454336153586351]], [[0.2336417676090484]], [[0.24911533357990281]]], "count": [140]}, "observation.state": {"min": [0.4972127079963684, -0.08191502839326859, 0.13118195533752441, -4.344146728515625, -0.8097078800201416, -0.8678480982780457, -0.5017073154449463, -0.3178754150867462, 0.16265717148780823, -0.2958725094795227, -0.043040499091148376, -1.3147412538528442], "max": [0.6577065587043762, 0.0016372193349525332, 0.1548236906528473, -2.9599833488464355, 0.3433675169944763, 0.5581818222999573, -0.3170027434825897, -0.16690370440483093, 0.18681743741035461, 2.0277018547058105, 0.6973927021026611, 0.3755923807621002], "mean": [0.5730533003807068, -0.04749433696269989, 0.14551284909248352, -3.5904290676116943, -0.25473782420158386, -0.25871163606643677, -0.42406371235847473, -0.2473367154598236, 0.17650458216667175, 1.4046801328659058, 0.2848803997039795, -0.12336679548025131], "std": [0.04427511245012283, 0.020468061789870262, 0.0037091632839292288, 0.38264763355255127, 0.28992119431495667, 0.399795264005661, 0.05009659752249718, 0.04395018145442009, 0.006738775875419378, 0.6836033463478088, 0.2392076551914215, 0.44281911849975586], "count": [732]}, "action": {"min": [-0.1076803132891655, -0.09355774521827698, 0.12041856348514557, 0.04930457845330238, -0.017033077776432037, 0.36462754011154175, 0.36189505457878113, 0.1203685998916626, -0.12211443483829498, 0.0981019139289856, -0.560278594493866, -0.45229530334472656, -0.5543469190597534, -0.5182541012763977], "max": [-0.08006695657968521, -0.06942234188318253, 0.14504939317703247, 0.6962440013885498, 0.5484714508056641, 0.736407995223999, 0.8636216521263123, 0.1491251140832901, -0.09190910309553146, 0.1185748279094696, 0.5893979072570801, 0.46760234236717224, 0.6989949345588684, 0.9501513242721558], "mean": [-0.09645044803619385, -0.08537700772285461, 0.13300861418247223, 0.3777252435684204, 0.27344202995300293, 0.5477206707000732, 0.6345837116241455, 0.13081768155097961, -0.10968082398176193, 0.10840103030204773, 0.23311865329742432, -0.2590446174144745, 0.017216024920344353, 0.7148990035057068], "std": [0.007012731395661831, 0.0047529591247439384, 0.005461644381284714, 0.16833755373954773, 0.1461239457130432, 0.10330243408679962, 0.13963203132152557, 0.008650905452668667, 0.00940784439444542, 0.004935125820338726, 0.2618723511695862, 0.24754206836223602, 0.29172804951667786, 0.3901475965976715], "count": [732]}, "timestamp": {"min": [0.0], "max": [24.366666666666667], "mean": [12.183333333333334], "std": [7.043666711361402], "count": [732]}, "frame_index": {"min": [0], "max": [731], "mean": [365.5], "std": [211.31000134084204], "count": [732]}, "episode_index": {"min": [153], "max": [153], "mean": [153.0], "std": [0.0], "count": [732]}, "index": {"min": [109075], "max": [109806], "mean": [109440.5], "std": [211.31000134084204], "count": [732]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [732]}}} +{"episode_index": 154, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7398633864576426]], [[0.7093288832843927]], [[0.6772762325944871]]], "std": [[[0.25702266061989154]], [[0.2590331602810133]], [[0.26598360624366096]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7647228991032806]], [[0.7414293537463295]], [[0.7124414547219854]]], "std": [[[0.23382541430979578]], [[0.2236924272638641]], [[0.23805515812364392]]], "count": [138]}, "observation.state": {"min": [0.49800044298171997, -0.08372987061738968, 0.12969380617141724, -3.920992136001587, -0.6702020168304443, -0.9941427111625671, -0.47937318682670593, -0.29303139448165894, 0.1583573818206787, -0.2388368546962738, 0.305655837059021, -1.0708624124526978], "max": [0.6511808633804321, 0.007985309697687626, 0.15750183165073395, -2.9494986534118652, 0.5264604091644287, 0.31409838795661926, -0.2576458156108856, -0.14497114717960358, 0.1821092963218689, 0.8616159558296204, 1.048958420753479, -0.3100407123565674], "mean": [0.573942244052887, -0.05475197732448578, 0.1432647705078125, -3.3745386600494385, 0.05673246458172798, -0.4061969518661499, -0.4124559164047241, -0.22515855729579926, 0.17184841632843018, 0.46079930663108826, 0.6653614044189453, -0.7307294607162476], "std": [0.035748232156038284, 0.01858920231461525, 0.004247657954692841, 0.24868451058864594, 0.20645728707313538, 0.39874622225761414, 0.06232766434550285, 0.04526200145483017, 0.006852778140455484, 0.24472086131572723, 0.1918192356824875, 0.2187678962945938], "count": [718]}, "action": {"min": [-0.10992192476987839, -0.09436057507991791, 0.1221425011754036, 0.2694666385650635, -0.0310156662017107, 0.4129177927970886, 0.28840145468711853, 0.12068475037813187, -0.11300279945135117, 0.09881909191608429, -0.530548632144928, -0.5345798134803772, -0.6297731995582581, -0.6197379231452942], "max": [-0.08062150329351425, -0.06703880429267883, 0.14093029499053955, 0.7512514591217041, 0.48655393719673157, 0.7245113253593445, 0.8049061894416809, 0.16011999547481537, -0.08232315629720688, 0.1181027889251709, 0.6529309153556824, 0.5219133496284485, 0.6691538691520691, 0.720868706703186], "mean": [-0.09838436543941498, -0.0878051295876503, 0.13042476773262024, 0.5089721083641052, 0.15960824489593506, 0.5784926414489746, 0.5599515438079834, 0.1335671991109848, -0.10030071437358856, 0.10972457379102707, 0.27910545468330383, -0.2572699785232544, -0.25960278511047363, 0.3757633566856384], "std": [0.006364949978888035, 0.004214789252728224, 0.00457139452919364, 0.1411343365907669, 0.12567873299121857, 0.07193069905042648, 0.16243495047092438, 0.0114106684923172, 0.009058053605258465, 0.005235784221440554, 0.38895684480667114, 0.35093003511428833, 0.4165797829627991, 0.4464774429798126], "count": [718]}, "timestamp": {"min": [0.0], "max": [23.9], "mean": [11.950000000000003], "std": [6.908951520390856], "count": [718]}, "frame_index": {"min": [0], "max": [717], "mean": [358.5], "std": [207.26854561172567], "count": [718]}, "episode_index": {"min": [154], "max": [154], "mean": [154.0], "std": [0.0], "count": [718]}, "index": {"min": [109807], "max": [110524], "mean": [110165.5], "std": [207.26854561172567], "count": [718]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [718]}}} +{"episode_index": 155, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7392617984044138]], [[0.7085866306954436]], [[0.6764136435949281]]], "std": [[[0.26377684224847275]], [[0.2650292891621081]], [[0.2734622948861211]]], "count": [139]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7666508518675256]], [[0.7435909507687968]], [[0.7146796268867259]]], "std": [[[0.24163561030289915]], [[0.23026059223094866]], [[0.2464343827349321]]], "count": [139]}, "observation.state": {"min": [0.5097235441207886, -0.06876321136951447, 0.13650323450565338, -4.278094291687012, -0.31371739506721497, -1.0997892618179321, -0.48208388686180115, -0.3155740201473236, 0.1487920582294464, -0.5298864841461182, -0.09414254873991013, -1.4009426832199097], "max": [0.6741405129432678, 0.04373383894562721, 0.15496627986431122, -2.8702359199523926, 0.5632156729698181, 0.18575377762317657, -0.25779256224632263, -0.15517286956310272, 0.18305040895938873, 1.763492465019226, 0.6766239404678345, 0.4273577928543091], "mean": [0.5684282779693604, -0.03163817897439003, 0.14461226761341095, -3.4916677474975586, 0.1226097047328949, -0.46044185757637024, -0.4037018120288849, -0.24934442341327667, 0.1697937697172165, 0.6221835613250732, 0.21624918282032013, -0.7603290677070618], "std": [0.04126240685582161, 0.020403992384672165, 0.0034188274294137955, 0.33603429794311523, 0.2269599288702011, 0.3621091842651367, 0.06267057359218597, 0.05033104494214058, 0.011006616055965424, 0.7453163266181946, 0.2007657140493393, 0.7563139796257019], "count": [721]}, "action": {"min": [-0.10710134357213974, -0.09297920763492584, 0.12258496880531311, 0.24369068443775177, -0.012278771959245205, 0.28629088401794434, 0.2081623524427414, 0.12421715259552002, -0.11987602710723877, 0.09880552440881729, -0.5947232246398926, -0.4991440773010254, -0.6029894351959229, -0.3764756917953491], "max": [-0.07855899631977081, -0.07489580661058426, 0.14309589564800262, 0.8098210692405701, 0.4047802686691284, 0.6919013857841492, 0.903968095779419, 0.16512605547904968, -0.0831267237663269, 0.11496847122907639, 0.7780454158782959, 0.5017363429069519, 0.761745035648346, 0.9567652940750122], "mean": [-0.09858978539705276, -0.08547361195087433, 0.13385313749313354, 0.5328643918037415, 0.17257192730903625, 0.5303168296813965, 0.5741370320320129, 0.13738210499286652, -0.10600832104682922, 0.10585274547338486, 0.28730496764183044, -0.15639139711856842, -0.07510828971862793, 0.4273776412010193], "std": [0.0071258340030908585, 0.0034100620541721582, 0.004826643038541079, 0.1482398957014084, 0.0952996090054512, 0.10350731760263443, 0.1833966076374054, 0.012263038195669651, 0.011831977404654026, 0.004071393050253391, 0.4498790502548218, 0.32883480191230774, 0.43512606620788574, 0.45259928703308105], "count": [721]}, "timestamp": {"min": [0.0], "max": [24.0], "mean": [12.0], "std": [6.937819061732104], "count": [721]}, "frame_index": {"min": [0], "max": [720], "mean": [360.0], "std": [208.13457185196313], "count": [721]}, "episode_index": {"min": [155], "max": [155], "mean": [155.0], "std": [0.0], "count": [721]}, "index": {"min": [110525], "max": [111245], "mean": [110885.0], "std": [208.13457185196313], "count": [721]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [721]}}} +{"episode_index": 156, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.708469579652073]], [[0.6780823575940705]], [[0.6447516216704438]]], "std": [[[0.28101251754365625]], [[0.2792767010338973]], [[0.28780212324375476]]], "count": [199]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7365973645460417]], [[0.7148557465979133]], [[0.6849220736033106]]], "std": [[[0.26268075055868595]], [[0.24818854162004217]], [[0.2643511672403052]]], "count": [199]}, "observation.state": {"min": [0.49118897318840027, -0.0921630933880806, 0.1341387927532196, -4.5383195877075195, -0.38572484254837036, -1.1987394094467163, -0.5218327641487122, -0.300738662481308, 0.15972626209259033, -0.15034769475460052, -0.36522936820983887, -1.0821466445922852], "max": [0.6999498605728149, 0.02538461983203888, 0.16781769692897797, -3.0103087425231934, 0.44803106784820557, 0.5254340171813965, -0.31170493364334106, -0.11286774277687073, 0.189229816198349, 2.4772770404815674, 1.0997872352600098, 0.7719801068305969], "mean": [0.5964935421943665, -0.03239130973815918, 0.14745375514030457, -3.5736758708953857, 0.04366603493690491, -0.5229302644729614, -0.42608514428138733, -0.23190653324127197, 0.17590169608592987, 1.2072714567184448, 0.13922590017318726, -0.14693740010261536], "std": [0.05962199717760086, 0.02511340193450451, 0.005205350462347269, 0.4037541151046753, 0.18995434045791626, 0.44397056102752686, 0.058883748948574066, 0.03689751401543617, 0.008373787626624107, 0.6824838519096375, 0.26931893825531006, 0.5229276418685913], "count": [1164]}, "action": {"min": [-0.10979096591472626, -0.09256511181592941, 0.118585005402565, 0.044973816722631454, -0.06814759224653244, 0.1910719871520996, 0.35059261322021484, 0.1162533238530159, -0.12065687775611877, 0.10049674659967422, -0.5596847534179688, -0.6047279238700867, -0.5585672855377197, -0.5602770447731018], "max": [-0.06931234151124954, -0.0708538368344307, 0.14667268097400665, 0.7528716325759888, 0.4644779562950134, 0.6988993287086487, 0.9644551873207092, 0.15280553698539734, -0.08884045481681824, 0.12127929925918579, 0.5830769538879395, 0.4525856375694275, 0.6879053115844727, 0.9761956930160522], "mean": [-0.09255467355251312, -0.08468499779701233, 0.1335536688566208, 0.526103675365448, 0.23967976868152618, 0.4879186153411865, 0.572126567363739, 0.13147422671318054, -0.10761142522096634, 0.11026310175657272, 0.1787983477115631, -0.14926885068416595, 0.02139062061905861, 0.625682532787323], "std": [0.01071233581751585, 0.0038463659584522247, 0.0072099086828529835, 0.18499842286109924, 0.11470016092061996, 0.14194810390472412, 0.18123124539852142, 0.010451136156916618, 0.008701696060597897, 0.004548287484794855, 0.349296897649765, 0.24764546751976013, 0.3270511031150818, 0.513336718082428], "count": [1164]}, "timestamp": {"min": [0.0], "max": [38.766666666666666], "mean": [19.383333333333333], "std": [11.200591088899762], "count": [1164]}, "frame_index": {"min": [0], "max": [1163], "mean": [581.5], "std": [336.01773266699286], "count": [1164]}, "episode_index": {"min": [156], "max": [156], "mean": [156.0], "std": [0.0], "count": [1164]}, "index": {"min": [111246], "max": [112409], "mean": [111827.5], "std": [336.01773266699286], "count": [1164]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1164]}}} +{"episode_index": 157, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7399700079604491]], [[0.7075227522205463]], [[0.6744411261940674]]], "std": [[[0.25728085254164057]], [[0.2589709294495856]], [[0.26733226065999477]]], "count": [130]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7663860398860399]], [[0.7413405794369029]], [[0.7117979868443104]]], "std": [[[0.23513857593293425]], [[0.22421488457999786]], [[0.24096070529208946]]], "count": [130]}, "observation.state": {"min": [0.5031901001930237, -0.053510818630456924, 0.13490620255470276, -4.28040075302124, -0.6013372540473938, -0.8754597306251526, -0.44939354062080383, -0.3128633499145508, 0.1533433347940445, 0.03522790968418121, 0.4245296120643616, -1.1163363456726074], "max": [0.6519839763641357, 0.03245092183351517, 0.15882793068885803, -3.20133638381958, 0.41523832082748413, 0.1649925261735916, -0.22134125232696533, -0.16098809242248535, 0.17852765321731567, 1.858691692352295, 0.9642437696456909, 0.06952834874391556], "mean": [0.5713017582893372, -0.019155805930495262, 0.14532329142093658, -3.5968823432922363, 0.11193756014108658, -0.3298876881599426, -0.34778353571891785, -0.2308768630027771, 0.16725052893161774, 0.8933472633361816, 0.7121456861495972, -0.46766769886016846], "std": [0.03625251352787018, 0.01868882216513157, 0.0036390344612300396, 0.3039685785770416, 0.18356311321258545, 0.2689923048019409, 0.06775130331516266, 0.04182436317205429, 0.008870609104633331, 0.5632742047309875, 0.16578258574008942, 0.32357263565063477], "count": [665]}, "action": {"min": [-0.10716403275728226, -0.09187713265419006, 0.12638652324676514, 0.20074044167995453, 0.017391666769981384, 0.26332730054855347, 0.44482073187828064, 0.12460639327764511, -0.11900686472654343, 0.09943635761737823, -0.4588971734046936, -0.5527266263961792, -0.610942542552948, -0.6109775304794312], "max": [-0.08120705932378769, -0.06713736057281494, 0.14567774534225464, 0.7429852485656738, 0.4210912883281708, 0.6308211088180542, 0.9210066795349121, 0.1683514267206192, -0.08281892538070679, 0.11591862142086029, 0.5162593126296997, 0.5571694374084473, 0.6136743426322937, 0.8493742346763611], "mean": [-0.09793702512979507, -0.08359341323375702, 0.135674387216568, 0.4921281039714813, 0.15121519565582275, 0.5035951137542725, 0.6534136533737183, 0.14359019696712494, -0.10044271498918533, 0.10798235237598419, 0.34203073382377625, -0.37713727355003357, -0.25120747089385986, 0.6085230112075806], "std": [0.0060471221804618835, 0.004225999116897583, 0.005292921327054501, 0.12606216967105865, 0.09365439414978027, 0.1030045822262764, 0.13825002312660217, 0.013133855536580086, 0.01078252773731947, 0.0039040432311594486, 0.20415668189525604, 0.24019257724285126, 0.29592886567115784, 0.34703144431114197], "count": [665]}, "timestamp": {"min": [0.0], "max": [22.133333333333333], "mean": [11.066666666666668], "std": [6.398958248548483], "count": [665]}, "frame_index": {"min": [0], "max": [664], "mean": [332.0], "std": [191.96874745645448], "count": [665]}, "episode_index": {"min": [157], "max": [157], "mean": [157.0], "std": [0.0], "count": [665]}, "index": {"min": [112410], "max": [113074], "mean": [112742.0], "std": [191.96874745645448], "count": [665]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [665]}}} +{"episode_index": 158, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7277698801742919]], [[0.6977784231653088]], [[0.6648515235622408]]], "std": [[[0.2698994353873454]], [[0.270416829048444]], [[0.279361497686445]]], "count": [146]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7538293341689797]], [[0.7318166427910585]], [[0.7020424836601308]]], "std": [[[0.2494272521208528]], [[0.23689542416402715]], [[0.2534918178709122]]], "count": [146]}, "observation.state": {"min": [0.5139942169189453, -0.05862326920032501, 0.12893030047416687, -4.539787292480469, -0.535615086555481, -1.0794777870178223, -0.5091134309768677, -0.3190261125564575, 0.1519848257303238, -0.29000118374824524, -0.06107651814818382, -1.3820335865020752], "max": [0.6531038284301758, 0.027384810149669647, 0.15823553502559662, -2.6978707313537598, 0.9007077813148499, 0.3367496132850647, -0.32065558433532715, -0.14314858615398407, 0.18018300831317902, 2.058316469192505, 0.986788809299469, 0.26307985186576843], "mean": [0.5803855061531067, -0.01816605031490326, 0.14624640345573425, -3.394726514816284, 0.15731103718280792, -0.45883068442344666, -0.42907005548477173, -0.2522079348564148, 0.1706760674715042, 1.3652199506759644, 0.32311519980430603, -0.2611159086227417], "std": [0.03974636644124985, 0.023972265422344208, 0.004121553618460894, 0.4965152144432068, 0.32842525839805603, 0.3634468913078308, 0.05397922918200493, 0.039771128445863724, 0.00800362229347229, 0.6043290495872498, 0.2878381609916687, 0.46925875544548035], "count": [771]}, "action": {"min": [-0.107844278216362, -0.09059527516365051, 0.12461014837026596, 0.16924874484539032, 0.0004953292664140463, 0.10494154691696167, 0.019417986273765564, 0.11846758425235748, -0.11822181940078735, 0.09342693537473679, -0.5604057312011719, -0.5887477397918701, -0.553851306438446, -0.5896082520484924], "max": [-0.08325167745351791, -0.07200925052165985, 0.14406783878803253, 0.7964975833892822, 0.4931871294975281, 0.7815769910812378, 0.9727104902267456, 0.15073758363723755, -0.08568352460861206, 0.1168145090341568, 0.6023170351982117, 0.5929932594299316, 0.6691493988037109, 0.9392287135124207], "mean": [-0.09569712728261948, -0.08323680609464645, 0.13496659696102142, 0.5184449553489685, 0.171892911195755, 0.5493029356002808, 0.5235536098480225, 0.13208577036857605, -0.1058773547410965, 0.1037469431757927, 0.3146568834781647, -0.3028751015663147, -0.026297790929675102, 0.7157747149467468], "std": [0.006520573981106281, 0.003713495098054409, 0.005645248107612133, 0.1592521220445633, 0.12381301820278168, 0.1633257120847702, 0.24178467690944672, 0.009162540547549725, 0.00919133797287941, 0.0050232671201229095, 0.2583507299423218, 0.24390803277492523, 0.24305523931980133, 0.3330483138561249], "count": [771]}, "timestamp": {"min": [0.0], "max": [25.666666666666668], "mean": [12.833333333333334], "std": [7.418944718808784], "count": [771]}, "frame_index": {"min": [0], "max": [770], "mean": [385.0], "std": [222.5683415642635], "count": [771]}, "episode_index": {"min": [158], "max": [158], "mean": [158.0], "std": [0.0], "count": [771]}, "index": {"min": [113075], "max": [113845], "mean": [113460.0], "std": [222.5683415642635], "count": [771]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [771]}}} +{"episode_index": 159, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7259156981990692]], [[0.6953524964226322]], [[0.662456642946462]]], "std": [[[0.2702519551680933]], [[0.270243209236074]], [[0.2777758740544993]]], "count": [169]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7530149669335189]], [[0.7303290791661833]], [[0.7006368262623919]]], "std": [[[0.24829424936067926]], [[0.23568482712188818]], [[0.25047556968663337]]], "count": [169]}, "observation.state": {"min": [0.5041322708129883, -0.08624748140573502, 0.12938788533210754, -4.53873872756958, -0.7878460884094238, -1.2460345029830933, -0.53200364112854, -0.315280556678772, 0.1547679454088211, -0.31809964776039124, -0.05889033153653145, -1.117387056350708], "max": [0.7089545726776123, -0.006657000165432692, 0.16446809470653534, -3.028132438659668, 0.7223971486091614, 0.12637391686439514, -0.3432600200176239, -0.18711408972740173, 0.17353953421115875, 1.6850683689117432, 0.7066839933395386, 0.5721839666366577], "mean": [0.5803923010826111, -0.04329737275838852, 0.14480656385421753, -3.5788943767547607, 0.014937394298613071, -0.4549483060836792, -0.4368181824684143, -0.26443374156951904, 0.1664949357509613, 0.9864622950553894, 0.3088330030441284, -0.1077011376619339], "std": [0.04939625784754753, 0.021687256172299385, 0.0064288112334907055, 0.4507761597633362, 0.35474973917007446, 0.3022814989089966, 0.05792233720421791, 0.039154697209596634, 0.005102662835270166, 0.6912251114845276, 0.24529463052749634, 0.5948510766029358], "count": [941]}, "action": {"min": [-0.11116792261600494, -0.09714984148740768, 0.11181619018316269, 0.27604666352272034, -0.016139281913638115, 0.14562168717384338, 0.11094401776790619, 0.12028835713863373, -0.11246265470981598, 0.090702123939991, -0.5911247730255127, -0.4761166572570801, -0.633195161819458, -0.6172201037406921], "max": [-0.07600606232881546, -0.07706417888402939, 0.14133818447589874, 0.8169801235198975, 0.6358203887939453, 0.676093578338623, 0.8798652291297913, 0.1515474021434784, -0.0901564508676529, 0.11350954324007034, 0.6155626177787781, 0.36940208077430725, 0.7410525679588318, 0.9638248085975647], "mean": [-0.09615831077098846, -0.08604305982589722, 0.1313595175743103, 0.514991283416748, 0.22496867179870605, 0.49346745014190674, 0.5807467699050903, 0.13363109529018402, -0.10398992896080017, 0.10021019726991653, 0.14411309361457825, -0.18080143630504608, -0.05349745973944664, 0.6102356910705566], "std": [0.009734492748975754, 0.004484711680561304, 0.006537183187901974, 0.13114921748638153, 0.18008959293365479, 0.1508922427892685, 0.17605213820934296, 0.009032719768583775, 0.006587481126189232, 0.005798261612653732, 0.31050944328308105, 0.26373088359832764, 0.39165347814559937, 0.501926600933075], "count": [941]}, "timestamp": {"min": [0.0], "max": [31.333333333333332], "mean": [15.66666666666667], "std": [9.054771608875008], "count": [941]}, "frame_index": {"min": [0], "max": [940], "mean": [470.0], "std": [271.6431482662502], "count": [941]}, "episode_index": {"min": [159], "max": [159], "mean": [159.0], "std": [0.0], "count": [941]}, "index": {"min": [113846], "max": [114786], "mean": [114316.0], "std": [271.6431482662502], "count": [941]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [941]}}} +{"episode_index": 160, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45852093362295016]], [[0.4245267438978253]], [[0.3750111835153223]]], "std": [[[0.20175478675335456]], [[0.19611884801789137]], [[0.19908901170764626]]], "count": [167]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4774245724237799]], [[0.45550209874368913]], [[0.40983616427276165]]], "std": [[[0.20667363732728133]], [[0.18541042947261163]], [[0.19959875058537616]]], "count": [167]}, "observation.state": {"min": [0.5263428688049316, -0.10259650647640228, 0.13023437559604645, -4.539158344268799, -0.6684257388114929, -1.0291749238967896, -0.45398086309432983, -0.3294981122016907, 0.1503463089466095, -0.7131555080413818, 0.48779231309890747, -1.4115890264511108], "max": [0.6209463477134705, -0.03062836080789566, 0.15708960592746735, -2.998985528945923, 0.19101783633232117, 0.3747645318508148, -0.2840498387813568, -0.2240055948495865, 0.18178652226924896, 1.741474986076355, 1.2709927558898926, 0.3866690993309021], "mean": [0.5694826245307922, -0.061817433685064316, 0.14513012766838074, -3.4709324836730957, -0.13719548285007477, -0.3863700330257416, -0.3730514943599701, -0.2837662994861603, 0.1709728091955185, 1.0458747148513794, 0.7557334303855896, -0.3275759518146515], "std": [0.0245335903018713, 0.018431825563311577, 0.004350375849753618, 0.4195380210876465, 0.16851504147052765, 0.3652380108833313, 0.05296384543180466, 0.031988125294446945, 0.00782269611954689, 0.6085126996040344, 0.1747034639120102, 0.5291424989700317], "count": [920]}, "action": {"min": [-0.10598540306091309, -0.10037291795015335, 0.11866618692874908, 0.1488264501094818, 0.07588902860879898, 0.16129828989505768, 0.3422163724899292, 0.1235971674323082, -0.11831492930650711, 0.0922919437289238, -0.49029064178466797, -0.5999767184257507, -0.4970969259738922, -0.5655542612075806], "max": [-0.09035982191562653, -0.07894831150770187, 0.13853442668914795, 0.6820085048675537, 0.4644475281238556, 0.7051326036453247, 0.9589763283729553, 0.16450834274291992, -0.09079001843929291, 0.11636736243963242, 0.5320378541946411, 0.5825132727622986, 0.7673680186271667, 0.8936182260513306], "mean": [-0.09782000631093979, -0.08861697465181351, 0.13218079507350922, 0.4382724463939667, 0.24440789222717285, 0.5676981806755066, 0.5948323607444763, 0.13887782394886017, -0.1087731420993805, 0.10276726633310318, 0.29261475801467896, -0.3872704803943634, -0.17512603104114532, 0.6204357743263245], "std": [0.0046423207968473434, 0.00416586035862565, 0.004801576025784016, 0.13809333741664886, 0.08869734406471252, 0.1374405324459076, 0.16201366484165192, 0.010324982926249504, 0.007189531344920397, 0.00532047264277935, 0.2402232140302658, 0.2945743203163147, 0.2956223785877228, 0.3419265151023865], "count": [920]}, "timestamp": {"min": [0.0], "max": [30.633333333333333], "mean": [15.316666666666668], "std": [8.852698897950713], "count": [920]}, "frame_index": {"min": [0], "max": [919], "mean": [459.5], "std": [265.5809669385214], "count": [920]}, "episode_index": {"min": [160], "max": [160], "mean": [160.0], "std": [0.0], "count": [920]}, "index": {"min": [114787], "max": [115706], "mean": [115246.5], "std": [265.5809669385214], "count": [920]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [920]}}} +{"episode_index": 161, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45810914725827734]], [[0.42507864616895275]], [[0.3759919125318359]]], "std": [[[0.20541301524690686]], [[0.19890094245279796]], [[0.20102296274854353]]], "count": [142]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47567599304980207]], [[0.4552418722575102]], [[0.4103901067077848]]], "std": [[[0.21161618941872232]], [[0.18882139552494157]], [[0.20128129552323842]]], "count": [142]}, "observation.state": {"min": [0.5153997540473938, -0.12747915089130402, 0.1325962096452713, -3.9117658138275146, -0.7551899552345276, -0.9090788960456848, -0.5230220556259155, -0.36001065373420715, 0.1534353643655777, 1.0245450735092163, 0.009564549662172794, 0.22735829651355743], "max": [0.6542776226997375, -0.02417987957596779, 0.15298685431480408, -2.897076368331909, 0.5196285843849182, 0.3101755976676941, -0.2535991072654724, -0.23413008451461792, 0.18278208374977112, 1.7045695781707764, 0.7896223068237305, 0.5936397910118103], "mean": [0.5734332203865051, -0.056276001036167145, 0.14630727469921112, -3.3482909202575684, -0.3632050156593323, -0.45041918754577637, -0.4194546341896057, -0.2917863130569458, 0.17108125984668732, 1.472476840019226, 0.33825013041496277, 0.4029749035835266], "std": [0.03223638981580734, 0.02577417530119419, 0.004463966004550457, 0.26265883445739746, 0.27370795607566833, 0.2702934145927429, 0.08422627300024033, 0.036023810505867004, 0.010241339914500713, 0.22292442619800568, 0.2578049898147583, 0.09158484637737274], "count": [747]}, "action": {"min": [-0.10462747514247894, -0.09455198049545288, 0.10999753326177597, 0.14946147799491882, 0.0489676296710968, 0.3985937833786011, 0.2838709354400635, 0.11639337241649628, -0.12380159646272659, 0.09074234217405319, 0.044043220579624176, -0.395967572927475, -0.4671068489551544, 0.8372088074684143], "max": [-0.08832333981990814, -0.07482371479272842, 0.14514675736427307, 0.7152304649353027, 0.43974801898002625, 0.7964340448379517, 0.8172576427459717, 0.15931184589862823, -0.09445339441299438, 0.10254287719726562, 0.27764126658439636, -0.18981724977493286, -0.03391661494970322, 0.9452651143074036], "mean": [-0.09682678431272507, -0.08601539582014084, 0.13372327387332916, 0.38828814029693604, 0.30992329120635986, 0.6271196007728577, 0.5579050779342651, 0.13311292231082916, -0.11123751848936081, 0.09910610318183899, 0.1821538656949997, -0.29916197061538696, -0.1921072006225586, 0.9002950191497803], "std": [0.0044188117608428, 0.0032681783195585012, 0.007876565679907799, 0.14901436865329742, 0.07721322774887085, 0.09664544463157654, 0.10552477836608887, 0.01368285994976759, 0.009879677556455135, 0.0023862472735345364, 0.06860840320587158, 0.05438109487295151, 0.14489121735095978, 0.03504813835024834], "count": [747]}, "timestamp": {"min": [0.0], "max": [24.866666666666667], "mean": [12.433333333333334], "std": [7.188004410641899], "count": [747]}, "frame_index": {"min": [0], "max": [746], "mean": [373.0], "std": [215.640132319257], "count": [747]}, "episode_index": {"min": [161], "max": [161], "mean": [161.0], "std": [0.0], "count": [747]}, "index": {"min": [115707], "max": [116453], "mean": [116080.0], "std": [215.640132319257], "count": [747]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [747]}}} +{"episode_index": 162, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.464875089031339]], [[0.43058971391263057]], [[0.3805078801463605]]], "std": [[[0.19804512851340525]], [[0.19249926423843083]], [[0.19498663248878748]]], "count": [156]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4824512020976482]], [[0.4600031806882297]], [[0.41433447328361545]]], "std": [[[0.20406917849058712]], [[0.18211296632165305]], [[0.19527966200972516]]], "count": [156]}, "observation.state": {"min": [0.5068506598472595, -0.1359664350748062, 0.1357695311307907, -4.046806335449219, -0.7844301462173462, -0.9314731359481812, -0.4621746838092804, -0.32860228419303894, 0.1490020453929901, 0.4896260201931, 0.8005532622337341, -0.8045291900634766], "max": [0.628344714641571, -0.011800340376794338, 0.15310092270374298, -3.136751890182495, 0.6368627548217773, 0.18252791464328766, -0.2206462025642395, -0.2009686827659607, 0.18011820316314697, 0.9951884746551514, 1.236560344696045, 0.04441054165363312], "mean": [0.5619862079620361, -0.0565633587539196, 0.14639919996261597, -3.454014778137207, -0.3478130102157593, -0.3183440566062927, -0.3820195198059082, -0.28031137585639954, 0.16760273277759552, 0.7571496963500977, 0.9093529582023621, -0.5205162167549133], "std": [0.02574329636991024, 0.02485099993646145, 0.003633816260844469, 0.19168339669704437, 0.3112717270851135, 0.2976885139942169, 0.07120129466056824, 0.040473826229572296, 0.008660315535962582, 0.11708544939756393, 0.10999314486980438, 0.23121210932731628], "count": [840]}, "action": {"min": [-0.1063588559627533, -0.09983028471469879, 0.116197369992733, 0.09381608664989471, 0.015828408300876617, 0.3597259223461151, 0.3028354346752167, 0.12293356657028198, -0.11237779259681702, 0.09345614910125732, -0.4689785838127136, -0.5577932000160217, -0.5266483426094055, -0.5579565167427063], "max": [-0.09054271131753922, -0.07805869728326797, 0.14629709720611572, 0.775306761264801, 0.3881840109825134, 0.7401837110519409, 0.7673402428627014, 0.16421496868133545, -0.08411691337823868, 0.10820481181144714, 0.4839119017124176, 0.558218777179718, 0.40767407417297363, 0.7776968479156494], "mean": [-0.09814812242984772, -0.08679179102182388, 0.1343805193901062, 0.3666439652442932, 0.27708014845848083, 0.6119940876960754, 0.602806806564331, 0.1382462978363037, -0.10333447903394699, 0.10119859874248505, 0.39085060358047485, -0.4988061189651489, -0.4066517651081085, 0.6360046863555908], "std": [0.004037019331008196, 0.0038113188929855824, 0.005607461091130972, 0.17694076895713806, 0.07031984627246857, 0.07288368791341782, 0.09654422104358673, 0.011947309598326683, 0.008707769215106964, 0.003697022795677185, 0.12264309823513031, 0.06032782420516014, 0.06017284467816353, 0.07911089062690735], "count": [840]}, "timestamp": {"min": [0.0], "max": [27.966666666666665], "mean": [13.983333333333333], "std": [8.08289804097149], "count": [840]}, "frame_index": {"min": [0], "max": [839], "mean": [419.5], "std": [242.48694122914466], "count": [840]}, "episode_index": {"min": [162], "max": [162], "mean": [162.0], "std": [0.0], "count": [840]}, "index": {"min": [116454], "max": [117293], "mean": [116873.5], "std": [242.48694122914466], "count": [840]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [840]}}} +{"episode_index": 163, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.487455922638615]], [[0.45222219643939104]], [[0.40249983563445096]]], "std": [[[0.19704502536637142]], [[0.19227973807698118]], [[0.19470855493075412]]], "count": [169]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5025600772195795]], [[0.4794089559887071]], [[0.43383059713037087]]], "std": [[[0.203243610574863]], [[0.18200241978212894]], [[0.19511471576122977]]], "count": [169]}, "observation.state": {"min": [0.5239179134368896, -0.08976905047893524, 0.13259491324424744, -4.401391983032227, -0.39351311326026917, -1.021215796470642, -0.5040627717971802, -0.27962470054626465, 0.15672923624515533, 0.2526763677597046, 0.5056917071342468, -0.9422310590744019], "max": [0.652331531047821, 0.015947440639138222, 0.16188198328018188, -2.982419967651367, 0.8330727219581604, 0.26929423213005066, -0.21941828727722168, -0.19528475403785706, 0.18709872663021088, 0.6045361161231995, 0.7870262265205383, -0.41249120235443115], "mean": [0.5672585368156433, -0.024119732901453972, 0.14620202779769897, -3.4945127964019775, -0.09491617977619171, -0.3325904309749603, -0.4025056064128876, -0.24200299382209778, 0.17439113557338715, 0.43621060252189636, 0.5928437113761902, -0.7285786867141724], "std": [0.028986595571041107, 0.027787281200289726, 0.004645800683647394, 0.3035392761230469, 0.26895827054977417, 0.3037518560886383, 0.09113314002752304, 0.02464752458035946, 0.00915494654327631, 0.08598838746547699, 0.08150815218687057, 0.1684040129184723], "count": [938]}, "action": {"min": [-0.10774388909339905, -0.09668838232755661, 0.1206083595752716, 0.151310995221138, -0.013548233546316624, 0.15932203829288483, 0.1898963749408722, 0.11408881843090057, -0.1133570522069931, 0.10515618324279785, 0.2652421295642853, -0.45046138763427734, -0.5999345779418945, 0.4896424114704132], "max": [-0.07913896441459656, -0.07370594143867493, 0.1470782607793808, 0.8270686864852905, 0.4683089256286621, 0.7205759882926941, 0.8478518128395081, 0.16636906564235687, -0.09171957522630692, 0.1155950054526329, 0.5740793943405151, -0.2965383231639862, -0.4519581198692322, 0.7195461988449097], "mean": [-0.0973796620965004, -0.08333679288625717, 0.13643726706504822, 0.4377940595149994, 0.21050527691841125, 0.5683718323707581, 0.6137016415596008, 0.13399088382720947, -0.10470215976238251, 0.11019184440374374, 0.48484697937965393, -0.3945901691913605, -0.49756014347076416, 0.5865397453308105], "std": [0.005775041412562132, 0.00510250311344862, 0.005370250903069973, 0.16562193632125854, 0.08098364621400833, 0.10545101016759872, 0.13870246708393097, 0.016238173469901085, 0.006659968290477991, 0.002774321474134922, 0.09446486085653305, 0.045161210000514984, 0.040955547243356705, 0.070619136095047], "count": [938]}, "timestamp": {"min": [0.0], "max": [31.233333333333334], "mean": [15.616666666666667], "std": [9.025904079062908], "count": [938]}, "frame_index": {"min": [0], "max": [937], "mean": [468.5], "std": [270.77712237188723], "count": [938]}, "episode_index": {"min": [163], "max": [163], "mean": [163.0], "std": [0.0], "count": [938]}, "index": {"min": [117294], "max": [118231], "mean": [117762.5], "std": [270.77712237188723], "count": [938]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [938]}}} +{"episode_index": 164, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4758270428962831]], [[0.4419941551957483]], [[0.3924929193899782]]], "std": [[[0.2050604154616045]], [[0.1997668351131718]], [[0.2026508938731962]]], "count": [132]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49511452556611873]], [[0.4733911768832112]], [[0.4279636066547831]]], "std": [[[0.2126980247952307]], [[0.19150218404655875]], [[0.20525946365117356]]], "count": [132]}, "observation.state": {"min": [0.5237866044044495, -0.12997359037399292, 0.13209713995456696, -4.215396881103516, -0.47043946385383606, -1.0897595882415771, -0.48106446862220764, -0.30281609296798706, 0.15151815116405487, -0.1501380056142807, 0.5151196122169495, -1.1769020557403564], "max": [0.6493659615516663, -0.010325290262699127, 0.15764960646629333, -2.9308364391326904, 0.6615939140319824, 0.1308109164237976, -0.288776159286499, -0.21528662741184235, 0.17926782369613647, 0.425041526556015, 1.1153637170791626, -0.5154467225074768], "mean": [0.5807164311408997, -0.05770459398627281, 0.1459496170282364, -3.4435603618621826, 0.12406817823648453, -0.5667868256568909, -0.4045174717903137, -0.26880398392677307, 0.17005862295627594, 0.21245057880878448, 0.7481292486190796, -0.8217806816101074], "std": [0.03248567879199982, 0.024860136210918427, 0.00645101023837924, 0.312634140253067, 0.26394012570381165, 0.32673507928848267, 0.05621457099914551, 0.02850729413330555, 0.009307939559221268, 0.12293840944766998, 0.16120944917201996, 0.16953641176223755], "count": [678]}, "action": {"min": [-0.10870823264122009, -0.10124987363815308, 0.11924852430820465, 0.29603973031044006, -0.027111457660794258, 0.2350098192691803, 0.24987618625164032, 0.12407373636960983, -0.11380255967378616, 0.10150066763162613, -0.5390046238899231, -0.5052188038825989, -0.6287209391593933, -0.6268382668495178], "max": [-0.08271919935941696, -0.07722578197717667, 0.13835866749286652, 0.801243782043457, 0.5343722701072693, 0.6699382662773132, 0.8717517852783203, 0.15931014716625214, -0.08578382432460785, 0.11369243264198303, 0.5724207162857056, 0.5296995639801025, 0.6313837766647339, 0.6329905390739441], "mean": [-0.09604462236166, -0.089691661298275, 0.13092933595180511, 0.5798899531364441, 0.18705159425735474, 0.5295310020446777, 0.5283053517341614, 0.13686464726924896, -0.10384964942932129, 0.10535622388124466, 0.10934489965438843, -0.10036391019821167, -0.12574084103107452, 0.15095821022987366], "std": [0.0071980771608650684, 0.005562979727983475, 0.004660601727664471, 0.12831103801727295, 0.1317639797925949, 0.10407207906246185, 0.1567579209804535, 0.010892387479543686, 0.009026751853525639, 0.0029622556176036596, 0.42286622524261475, 0.4278450906276703, 0.5535638332366943, 0.5206449627876282], "count": [678]}, "timestamp": {"min": [0.0], "max": [22.566666666666666], "mean": [11.283333333333333], "std": [6.524050945596665], "count": [678]}, "frame_index": {"min": [0], "max": [677], "mean": [338.5], "std": [195.72152836789994], "count": [678]}, "episode_index": {"min": [164], "max": [164], "mean": [164.0], "std": [0.0], "count": [678]}, "index": {"min": [118232], "max": [118909], "mean": [118570.5], "std": [195.72152836789994], "count": [678]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [678]}}} +{"episode_index": 165, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46299866019796126]], [[0.4299446545765082]], [[0.3784123060060787]]], "std": [[[0.20058334834345884]], [[0.19494379982388121]], [[0.19683822524219988]]], "count": [162]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.482379614500121]], [[0.4617815399822481]], [[0.41411216681459967]]], "std": [[[0.20164072735199481]], [[0.1815837406094973]], [[0.194808966287808]]], "count": [162]}, "observation.state": {"min": [0.5284202694892883, -0.0923638865351677, 0.1305934339761734, -4.317096710205078, -0.2945882976055145, -1.0207864046096802, -0.45789629220962524, -0.372289776802063, 0.15098537504673004, -0.39966902136802673, 0.5585700273513794, -1.3909446001052856], "max": [0.6674140095710754, -0.0009653416345827281, 0.1519070416688919, -2.468679666519165, 0.7166584134101868, 0.34020179510116577, -0.27761679887771606, -0.2839031219482422, 0.1865490972995758, 1.6739548444747925, 1.1034764051437378, 0.46332573890686035], "mean": [0.5833747982978821, -0.04245637729763985, 0.14079776406288147, -3.308894395828247, 0.0020474009215831757, -0.2724105715751648, -0.39292651414871216, -0.32855865359306335, 0.1721895933151245, 0.9869105219841003, 0.7718250751495361, -0.2598609924316406], "std": [0.03547997400164604, 0.020469149574637413, 0.003948920406401157, 0.4164319634437561, 0.23626622557640076, 0.20047040283679962, 0.053456950932741165, 0.02540690079331398, 0.008703190833330154, 0.5873174071311951, 0.1564301997423172, 0.5235109925270081], "count": [885]}, "action": {"min": [-0.10710194706916809, -0.09270777553319931, 0.11402750015258789, 0.19225341081619263, -0.16689801216125488, 0.23502856492996216, 0.13856661319732666, 0.12348335981369019, -0.12389519810676575, 0.0894579067826271, -0.48576486110687256, -0.5464051961898804, -0.5609255433082581, -0.5609575510025024], "max": [-0.08263446390628815, -0.07528756558895111, 0.1408783346414566, 0.7866454124450684, 0.353555291891098, 0.8218980431556702, 0.9367151856422424, 0.16534215211868286, -0.09519647061824799, 0.11141107231378555, 0.5097020268440247, 0.5763657093048096, 0.6402734518051147, 0.8757781982421875], "mean": [-0.09799059480428696, -0.08369465917348862, 0.12922261655330658, 0.4605412483215332, 0.1345015913248062, 0.614169180393219, 0.5704860687255859, 0.13659077882766724, -0.11374898254871368, 0.09760420024394989, 0.24657326936721802, -0.3022102415561676, -0.17430923879146576, 0.5580361485481262], "std": [0.004840959329158068, 0.0030527357012033463, 0.0067855785600841045, 0.11095096915960312, 0.12277521938085556, 0.1261044442653656, 0.15449018776416779, 0.011397047899663448, 0.00775423226878047, 0.00578367430716753, 0.25630003213882446, 0.3566892445087433, 0.329367458820343, 0.45241937041282654], "count": [885]}, "timestamp": {"min": [0.0], "max": [29.466666666666665], "mean": [14.733333333333333], "std": [8.515911034102032], "count": [885]}, "frame_index": {"min": [0], "max": [884], "mean": [442.0], "std": [255.47733102306097], "count": [885]}, "episode_index": {"min": [165], "max": [165], "mean": [165.0], "std": [0.0], "count": [885]}, "index": {"min": [118910], "max": [119794], "mean": [119352.0], "std": [255.47733102306097], "count": [885]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [885]}}} +{"episode_index": 166, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4530385620915033]], [[0.42008877239167275]], [[0.36904128540305015]]], "std": [[[0.2092556388188396]], [[0.20291765481398855]], [[0.20462869500607975]]], "count": [180]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4717554390583394]], [[0.4516423883442266]], [[0.404374128540305]]], "std": [[[0.2124932508898885]], [[0.19145999995301757]], [[0.20380088241953118]]], "count": [180]}, "observation.state": {"min": [0.5036380290985107, -0.09238705039024353, 0.13606896996498108, -4.556143283843994, -0.7445322871208191, -1.1341956853866577, -0.5156777501106262, -0.3402327299118042, 0.1588771939277649, 0.9016667604446411, 0.2236739546060562, -0.30014654994010925], "max": [0.711325466632843, -0.014688639901578426, 0.15348851680755615, -2.774827003479004, 0.7580593228340149, 0.32649168372154236, -0.27740830183029175, -0.24109600484371185, 0.18506483733654022, 1.6586474180221558, 0.7784181237220764, 0.3497336208820343], "mean": [0.5810679793357849, -0.050552498549222946, 0.14568066596984863, -3.674065589904785, -0.031843021512031555, -0.30306386947631836, -0.4214092195034027, -0.3063138723373413, 0.17446213960647583, 1.3270161151885986, 0.48888251185417175, 0.08285341411828995], "std": [0.039056796580553055, 0.019913820549845695, 0.0040750144980847836, 0.5013436079025269, 0.3280640244483948, 0.3853572607040405, 0.06758242100477219, 0.026273977011442184, 0.007295782677829266, 0.18535128235816956, 0.14123030006885529, 0.13653434813022614], "count": [1020]}, "action": {"min": [-0.10792490094900131, -0.09745385497808456, 0.11913945525884628, 0.1428608000278473, -0.14630331099033356, 0.11951767653226852, 0.32846391201019287, 0.11504895240068436, -0.12301897257566452, 0.08967212587594986, 0.16961365938186646, -0.43115928769111633, -0.4227787256240845, 0.718346893787384], "max": [-0.07759010791778564, -0.08075476437807083, 0.14137597382068634, 0.8463141918182373, 0.44038063287734985, 0.7543801069259644, 0.9616662859916687, 0.1549226939678192, -0.09782733768224716, 0.1071958988904953, 0.41790005564689636, -0.30387309193611145, -0.08691083639860153, 0.8928768038749695], "mean": [-0.0958762988448143, -0.08724146336317062, 0.13189484179019928, 0.44201260805130005, 0.20487956702709198, 0.48339587450027466, 0.6380584239959717, 0.13100793957710266, -0.11434978246688843, 0.09943117946386337, 0.3265589475631714, -0.36068663001060486, -0.2405519336462021, 0.831229567527771], "std": [0.0057157715782523155, 0.0035303912591189146, 0.006148520391434431, 0.20994628965854645, 0.11326106637716293, 0.17820458114147186, 0.1821984350681305, 0.011276229284703732, 0.006709530483931303, 0.0036090021021664143, 0.06226600334048271, 0.03349054977297783, 0.09064503014087677, 0.03523305058479309], "count": [1020]}, "timestamp": {"min": [0.0], "max": [33.96666666666667], "mean": [16.983333333333334], "std": [9.814949859308541], "count": [1020]}, "frame_index": {"min": [0], "max": [1019], "mean": [509.5], "std": [294.44849577925623], "count": [1020]}, "episode_index": {"min": [166], "max": [166], "mean": [166.0], "std": [0.0], "count": [1020]}, "index": {"min": [119795], "max": [120814], "mean": [120304.5], "std": [294.44849577925623], "count": [1020]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1020]}}} +{"episode_index": 167, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4690908818926632]], [[0.43568885590229833]], [[0.38398085818834576]]], "std": [[[0.20154161732456988]], [[0.1967523599749132]], [[0.1998714642048393]]], "count": [142]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48872655842462176]], [[0.46712439972076464]], [[0.4198935933136948]]], "std": [[[0.2040245546953025]], [[0.18405538398415508]], [[0.19808396123924862]]], "count": [142]}, "observation.state": {"min": [0.5211068391799927, -0.11594139039516449, 0.12708568572998047, -4.018917560577393, -0.4992697834968567, -1.0639877319335938, -0.4561123251914978, -0.3948710560798645, 0.1546798050403595, 0.8133872747421265, 0.22326403856277466, -0.26889386773109436], "max": [0.6208459138870239, -0.023145029321312904, 0.15116555988788605, -2.8712844848632812, 0.39269331097602844, 0.044669508934020996, -0.2212485671043396, -0.2558850347995758, 0.18154023587703705, 1.7563629150390625, 1.005644679069519, 0.20801903307437897], "mean": [0.5619716048240662, -0.06192230433225632, 0.14334723353385925, -3.4225871562957764, -0.18165872991085052, -0.4336364269256592, -0.37261560559272766, -0.3149280250072479, 0.17155663669109344, 1.378227949142456, 0.5954533219337463, -0.01884816400706768], "std": [0.024645647034049034, 0.020237848162651062, 0.006577660329639912, 0.30437108874320984, 0.23482432961463928, 0.23206885159015656, 0.0771508663892746, 0.035414256155490875, 0.008894897997379303, 0.2848895490169525, 0.20136502385139465, 0.1361531764268875], "count": [746]}, "action": {"min": [-0.10902965068817139, -0.09607484191656113, 0.11870627850294113, 0.2422182559967041, 0.025837887078523636, 0.31803077459335327, 0.37269943952560425, 0.123282790184021, -0.12461742013692856, 0.08396884053945541, 0.19197551906108856, -0.48080796003341675, -0.4894489347934723, 0.7269778251647949], "max": [-0.09175623208284378, -0.07595054805278778, 0.13973289728164673, 0.7793435454368591, 0.45359793305397034, 0.7627662420272827, 0.7628657221794128, 0.16313998401165009, -0.09534023702144623, 0.10957378894090652, 0.4704658091068268, -0.24466368556022644, -0.03432154282927513, 0.9049825072288513], "mean": [-0.09982763230800629, -0.08769955486059189, 0.13154034316539764, 0.45840245485305786, 0.24768120050430298, 0.5876575112342834, 0.5784465074539185, 0.13881894946098328, -0.11423588544130325, 0.09867656230926514, 0.351224422454834, -0.403955340385437, -0.21034838259220123, 0.7995164394378662], "std": [0.004874343518167734, 0.004122609738260508, 0.006756930146366358, 0.12010425329208374, 0.10092034190893173, 0.11139971017837524, 0.10751678794622421, 0.01271587423980236, 0.009424099698662758, 0.004805166739970446, 0.07649505138397217, 0.0502932108938694, 0.13904401659965515, 0.04769166558980942], "count": [746]}, "timestamp": {"min": [0.0], "max": [24.833333333333332], "mean": [12.416666666666668], "std": [7.17838189752166], "count": [746]}, "frame_index": {"min": [0], "max": [745], "mean": [372.5], "std": [215.35145692564979], "count": [746]}, "episode_index": {"min": [167], "max": [167], "mean": [167.0], "std": [0.0], "count": [746]}, "index": {"min": [120815], "max": [121560], "mean": [121187.5], "std": [215.35145692564979], "count": [746]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [746]}}} +{"episode_index": 168, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45589899207546264]], [[0.42262976280255693]], [[0.3719556160070866]]], "std": [[[0.21332492256686553]], [[0.20771326621050937]], [[0.21028846051711017]]], "count": [182]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.477641799241064]], [[0.4570107106945342]], [[0.4103380392755393]]], "std": [[[0.2196355461722268]], [[0.19869858332716892]], [[0.21170566265506044]]], "count": [182]}, "observation.state": {"min": [0.5278255939483643, -0.11747048795223236, 0.12305939942598343, -4.539787292480469, -0.6271615028381348, -1.1363016366958618, -0.4973285496234894, -0.31837737560272217, 0.15031130611896515, 0.611036479473114, -0.15398934483528137, -0.49429041147232056], "max": [0.6674758195877075, -0.026419470086693764, 0.16757141053676605, -3.061682939529419, 0.4010281264781952, 0.44592979550361633, -0.24567557871341705, -0.21395058929920197, 0.1801765263080597, 2.174065351486206, 0.883628249168396, 0.5769392251968384], "mean": [0.5899887681007385, -0.07234425097703934, 0.14684805274009705, -3.657323122024536, -0.25547918677330017, -0.4011123478412628, -0.39998430013656616, -0.2744084894657135, 0.1691366285085678, 1.5812461376190186, 0.32664889097213745, 0.18375444412231445], "std": [0.03852623701095581, 0.02701377309858799, 0.005821194499731064, 0.3187597990036011, 0.19586996734142303, 0.2994803190231323, 0.06831306219100952, 0.027675841003656387, 0.008101715706288815, 0.3882465958595276, 0.29953834414482117, 0.2474532276391983], "count": [1036]}, "action": {"min": [-0.1125938668847084, -0.10140929371118546, 0.11401363462209702, 0.08756303042173386, 0.0646960660815239, 0.17402401566505432, 0.3600475490093231, 0.12233729660511017, -0.11947605013847351, 0.09266698360443115, 0.05162280797958374, -0.5405936241149902, -0.4826493263244629, 0.6908255815505981], "max": [-0.06873984634876251, -0.07527556270360947, 0.1411363184452057, 0.7411439418792725, 0.4641052186489105, 0.7006792426109314, 0.9643850922584534, 0.16264821588993073, -0.09599817544221878, 0.11490343511104584, 0.4176589250564575, -0.18216866254806519, 0.21283204853534698, 0.9526882171630859], "mean": [-0.09320139139890671, -0.08900606632232666, 0.13021665811538696, 0.4391882121562958, 0.31142449378967285, 0.5019710659980774, 0.6354900598526001, 0.13675488531589508, -0.10848373174667358, 0.10148242115974426, 0.24893984198570251, -0.3436166048049927, -0.10723340511322021, 0.8673875331878662], "std": [0.007594681344926357, 0.00479288911446929, 0.006112218368798494, 0.1391017585992813, 0.0774792805314064, 0.11400485783815384, 0.12631969153881073, 0.010864751413464546, 0.006923695560544729, 0.0051698703318834305, 0.0993577092885971, 0.08048613369464874, 0.18599621951580048, 0.07176309823989868], "count": [1036]}, "timestamp": {"min": [0.0], "max": [34.5], "mean": [17.25], "std": [9.968910003940586], "count": [1036]}, "frame_index": {"min": [0], "max": [1035], "mean": [517.5], "std": [299.06730011821753], "count": [1036]}, "episode_index": {"min": [168], "max": [168], "mean": [168.0], "std": [0.0], "count": [1036]}, "index": {"min": [121561], "max": [122596], "mean": [122078.5], "std": [299.06730011821753], "count": [1036]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1036]}}} +{"episode_index": 169, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4707605258152644]], [[0.4382063556904243]], [[0.38644622324238337]]], "std": [[[0.20690183678880425]], [[0.20173755659012546]], [[0.20580279079578526]]], "count": [126]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4913677832244009]], [[0.4699714398104921]], [[0.42306090059480583]]], "std": [[[0.20925652117244184]], [[0.18932334347115645]], [[0.2038224659202661]]], "count": [126]}, "observation.state": {"min": [0.5085728764533997, -0.10615669190883636, 0.1322539895772934, -4.202186584472656, -0.52181476354599, -0.9394038915634155, -0.44798800349235535, -0.33057159185409546, 0.1505342721939087, 0.265048086643219, 0.33325642347335815, -0.7663453817367554], "max": [0.6258966326713562, -0.03163231164216995, 0.15100611746311188, -3.3074395656585693, 0.16778962314128876, 0.1143052875995636, -0.24379122257232666, -0.2230093628168106, 0.1830737441778183, 0.99686598777771, 0.9082227945327759, -0.16965718567371368], "mean": [0.5599928498268127, -0.059962283819913864, 0.14427098631858826, -3.6679701805114746, -0.24250303208827972, -0.404405415058136, -0.3810298442840576, -0.29195067286491394, 0.17141510546207428, 0.6644946336746216, 0.5357416868209839, -0.4784775674343109], "std": [0.029876427724957466, 0.01985137350857258, 0.0035440099891275167, 0.2310115247964859, 0.16418534517288208, 0.27950018644332886, 0.06666569411754608, 0.036288514733314514, 0.011389389634132385, 0.18235650658607483, 0.185928076505661, 0.17005179822444916], "count": [632]}, "action": {"min": [-0.10888713598251343, -0.09670021384954453, 0.12262428551912308, 0.18681450188159943, 0.11713309586048126, 0.3057961165904999, 0.399003803730011, 0.1255228966474533, -0.12260429561138153, 0.09819621592760086, 0.18223126232624054, -0.39814552664756775, -0.6113042235374451, 0.5788400173187256], "max": [-0.08779080957174301, -0.07734528183937073, 0.14007043838500977, 0.6876977682113647, 0.48942920565605164, 0.6111866235733032, 0.8136390447616577, 0.16372817754745483, -0.08898971974849701, 0.11038582026958466, 0.6156857013702393, -0.26774218678474426, -0.32969167828559875, 0.7459540367126465], "mean": [-0.09918718039989471, -0.0875321626663208, 0.13245083391666412, 0.44305506348609924, 0.29877352714538574, 0.5026193857192993, 0.6511190533638, 0.13858166337013245, -0.11033077538013458, 0.1032400131225586, 0.4699718654155731, -0.3220854103565216, -0.44034668803215027, 0.6717573404312134], "std": [0.005354847759008408, 0.0034006512723863125, 0.004884262569248676, 0.12303369492292404, 0.07675479352474213, 0.07819004356861115, 0.10349931567907333, 0.012831315398216248, 0.011669478379189968, 0.002382570644840598, 0.13432006537914276, 0.03756389766931534, 0.09139469265937805, 0.04917585849761963], "count": [632]}, "timestamp": {"min": [0.0], "max": [21.033333333333335], "mean": [10.516666666666667], "std": [6.081415222718403], "count": [632]}, "frame_index": {"min": [0], "max": [631], "mean": [315.5], "std": [182.44245668155207], "count": [632]}, "episode_index": {"min": [169], "max": [169], "mean": [169.0], "std": [0.0], "count": [632]}, "index": {"min": [122597], "max": [123228], "mean": [122912.5], "std": [182.44245668155207], "count": [632]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [632]}}} +{"episode_index": 170, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45167123367469386]], [[0.40268797548728347]], [[0.3435226821269209]]], "std": [[[0.20079932653053856]], [[0.18725746908963925]], [[0.18758493304515808]]], "count": [187]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46248426304568174]], [[0.4261618331527501]], [[0.373601161557909]]], "std": [[[0.20902418200805414]], [[0.17707717734629022]], [[0.18706105990170444]]], "count": [187]}, "observation.state": {"min": [0.3801746964454651, -0.15464772284030914, 0.12971584498882294, 0.8471473455429077, -1.1261579990386963, -0.614152193069458, -0.6077790856361389, -0.4791337847709656, 0.18408873677253723, 3.0987980365753174, -0.8613564968109131, -0.9497363567352295], "max": [0.4814274311065674, -0.04364116117358208, 0.1422794908285141, 3.864795446395874, 0.3864080309867859, 0.4952704906463623, -0.4963863790035248, -0.2916412651538849, 0.20236772298812866, 3.8314547538757324, -0.5558372735977173, 0.28962117433547974], "mean": [0.4344410002231598, -0.10473700612783432, 0.13708171248435974, 2.1821401119232178, -0.4060696065425873, -0.13357070088386536, -0.5498437285423279, -0.41571488976478577, 0.19401921331882477, 3.3869216442108154, -0.6779235601425171, -0.4318423867225647], "std": [0.020548397675156593, 0.027373002842068672, 0.0032052977476269007, 0.8933148384094238, 0.33636102080345154, 0.31422340869903564, 0.020859532058238983, 0.04000752046704292, 0.004663048777729273, 0.10277421772480011, 0.0675194263458252, 0.2610092759132385], "count": [1074]}, "action": {"min": [-0.1312175989151001, -0.10497859120368958, 0.12342970073223114, 0.017299272119998932, -0.0948822945356369, -0.28394606709480286, 0.2088102251291275, 0.09854485839605331, -0.14710956811904907, 0.0831194743514061, -0.31540071964263916, -0.33765771985054016, 0.552981972694397, 0.5933488011360168], "max": [-0.11315247416496277, -0.08591114729642868, 0.14097750186920166, 0.5336413383483887, 0.7364616394042969, 0.8358523845672607, 0.9799596667289734, 0.11932211369276047, -0.11035275459289551, 0.1024911180138588, 0.15316693484783173, 0.07117751240730286, 0.7503262162208557, 0.7595447897911072], "mean": [-0.12216123938560486, -0.09639321267604828, 0.13076342642307281, 0.3114737570285797, 0.3225870132446289, 0.3459290862083435, 0.6994757652282715, 0.10909415036439896, -0.13339605927467346, 0.09115897864103317, -0.021593309938907623, -0.15390311181545258, 0.6900994777679443, 0.6926859617233276], "std": [0.003416143823415041, 0.004266110248863697, 0.00397110590711236, 0.10903366655111313, 0.19803741574287415, 0.3291863203048706, 0.17469264566898346, 0.0037633085157722235, 0.00805194117128849, 0.004117644391953945, 0.09322617948055267, 0.09222706407308578, 0.03948599472641945, 0.032237909734249115], "count": [1074]}, "timestamp": {"min": [0.0], "max": [35.766666666666666], "mean": [17.883333333333333], "std": [10.334565338742639], "count": [1074]}, "frame_index": {"min": [0], "max": [1073], "mean": [536.5], "std": [310.0369601622792], "count": [1074]}, "episode_index": {"min": [170], "max": [170], "mean": [170.0], "std": [0.0], "count": [1074]}, "index": {"min": [123229], "max": [124302], "mean": [123765.5], "std": [310.0369601622792], "count": [1074]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1074]}}} +{"episode_index": 171, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4616932379140123]], [[0.41177646783045146]], [[0.35113234777033175]]], "std": [[[0.19281674891798553]], [[0.181148610866061]], [[0.18282213848025666]]], "count": [158]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47468886165577345]], [[0.4363459674305728]], [[0.38307421885772597]]], "std": [[[0.20002380058427408]], [[0.16937210454357707]], [[0.18043465891466057]]], "count": [158]}, "observation.state": {"min": [0.3953962028026581, -0.19573265314102173, 0.13222676515579224, 1.573513388633728, -0.9389660358428955, -0.689608633518219, -0.5398113131523132, -0.45432063937187195, 0.17301972210407257, 3.088103771209717, -1.0769689083099365, -0.43395018577575684], "max": [0.48429256677627563, -0.0969511866569519, 0.14469577372074127, 3.319601535797119, -0.39078038930892944, 0.4903549253940582, -0.45177987217903137, -0.3969098627567291, 0.19784237444400787, 3.700608015060425, -0.5716871023178101, 0.38030993938446045], "mean": [0.43574148416519165, -0.14455129206180573, 0.13959108293056488, 2.478933811187744, -0.6504324078559875, -0.0563417486846447, -0.5161013603210449, -0.42756423354148865, 0.18834584951400757, 3.3778669834136963, -0.782076358795166, -0.017996620386838913], "std": [0.019598092883825302, 0.020199956372380257, 0.002793937921524048, 0.44806334376335144, 0.13783954083919525, 0.33868005871772766, 0.0193148422986269, 0.01325288787484169, 0.005222783889621496, 0.0950336903333664, 0.11071344465017319, 0.1361534595489502], "count": [857]}, "action": {"min": [-0.12804780900478363, -0.10760340094566345, 0.11875057220458984, 0.04814782738685608, 0.1566542088985443, 0.16172465682029724, 0.47657203674316406, 0.10995087772607803, -0.13682244718074799, 0.08295869082212448, -0.2474360316991806, -0.37340110540390015, 0.5423454642295837, 0.5910227298736572], "max": [-0.11231483519077301, -0.09291163086891174, 0.13885247707366943, 0.4549594223499298, 0.5999672412872314, 0.759044885635376, 0.8728473782539368, 0.13296809792518616, -0.12047258019447327, 0.0959535539150238, -0.08085948973894119, -0.062225718051195145, 0.7535454034805298, 0.7495850920677185], "mean": [-0.12101384252309799, -0.1006103903055191, 0.12942823767662048, 0.2238992154598236, 0.32702746987342834, 0.5177205204963684, 0.7197027206420898, 0.1169300377368927, -0.13106900453567505, 0.08969297260046005, -0.18068747222423553, -0.2536230683326721, 0.6434946060180664, 0.6945527195930481], "std": [0.003468427574262023, 0.003132518380880356, 0.004060178529471159, 0.10262688249349594, 0.11208590865135193, 0.15288154780864716, 0.10220930725336075, 0.004940886981785297, 0.0041219573467969894, 0.0028318564873188734, 0.02665332704782486, 0.0668870359659195, 0.029321394860744476, 0.02221556194126606], "count": [857]}, "timestamp": {"min": [0.0], "max": [28.533333333333335], "mean": [14.266666666666666], "std": [8.246480730859949], "count": [857]}, "frame_index": {"min": [0], "max": [856], "mean": [428.0], "std": [247.39442192579847], "count": [857]}, "episode_index": {"min": [171], "max": [171], "mean": [171.0], "std": [0.0], "count": [857]}, "index": {"min": [124303], "max": [125159], "mean": [124731.0], "std": [247.39442192579847], "count": [857]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [857]}}} +{"episode_index": 172, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4464463109091875]], [[0.39773125398533393]], [[0.3385792234576757]]], "std": [[[0.2024066211373466]], [[0.18802483233354364]], [[0.18761728465500616]]], "count": [164]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4582549584196823]], [[0.42222941242892825]], [[0.3694771590546788]]], "std": [[[0.2104311812455294]], [[0.177936380221703]], [[0.1867321862807012]]], "count": [164]}, "observation.state": {"min": [0.42555347084999084, -0.15607643127441406, 0.1297314167022705, 1.3973737955093384, -0.8949690461158752, -0.5081242322921753, -0.5603923797607422, -0.42164576053619385, 0.1798667162656784, 3.1778512001037598, -0.9294014573097229, -0.7271392345428467], "max": [0.49886536598205566, -0.08786153048276901, 0.14436134696006775, 2.6899025440216064, 0.2725898325443268, 0.8006828427314758, -0.47670885920524597, -0.2827678620815277, 0.1997155100107193, 4.157941818237305, -0.6162306070327759, 0.3639722168445587], "mean": [0.45798739790916443, -0.12839215993881226, 0.138218492269516, 1.827559232711792, -0.27577245235443115, 0.2961975038051605, -0.529398500919342, -0.3863469064235687, 0.1935303956270218, 3.6609325408935547, -0.7474396824836731, -0.09047019481658936], "std": [0.013829846866428852, 0.013280944898724556, 0.003073756815865636, 0.286083459854126, 0.28564104437828064, 0.34957897663116455, 0.021479077637195587, 0.033179011195898056, 0.005449293181300163, 0.28578928112983704, 0.0727715939283371, 0.2851845324039459], "count": [900]}, "action": {"min": [-0.12368757277727127, -0.10466321557760239, 0.11844036728143692, -0.08447946608066559, 0.11905024945735931, 0.014027747325599194, 0.6515886783599854, 0.10474415868520737, -0.13705812394618988, 0.08416831493377686, -0.32677599787712097, -0.36100947856903076, 0.5515368580818176, 0.49549680948257446], "max": [-0.10968080908060074, -0.09159599244594574, 0.1368749737739563, 0.41512104868888855, 0.553266704082489, 0.5510848164558411, 0.9873434901237488, 0.12100959569215775, -0.11381113529205322, 0.10593795031309128, -0.1825065314769745, -0.038082223385572433, 0.8001680374145508, 0.7180767059326172], "mean": [-0.11841417849063873, -0.09987591207027435, 0.1281413435935974, 0.1523846536874771, 0.2809412181377411, 0.2298808991909027, 0.887660801410675, 0.1101422980427742, -0.12994463741779327, 0.0954270139336586, -0.26038822531700134, -0.25811874866485596, 0.6863237023353577, 0.6122565269470215], "std": [0.0035907099954783916, 0.0024928173515945673, 0.0030515461694449186, 0.1255146563053131, 0.1313980519771576, 0.1180967465043068, 0.10048804432153702, 0.004392555449157953, 0.006178493145853281, 0.004296004772186279, 0.040760964155197144, 0.09109045565128326, 0.07304181903600693, 0.06618034094572067], "count": [900]}, "timestamp": {"min": [0.0], "max": [29.966666666666665], "mean": [14.983333333333333], "std": [8.66024869200691], "count": [900]}, "frame_index": {"min": [0], "max": [899], "mean": [449.5], "std": [259.80746076020733], "count": [900]}, "episode_index": {"min": [172], "max": [172], "mean": [172.0], "std": [0.0], "count": [900]}, "index": {"min": [125160], "max": [126059], "mean": [125609.5], "std": [259.80746076020733], "count": [900]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [900]}}} +{"episode_index": 173, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.471137707481074]], [[0.4235166102412188]], [[0.36509038651431797]]], "std": [[[0.1922127506558697]], [[0.18121681393603453]], [[0.1823069237623431]]], "count": [139]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47824684174229243]], [[0.44407599802510933]], [[0.3928372635225153]]], "std": [[[0.20117479314102588]], [[0.17038476712305217]], [[0.1809306531324625]]], "count": [139]}, "observation.state": {"min": [0.3791784644126892, -0.13976602256298065, 0.12526828050613403, 0.4801899790763855, -1.166602373123169, -0.7028818130493164, -0.5862094759941101, -0.4196764826774597, 0.17676210403442383, 2.984097480773926, -0.8142169117927551, -0.41703447699546814], "max": [0.4718281030654907, -0.061913151293992996, 0.14252319931983948, 2.8190715312957764, 0.2795582711696625, 0.6788622736930847, -0.5203809142112732, -0.291170209646225, 0.19446034729480743, 3.44814133644104, -0.31890958547592163, 0.3383251130580902], "mean": [0.4330046474933624, -0.10282521694898605, 0.13645149767398834, 1.7079914808273315, -0.3153134882450104, 0.08847241848707199, -0.5546133518218994, -0.3789513111114502, 0.18538503348827362, 3.28074312210083, -0.5039559006690979, -0.04203653708100319], "std": [0.017982492223381996, 0.017092086374759674, 0.003441236447542906, 0.5565394759178162, 0.3555375039577484, 0.32655948400497437, 0.01702055335044861, 0.02613753266632557, 0.00391211686655879, 0.10773993283510208, 0.1063750833272934, 0.21617186069488525], "count": [724]}, "action": {"min": [-0.13289520144462585, -0.10139000415802002, 0.1194348856806755, -0.1479862779378891, 0.126982644200325, -0.39038214087486267, 0.5924074649810791, 0.10655029863119125, -0.1325637698173523, 0.08467026799917221, -0.15527042746543884, -0.4744749665260315, 0.515929639339447, 0.6167672872543335], "max": [-0.11601398140192032, -0.0899399146437645, 0.13777485489845276, 0.49337518215179443, 0.7156174182891846, 0.5610102415084839, 0.937041699886322, 0.11984159797430038, -0.11086921393871307, 0.10412108898162842, 0.019287744536995888, -0.09048448503017426, 0.7248789668083191, 0.7836469411849976], "mean": [-0.12289130687713623, -0.09607182443141937, 0.13092917203903198, 0.22388137876987457, 0.3384677767753601, 0.1688336431980133, 0.8369834423065186, 0.11170854419469833, -0.1241040751338005, 0.09148602932691574, -0.07851763069629669, -0.3174390196800232, 0.6348947882652283, 0.6890546679496765], "std": [0.002815517596900463, 0.0026462653186172247, 0.004265168681740761, 0.16182181239128113, 0.15523797273635864, 0.2183838188648224, 0.0910739153623581, 0.0034569574054330587, 0.004712804686278105, 0.004106108099222183, 0.03686307370662689, 0.10199431329965591, 0.05185709893703461, 0.026996249333024025], "count": [724]}, "timestamp": {"min": [0.0], "max": [24.1], "mean": [12.049999999999999], "std": [6.966686602842288], "count": [724]}, "frame_index": {"min": [0], "max": [723], "mean": [361.5], "std": [209.00059808526865], "count": [724]}, "episode_index": {"min": [173], "max": [173], "mean": [173.0], "std": [0.0], "count": [724]}, "index": {"min": [126060], "max": [126783], "mean": [126421.5], "std": [209.00059808526865], "count": [724]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [724]}}} +{"episode_index": 174, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4571116087038382]], [[0.41330634733317195]], [[0.3557007332768498]]], "std": [[[0.19542494204145716]], [[0.18317727416193882]], [[0.18370905931177497]]], "count": [162]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4573632040264665]], [[0.428699712875548]], [[0.3786455458726701]]], "std": [[[0.20771765379640847]], [[0.17613853293118048]], [[0.18609408614943984]]], "count": [162]}, "observation.state": {"min": [0.40259379148483276, -0.13652247190475464, 0.12169051915407181, 0.07758527994155884, -0.8684616088867188, -0.6088999509811401, -0.6339746117591858, -0.4480961263179779, 0.17864561080932617, 3.124380111694336, -0.4086797833442688, -0.8336979746818542], "max": [0.5031823515892029, -0.013954980298876762, 0.1412048637866974, 3.6383302211761475, 0.4722157418727875, 0.5722970962524414, -0.5569403171539307, -0.32328903675079346, 0.19456276297569275, 3.9983677864074707, 0.2501814365386963, -0.48688527941703796], "mean": [0.44791072607040405, -0.10265230387449265, 0.13597123324871063, 1.889139175415039, -0.15963809192180634, -0.007996148429811, -0.5870010256767273, -0.40424033999443054, 0.1873360574245453, 3.6355905532836914, 0.024848122149705887, -0.7025501132011414], "std": [0.02148347534239292, 0.02495395950973034, 0.0032425718382000923, 0.8123283386230469, 0.34079837799072266, 0.28347399830818176, 0.017336415126919746, 0.03557610884308815, 0.004132125061005354, 0.19782517850399017, 0.21350501477718353, 0.04916110634803772], "count": [890]}, "action": {"min": [-0.127605140209198, -0.10285169631242752, 0.1166774332523346, -0.12174343317747116, -0.07118801772594452, -0.5824228525161743, 0.29625189304351807, 0.10163692384958267, -0.13737358152866364, 0.07509162276983261, 0.01238622423261404, -0.29432204365730286, 0.7035040855407715, 0.27912256121635437], "max": [-0.10722442716360092, -0.07900720834732056, 0.13609448075294495, 0.5612829923629761, 0.6385383009910583, 0.7831016182899475, 0.9557109475135803, 0.11574286967515945, -0.11814557015895844, 0.09649866074323654, 0.25896936655044556, -0.1255963146686554, 0.9246127605438232, 0.6600387692451477], "mean": [-0.12133988738059998, -0.09520319104194641, 0.13036467134952545, 0.2551071047782898, 0.2565009891986847, 0.21426284313201904, 0.7985835671424866, 0.10840703547000885, -0.13068857789039612, 0.08424878865480423, 0.13571849465370178, -0.22904647886753082, 0.8537925481796265, 0.42028725147247314], "std": [0.003945831209421158, 0.004955438897013664, 0.002939194440841675, 0.18450993299484253, 0.144208163022995, 0.3384844660758972, 0.12677788734436035, 0.004196330904960632, 0.005601756740361452, 0.00564992893487215, 0.049451105296611786, 0.05019688606262207, 0.06372349709272385, 0.12036731839179993], "count": [890]}, "timestamp": {"min": [0.0], "max": [29.633333333333333], "mean": [14.816666666666665], "std": [8.564023587076345], "count": [890]}, "frame_index": {"min": [0], "max": [889], "mean": [444.5], "std": [256.92070761229036], "count": [890]}, "episode_index": {"min": [174], "max": [174], "mean": [174.0], "std": [0.0], "count": [890]}, "index": {"min": [126784], "max": [127673], "mean": [127228.5], "std": [256.92070761229036], "count": [890]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [890]}}} +{"episode_index": 175, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48203543093944407]], [[0.4328570687980681]], [[0.37356452607816887]]], "std": [[[0.17923560996091664]], [[0.16874020688770294]], [[0.1707531147576431]]], "count": [166]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4934704996456414]], [[0.45612984618211405]], [[0.4043090335196997]]], "std": [[[0.19221805515224696]], [[0.15944624175070085]], [[0.17111533124156758]]], "count": [166]}, "observation.state": {"min": [0.3970257043838501, -0.19628870487213135, 0.12888103723526, 1.4472800493240356, -0.9690260887145996, -1.0305452346801758, -0.5998632907867432, -0.3900057375431061, 0.1668001264333725, 4.005706787109375, -0.502002477645874, -0.520944356918335], "max": [0.5026726722717285, -0.07085607200860977, 0.14440152049064636, 3.144510507583618, -0.17147880792617798, 0.536925196647644, -0.4988113343715668, -0.25141358375549316, 0.19613386690616608, 4.376858234405518, -0.10138428211212158, 0.058542679995298386], "mean": [0.43573686480522156, -0.15223899483680725, 0.13884897530078888, 2.275273561477661, -0.5628214478492737, 0.02055109478533268, -0.5467782616615295, -0.3219684362411499, 0.18796423077583313, 4.191524028778076, -0.30093103647232056, -0.2501898407936096], "std": [0.024870116263628006, 0.030814120545983315, 0.0034002915490418673, 0.34545910358428955, 0.14449679851531982, 0.34716078639030457, 0.02207573875784874, 0.03427421301603317, 0.0041145565919578075, 0.08916599303483963, 0.0896754041314125, 0.17451593279838562], "count": [914]}, "action": {"min": [-0.13011355698108673, -0.11073566973209381, 0.1183936819434166, 0.04637819901108742, 0.12942732870578766, 0.1193535327911377, 0.3771112561225891, 0.09976569563150406, -0.13174903392791748, 0.0867229774594307, -0.3417009711265564, -0.4349823296070099, 0.7674037218093872, 0.24666054546833038], "max": [-0.10668540000915527, -0.08671247959136963, 0.1359686404466629, 0.5998541116714478, 0.6293054819107056, 0.6427223682403564, 0.9123874306678772, 0.12113501876592636, -0.10745108872652054, 0.10747026652097702, -0.1613621711730957, -0.13793089985847473, 0.9139020442962646, 0.4223232865333557], "mean": [-0.12087799608707428, -0.10222256183624268, 0.1275467425584793, 0.24373474717140198, 0.31998929381370544, 0.4436895251274109, 0.7698372006416321, 0.10855306684970856, -0.12133818119764328, 0.09816984087228775, -0.2396044284105301, -0.3015422821044922, 0.8473447561264038, 0.34823864698410034], "std": [0.004977008327841759, 0.005135638173669577, 0.003032336477190256, 0.12668904662132263, 0.102284274995327, 0.11465322226285934, 0.0950470045208931, 0.004635413642972708, 0.005285110790282488, 0.004665234591811895, 0.04563380032777786, 0.0858115553855896, 0.03408627584576607, 0.04232443869113922], "count": [914]}, "timestamp": {"min": [0.0], "max": [30.433333333333334], "mean": [15.216666666666667], "std": [8.794963836701598], "count": [914]}, "frame_index": {"min": [0], "max": [913], "mean": [456.5], "std": [263.8489151010479], "count": [914]}, "episode_index": {"min": [175], "max": [175], "mean": [175.0], "std": [0.0], "count": [914]}, "index": {"min": [127674], "max": [128587], "mean": [128130.5], "std": [263.8489151010479], "count": [914]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [914]}}} +{"episode_index": 176, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4529930441352168]], [[0.41042802726825495]], [[0.35266351113922273]]], "std": [[[0.19597228252545565]], [[0.1829705852774566]], [[0.1819464173753166]]], "count": [155]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44717710309930425]], [[0.42101735540094176]], [[0.3700414663714948]]], "std": [[[0.20894284692162618]], [[0.1761152078921464]], [[0.1844346003779288]]], "count": [155]}, "observation.state": {"min": [0.38412871956825256, -0.1660773754119873, 0.12827956676483154, 1.0522241592407227, -0.8694180250167847, -0.7092150449752808, -0.6518449783325195, -0.44812703132629395, 0.18335114419460297, 3.4343018531799316, -0.41400858759880066, -1.0825433731079102], "max": [0.46361109614372253, -0.0571327805519104, 0.14388300478458405, 3.246419668197632, 0.05889033153653145, 0.5127851366996765, -0.5614812970161438, -0.33756065368652344, 0.19518238306045532, 4.539577484130859, 0.5446330904960632, -0.4329394996166229], "mean": [0.42640018463134766, -0.12088474631309509, 0.13646656274795532, 2.022972345352173, -0.4614466428756714, -5.124610834172927e-05, -0.6133019328117371, -0.3899078965187073, 0.1879522055387497, 3.971268892288208, 0.18461471796035767, -0.865185022354126], "std": [0.016602834686636925, 0.02242252044379711, 0.0033382216934114695, 0.5424939393997192, 0.2460545301437378, 0.2812122106552124, 0.028412148356437683, 0.0349680557847023, 0.002134193666279316, 0.3557996451854706, 0.23990435898303986, 0.20157107710838318], "count": [837]}, "action": {"min": [-0.13128302991390228, -0.10413037240505219, 0.12149272114038467, 0.08200772851705551, 0.0010650067124515772, -0.15116900205612183, 0.5616098642349243, 0.10024487227201462, -0.13577023148536682, 0.0718294233083725, -0.10015622526407242, -0.2506677210330963, 0.7626835703849792, -0.018801249563694], "max": [-0.1138598844408989, -0.08669719099998474, 0.13498450815677643, 0.47870951890945435, 0.5883432626724243, 0.7423049211502075, 0.9602082967758179, 0.113579660654068, -0.11809524148702621, 0.09703830629587173, 0.21880346536636353, -0.028016241267323494, 0.9888573884963989, 0.6282350420951843], "mean": [-0.12330261617898941, -0.09822456538677216, 0.12922587990760803, 0.26813212037086487, 0.3350595533847809, 0.3065481185913086, 0.7941500544548035, 0.10513914376497269, -0.1287885308265686, 0.08438252657651901, 0.08598440885543823, -0.1302385926246643, 0.9275934100151062, 0.2624806761741638], "std": [0.004722472745925188, 0.0038959921803325415, 0.0026273576077073812, 0.09400307387113571, 0.1635858118534088, 0.21312081813812256, 0.10088027268648148, 0.0034340769052505493, 0.004679311066865921, 0.006940948776900768, 0.0976305902004242, 0.05529763922095299, 0.056471243500709534, 0.17475834488868713], "count": [837]}, "timestamp": {"min": [0.0], "max": [27.866666666666667], "mean": [13.933333333333334], "std": [8.054030506982663], "count": [837]}, "frame_index": {"min": [0], "max": [836], "mean": [418.0], "std": [241.62091520947988], "count": [837]}, "episode_index": {"min": [176], "max": [176], "mean": [176.0], "std": [0.0], "count": [837]}, "index": {"min": [128588], "max": [129424], "mean": [129006.0], "std": [241.62091520947988], "count": [837]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [837]}}} +{"episode_index": 177, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45264596367364535]], [[0.4071342563466266]], [[0.34798883005370895]]], "std": [[[0.1951409403588006]], [[0.1822061105163214]], [[0.18186976259343784]]], "count": [187]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45165536565190545]], [[0.4208216493073759]], [[0.36774543444828917]]], "std": [[[0.20386157565400415]], [[0.17223890858923943]], [[0.18144754602156818]]], "count": [187]}, "observation.state": {"min": [0.3963460922241211, -0.15716533362865448, 0.1275406777858734, 0.8328884840011597, -1.00701105594635, -0.9181006550788879, -0.601863443851471, -0.421066552400589, 0.18097764253616333, 2.7578420639038086, -0.7452154755592346, 0.004153070040047169], "max": [0.46322494745254517, -0.08245562016963959, 0.14348764717578888, 4.23280143737793, 1.2436654567718506, 0.498078852891922, -0.5158167481422424, -0.30833011865615845, 0.20059309899806976, 3.3554584980010986, -0.16013798117637634, 0.4442262053489685], "mean": [0.42651665210723877, -0.11666198074817657, 0.13821732997894287, 2.51300048828125, -0.3070649206638336, -0.34212377667427063, -0.5674417614936829, -0.3854820430278778, 0.19236108660697937, 3.0993130207061768, -0.41451019048690796, 0.18671275675296783], "std": [0.015415257774293423, 0.015593213029205799, 0.0026740822941064835, 0.7889682054519653, 0.3988783657550812, 0.28715503215789795, 0.02323004975914955, 0.02728591300547123, 0.0053949011489748955, 0.11809531599283218, 0.14299121499061584, 0.08567599952220917], "count": [1073]}, "action": {"min": [-0.1327812224626541, -0.10830481350421906, 0.1171741709113121, 0.08076092600822449, -0.2136193811893463, -0.32373642921447754, -0.16447682678699493, 0.10016686469316483, -0.14299021661281586, 0.08260946720838547, -0.26423704624176025, -0.48587915301322937, 0.4403534531593323, 0.6346734762191772], "max": [-0.11487773060798645, -0.0891578197479248, 0.13649193942546844, 0.7342324256896973, 0.6035684943199158, 0.8327512741088867, 0.9839066863059998, 0.12148412317037582, -0.11741270869970322, 0.10577957332134247, 0.04569806158542633, -0.29392296075820923, 0.6427246332168579, 0.8171746730804443], "mean": [-0.12330705672502518, -0.09862537682056427, 0.13151584565639496, 0.3906721770763397, 0.27727705240249634, 0.43593934178352356, 0.6362725496292114, 0.10738632827997208, -0.13019590079784393, 0.09308507293462753, -0.07856404781341553, -0.4017847776412964, 0.5570206046104431, 0.7150804400444031], "std": [0.00326198129914701, 0.0031779634300619364, 0.0031676413491368294, 0.11572390049695969, 0.1776527613401413, 0.28937166929244995, 0.2166033536195755, 0.004308598581701517, 0.006108997855335474, 0.00507532199844718, 0.06308014690876007, 0.055344223976135254, 0.04050615429878235, 0.045845191925764084], "count": [1073]}, "timestamp": {"min": [0.0], "max": [35.733333333333334], "mean": [17.866666666666664], "std": [10.324942830081165], "count": [1073]}, "frame_index": {"min": [0], "max": [1072], "mean": [536.0], "std": [309.74828490243493], "count": [1073]}, "episode_index": {"min": [177], "max": [177], "mean": [177.0], "std": [0.0], "count": [1073]}, "index": {"min": [129425], "max": [130497], "mean": [129961.0], "std": [309.74828490243493], "count": [1073]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1073]}}} +{"episode_index": 178, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4562611132059662]], [[0.4109740115775655]], [[0.3511208539327412]]], "std": [[[0.19003754326297911]], [[0.17769636425707688]], [[0.17748345728082152]]], "count": [156]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45468836238198984]], [[0.42417106062510473]], [[0.3709620237696218]]], "std": [[[0.20213389561111386]], [[0.17054157173771886]], [[0.17931400009115092]]], "count": [156]}, "observation.state": {"min": [0.3929635286331177, -0.17073418200016022, 0.127184197306633, 1.4848145246505737, -1.041580080986023, -0.8695099949836731, -0.6067519783973694, -0.41005393862724304, 0.18032300472259521, 2.699967622756958, -0.7683070302009583, -0.13197484612464905], "max": [0.5052984356880188, -0.08342096209526062, 0.14517411589622498, 3.549421787261963, 0.17052234709262848, 0.39457306265830994, -0.5373246073722839, -0.3226326107978821, 0.1983570009469986, 3.3049232959747314, -0.08143535256385803, 0.6239059567451477], "mean": [0.4333861172199249, -0.12970365583896637, 0.1378641277551651, 2.3780570030212402, -0.5301867723464966, -0.22193756699562073, -0.5687308311462402, -0.3737645745277405, 0.19232134521007538, 3.05850887298584, -0.391525536775589, 0.16441845893859863], "std": [0.029410747811198235, 0.02307870239019394, 0.003323387587442994, 0.4350793957710266, 0.19145165383815765, 0.31473490595817566, 0.01721329800784588, 0.022140737622976303, 0.004839820321649313, 0.13100576400756836, 0.14280609786510468, 0.1627827286720276], "count": [840]}, "action": {"min": [-0.13025061786174774, -0.10713572055101395, 0.12029514461755753, 0.10988679528236389, 0.04604354128241539, 0.12164170295000076, 0.3072488605976105, 0.10078629851341248, -0.13711702823638916, 0.08643073588609695, -0.1648188978433609, -0.5742616653442383, 0.3418572247028351, 0.6602492928504944], "max": [-0.11227573454380035, -0.09025222808122635, 0.135692298412323, 0.5931161046028137, 0.646126389503479, 0.7832178473472595, 0.8840568661689758, 0.11344479769468307, -0.11496494710445404, 0.1006452888250351, 0.01086927019059658, -0.22587953507900238, 0.6663709878921509, 0.8072919845581055], "mean": [-0.12179851531982422, -0.09863926470279694, 0.12966227531433105, 0.323624849319458, 0.3490867018699646, 0.4437069892883301, 0.7194715142250061, 0.1068149283528328, -0.12893366813659668, 0.09441691637039185, -0.05787985026836395, -0.39299246668815613, 0.5449686050415039, 0.7290424704551697], "std": [0.004829720593988895, 0.004097696393728256, 0.003743106033653021, 0.11222603917121887, 0.10214349627494812, 0.14431516826152802, 0.12262167781591415, 0.00351174408569932, 0.0062571619637310505, 0.0031670192256569862, 0.04328767582774162, 0.0807146206498146, 0.0637621209025383, 0.03548022359609604], "count": [840]}, "timestamp": {"min": [0.0], "max": [27.966666666666665], "mean": [13.983333333333333], "std": [8.08289804097149], "count": [840]}, "frame_index": {"min": [0], "max": [839], "mean": [419.5], "std": [242.48694122914466], "count": [840]}, "episode_index": {"min": [178], "max": [178], "mean": [178.0], "std": [0.0], "count": [840]}, "index": {"min": [130498], "max": [131337], "mean": [130917.5], "std": [242.48694122914466], "count": [840]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [840]}}} +{"episode_index": 179, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46865740192422983]], [[0.42273353036218214]], [[0.3628163939699668]]], "std": [[[0.18421566553326219]], [[0.17289180471772295]], [[0.174181981967075]]], "count": [149]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4733893037826615]], [[0.44049882294453946]], [[0.38771392434677077]]], "std": [[[0.1934636133315653]], [[0.16209051148671472]], [[0.17250120128107196]]], "count": [149]}, "observation.state": {"min": [0.3665826916694641, -0.17086546123027802, 0.1250893920660019, 0.712945818901062, -0.9227063059806824, -0.7055749893188477, -0.5836455225944519, -0.4014662802219391, 0.17194120585918427, 3.5213232040405273, -0.6643266677856445, -0.6162317991256714], "max": [0.46147188544273376, -0.1067127212882042, 0.14156004786491394, 3.5653581619262695, 0.07952243834733963, 0.9935494661331177, -0.48902660608291626, -0.3148480951786041, 0.19827143847942352, 4.269287109375, -0.011887379921972752, -0.018299339339137077], "mean": [0.42650434374809265, -0.13577689230442047, 0.13691812753677368, 2.011380910873413, -0.47999078035354614, 0.01739647425711155, -0.5550485849380493, -0.3659762144088745, 0.1890798956155777, 3.790972948074341, -0.2997875213623047, -0.3302440047264099], "std": [0.02394278161227703, 0.014219767414033413, 0.002688279841095209, 0.6659732460975647, 0.23980459570884705, 0.39454543590545654, 0.02075592428445816, 0.0278448686003685, 0.005303508602082729, 0.1830781251192093, 0.14043045043945312, 0.16393055021762848], "count": [794]}, "action": {"min": [-0.13360059261322021, -0.10454043000936508, 0.11405021697282791, -0.1398864984512329, 0.08008042722940445, -0.34874746203422546, 0.305653840303421, 0.10048876702785492, -0.13319841027259827, 0.0878206193447113, -0.20347119867801666, -0.4222148358821869, 0.7197235822677612, 0.2741832137107849], "max": [-0.11432170867919922, -0.09486287087202072, 0.13478998839855194, 0.5225223302841187, 0.5828927159309387, 0.7970840334892273, 0.944965660572052, 0.1257207840681076, -0.11211925745010376, 0.1014753058552742, -0.018181994557380676, -0.07689549773931503, 0.9397900104522705, 0.6556111574172974], "mean": [-0.12339424341917038, -0.1000850573182106, 0.12842309474945068, 0.23238219320774078, 0.3446751832962036, 0.3106907308101654, 0.7804480195045471, 0.10874060541391373, -0.12681123614311218, 0.09336946159601212, -0.09593571722507477, -0.2879026234149933, 0.803312361240387, 0.4935711622238159], "std": [0.004299940541386604, 0.0024377587251365185, 0.0033204348292201757, 0.13677549362182617, 0.10187163203954697, 0.2806183099746704, 0.11721451580524445, 0.004648944828659296, 0.00576473493129015, 0.003815131029114127, 0.03328663483262062, 0.0847504660487175, 0.05768254026770592, 0.08583202213048935], "count": [794]}, "timestamp": {"min": [0.0], "max": [26.433333333333334], "mean": [13.216666666666669], "std": [7.6402625027620035], "count": [794]}, "frame_index": {"min": [0], "max": [793], "mean": [396.5], "std": [229.2078750828601], "count": [794]}, "episode_index": {"min": [179], "max": [179], "mean": [179.0], "std": [0.0], "count": [794]}, "index": {"min": [131338], "max": [132131], "mean": [131734.5], "std": [229.2078750828601], "count": [794]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [794]}}} +{"episode_index": 180, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46943506158873805]], [[0.4223200980392157]], [[0.36307329059829063]]], "std": [[[0.18632363489925238]], [[0.17570179403240732]], [[0.17657243254986923]]], "count": [130]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4752479554214848]], [[0.44155578389475447]], [[0.3891017994804759]]], "std": [[[0.19536226979351629]], [[0.16436543192903358]], [[0.17485024428801657]]], "count": [130]}, "observation.state": {"min": [0.3735717535018921, -0.16322767734527588, 0.12883436679840088, 1.4028257131576538, -0.9050801992416382, -0.7652121186256409, -0.5904569625854492, -0.4257851541042328, 0.168074369430542, 3.636862277984619, -0.44748455286026, -0.7463369369506836], "max": [0.4642752408981323, -0.058576930314302444, 0.14440152049064636, 3.7029147148132324, 0.3044261336326599, 0.7140871286392212, -0.5001859664916992, -0.2867218852043152, 0.19458739459514618, 4.062952518463135, 0.12379267066717148, -0.23628200590610504], "mean": [0.43019866943359375, -0.12093566358089447, 0.13736720383167267, 2.311384916305542, -0.45578017830848694, -0.12342537939548492, -0.547446072101593, -0.37134918570518494, 0.1864127516746521, 3.883720874786377, -0.174674853682518, -0.5421718955039978], "std": [0.02386566437780857, 0.027648497372865677, 0.0033024149015545845, 0.5390899777412415, 0.25147292017936707, 0.3480786979198456, 0.024761701002717018, 0.03751787170767784, 0.006465489510446787, 0.10411590337753296, 0.15176621079444885, 0.12089331448078156], "count": [659]}, "action": {"min": [-0.13370031118392944, -0.10772988945245743, 0.1208905279636383, -0.02872336283326149, 0.007915601134300232, 0.04878562316298485, 0.2231501191854477, 0.10545758157968521, -0.14136774837970734, 0.08149543404579163, -0.180482879281044, -0.35731589794158936, 0.803287923336029, 0.34770187735557556], "max": [-0.11346369981765747, -0.09063396602869034, 0.13812635838985443, 0.5628786087036133, 0.602022647857666, 0.8012235760688782, 0.9299391508102417, 0.1263929009437561, -0.11149708926677704, 0.1025586798787117, 0.1655540019273758, -0.09246667474508286, 0.9155353307723999, 0.5372162461280823], "mean": [-0.12257848680019379, -0.09803297370672226, 0.1301496922969818, 0.30342623591423035, 0.3155154287815094, 0.4244743287563324, 0.7363529205322266, 0.11176316440105438, -0.12685397267341614, 0.09131874144077301, -0.033609163016080856, -0.23152115941047668, 0.8644740581512451, 0.4283965826034546], "std": [0.00485649099573493, 0.004019849002361298, 0.004303829278796911, 0.1422995626926422, 0.12404414266347885, 0.17653806507587433, 0.13851577043533325, 0.004887675866484642, 0.007613548077642918, 0.0056531657464802265, 0.08990190923213959, 0.061856113374233246, 0.021088382229208946, 0.04555284604430199], "count": [659]}, "timestamp": {"min": [0.0], "max": [21.933333333333334], "mean": [10.966666666666667], "std": [6.341223155757185], "count": [659]}, "frame_index": {"min": [0], "max": [658], "mean": [329.0], "std": [190.23669467271554], "count": [659]}, "episode_index": {"min": [180], "max": [180], "mean": [180.0], "std": [0.0], "count": [659]}, "index": {"min": [132132], "max": [132790], "mean": [132461.0], "std": [190.23669467271554], "count": [659]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [659]}}} +{"episode_index": 181, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4656330840315246]], [[0.41953730205728823]], [[0.35929466596481996]]], "std": [[[0.18490025644191102]], [[0.17410023390383236]], [[0.175634137325245]]], "count": [149]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47237653894518283]], [[0.43837627209720575]], [[0.3851900012428536]]], "std": [[[0.19554574209657202]], [[0.16365743033278457]], [[0.1746931294706916]]], "count": [149]}, "observation.state": {"min": [0.3979755938053131, -0.18050344288349152, 0.131337508559227, 1.5990954637527466, -0.9294014573097229, -0.3998948633670807, -0.6290938258171082, -0.44764047861099243, 0.17698507010936737, 3.128783702850342, -0.6230624318122864, -0.45158129930496216], "max": [0.4921543300151825, -0.10555431246757507, 0.14422392845153809, 3.583810806274414, -0.06777170300483704, 0.5135389566421509, -0.46639901399612427, -0.31447741389274597, 0.2030625343322754, 4.031708717346191, -0.3445972502231598, 0.2237025499343872], "mean": [0.4424823224544525, -0.14650017023086548, 0.13886655867099762, 2.284958600997925, -0.4562950134277344, 0.04492764547467232, -0.5439033508300781, -0.40897002816200256, 0.18966957926750183, 3.617055892944336, -0.4381140172481537, -0.11463852971792221], "std": [0.02223118022084236, 0.024971619248390198, 0.0033593857660889626, 0.357339471578598, 0.20392325520515442, 0.25033167004585266, 0.03901129961013794, 0.03192070871591568, 0.005834548734128475, 0.23181957006454468, 0.0768129751086235, 0.194514200091362], "count": [794]}, "action": {"min": [-0.12754401564598083, -0.10957421362400055, 0.12208113074302673, 0.0745372399687767, 0.009565595537424088, 0.1753084361553192, 0.4387609660625458, 0.08838396519422531, -0.1384955197572708, 0.08107545226812363, -0.2754324972629547, -0.5015752911567688, 0.5767747163772583, 0.38765203952789307], "max": [-0.11130249500274658, -0.09394392371177673, 0.13248500227928162, 0.4225482940673828, 0.5627050399780273, 0.8529913425445557, 0.9438708424568176, 0.13050130009651184, -0.11952614784240723, 0.10158456116914749, 0.05778959020972252, -0.20925043523311615, 0.7895060777664185, 0.7058347463607788], "mean": [-0.12021145969629288, -0.10195355117321014, 0.12794546782970428, 0.255047470331192, 0.26978880167007446, 0.4257678985595703, 0.7936887145042419, 0.111269511282444, -0.1315782368183136, 0.08930196613073349, -0.12207168340682983, -0.3533664643764496, 0.7194222211837769, 0.5593072772026062], "std": [0.004462454002350569, 0.004675799980759621, 0.002394150011241436, 0.08297675848007202, 0.13781040906906128, 0.12580369412899017, 0.09612935036420822, 0.008445088751614094, 0.005216533318161964, 0.0042997258715331554, 0.1102711483836174, 0.08912516385316849, 0.037427619099617004, 0.09129326790571213], "count": [794]}, "timestamp": {"min": [0.0], "max": [26.433333333333334], "mean": [13.216666666666669], "std": [7.6402625027620035], "count": [794]}, "frame_index": {"min": [0], "max": [793], "mean": [396.5], "std": [229.2078750828601], "count": [794]}, "episode_index": {"min": [181], "max": [181], "mean": [181.0], "std": [0.0], "count": [794]}, "index": {"min": [132791], "max": [133584], "mean": [133187.5], "std": [229.2078750828601], "count": [794]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [794]}}} +{"episode_index": 182, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45492737246413717]], [[0.40350437321393207]], [[0.3442930053334465]]], "std": [[[0.20300542098955376]], [[0.18687387621194299]], [[0.185038347381429]]], "count": [154]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45981450004244123]], [[0.4225595131992191]], [[0.3685981912967207]]], "std": [[[0.21001818326833357]], [[0.1734227013745301]], [[0.1805375578254468]]], "count": [154]}, "observation.state": {"min": [0.39222216606140137, -0.1639072746038437, 0.12943066656589508, 0.9888977408409119, -1.0419899225234985, -0.7997294068336487, -0.5921173691749573, -0.44576385617256165, 0.17101046442985535, 3.071957588195801, -0.749451220035553, -0.20719048380851746], "max": [0.4961160719394684, -0.0899466723203659, 0.14408522844314575, 3.1692538261413574, 0.3230086863040924, 0.5495988726615906, -0.5003017783164978, -0.32814663648605347, 0.19988662004470825, 3.750304698944092, -0.19006137549877167, 0.317854106426239], "mean": [0.43698760867118835, -0.1255817711353302, 0.13735216856002808, 1.9291536808013916, -0.3387710750102997, -0.061143308877944946, -0.56100994348526, -0.3959828317165375, 0.191389799118042, 3.349858283996582, -0.41874971985816956, -0.002264911774545908], "std": [0.022050751373171806, 0.01672028750181198, 0.0030459812842309475, 0.627804160118103, 0.3163817524909973, 0.3390531539916992, 0.020353354513645172, 0.03060987964272499, 0.005350796040147543, 0.14793190360069275, 0.13098999857902527, 0.14507253468036652], "count": [830]}, "action": {"min": [-0.1303391456604004, -0.1051132082939148, 0.12187036126852036, 0.026414256542921066, 0.028523404151201248, -0.23542773723602295, 0.4596959352493286, 0.10048549622297287, -0.14191599190235138, 0.07675297558307648, -0.3063744306564331, -0.48925718665122986, 0.5702716112136841, 0.5572003126144409], "max": [-0.10855673253536224, -0.09246036410331726, 0.13721036911010742, 0.532795786857605, 0.6225569248199463, 0.6816116571426392, 0.994604229927063, 0.1258663684129715, -0.11891729384660721, 0.10038477182388306, 0.06711075454950333, -0.2260914146900177, 0.7430492639541626, 0.7388209104537964], "mean": [-0.12217062711715698, -0.09947850555181503, 0.12918001413345337, 0.28506073355674744, 0.32153716683387756, 0.23358125984668732, 0.7980644702911377, 0.10827352851629257, -0.13081330060958862, 0.0911397933959961, -0.08174259215593338, -0.3776746392250061, 0.6482067704200745, 0.6420142650604248], "std": [0.005038391333073378, 0.0027776877395808697, 0.0031192030292004347, 0.12056943774223328, 0.15339170396327972, 0.2629640996456146, 0.12911193072795868, 0.004577102605253458, 0.0062439595349133015, 0.004754961468279362, 0.1006435826420784, 0.07099425047636032, 0.028006047010421753, 0.04870447516441345], "count": [830]}, "timestamp": {"min": [0.0], "max": [27.633333333333333], "mean": [13.816666666666665], "std": [7.98667292709827], "count": [830]}, "frame_index": {"min": [0], "max": [829], "mean": [414.5], "std": [239.6001878129481], "count": [830]}, "episode_index": {"min": [182], "max": [182], "mean": [182.0], "std": [0.0], "count": [830]}, "index": {"min": [133585], "max": [134414], "mean": [133999.5], "std": [239.6001878129481], "count": [830]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [830]}}} +{"episode_index": 183, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45951906518326285]], [[0.41430823681596823]], [[0.3579725245899013]]], "std": [[[0.19622934814604406]], [[0.1829718257194705]], [[0.18285291818711846]]], "count": [136]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4615830990484429]], [[0.4288854066544918]], [[0.37807339725105726]]], "std": [[[0.20919046842209885]], [[0.17430598296141317]], [[0.18297283871356393]]], "count": [136]}, "observation.state": {"min": [0.3716874122619629, -0.21462246775627136, 0.1352250874042511, 1.4397311210632324, -1.1689252853393555, -0.5487391352653503, -0.6082733273506165, -0.42427149415016174, 0.18183837831020355, 3.024358034133911, -0.7058641314506531, -0.335367888212204], "max": [0.46761149168014526, -0.1156788170337677, 0.1479416936635971, 2.9109158515930176, -0.15644879639148712, 1.0992425680160522, -0.4809640944004059, -0.31331127882003784, 0.19752219319343567, 3.469320058822632, -0.2889862060546875, 0.40579867362976074], "mean": [0.4159957766532898, -0.15823593735694885, 0.1422199308872223, 2.188227415084839, -0.7589425444602966, 0.23595234751701355, -0.5531967282295227, -0.3872321844100952, 0.1906455159187317, 3.248649835586548, -0.42250707745552063, 0.034944966435432434], "std": [0.02578960359096527, 0.021412348374724388, 0.002842865651473403, 0.44158935546875, 0.24933454394340515, 0.5618064403533936, 0.023925282061100006, 0.03301955759525299, 0.0039766752161085606, 0.07477927207946777, 0.11475519090890884, 0.18680717051029205], "count": [700]}, "action": {"min": [-0.12954466044902802, -0.11168715357780457, 0.11745769530534744, -0.18375208973884583, 0.1450265645980835, 0.20817051827907562, 0.5935863256454468, 0.10398220270872116, -0.13782474398612976, 0.0856749638915062, -0.21571286022663116, -0.44567447900772095, 0.5159438252449036, 0.6358751654624939], "max": [-0.11213959008455276, -0.09886490553617477, 0.1388125866651535, 0.34366536140441895, 0.5717117786407471, 0.619713544845581, 0.9513961672782898, 0.1257772445678711, -0.11435418576002121, 0.1004374772310257, 0.03231488913297653, -0.23810897767543793, 0.7107105255126953, 0.7410646677017212], "mean": [-0.12256956100463867, -0.10441971570253372, 0.12991809844970703, 0.09400325268507004, 0.380768746137619, 0.4541352689266205, 0.7607122659683228, 0.10982433706521988, -0.12961725890636444, 0.0928235724568367, -0.06654949486255646, -0.3690056800842285, 0.6217710375785828, 0.6778336763381958], "std": [0.004199415445327759, 0.0036506173200905323, 0.00474367244169116, 0.1581689715385437, 0.10114998370409012, 0.11683855205774307, 0.11115989834070206, 0.004422703757882118, 0.006876962259411812, 0.0036796084605157375, 0.07247699052095413, 0.07480192929506302, 0.04540087655186653, 0.020948391407728195], "count": [700]}, "timestamp": {"min": [0.0], "max": [23.3], "mean": [11.65], "std": [6.735746267324637], "count": [700]}, "frame_index": {"min": [0], "max": [699], "mean": [349.5], "std": [202.0723880197391], "count": [700]}, "episode_index": {"min": [183], "max": [183], "mean": [183.0], "std": [0.0], "count": [700]}, "index": {"min": [134415], "max": [135114], "mean": [134764.5], "std": [202.0723880197391], "count": [700]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [700]}}} +{"episode_index": 184, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4479026279304917]], [[0.4046825843575069]], [[0.3485010841125392]]], "std": [[[0.19791580247205215]], [[0.18385991264166004]], [[0.18287876015023816]]], "count": [209]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4474386694603413]], [[0.4182616919973731]], [[0.3679126924560361]]], "std": [[[0.21242764110341839]], [[0.17791641037584294]], [[0.18532328817655497]]], "count": [209]}, "observation.state": {"min": [0.3429897427558899, -0.20675300061702728, 0.13030695915222168, 1.130648136138916, -1.1865513324737549, -1.1225171089172363, -0.6376506090164185, -0.4452464282512665, 0.1729043573141098, 2.9172065258026123, -0.43751007318496704, -0.8252013325691223], "max": [0.5066035389900208, -0.05919475108385086, 0.14784446358680725, 3.3476998805999756, 0.18322955071926117, 0.775847852230072, -0.5226899981498718, -0.2892163395881653, 0.2016223520040512, 3.5202748775482178, 0.36358973383903503, 0.6350198984146118], "mean": [0.42507490515708923, -0.1474328339099884, 0.140516996383667, 2.1491544246673584, -0.700989305973053, -0.15669970214366913, -0.5742983818054199, -0.38882768154144287, 0.19088667631149292, 3.294679641723633, -0.005116023123264313, -0.36759838461875916], "std": [0.03324073553085327, 0.02524084784090519, 0.0038238319102674723, 0.4434409439563751, 0.39624127745628357, 0.43823206424713135, 0.02332371287047863, 0.03223250433802605, 0.005303335841745138, 0.16854338347911835, 0.18197041749954224, 0.3665854334831238], "count": [1248]}, "action": {"min": [-0.13431483507156372, -0.10950466245412827, 0.12010866403579712, -0.09438157081604004, 0.016667447984218597, -0.11090396344661713, 0.26071897149086, 0.09682698547840118, -0.14607660472393036, 0.07803229987621307, -0.09396136552095413, -0.6227871179580688, -0.522855818271637, -0.6330921649932861], "max": [-0.10632381588220596, -0.08789045363664627, 0.13611048460006714, 0.645031750202179, 0.6602616310119629, 0.7324234843254089, 0.9534769654273987, 0.12241274118423462, -0.11002014577388763, 0.10118915885686874, 0.2906939387321472, 0.6463508605957031, 0.8608484268188477, 0.7684695720672607], "mean": [-0.12165255099534988, -0.10211406648159027, 0.12879452109336853, 0.27180105447769165, 0.4379011392593384, 0.35298964381217957, 0.7188957929611206, 0.10759321600198746, -0.1319446712732315, 0.08907941728830338, 0.15150107443332672, -0.34316232800483704, 0.7004324197769165, 0.531143069267273], "std": [0.005239167250692844, 0.004883855581283569, 0.0027848558966070414, 0.13900727033615112, 0.18701675534248352, 0.15175825357437134, 0.1250045746564865, 0.004521098453551531, 0.006498517468571663, 0.0053393542766571045, 0.0886121541261673, 0.14865463972091675, 0.1682642698287964, 0.16823917627334595], "count": [1248]}, "timestamp": {"min": [0.0], "max": [41.56666666666667], "mean": [20.78333333333333], "std": [12.00888174397353], "count": [1248]}, "frame_index": {"min": [0], "max": [1247], "mean": [623.5], "std": [360.26645231920594], "count": [1248]}, "episode_index": {"min": [184], "max": [184], "mean": [184.0], "std": [0.0], "count": [1248]}, "index": {"min": [135115], "max": [136362], "mean": [135738.5], "std": [360.26645231920594], "count": [1248]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1248]}}} +{"episode_index": 185, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4599109003504784]], [[0.41227837572226955]], [[0.3528943153831581]]], "std": [[[0.19024485639418678]], [[0.17777343198913378]], [[0.17790442025348216]]], "count": [230]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4662001337974804]], [[0.4308111857061665]], [[0.3776598169461021]]], "std": [[[0.19878777959441457]], [[0.16611086816997953]], [[0.17533395273639146]]], "count": [230]}, "observation.state": {"min": [0.3687218725681305, -0.18521429598331451, 0.13031214475631714, 0.9056508541107178, -1.1786264181137085, -1.2865357398986816, -0.6473117470741272, -0.43174710869789124, 0.17424340546131134, 2.9425790309906006, -0.49599048495292664, -0.6725990772247314], "max": [0.4977610111236572, -0.0332154706120491, 0.14955945312976837, 3.308487892150879, 0.1518031507730484, 1.060551643371582, -0.5021938681602478, -0.3073570430278778, 0.19801867008209229, 4.540835857391357, 0.8200922608375549, 0.1079641580581665], "mean": [0.4348180294036865, -0.12164570391178131, 0.14247573912143707, 1.8093488216400146, -0.8424923419952393, 0.24604448676109314, -0.5757123827934265, -0.3816976547241211, 0.1852935403585434, 3.7883877754211426, 0.16148701310157776, -0.42096760869026184], "std": [0.02939310483634472, 0.03926711529493332, 0.0035893390886485577, 0.5220894813537598, 0.23666061460971832, 0.3616349399089813, 0.027595363557338715, 0.030728280544281006, 0.005125339608639479, 0.44031840562820435, 0.25327548384666443, 0.14557215571403503], "count": [1411]}, "action": {"min": [-0.13259777426719666, -0.10936963558197021, 0.1213323175907135, -0.19642230868339539, 0.06029321253299713, -0.09591206163167953, 0.3459556996822357, 0.10005224496126175, -0.13589471578598022, 0.07930251210927963, -0.10336963087320328, -0.5242395401000977, 0.5982607007026672, -0.07902612537145615], "max": [-0.10541418194770813, -0.08662161976099014, 0.1425357162952423, 0.4925665259361267, 0.7251582145690918, 0.6353698968887329, 0.9527233242988586, 0.12173008918762207, -0.11701511591672897, 0.10191159695386887, 0.2683810293674469, -0.21764256060123444, 0.9633130431175232, 0.7092505097389221], "mean": [-0.11811249703168869, -0.09967318177223206, 0.13050365447998047, 0.13564832508563995, 0.4854829013347626, 0.3237689733505249, 0.7493557929992676, 0.11107832938432693, -0.1276191920042038, 0.08712473511695862, 0.08453509956598282, -0.3299790620803833, 0.8390446305274963, 0.34418609738349915], "std": [0.006111887749284506, 0.004915293306112289, 0.0036721539217978716, 0.12074454873800278, 0.1563119888305664, 0.18660438060760498, 0.07557602971792221, 0.004768473096191883, 0.005703409668058157, 0.003987742122262716, 0.09045102447271347, 0.0649956613779068, 0.08719377219676971, 0.2037140130996704], "count": [1411]}, "timestamp": {"min": [0.0], "max": [47.0], "mean": [23.5], "std": [13.577350420624947], "count": [1411]}, "frame_index": {"min": [0], "max": [1410], "mean": [705.0], "std": [407.3205126187484], "count": [1411]}, "episode_index": {"min": [185], "max": [185], "mean": [185.0], "std": [0.0], "count": [1411]}, "index": {"min": [136363], "max": [137773], "mean": [137068.0], "std": [407.3205126187484], "count": [1411]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1411]}}} +{"episode_index": 186, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4547663431503793]], [[0.40143438787831065]], [[0.33920046525973174]]], "std": [[[0.1943790325933615]], [[0.1795615152872472]], [[0.1784622619919909]]], "count": [166]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.471332143935218]], [[0.42910248182271565]], [[0.37400361905136886]]], "std": [[[0.20286948831012594]], [[0.16586454271223786]], [[0.17396210547450505]]], "count": [166]}, "observation.state": {"min": [0.4146953225135803, -0.18208660185337067, 0.125619575381279, 0.9765260815620422, -1.2096428871154785, -1.1190574169158936, -0.6411412954330444, -0.4143323302268982, 0.17626821994781494, 2.798102617263794, -0.43860316276550293, -0.5809895992279053], "max": [0.5231224894523621, -0.09071893990039825, 0.14517280459403992, 3.6026828289031982, 1.0111100673675537, 0.884601354598999, -0.5475881099700928, -0.3136201798915863, 0.20054124295711517, 3.8224380016326904, 0.1313076764345169, -0.021058879792690277], "mean": [0.4575474262237549, -0.1387028694152832, 0.13720105588436127, 2.342836380004883, -0.3854847252368927, 0.009700287133455276, -0.6049510836601257, -0.3587549328804016, 0.19280579686164856, 3.475508451461792, -0.05854241922497749, -0.36233893036842346], "std": [0.024315668269991875, 0.021932361647486687, 0.0031995230820029974, 0.6968746185302734, 0.4216139614582062, 0.5059386491775513, 0.023381825536489487, 0.023195069283246994, 0.005120676476508379, 0.21397936344146729, 0.12614460289478302, 0.1638365238904953], "count": [919]}, "action": {"min": [-0.12716373801231384, -0.11163453757762909, 0.11694826185703278, -0.17240117490291595, -0.12398257851600647, -0.11475519090890884, -0.04740437492728233, 0.09456086903810501, -0.13654057681560516, 0.07864253222942352, -0.005386783741414547, -0.4460238814353943, 0.536640465259552, 0.38607558608055115], "max": [-0.10712569206953049, -0.09104856103658676, 0.13099832832813263, 0.7635683417320251, 0.7291524410247803, 0.7927500009536743, 0.9789969325065613, 0.11248543113470078, -0.11933428049087524, 0.09839922189712524, 0.16854485869407654, -0.22100190818309784, 0.8738822340965271, 0.7849456667900085], "mean": [-0.11891256272792816, -0.09992827475070953, 0.12590128183364868, 0.25931307673454285, 0.2849324941635132, 0.445952832698822, 0.6984472274780273, 0.10075786709785461, -0.12790913879871368, 0.09183965623378754, 0.0686684399843216, -0.3456847369670868, 0.7593488693237305, 0.5278595685958862], "std": [0.004769111052155495, 0.004740373231470585, 0.003084079595282674, 0.2120889574289322, 0.19309858977794647, 0.20871593058109283, 0.19757875800132751, 0.004785093013197184, 0.0043406132608652115, 0.004494805820286274, 0.03950677812099457, 0.06855796277523041, 0.08119037747383118, 0.08767575770616531], "count": [919]}, "timestamp": {"min": [0.0], "max": [30.6], "mean": [15.3], "std": [8.843076387773657], "count": [919]}, "frame_index": {"min": [0], "max": [918], "mean": [459.0], "std": [265.29229163320974], "count": [919]}, "episode_index": {"min": [186], "max": [186], "mean": [186.0], "std": [0.0], "count": [919]}, "index": {"min": [137774], "max": [138692], "mean": [138233.0], "std": [265.29229163320974], "count": [919]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [919]}}} +{"episode_index": 187, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.464985674328776]], [[0.41158554224158794]], [[0.3502109632366097]]], "std": [[[0.18874888534712217]], [[0.17647606642464458]], [[0.1764959274901064]]], "count": [207]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4747365649963689]], [[0.43494016871375496]], [[0.380134644732826]]], "std": [[[0.19604172584521726]], [[0.1628795986104623]], [[0.1723188620690774]]], "count": [207]}, "observation.state": {"min": [0.3601187467575073, -0.19791047275066376, 0.12283255159854889, 1.265269160270691, -1.0250470638275146, -1.038974642753601, -0.5987203121185303, -0.4282796084880829, 0.17316749691963196, 2.6322379112243652, -0.2907624840736389, -0.6383624076843262], "max": [0.5028348565101624, -0.09047181904315948, 0.14803113043308258, 2.681934356689453, 0.1605478823184967, 0.5070365071296692, -0.48227694630622864, -0.3137360215187073, 0.19144387543201447, 3.507693290710449, 0.5864438414573669, 0.4884195923805237], "mean": [0.43781715631484985, -0.13613401353359222, 0.1355743706226349, 2.012442111968994, -0.4024902880191803, -0.07138587534427643, -0.550632894039154, -0.3715015947818756, 0.1837439090013504, 3.084627866744995, 0.3148139417171478, -0.3954311013221741], "std": [0.027027511969208717, 0.022742705419659615, 0.004517636261880398, 0.3161366879940033, 0.3270380198955536, 0.3532504737377167, 0.028549158945679665, 0.02052268758416176, 0.005066360346972942, 0.22312912344932556, 0.201864555478096, 0.1938982754945755], "count": [1232]}, "action": {"min": [-0.1371595561504364, -0.10871066153049469, 0.11662350594997406, 0.02910493314266205, 0.07952062040567398, -0.051999833434820175, 0.5039320588111877, 0.10546571761369705, -0.1376076340675354, 0.0761551782488823, -0.299771249294281, -0.5830076932907104, -0.5724565386772156, -0.5654730796813965], "max": [-0.10787449777126312, -0.08622705936431885, 0.1388925015926361, 0.6149594783782959, 0.669985830783844, 0.5393213033676147, 0.9820599555969238, 0.12651197612285614, -0.1156352311372757, 0.09611494839191437, 0.4840222895145416, 0.6925768256187439, 0.8105549216270447, 0.6597884297370911], "mean": [-0.12233732640743256, -0.09913738071918488, 0.12670500576496124, 0.29644161462783813, 0.3327353596687317, 0.2789505422115326, 0.810840904712677, 0.11418277025222778, -0.1272977739572525, 0.08718642592430115, 0.2983059883117676, -0.40626516938209534, 0.6101291179656982, 0.4618014991283417], "std": [0.005554314237087965, 0.0041573988273739815, 0.003995879087597132, 0.12643302977085114, 0.14188365638256073, 0.1307978481054306, 0.11362501233816147, 0.0048823850229382515, 0.004698276054114103, 0.003430398181080818, 0.12586049735546112, 0.21788768470287323, 0.23043864965438843, 0.20982253551483154], "count": [1232]}, "timestamp": {"min": [0.0], "max": [41.03333333333333], "mean": [20.516666666666666], "std": [11.854921622122461], "count": [1232]}, "frame_index": {"min": [0], "max": [1231], "mean": [615.5], "std": [355.64764866367386], "count": [1232]}, "episode_index": {"min": [187], "max": [187], "mean": [187.0], "std": [0.0], "count": [1232]}, "index": {"min": [138693], "max": [139924], "mean": [139308.5], "std": [355.64764866367386], "count": [1232]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1232]}}} +{"episode_index": 188, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4750118539699831]], [[0.41922906454248365]], [[0.3569613838205035]]], "std": [[[0.18501067269160001]], [[0.17368551672838914]], [[0.1744662851169873]]], "count": [144]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48455321048172356]], [[0.44185970784918904]], [[0.3861417899721617]]], "std": [[[0.19056800015115893]], [[0.1576964553954479]], [[0.16794060535775712]]], "count": [144]}, "observation.state": {"min": [0.40205320715904236, -0.17151416838169098, 0.12606030702590942, 1.127083420753479, -0.8168129920959473, -0.6153305172920227, -0.5627400875091553, -0.39867836236953735, 0.164433091878891, 3.064408779144287, -0.1557656079530716, -0.2036009430885315], "max": [0.4650706946849823, -0.10594817250967026, 0.14191782474517822, 3.5582287311553955, 0.06831824779510498, 0.6659510731697083, -0.47899478673934937, -0.3336915671825409, 0.1851426213979721, 3.4762399196624756, 0.41223230957984924, 0.28561753034591675], "mean": [0.4343920052051544, -0.1444319486618042, 0.13642247021198273, 2.2147395610809326, -0.4543807804584503, -0.011806926690042019, -0.5305351614952087, -0.37371528148651123, 0.17961004376411438, 3.2582249641418457, 0.26725298166275024, -0.07219299674034119], "std": [0.020210709422826767, 0.015356081537902355, 0.0035679463762789965, 0.5028655529022217, 0.26617011427879333, 0.35862404108047485, 0.0168632660061121, 0.01733146421611309, 0.005250506568700075, 0.10823625326156616, 0.14341233670711517, 0.10619641095399857], "count": [761]}, "action": {"min": [-0.13003937900066376, -0.10801563411951065, 0.11935475468635559, 0.012983212247490883, 0.057852402329444885, -0.1115446537733078, 0.3299602270126343, 0.1138567253947258, -0.13135196268558502, 0.08062361925840378, -0.13127011060714722, -0.6218477487564087, -0.6211487054824829, -0.506450891494751], "max": [-0.11463356018066406, -0.09407553821802139, 0.13298910856246948, 0.5150319933891296, 0.535899817943573, 0.7940632700920105, 0.9667198061943054, 0.12876445055007935, -0.11256153136491776, 0.09158527106046677, 0.2580541968345642, 0.634650468826294, 0.7145199775695801, 0.6946077942848206], "mean": [-0.12261432409286499, -0.10049878805875778, 0.12697280943393707, 0.25361374020576477, 0.3111023008823395, 0.3847574293613434, 0.7786732316017151, 0.11938106268644333, -0.12553070485591888, 0.08689766377210617, 0.18112343549728394, -0.5068420767784119, 0.610858142375946, 0.48966264724731445], "std": [0.004726025741547346, 0.003071791725233197, 0.0035249716602265835, 0.11549615114927292, 0.12046917527914047, 0.19002185761928558, 0.14340652525424957, 0.0033979748841375113, 0.005449267104268074, 0.0026220937725156546, 0.07506337761878967, 0.17576317489147186, 0.18610736727714539, 0.1619419902563095], "count": [761]}, "timestamp": {"min": [0.0], "max": [25.333333333333332], "mean": [12.666666666666668], "std": [7.322719591942751], "count": [761]}, "frame_index": {"min": [0], "max": [760], "mean": [380.0], "std": [219.68158775828255], "count": [761]}, "episode_index": {"min": [188], "max": [188], "mean": [188.0], "std": [0.0], "count": [761]}, "index": {"min": [139925], "max": [140685], "mean": [140305.0], "std": [219.68158775828255], "count": [761]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [761]}}} +{"episode_index": 189, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4722086428005546]], [[0.4187783575130389]], [[0.3569874108734403]]], "std": [[[0.18286352226390834]], [[0.17159986348546927]], [[0.17263025192780024]]], "count": [132]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48148248002904864]], [[0.44086910155476333]], [[0.385601688865782]]], "std": [[[0.18902638501785776]], [[0.15616101241395935]], [[0.16654070469441037]]], "count": [132]}, "observation.state": {"min": [0.3790239989757538, -0.19635820388793945, 0.12493643164634705, 1.4579741954803467, -0.8977017998695374, -0.6301448345184326, -0.5664392709732056, -0.4305191934108734, 0.17028194665908813, 2.633496046066284, -0.11122211068868637, -0.14897611737251282], "max": [0.49907389283180237, -0.11221130937337875, 0.14171819388866425, 3.1273157596588135, -0.012707189656794071, 0.4211982190608978, -0.46617504954338074, -0.33777689933776855, 0.187020942568779, 2.984936237335205, 0.50965416431427, 0.29795512557029724], "mean": [0.4302463233470917, -0.15590731799602509, 0.13679827749729156, 2.3203608989715576, -0.48342207074165344, -0.09841524809598923, -0.5374826788902283, -0.38277509808540344, 0.1813536137342453, 2.8756587505340576, 0.25144699215888977, 0.0388665497303009], "std": [0.0239739827811718, 0.015227771364152431, 0.0034141880460083485, 0.44149360060691833, 0.22296132147312164, 0.30324000120162964, 0.024140741676092148, 0.0251341313123703, 0.004689760040491819, 0.0837676152586937, 0.18083539605140686, 0.13836508989334106], "count": [674]}, "action": {"min": [-0.13293065130710602, -0.11104325950145721, 0.11554010957479477, 0.12359040975570679, 0.07921285927295685, 0.16365955770015717, 0.5059929490089417, 0.11190307885408401, -0.13448654115200043, 0.07758230715990067, -0.3804941177368164, -0.6153705716133118, -0.5205196738243103, -0.628172755241394], "max": [-0.1102636307477951, -0.09520722925662994, 0.13209940493106842, 0.48803797364234924, 0.584534764289856, 0.6807584762573242, 0.9534203410148621, 0.13047073781490326, -0.11662828177213669, 0.09292100369930267, 0.3574943244457245, 0.6580553650856018, 0.5290265083312988, 0.8095841407775879], "mean": [-0.1231500506401062, -0.10238739103078842, 0.12626928091049194, 0.30179253220558167, 0.30816924571990967, 0.42861494421958923, 0.7528760433197021, 0.11716548353433609, -0.12709255516529083, 0.0858483836054802, 0.06445857882499695, -0.24191200733184814, 0.21634189784526825, 0.3402806222438812], "std": [0.005075031891465187, 0.00325613166205585, 0.0032865023240447044, 0.0953480526804924, 0.13319748640060425, 0.1583556830883026, 0.10728732496500015, 0.00486495578661561, 0.005315902177244425, 0.003919968381524086, 0.22757293283939362, 0.5008052587509155, 0.42545512318611145, 0.5395565629005432], "count": [674]}, "timestamp": {"min": [0.0], "max": [22.433333333333334], "mean": [11.216666666666667], "std": [6.485560885536423], "count": [674]}, "frame_index": {"min": [0], "max": [673], "mean": [336.5], "std": [194.56682656609271], "count": [674]}, "episode_index": {"min": [189], "max": [189], "mean": [189.0], "std": [0.0], "count": [674]}, "index": {"min": [140686], "max": [141359], "mean": [141022.5], "std": [194.56682656609271], "count": [674]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [674]}}} +{"episode_index": 190, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4723709706496057]], [[0.4164963772285127]], [[0.35363579160146064]]], "std": [[[0.1855007746066821]], [[0.17356577619651992]], [[0.17499955819272806]]], "count": [142]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4833572601184449]], [[0.4397793158734542]], [[0.38365405888489984]]], "std": [[[0.19235532645665981]], [[0.15823217838173997]], [[0.16877553619679947]]], "count": [142]}, "observation.state": {"min": [0.37428224086761475, -0.1863572746515274, 0.13198435306549072, 1.4411989450454712, -1.1463801860809326, -0.935878574848175, -0.5729804635047913, -0.4604988396167755, 0.16561271250247955, 3.5787782669067383, -0.35060927271842957, -0.25397124886512756], "max": [0.4972204267978668, -0.05995158106088638, 0.15017519891262054, 3.4808530807495117, -0.19675655663013458, 0.6477267146110535, -0.47406768798828125, -0.3360624313354492, 0.1836816966533661, 3.9434289932250977, 0.028693659231066704, 0.23119507730007172], "mean": [0.44292202591896057, -0.14621013402938843, 0.14045581221580505, 2.6290132999420166, -0.6086885333061218, -0.23785258829593658, -0.5351782441139221, -0.4039323925971985, 0.17793361842632294, 3.8229634761810303, -0.09097988158464432, -0.02244573086500168], "std": [0.023520147427916527, 0.029979566112160683, 0.003245481289923191, 0.5722410678863525, 0.26588332653045654, 0.4541575312614441, 0.026245765388011932, 0.03290429338812828, 0.003790022572502494, 0.0651465654373169, 0.10401672124862671, 0.1320153921842575], "count": [742]}, "action": {"min": [-0.12854281067848206, -0.11091744154691696, 0.12047921866178513, -0.0024750696029514074, 0.0039914981462061405, 0.1727220118045807, 0.403766930103302, 0.1103549674153328, -0.1305408924818039, 0.0741613507270813, -0.19064873456954956, -0.5796955823898315, 0.7154994606971741, 0.3455069661140442], "max": [-0.10987550765275955, -0.09031453728675842, 0.13864830136299133, 0.5533864498138428, 0.6821982860565186, 0.7774672508239746, 0.8440069556236267, 0.12880337238311768, -0.11556820571422577, 0.09259112179279327, -0.02477705292403698, -0.31339001655578613, 0.8223423957824707, 0.554678738117218], "mean": [-0.12012656778097153, -0.10165464878082275, 0.12928390502929688, 0.2914187014102936, 0.33559754490852356, 0.5499667525291443, 0.6367756724357605, 0.11916422098875046, -0.12544052302837372, 0.08389168232679367, -0.08216577768325806, -0.4739258587360382, 0.7702803611755371, 0.4078412652015686], "std": [0.004644905216991901, 0.004240605980157852, 0.003360666101798415, 0.15017209947109222, 0.17142294347286224, 0.16803032159805298, 0.11971203982830048, 0.004142386838793755, 0.00434533366933465, 0.005719820503145456, 0.04345225915312767, 0.06589730083942413, 0.03088357299566269, 0.042338334023952484], "count": [742]}, "timestamp": {"min": [0.0], "max": [24.7], "mean": [12.349999999999998], "std": [7.139891844807985], "count": [742]}, "frame_index": {"min": [0], "max": [741], "mean": [370.5], "std": [214.1967553442395], "count": [742]}, "episode_index": {"min": [190], "max": [190], "mean": [190.0], "std": [0.0], "count": [742]}, "index": {"min": [141360], "max": [142101], "mean": [141730.5], "std": [214.1967553442395], "count": [742]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [742]}}} +{"episode_index": 191, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45443292774831806]], [[0.401635274934572]], [[0.3393531227305737]]], "std": [[[0.19042254430292463]], [[0.17721097660354065]], [[0.1764937721574466]]], "count": [159]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46261952425973885]], [[0.42365049122374315]], [[0.3675636347131445]]], "std": [[[0.19932733989503956]], [[0.16523762364140965]], [[0.17347956970561648]]], "count": [159]}, "observation.state": {"min": [0.3599797487258911, -0.20374886691570282, 0.1319700926542282, 1.210120677947998, -0.8813053965568542, -0.8332362174987793, -0.5861940383911133, -0.4121236503124237, 0.1706332564353943, 2.6548843383789062, 0.040717680007219315, -0.7323401570320129], "max": [0.4868951439857483, -0.10747727006673813, 0.15022316575050354, 2.590719223022461, 0.045499950647354126, 1.1879518032073975, -0.5017845630645752, -0.3206942081451416, 0.19330665469169617, 3.3443448543548584, 0.5384844541549683, 0.0464179590344429], "mean": [0.4385223686695099, -0.1400194764137268, 0.14157997071743011, 1.9857568740844727, -0.5636215806007385, 0.12779799103736877, -0.5451920628547668, -0.37103426456451416, 0.18786711990833282, 2.9343557357788086, 0.33778855204582214, -0.5209417939186096], "std": [0.0330498032271862, 0.019581418484449387, 0.003683242714032531, 0.3941594064235687, 0.2556627690792084, 0.5722138285636902, 0.021205240860581398, 0.020494969561696053, 0.005560837686061859, 0.1633445918560028, 0.11653365939855576, 0.1665707528591156], "count": [868]}, "action": {"min": [-0.13122589886188507, -0.10823530703783035, 0.11659777909517288, -0.24389375746250153, 0.13243895769119263, 0.06746475398540497, 0.5786054134368896, 0.1051710844039917, -0.1379949003458023, 0.08017447590827942, 0.12466341257095337, -0.5553323030471802, 0.48718637228012085, 0.38070186972618103], "max": [-0.110532246530056, -0.09775841236114502, 0.13937896490097046, 0.4863596558570862, 0.5907044410705566, 0.5356613397598267, 0.974136233329773, 0.12501023709774017, -0.11787469685077667, 0.09369868785142899, 0.4893609285354614, -0.3535795211791992, 0.7314199209213257, 0.6802722811698914], "mean": [-0.1189824715256691, -0.10217585414648056, 0.1300404816865921, 0.178880512714386, 0.38958510756492615, 0.3228355050086975, 0.7941934466362, 0.11271069198846817, -0.13052643835544586, 0.08949510753154755, 0.3835514187812805, -0.4282427430152893, 0.6275743246078491, 0.5093482136726379], "std": [0.006105360575020313, 0.002555801998823881, 0.004350919276475906, 0.2061271071434021, 0.1192355751991272, 0.11140664666891098, 0.11018475145101547, 0.0048287599347531796, 0.005417908541858196, 0.002581248991191387, 0.06794396042823792, 0.03477543964982033, 0.0613737627863884, 0.08136297017335892], "count": [868]}, "timestamp": {"min": [0.0], "max": [28.9], "mean": [14.450000000000003], "std": [8.352328351357416], "count": [868]}, "frame_index": {"min": [0], "max": [867], "mean": [433.5], "std": [250.56985054072248], "count": [868]}, "episode_index": {"min": [191], "max": [191], "mean": [191.0], "std": [0.0], "count": [868]}, "index": {"min": [142102], "max": [142969], "mean": [142535.5], "std": [250.56985054072248], "count": [868]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [868]}}} +{"episode_index": 192, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47312868072576253]], [[0.41657640165441173]], [[0.35393072789011437]]], "std": [[[0.18706434670399516]], [[0.17546294835444926]], [[0.17648149737175484]]], "count": [128]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.483618440648829]], [[0.4395548874931917]], [[0.38325241906658497]]], "std": [[[0.19359388032565336]], [[0.16006982625038735]], [[0.17024277405375424]]], "count": [128]}, "observation.state": {"min": [0.36088329553604126, -0.18434935808181763, 0.13351139426231384, 1.4837660789489746, -1.0810680389404297, -0.5682730674743652, -0.5478892922401428, -0.42838773131370544, 0.16604049503803253, 2.88533353805542, -0.022954929620027542, 0.0032731499522924423], "max": [0.4731563925743103, -0.09747633337974548, 0.1504266858100891, 2.7668588161468506, -0.17694427073001862, 1.2026561498641968, -0.46091586351394653, -0.3396148979663849, 0.1835300326347351, 3.7119314670562744, 0.38299211859703064, 0.25389137864112854], "mean": [0.425761878490448, -0.14234215021133423, 0.14237236976623535, 2.0698466300964355, -0.5911678671836853, 0.239735946059227, -0.5134737491607666, -0.3794134557247162, 0.17748406529426575, 3.249007225036621, 0.25172173976898193, 0.07017462700605392], "std": [0.029806865379214287, 0.019905345514416695, 0.0032867095433175564, 0.3680866062641144, 0.23059342801570892, 0.5495513677597046, 0.023128408938646317, 0.01963096112012863, 0.004607332404702902, 0.2359435260295868, 0.0953059047460556, 0.06313449889421463], "count": [651]}, "action": {"min": [-0.1307951658964157, -0.10879430919885635, 0.12075541168451309, -0.2401934713125229, 0.12319492548704147, 0.24186986684799194, 0.6129814386367798, 0.11722156405448914, -0.13171730935573578, 0.07981333881616592, -0.23924045264720917, -0.630858302116394, -0.6103926301002502, -0.5828715562820435], "max": [-0.11042478680610657, -0.0980108454823494, 0.13964378833770752, 0.40646204352378845, 0.6406890749931335, 0.5643379092216492, 0.9437801241874695, 0.13246479630470276, -0.11677610874176025, 0.09066665917634964, 0.24215176701545715, 0.6120971441268921, 0.6923348307609558, 0.6858379244804382], "mean": [-0.12070049345493317, -0.10329637676477432, 0.13121534883975983, 0.13451316952705383, 0.35085728764533997, 0.38391008973121643, 0.8008953332901001, 0.12273390591144562, -0.1252099573612213, 0.08635043352842331, 0.057295382022857666, -0.31604406237602234, 0.3580418825149536, 0.2845279276371002], "std": [0.006022949703037739, 0.00281071150675416, 0.004168448504060507, 0.1869393140077591, 0.12373235821723938, 0.09432463347911835, 0.10407917201519012, 0.004346203524619341, 0.0045698294416069984, 0.0023931520991027355, 0.1561826914548874, 0.47765210270881653, 0.4778641164302826, 0.4547356367111206], "count": [651]}, "timestamp": {"min": [0.0], "max": [21.666666666666668], "mean": [10.833333333333334], "std": [6.264243030146638], "count": [651]}, "frame_index": {"min": [0], "max": [650], "mean": [325.0], "std": [187.92729090439914], "count": [651]}, "episode_index": {"min": [192], "max": [192], "mean": [192.0], "std": [0.0], "count": [651]}, "index": {"min": [142970], "max": [143620], "mean": [143295.0], "std": [187.92729090439914], "count": [651]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [651]}}} +{"episode_index": 193, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4789104914382907]], [[0.4222360466116271]], [[0.3589560806291327]]], "std": [[[0.18227817788765746]], [[0.17218552534347456]], [[0.17389094510525893]]], "count": [114]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48984814671482624]], [[0.44557803720903566]], [[0.38857244247601574]]], "std": [[[0.19014292231586113]], [[0.15741411221977053]], [[0.16855502298847613]]], "count": [114]}, "observation.state": {"min": [0.37017375230789185, -0.22028322517871857, 0.1305597424507141, 1.3703237771987915, -1.0646716356277466, -0.7584723830223083, -0.5521367788314819, -0.4120541512966156, 0.16521993279457092, 2.973822832107544, -0.5510550141334534, -0.20539483428001404], "max": [0.4712643325328827, -0.11808831244707108, 0.14446893334388733, 2.8438150882720947, -0.3358525335788727, 0.6828450560569763, -0.4681057333946228, -0.30865445733070374, 0.1926870346069336, 3.3896379470825195, 0.049189139157533646, 0.24660368263721466], "mean": [0.4228653311729431, -0.16007745265960693, 0.13992437720298767, 2.187138795852661, -0.7163004279136658, 0.00608000298961997, -0.5180320143699646, -0.3626851737499237, 0.18373258411884308, 3.238710880279541, -0.1307334303855896, -0.07417668402194977], "std": [0.03152047470211983, 0.0240780096501112, 0.0023504323326051235, 0.2642612159252167, 0.1653270572423935, 0.34446123242378235, 0.0184139683842659, 0.028589574620127678, 0.005994774401187897, 0.10850001126527786, 0.16428984701633453, 0.12234529107809067], "count": [553]}, "action": {"min": [-0.13013169169425964, -0.1088864728808403, 0.1152527704834938, -0.012653825804591179, 0.21438506245613098, 0.23991204798221588, 0.556617796421051, 0.10914207249879837, -0.1341463178396225, 0.08239613473415375, -0.07496480643749237, -0.49857980012893677, 0.5182603597640991, 0.5247991681098938], "max": [-0.11233998090028763, -0.09774302691221237, 0.13538864254951477, 0.5246923565864563, 0.5531594753265381, 0.5558070540428162, 0.8940653204917908, 0.13140814006328583, -0.11321689188480377, 0.10086815059185028, 0.15321975946426392, -0.2685564160346985, 0.7136362195014954, 0.7677311897277832], "mean": [-0.12192399054765701, -0.10336723178625107, 0.12764912843704224, 0.22659289836883545, 0.3970308303833008, 0.42107856273651123, 0.7613493800163269, 0.11787182837724686, -0.12546265125274658, 0.09386653453111649, 0.06917223334312439, -0.40746229887008667, 0.6527002453804016, 0.6236128807067871], "std": [0.00529868621379137, 0.0025754219386726618, 0.004173757508397102, 0.11662684381008148, 0.09077645093202591, 0.07846802473068237, 0.07786320149898529, 0.004585087765008211, 0.006598170846700668, 0.004596352111548185, 0.06279344111680984, 0.05169675126671791, 0.05271293595433235, 0.06989038735628128], "count": [553]}, "timestamp": {"min": [0.0], "max": [18.4], "mean": [9.200000000000001], "std": [5.321236280748634], "count": [553]}, "frame_index": {"min": [0], "max": [552], "mean": [276.0], "std": [159.63708842245902], "count": [553]}, "episode_index": {"min": [193], "max": [193], "mean": [193.0], "std": [0.0], "count": [553]}, "index": {"min": [143621], "max": [144173], "mean": [143897.0], "std": [159.63708842245902], "count": [553]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [553]}}} +{"episode_index": 194, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48677044121742263]], [[0.42949490965977033]], [[0.3657201746195554]]], "std": [[[0.18007885472401383]], [[0.17020542008081485]], [[0.17311631579427167]]], "count": [133]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49914264623978244]], [[0.45342851409569673]], [[0.39714024644945695]]], "std": [[[0.1899667154315507]], [[0.15598627467538834]], [[0.1678965336563066]]], "count": [133]}, "observation.state": {"min": [0.3888550400733948, -0.19587939977645874, 0.13623100519180298, 1.158746600151062, -1.3651353120803833, -0.8481051325798035, -0.5675976872444153, -0.3735254108905792, 0.1712917536497116, 3.219998836517334, -0.611448347568512, -0.18807007372379303], "max": [0.46107804775238037, -0.09072667360305786, 0.14686058461666107, 3.161914587020874, -0.14059895277023315, 0.8309221267700195, -0.4851498007774353, -0.29136326909065247, 0.19039258360862732, 3.7402396202087402, -0.06503897160291672, 0.5495004653930664], "mean": [0.42717573046684265, -0.1681075245141983, 0.14078310132026672, 2.265960693359375, -0.7968193292617798, 0.006508019752800465, -0.5246215462684631, -0.33724865317344666, 0.1829930692911148, 3.583507537841797, -0.26419514417648315, -0.011774657294154167], "std": [0.01899414137005806, 0.022950846701860428, 0.002515458967536688, 0.5953840017318726, 0.2712414562702179, 0.5066957473754883, 0.01885562390089035, 0.02560269832611084, 0.0047016567550599575, 0.11499039083719254, 0.13535979390144348, 0.2054014950990677], "count": [684]}, "action": {"min": [-0.12771759927272797, -0.11243009567260742, 0.12059946358203888, -0.062393300235271454, 0.1834130585193634, 0.14847886562347412, 0.48938244581222534, 0.10730785876512527, -0.1290794163942337, 0.08941051363945007, -0.22434461116790771, -0.5672672986984253, 0.5143657922744751, 0.46565622091293335], "max": [-0.11388389766216278, -0.09734911471605301, 0.13457868993282318, 0.40525224804878235, 0.7097228765487671, 0.6572750210762024, 0.9543860554695129, 0.1248222142457962, -0.10851065069437027, 0.10168229788541794, -0.02903852052986622, -0.22121478617191315, 0.7976073622703552, 0.6494494676589966], "mean": [-0.12183894217014313, -0.1045856699347496, 0.12699781358242035, 0.18289750814437866, 0.4247993230819702, 0.4565074145793915, 0.7064361572265625, 0.11559345573186874, -0.12067195028066635, 0.09639953076839447, -0.09750379621982574, -0.39886295795440674, 0.7180591225624084, 0.5464938282966614], "std": [0.00386017095297575, 0.003048480721190572, 0.003372207749634981, 0.12789961695671082, 0.14484986662864685, 0.16501860320568085, 0.11862770467996597, 0.0038770195096731186, 0.006003313232213259, 0.0034506479278206825, 0.052051085978746414, 0.08458199352025986, 0.06916207075119019, 0.049897585064172745], "count": [684]}, "timestamp": {"min": [0.0], "max": [22.766666666666666], "mean": [11.383333333333333], "std": [6.581786034763467], "count": [684]}, "frame_index": {"min": [0], "max": [683], "mean": [341.5], "std": [197.453581042904], "count": [684]}, "episode_index": {"min": [194], "max": [194], "mean": [194.0], "std": [0.0], "count": [684]}, "index": {"min": [144174], "max": [144857], "mean": [144515.5], "std": [197.453581042904], "count": [684]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [684]}}} +{"episode_index": 195, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39888148741344726]], [[0.35393892771630103]], [[0.2868620548329343]]], "std": [[[0.17121258185422636]], [[0.17152776710352965]], [[0.16738225335472803]]], "count": [202]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3993404462995319]], [[0.3697240961841282]], [[0.3077145497637999]]], "std": [[[0.16548569621407316]], [[0.1533213557141722]], [[0.16053635323478463]]], "count": [202]}, "observation.state": {"min": [0.38573506474494934, -0.1860792487859726, 0.1311197280883789, 1.073402762413025, -1.0392571687698364, -1.0909968614578247, -0.6204289197921753, -0.45286107063293457, 0.17024953663349152, 3.0260355472564697, -0.340498149394989, -0.4555562436580658], "max": [0.4965330958366394, -0.10507550090551376, 0.1465248465538025, 3.2195794582366943, 0.037984948605298996, 0.26704177260398865, -0.5099243521690369, -0.34496673941612244, 0.1956179440021515, 4.540835857391357, 0.5848042368888855, 0.40774697065353394], "mean": [0.43386346101760864, -0.15356668829917908, 0.14039812982082367, 2.3343327045440674, -0.5914177298545837, -0.4055633544921875, -0.5608221888542175, -0.390613853931427, 0.18512079119682312, 3.750657796859741, 0.1741846799850464, -0.20574545860290527], "std": [0.02873547002673149, 0.013098790310323238, 0.003417066764086485, 0.5231922268867493, 0.2848787009716034, 0.3892788589000702, 0.023793382570147514, 0.025471199303865433, 0.006169951520860195, 0.3959527313709259, 0.26539841294288635, 0.1718648225069046], "count": [1187]}, "action": {"min": [-0.1331990659236908, -0.1092628762125969, 0.1228036880493164, 0.19064882397651672, 0.0980534702539444, -0.07668858021497726, 0.3519088625907898, 0.10675513744354248, -0.14030133187770844, 0.07348939776420593, -0.3037295639514923, -0.5928005576133728, 0.49045291543006897, 0.0012911970261484385], "max": [-0.10799920558929443, -0.09348475188016891, 0.1343299299478531, 0.6156671643257141, 0.6026723980903625, 0.6538065075874329, 0.912276029586792, 0.12083819508552551, -0.11663743108510971, 0.09312029182910919, 0.2719973921775818, -0.2685658633708954, 0.924924910068512, 0.7006314992904663], "mean": [-0.12097210437059402, -0.10312346369028091, 0.12863999605178833, 0.3690561056137085, 0.4185626208782196, 0.38391292095184326, 0.678411066532135, 0.11325136572122574, -0.12945950031280518, 0.08621712028980255, 0.049656908959150314, -0.4472641944885254, 0.7811660170555115, 0.35399511456489563], "std": [0.005464870482683182, 0.002859873929992318, 0.0022249724715948105, 0.10591783374547958, 0.13296008110046387, 0.18192270398139954, 0.13776761293411255, 0.003374093445017934, 0.0058252206072211266, 0.004748930223286152, 0.16102416813373566, 0.08482658863067627, 0.09148939698934555, 0.143044576048851], "count": [1187]}, "timestamp": {"min": [0.0], "max": [39.53333333333333], "mean": [19.76666666666667], "std": [11.421908772179892], "count": [1187]}, "frame_index": {"min": [0], "max": [1186], "mean": [593.0], "std": [342.6572631653968], "count": [1187]}, "episode_index": {"min": [195], "max": [195], "mean": [195.0], "std": [0.0], "count": [1187]}, "index": {"min": [144858], "max": [146044], "mean": [145451.0], "std": [342.6572631653968], "count": [1187]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1187]}}} +{"episode_index": 196, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.434564687267312]], [[0.385660846019139]], [[0.31835878250737704]]], "std": [[[0.17758313345856316]], [[0.178192426745047]], [[0.1769192175558662]]], "count": [158]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44136129898513554]], [[0.40507605623121257]], [[0.34346996945754393]]], "std": [[[0.16963757274879468]], [[0.15774600406256256]], [[0.1677376440531706]]], "count": [158]}, "observation.state": {"min": [0.38924890756607056, -0.16285699605941772, 0.13077102601528168, 1.4256819486618042, -0.9649269580841064, -0.47476664185523987, -0.5686711668968201, -0.4128032326698303, 0.1713954657316208, 2.7041614055633545, -0.09810501337051392, -0.55829256772995], "max": [0.47567400336265564, -0.10660459846258163, 0.14834095537662506, 2.634754180908203, -0.10302391648292542, 0.657546877861023, -0.4633253514766693, -0.3392133116722107, 0.19243425130844116, 3.9767696857452393, 0.49995294213294983, -0.041620731353759766], "mean": [0.4372999966144562, -0.13693107664585114, 0.13919492065906525, 1.9416325092315674, -0.5262190103530884, 0.2048603892326355, -0.5314427018165588, -0.3764691948890686, 0.18402323126792908, 3.308572292327881, 0.29563120007514954, -0.3326665461063385], "std": [0.023356007412075996, 0.014476477168500423, 0.0034575017634779215, 0.2739725112915039, 0.20809383690357208, 0.25467413663864136, 0.027037067338824272, 0.020217131823301315, 0.004884457215666771, 0.39098262786865234, 0.1631336808204651, 0.1376029998064041], "count": [861]}, "action": {"min": [-0.12795762717723846, -0.10835878551006317, 0.12154268473386765, 0.003488966031000018, 0.14324894547462463, 0.1222318485379219, 0.6510441899299622, 0.11232299357652664, -0.13946925103664398, 0.08204647153615952, -0.3269200623035431, -0.5581497550010681, -0.5507965087890625, -0.5486493706703186], "max": [-0.11189643293619156, -0.09397968649864197, 0.1343720704317093, 0.4129825830459595, 0.6216862797737122, 0.5271899104118347, 0.925494909286499, 0.12793762981891632, -0.11786135286092758, 0.09584205597639084, 0.37334293127059937, 0.5533944964408875, 0.9073672294616699, 0.6647855639457703], "mean": [-0.11991484463214874, -0.1011236310005188, 0.12850527465343475, 0.18824069201946259, 0.3502057194709778, 0.32534343004226685, 0.8379704356193542, 0.11732026934623718, -0.12891344726085663, 0.08860309422016144, 0.22809571027755737, -0.4333481192588806, 0.6927760243415833, 0.4507574737071991], "std": [0.004662792664021254, 0.002988949418067932, 0.003412071382626891, 0.08636866509914398, 0.11535396426916122, 0.08981254696846008, 0.07102907449007034, 0.003911665175110102, 0.0053988732397556305, 0.0037481430917978287, 0.11402086913585663, 0.1115611344575882, 0.1693038046360016, 0.15149174630641937], "count": [861]}, "timestamp": {"min": [0.0], "max": [28.666666666666668], "mean": [14.333333333333334], "std": [8.284970774887547], "count": [861]}, "frame_index": {"min": [0], "max": [860], "mean": [430.0], "std": [248.54912324662638], "count": [861]}, "episode_index": {"min": [196], "max": [196], "mean": [196.0], "std": [0.0], "count": [861]}, "index": {"min": [146045], "max": [146905], "mean": [146475.0], "std": [248.54912324662638], "count": [861]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [861]}}} +{"episode_index": 197, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.431088163042995]], [[0.38231966490299824]], [[0.31383347783557863]]], "std": [[[0.17015441643462667]], [[0.17123872959406794]], [[0.1694876167402145]]], "count": [147]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43466317823425665]], [[0.3993806003883035]], [[0.3366407266610348]]], "std": [[[0.16557543441756997]], [[0.1525283431203499]], [[0.16187792864074077]]], "count": [147]}, "observation.state": {"min": [0.36890724301338196, -0.18241867423057556, 0.13025380671024323, 1.6653574705123901, -0.918470561504364, -0.7840320467948914, -0.5688564777374268, -0.4122549295425415, 0.16637752950191498, 2.749664306640625, -0.21465593576431274, -0.13845928013324738], "max": [0.45365649461746216, -0.10557747632265091, 0.14565633237361908, 3.039875030517578, -0.20030911266803741, 0.9043007493019104, -0.47952765226364136, -0.33959946036338806, 0.19083721935749054, 3.0226805210113525, 0.21096676588058472, 0.253004789352417], "mean": [0.4258961081504822, -0.15184654295444489, 0.14012044668197632, 2.3453221321105957, -0.5621687173843384, -0.13379915058612823, -0.540334939956665, -0.36901965737342834, 0.18487398326396942, 2.9164555072784424, 0.0019627967849373817, 0.016058987006545067], "std": [0.019771963357925415, 0.020186955109238625, 0.0031844046898186207, 0.40410199761390686, 0.15980729460716248, 0.5148531198501587, 0.02317097783088684, 0.01672452688217163, 0.005204967688769102, 0.06371963024139404, 0.0968245193362236, 0.08746403455734253], "count": [778]}, "action": {"min": [-0.13463172316551208, -0.11145313829183578, 0.1213470995426178, -0.10460545122623444, 0.19343136250972748, 0.23322997987270355, 0.5206266641616821, 0.10890379548072815, -0.13375161588191986, 0.07865098118782043, 0.033333200961351395, -0.5175281763076782, 0.4408031105995178, 0.6313620805740356], "max": [-0.11436745524406433, -0.09693536162376404, 0.1362697035074234, 0.5164385437965393, 0.5784779191017151, 0.630715548992157, 0.9459317922592163, 0.12698058784008026, -0.11809339374303818, 0.09570268541574478, 0.2781619429588318, -0.3695749342441559, 0.5688018202781677, 0.7938500642776489], "mean": [-0.1222093403339386, -0.10313929617404938, 0.1294584423303604, 0.27880731225013733, 0.3529634475708008, 0.4447992742061615, 0.7314311861991882, 0.1144569143652916, -0.12700338661670685, 0.09125027805566788, 0.15302930772304535, -0.4698381721973419, 0.5223788619041443, 0.6906483173370361], "std": [0.004832742735743523, 0.0037077555898576975, 0.0031599898356944323, 0.17665472626686096, 0.08193432539701462, 0.11253375560045242, 0.11942130327224731, 0.005252556409686804, 0.004422856494784355, 0.002992516616359353, 0.04553580656647682, 0.03291057050228119, 0.03075297921895981, 0.04309730976819992], "count": [778]}, "timestamp": {"min": [0.0], "max": [25.9], "mean": [12.950000000000001], "std": [7.486302306360746], "count": [778]}, "frame_index": {"min": [0], "max": [777], "mean": [388.5], "std": [224.58906919082239], "count": [778]}, "episode_index": {"min": [197], "max": [197], "mean": [197.0], "std": [0.0], "count": [778]}, "index": {"min": [146906], "max": [147683], "mean": [147294.5], "std": [224.58906919082239], "count": [778]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [778]}}} +{"episode_index": 198, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4526710855194437]], [[0.40148471961082755]], [[0.3333864584265974]]], "std": [[[0.16783467422344497]], [[0.17003280915816998]], [[0.16917321807720612]]], "count": [146]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4631277960575402]], [[0.4224861092458292]], [[0.36002054048407794]]], "std": [[[0.1602636818216128]], [[0.14778897385738596]], [[0.15880190792110505]]], "count": [146]}, "observation.state": {"min": [0.38896316289901733, -0.18832656741142273, 0.12814216315746307, 1.820318341255188, -0.8573940396308899, -1.1783443689346313, -0.5992223024368286, -0.3638102114200592, 0.17168323695659637, 2.233407497406006, -0.41209566593170166, 0.08635064959526062], "max": [0.4933667778968811, -0.10315254330635071, 0.1476590931415558, 3.212240219116211, 0.022408390417695045, 0.8170121312141418, -0.4937760829925537, -0.28143954277038574, 0.1911003738641739, 2.680466651916504, 0.10575664788484573, 0.581826388835907], "mean": [0.43965092301368713, -0.14910775423049927, 0.14042426645755768, 2.5577659606933594, -0.48342981934547424, -0.3007972836494446, -0.5597394704818726, -0.33533206582069397, 0.18540532886981964, 2.5113062858581543, -0.08973129838705063, 0.27561840415000916], "std": [0.027912452816963196, 0.023443467915058136, 0.0034804793540388346, 0.48145437240600586, 0.2240639626979828, 0.6239808201789856, 0.029779354110360146, 0.022966504096984863, 0.004574429709464312, 0.09032399952411652, 0.1159101352095604, 0.1250239461660385], "count": [771]}, "action": {"min": [-0.13173341751098633, -0.10942007601261139, 0.11986614763736725, -0.07891424745321274, 0.1179039478302002, 0.23866213858127594, 0.3120864927768707, 0.1038358137011528, -0.12850916385650635, 0.09023085981607437, -0.07778795063495636, -0.510727047920227, 0.15593041479587555, 0.7764168381690979], "max": [-0.11034178733825684, -0.09480953961610794, 0.13626983761787415, 0.7108750939369202, 0.5693086385726929, 0.6834140419960022, 0.9243894815444946, 0.12532901763916016, -0.1098322942852974, 0.10169102251529694, 0.20501984655857086, -0.3213663101196289, 0.4265402555465698, 0.8859678506851196], "mean": [-0.12057597190141678, -0.10285381972789764, 0.12937729060649872, 0.32487601041793823, 0.3365924656391144, 0.4993744492530823, 0.6557450890541077, 0.1106603816151619, -0.12214093655347824, 0.09500601887702942, 0.09963925927877426, -0.43669596314430237, 0.32535529136657715, 0.8262500762939453], "std": [0.006430577486753464, 0.003525956068187952, 0.0037787652108818293, 0.1994834691286087, 0.11701668798923492, 0.1272965669631958, 0.17914491891860962, 0.005484515801072121, 0.005233910866081715, 0.0035048676654696465, 0.07137098908424377, 0.04427886754274368, 0.05259960517287254, 0.03166214004158974], "count": [771]}, "timestamp": {"min": [0.0], "max": [25.666666666666668], "mean": [12.833333333333334], "std": [7.418944718808784], "count": [771]}, "frame_index": {"min": [0], "max": [770], "mean": [385.0], "std": [222.5683415642635], "count": [771]}, "episode_index": {"min": [198], "max": [198], "mean": [198.0], "std": [0.0], "count": [771]}, "index": {"min": [147684], "max": [148454], "mean": [148069.0], "std": [222.5683415642635], "count": [771]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [771]}}} +{"episode_index": 199, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4422937921781179]], [[0.39221101457746604]], [[0.3250139221000053]]], "std": [[[0.17637154290040366]], [[0.17668294263880208]], [[0.17490549554018217]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4462108684485538]], [[0.40993792399525303]], [[0.34784449891067537]]], "std": [[[0.1716894690548612]], [[0.15742438167679132]], [[0.16658150201871288]]], "count": [123]}, "observation.state": {"min": [0.3871791958808899, -0.168703094124794, 0.12624697387218475, 1.6622121334075928, -0.8993414640426636, -0.9712759852409363, -0.5727642178535461, -0.3981841206550598, 0.17678284645080566, 3.5427114963531494, -0.3920101225376129, -0.6964291334152222], "max": [0.477658748626709, -0.11387941986322403, 0.14733631908893585, 3.0369393825531006, 0.0573873296380043, 0.9760133624076843, -0.4985024034976959, -0.3529752194881439, 0.19033296406269073, 3.7804999351501465, -0.09660200774669647, -0.16187730431556702], "mean": [0.4411713480949402, -0.13974620401859283, 0.13908515870571136, 2.317448377609253, -0.4202254116535187, -0.004368407651782036, -0.5473602414131165, -0.37567850947380066, 0.1853206902742386, 3.717252016067505, -0.22517266869544983, -0.5068463087081909], "std": [0.024214161559939384, 0.017419857904314995, 0.003421308472752571, 0.3966994881629944, 0.25551551580429077, 0.48942798376083374, 0.02366216853260994, 0.013692887499928474, 0.0034328666515648365, 0.04799842834472656, 0.07328882068395615, 0.09186362475156784], "count": [618]}, "action": {"min": [-0.13233482837677002, -0.10778214037418365, 0.12066841125488281, -0.14322221279144287, 0.06512376666069031, 0.1781233847141266, 0.4510728716850281, 0.10776151716709137, -0.13091377913951874, 0.08572068065404892, -0.07883057743310928, -0.3830016255378723, 0.7701137661933899, 0.46076932549476624], "max": [-0.11322391033172607, -0.09450962394475937, 0.13699468970298767, 0.5597453713417053, 0.4848175644874573, 0.6491978168487549, 0.9700614213943481, 0.12182500213384628, -0.1182672455906868, 0.09518413245677948, 0.07641776651144028, -0.11082706600427628, 0.8504030108451843, 0.5756106376647949], "mean": [-0.12081548571586609, -0.10102970153093338, 0.1293865442276001, 0.24604304134845734, 0.28233030438423157, 0.42570218443870544, 0.7741765975952148, 0.11229544132947922, -0.126249760389328, 0.09075812995433807, 0.004105281550437212, -0.24316196143627167, 0.8291782140731812, 0.4984548091888428], "std": [0.004984903149306774, 0.0032435068860650063, 0.004010033328086138, 0.1731555014848709, 0.10559671372175217, 0.1463930904865265, 0.12890243530273438, 0.004242552910000086, 0.0034557092003524303, 0.002354675205424428, 0.02530749887228012, 0.05414816364645958, 0.017149437218904495, 0.031535595655441284], "count": [618]}, "timestamp": {"min": [0.0], "max": [20.566666666666666], "mean": [10.283333333333333], "std": [5.946699987450244], "count": [618]}, "frame_index": {"min": [0], "max": [617], "mean": [308.5], "std": [178.40099962350735], "count": [618]}, "episode_index": {"min": [199], "max": [199], "mean": [199.0], "std": [0.0], "count": [618]}, "index": {"min": [148455], "max": [149072], "mean": [148763.5], "std": [178.40099962350735], "count": [618]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [618]}}} +{"episode_index": 200, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42643568445896873]], [[0.37723064179375454]], [[0.31092031837987716]]], "std": [[[0.17885728870132092]], [[0.17890801657805455]], [[0.17540244096937402]]], "count": [132]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4336654762494223]], [[0.3978408678286129]], [[0.33565935705090116]]], "std": [[[0.171787221953668]], [[0.15830256904379678]], [[0.16669218524533766]]], "count": [132]}, "observation.state": {"min": [0.40279456973075867, -0.16565261781215668, 0.12489625066518784, 1.8102532625198364, -1.0551069974899292, -0.9058275818824768, -0.6098024249076843, -0.3867235779762268, 0.17810246348381042, 2.1052870750427246, -0.06503897160291672, -1.374175786972046], "max": [0.5040395855903625, -0.10367769002914429, 0.14555132389068604, 2.9000120162963867, -0.11299838870763779, -0.06892445683479309, -0.4730791747570038, -0.31084001064300537, 0.19921903312206268, 3.3225371837615967, 0.5177156925201416, -0.4010455012321472], "mean": [0.45111918449401855, -0.13937042653560638, 0.1392711102962494, 2.4708430767059326, -0.5572109818458557, -0.3409798741340637, -0.5365692377090454, -0.354665607213974, 0.18886396288871765, 2.7674813270568848, 0.17682473361492157, -0.9386776089668274], "std": [0.027832018211483955, 0.016390614211559296, 0.003692624857649207, 0.2913607358932495, 0.21555259823799133, 0.19492395222187042, 0.03182723745703697, 0.018703218549489975, 0.005790478549897671, 0.3671458065509796, 0.17651231586933136, 0.18981340527534485], "count": [677]}, "action": {"min": [-0.1289447695016861, -0.10852684080600739, 0.11680925637483597, 0.19174906611442566, 0.14585165679454803, 0.2234872579574585, 0.5226821899414062, 0.1006716936826706, -0.13666756451129913, 0.08868631720542908, 0.24750447273254395, -0.42581865191459656, 0.3195607364177704, 0.35762515664100647], "max": [-0.10976842790842056, -0.09401930868625641, 0.13828898966312408, 0.5335995554924011, 0.6551790237426758, 0.6296159625053406, 0.8221057057380676, 0.12538251280784607, -0.11914600431919098, 0.09857837855815887, 0.6810424327850342, -0.11937225610017776, 0.8130673170089722, 0.7117297053337097], "mean": [-0.11865708976984024, -0.09958907961845398, 0.12872180342674255, 0.364124059677124, 0.36501437425613403, 0.46459388732910156, 0.6930607557296753, 0.11247652024030685, -0.12888021767139435, 0.09406795352697372, 0.5033336877822876, -0.242019921541214, 0.6212899088859558, 0.5014806985855103], "std": [0.005745596718043089, 0.003516347147524357, 0.004453612491488457, 0.0810193195939064, 0.1184675395488739, 0.11421747505664825, 0.06598000973463058, 0.0064485943876206875, 0.004580901004374027, 0.002884774934500456, 0.11651690304279327, 0.07989479601383209, 0.14693039655685425, 0.09513115882873535], "count": [677]}, "timestamp": {"min": [0.0], "max": [22.533333333333335], "mean": [11.266666666666666], "std": [6.51442843062826], "count": [677]}, "frame_index": {"min": [0], "max": [676], "mean": [338.0], "std": [195.4328529188478], "count": [677]}, "episode_index": {"min": [200], "max": [200], "mean": [200.0], "std": [0.0], "count": [677]}, "index": {"min": [149073], "max": [149749], "mean": [149411.0], "std": [195.4328529188478], "count": [677]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [677]}}} +{"episode_index": 201, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4246549640446699]], [[0.3738611872876579]], [[0.3062503008973597]]], "std": [[[0.18742738780470525]], [[0.18529277379147197]], [[0.17973517462549998]]], "count": [143]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43005109732315616]], [[0.3925006551183022]], [[0.32590464410317355]]], "std": [[[0.17509040175524632]], [[0.16249890356514657]], [[0.17003115891962173]]], "count": [143]}, "observation.state": {"min": [0.3970334231853485, -0.22113272547721863, 0.1309913992881775, 0.9865911602973938, -1.067267656326294, -0.8766599893569946, -0.5298566818237305, -0.4961160719394684, 0.1790681928396225, 3.147026777267456, -1.1327165365219116, -0.7554000616073608], "max": [0.48579850792884827, -0.10704480111598969, 0.15217536687850952, 2.6376898288726807, 0.16983917355537415, 0.9859782457351685, -0.4357011318206787, -0.36903080344200134, 0.20954139530658722, 4.543352127075195, -0.45513617992401123, 0.6006190180778503], "mean": [0.4458112120628357, -0.15545810759067535, 0.14264217019081116, 1.8044397830963135, -0.5991480350494385, 0.22203470766544342, -0.48748111724853516, -0.4393066465854645, 0.19876286387443542, 3.95407772064209, -0.7937209010124207, -0.1386793702840805], "std": [0.02108578011393547, 0.02634805254638195, 0.005812028888612986, 0.4473378360271454, 0.3147912323474884, 0.5835263729095459, 0.020627902820706367, 0.030767789110541344, 0.0076801651157438755, 0.5279937386512756, 0.2019881308078766, 0.3891090452671051], "count": [754]}, "action": {"min": [-0.12562592327594757, -0.11051145941019058, 0.11736084520816803, -0.146185502409935, 0.10623480379581451, -0.1537265032529831, 0.5544171333312988, 0.1085890606045723, -0.1518217921257019, 0.07790260761976242, -0.5409746170043945, -0.4782894253730774, 0.5014792680740356, 0.3031849265098572], "max": [-0.10849525034427643, -0.09555815160274506, 0.13597175478935242, 0.427660197019577, 0.6517882347106934, 0.5336924195289612, 0.954311728477478, 0.12646324932575226, -0.13125284016132355, 0.1009432002902031, -0.08578801900148392, -0.07270106673240662, 0.8870751261711121, 0.7208130955696106], "mean": [-0.11720648407936096, -0.10523155331611633, 0.1276223510503769, 0.1584465056657791, 0.4268713891506195, 0.2779819071292877, 0.7894310355186462, 0.11531731486320496, -0.14233267307281494, 0.09194623678922653, -0.3375466763973236, -0.28013235330581665, 0.6906120777130127, 0.5291708111763], "std": [0.0050698923878371716, 0.003508736612275243, 0.0039762347005307674, 0.21001891791820526, 0.13217368721961975, 0.13865649700164795, 0.10675608366727829, 0.005021142773330212, 0.006184113211929798, 0.004813798237591982, 0.1284252405166626, 0.11524122208356857, 0.08884816616773605, 0.11381189525127411], "count": [754]}, "timestamp": {"min": [0.0], "max": [25.1], "mean": [12.55], "std": [7.255362001842347], "count": [754]}, "frame_index": {"min": [0], "max": [753], "mean": [376.5], "std": [217.66086005527038], "count": [754]}, "episode_index": {"min": [201], "max": [201], "mean": [201.0], "std": [0.0], "count": [754]}, "index": {"min": [149750], "max": [150503], "mean": [150126.5], "std": [217.66086005527038], "count": [754]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [754]}}} +{"episode_index": 202, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41455692300560887]], [[0.36584147043372117]], [[0.2985728167153386]]], "std": [[[0.1917552390607074]], [[0.18656087429236348]], [[0.18086045742458426]]], "count": [141]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41653243831023345]], [[0.38243295825028195]], [[0.31760285039941905]]], "std": [[[0.18328454757292367]], [[0.16613645380426095]], [[0.1721482458802247]]], "count": [141]}, "observation.state": {"min": [0.3727222681045532, -0.20815853774547577, 0.1311534345149994, 1.5716261863708496, -1.154578447341919, -0.7893922328948975, -0.5975850820541382, -0.48821574449539185, 0.1789165437221527, 2.728275775909424, -0.6043432354927063, -0.4080001711845398], "max": [0.4784155786037445, -0.10192462801933289, 0.1498524248600006, 2.903995990753174, 0.5692276358604431, 0.6332600116729736, -0.4807092249393463, -0.40245479345321655, 0.19728496670722961, 3.127106189727783, -0.027463940903544426, 0.503843367099762], "mean": [0.43256911635398865, -0.14144368469715118, 0.1399742215871811, 2.052616834640503, -0.357976496219635, -0.03729623183608055, -0.5585325956344604, -0.46049579977989197, 0.19159136712551117, 2.8652184009552, -0.3742663264274597, -0.15523630380630493], "std": [0.024731624871492386, 0.01974036730825901, 0.004012199584394693, 0.2673431634902954, 0.49257633090019226, 0.3671770989894867, 0.029765376821160316, 0.02209102362394333, 0.0053321365267038345, 0.07216035574674606, 0.1432209461927414, 0.22120611369609833], "count": [735]}, "action": {"min": [-0.1325521320104599, -0.11532725393772125, 0.12124801427125931, 0.01783651113510132, -0.09847717732191086, 0.015628548339009285, 0.556419312953949, 0.10559207946062088, -0.14500270783901215, 0.07862222194671631, -0.125371515750885, -0.49943065643310547, 0.4694403111934662, 0.6527348756790161], "max": [-0.11055618524551392, -0.09504754841327667, 0.13621534407138824, 0.6348305344581604, 0.6866147518157959, 0.5875001549720764, 0.9873660802841187, 0.1265186220407486, -0.12760230898857117, 0.09124775230884552, 0.26607072353363037, -0.17598415911197662, 0.6036003828048706, 0.8193114995956421], "mean": [-0.12193148583173752, -0.10297678411006927, 0.12906686961650848, 0.30421361327171326, 0.2892448604106903, 0.2904643714427948, 0.800517201423645, 0.11250563710927963, -0.13933165371418, 0.08303771913051605, 0.15779957175254822, -0.3136241137981415, 0.5532083511352539, 0.7439738512039185], "std": [0.0056284526363015175, 0.004017680883407593, 0.0030918826814740896, 0.13566218316555023, 0.22961801290512085, 0.1211443766951561, 0.11309109628200531, 0.005812746472656727, 0.00520225940272212, 0.003255608258768916, 0.09077592194080353, 0.080083929002285, 0.0344771072268486, 0.03688940405845642], "count": [735]}, "timestamp": {"min": [0.0], "max": [24.466666666666665], "mean": [12.233333333333333], "std": [7.0725342516484675], "count": [735]}, "frame_index": {"min": [0], "max": [734], "mean": [367.0], "std": [212.176027549454], "count": [735]}, "episode_index": {"min": [202], "max": [202], "mean": [202.0], "std": [0.0], "count": [735]}, "index": {"min": [150504], "max": [151238], "mean": [150871.0], "std": [212.176027549454], "count": [735]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [735]}}} +{"episode_index": 203, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41890540530388404]], [[0.3678511794756217]], [[0.29977992074224324]]], "std": [[[0.18154490600243087]], [[0.17529571839187014]], [[0.16886194073608732]]], "count": [145]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4238972729321614]], [[0.3871106716249718]], [[0.32083972278566597]]], "std": [[[0.1755611224229621]], [[0.15490934268733697]], [[0.16087642262815274]]], "count": [145]}, "observation.state": {"min": [0.36497634649276733, -0.18179312348365784, 0.12851549685001373, -1.5238168239593506, -0.16792626678943634, -1.2201459407806396, -0.6190001964569092, -0.4278934597969055, 0.18117468059062958, 2.6416738033294678, -0.994303822517395, -0.47938472032546997], "max": [0.4883856177330017, -0.10344600677490234, 0.14662335813045502, -0.07926280051469803, 1.1317601203918457, 0.9784281253814697, -0.5559749603271484, -0.35327643156051636, 0.1998918056488037, 3.5104193687438965, -0.5185354948043823, 0.8017640709877014], "mean": [0.4363400638103485, -0.1447366327047348, 0.13902756571769714, -0.8981462717056274, 0.5860258340835571, -0.19737794995307922, -0.5880389213562012, -0.39757320284843445, 0.19082364439964294, 3.1332995891571045, -0.7015273571014404, -0.05479021742939949], "std": [0.03213437646627426, 0.02153065800666809, 0.0037821014411747456, 0.4230481684207916, 0.2705056071281433, 0.5775483250617981, 0.018300853669643402, 0.01849612407386303, 0.005433150567114353, 0.22155985236167908, 0.14208024740219116, 0.23581068217754364], "count": [766]}, "action": {"min": [-0.13510243594646454, -0.10730909556150436, 0.12087669968605042, -0.530475378036499, -0.41992124915122986, -0.5794517397880554, -0.6363826394081116, 0.09702164679765701, -0.13441775739192963, 0.08490250259637833, -0.35005125403404236, -0.3228500783443451, 0.417763888835907, 0.6507570147514343], "max": [-0.111069455742836, -0.09404820948839188, 0.13744749128818512, 0.6095463037490845, 0.43053269386291504, 0.976813018321991, 0.598456084728241, 0.11571446061134338, -0.11804581433534622, 0.09762705862522125, 0.030843274667859077, -0.09860903769731522, 0.7198909521102905, 0.8488063216209412], "mean": [-0.1209987923502922, -0.10083720833063126, 0.12855547666549683, 0.28216034173965454, -0.09359841048717499, 0.73634934425354, -0.3929906189441681, 0.10577794909477234, -0.12731215357780457, 0.08989399671554565, -0.09313415735960007, -0.2338702380657196, 0.5962796807289124, 0.7505131959915161], "std": [0.006018587853759527, 0.0026828155387192965, 0.0034887949004769325, 0.19942188262939453, 0.20217114686965942, 0.2793727517127991, 0.23723646998405457, 0.0054583558812737465, 0.005289382766932249, 0.0032003687229007483, 0.08124390989542007, 0.056490302085876465, 0.07061069458723068, 0.055069055408239365], "count": [766]}, "timestamp": {"min": [0.0], "max": [25.5], "mean": [12.75], "std": [7.370832155643395], "count": [766]}, "frame_index": {"min": [0], "max": [765], "mean": [382.5], "std": [221.12496466930187], "count": [766]}, "episode_index": {"min": [203], "max": [203], "mean": [203.0], "std": [0.0], "count": [766]}, "index": {"min": [151239], "max": [152004], "mean": [151621.5], "std": [221.12496466930187], "count": [766]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [766]}}} +{"episode_index": 204, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4238542372980089]], [[0.37182372018920457]], [[0.3031890007339834]]], "std": [[[0.1829233607021069]], [[0.1779140424241977]], [[0.17110826906696613]]], "count": [187]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42752759136928686]], [[0.39016612491699]], [[0.3229507255367982]]], "std": [[[0.1752791403135536]], [[0.15629004807106586]], [[0.1619655992741393]]], "count": [187]}, "observation.state": {"min": [0.38891682028770447, -0.21692383289337158, 0.12527476251125336, -1.6668254137039185, 0.10138428211212158, -1.3053139448165894, -0.6090146899223328, -0.44547039270401, 0.17616063356399536, 2.490487575531006, -0.8481027483940125, -0.2632305324077606], "max": [0.49750617146492004, -0.10669728368520737, 0.1494661271572113, 0.06626202166080475, 1.0395305156707764, 1.1661297082901, -0.528211772441864, -0.35692155361175537, 0.2023482769727707, 3.183093309402466, -0.19388718903064728, 0.311253160238266], "mean": [0.4483587145805359, -0.15449759364128113, 0.14136594533920288, -0.8342113494873047, 0.5864102244377136, -0.13670913875102997, -0.5647937059402466, -0.41117510199546814, 0.1937769502401352, 2.857726812362671, -0.4490542709827423, 0.04847186058759689], "std": [0.02721431851387024, 0.025175347924232483, 0.004449636209756136, 0.5004292130470276, 0.23878751695156097, 0.7251268625259399, 0.025796011090278625, 0.023498017340898514, 0.0058968327939510345, 0.1885891705751419, 0.1789616495370865, 0.1040034070611], "count": [1076]}, "action": {"min": [-0.13030403852462769, -0.10858772695064545, 0.11508497595787048, -0.5633865594863892, -0.4909072816371918, -0.6493380069732666, -0.6527270078659058, 0.09993067383766174, -0.14837859570980072, 0.08311758190393448, -0.16882239282131195, -0.4144713580608368, 0.3789092004299164, 0.6829736232757568], "max": [-0.105793297290802, -0.09705650061368942, 0.1365075409412384, 0.6100178956985474, 0.5268387794494629, 0.9502962231636047, 0.6584847569465637, 0.12125932425260544, -0.12093230336904526, 0.09726985543966293, 0.21185128390789032, -0.14413654804229736, 0.623805582523346, 0.8635032773017883], "mean": [-0.11818467825651169, -0.10322549939155579, 0.12832221388816833, 0.19299356639385223, 0.01263042725622654, 0.5444309711456299, -0.2448396384716034, 0.10878416150808334, -0.13451214134693146, 0.09074770659208298, 0.04061554744839668, -0.3233102262020111, 0.5159134268760681, 0.7793055772781372], "std": [0.006395168136805296, 0.0023427277337759733, 0.004009687807410955, 0.29716408252716064, 0.28775620460510254, 0.511322021484375, 0.4167509377002716, 0.004641128238290548, 0.008227629587054253, 0.0030614195857197046, 0.09711910784244537, 0.06894133985042572, 0.06486393511295319, 0.044090013951063156], "count": [1076]}, "timestamp": {"min": [0.0], "max": [35.833333333333336], "mean": [17.916666666666664], "std": [10.353810356042304], "count": [1076]}, "frame_index": {"min": [0], "max": [1075], "mean": [537.5], "std": [310.61431068126916], "count": [1076]}, "episode_index": {"min": [204], "max": [204], "mean": [204.0], "std": [0.0], "count": [1076]}, "index": {"min": [152005], "max": [153080], "mean": [152542.5], "std": [310.61431068126916], "count": [1076]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1076]}}} +{"episode_index": 205, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43087378795825604]], [[0.3771618269049732]], [[0.3068350681836521]]], "std": [[[0.17522509763187918]], [[0.1725116104351252]], [[0.16838119295050827]]], "count": [162]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43386656950160035]], [[0.39346074060625624]], [[0.32563749529304176]]], "std": [[[0.16756308213745372]], [[0.15147367520395721]], [[0.16007296201912913]]], "count": [162]}, "observation.state": {"min": [0.3818119168281555, -0.2149931639432907, 0.1294008493423462, -1.7651699781417847, -0.04631977155804634, -0.6366134881973267, -0.5678679943084717, -0.4397478699684143, 0.17416563630104065, 2.185598373413086, -0.7392034530639648, -0.2869030237197876], "max": [0.5022865533828735, -0.08813183009624481, 0.14674003422260284, -0.12434613704681396, 0.9925275444984436, 1.039584994316101, -0.4775197505950928, -0.3500019907951355, 0.20078624784946442, 4.542303562164307, 0.169292613863945, 1.0175048112869263], "mean": [0.4279976189136505, -0.1487317532300949, 0.13863109052181244, -0.9055432677268982, 0.6403864622116089, 0.1601898968219757, -0.5293952226638794, -0.41454413533210754, 0.1870027780532837, 3.1206161975860596, -0.4374610185623169, 0.5025298595428467], "std": [0.028790349140763283, 0.02393639087677002, 0.004205898381769657, 0.43824055790901184, 0.2218707799911499, 0.45712196826934814, 0.020840279757976532, 0.01580103114247322, 0.0053624860011041164, 0.4089857041835785, 0.15596605837345123, 0.21203699707984924], "count": [886]}, "action": {"min": [-0.1341254562139511, -0.10919815301895142, 0.11792611330747604, -0.4598492980003357, -0.5522310733795166, -0.5619350075721741, -0.5743065476417542, 0.10452855378389359, -0.14036469161510468, 0.08214167505502701, -0.38780736923217773, -0.581346869468689, 0.0733029842376709, 0.17793893814086914], "max": [-0.10963721573352814, -0.09250888228416443, 0.13653579354286194, 0.6121452450752258, 0.5860759019851685, 0.9771004319190979, 0.6013892292976379, 0.12553146481513977, -0.1195455938577652, 0.09899134188890457, 0.08081654459238052, -0.2980055510997772, 0.8649724125862122, 0.879220724105835], "mean": [-0.12203527241945267, -0.10135924816131592, 0.12796393036842346, 0.28199654817581177, -0.11132664233446121, 0.5577685832977295, -0.22046469151973724, 0.11626414209604263, -0.13125793635845184, 0.08940038084983826, -0.1911424696445465, -0.4644715487957001, 0.48570865392684937, 0.6843390464782715], "std": [0.005846608430147171, 0.0033643569331616163, 0.0038581122644245625, 0.31384244561195374, 0.29274165630340576, 0.4859669804573059, 0.35779163241386414, 0.0045237671583890915, 0.004194555804133415, 0.003446206683292985, 0.08712449669837952, 0.05285144969820976, 0.1290593296289444, 0.12828870117664337], "count": [886]}, "timestamp": {"min": [0.0], "max": [29.5], "mean": [14.75], "std": [8.525533544724471], "count": [886]}, "frame_index": {"min": [0], "max": [885], "mean": [442.5], "std": [255.76600634173417], "count": [886]}, "episode_index": {"min": [205], "max": [205], "mean": [205.0], "std": [0.0], "count": [886]}, "index": {"min": [153081], "max": [153966], "mean": [153523.5], "std": [255.76600634173417], "count": [886]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [886]}}} +{"episode_index": 206, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4410172781352124]], [[0.38744131050857844]], [[0.3169646480119826]]], "std": [[[0.1753241826498642]], [[0.17246282697572898]], [[0.16869000013493082]]], "count": [128]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4468902250136166]], [[0.40545037402982026]], [[0.3382096737132353]]], "std": [[[0.1671552805388408]], [[0.1505254636687696]], [[0.15911224387437642]]], "count": [128]}, "observation.state": {"min": [0.38035231828689575, -0.18435707688331604, 0.12941640615463257, -1.5787556171417236, 0.06927470862865448, -0.9435068368911743, -0.5741311311721802, -0.4125792682170868, 0.17731821537017822, 3.574165105819702, -0.6039333343505859, -0.560673713684082], "max": [0.47015225887298584, -0.09305892884731293, 0.1487078070640564, -0.04256705939769745, 0.8851312398910522, 1.0614672899246216, -0.46929502487182617, -0.3163076937198639, 0.19456276297569275, 4.262367248535156, -0.2840672731399536, 0.12002523988485336], "mean": [0.43478718400001526, -0.14704540371894836, 0.137355774641037, -0.8464977145195007, 0.5304922461509705, -0.03897574916481972, -0.5344599485397339, -0.378994882106781, 0.1878824234008789, 3.854536771774292, -0.42487865686416626, -0.34429848194122314], "std": [0.02207052707672119, 0.025510871782898903, 0.004327572416514158, 0.39379528164863586, 0.2090955227613449, 0.4892456829547882, 0.03216266259551048, 0.028331365436315536, 0.004316121339797974, 0.2079927921295166, 0.09014526754617691, 0.12862391769886017], "count": [651]}, "action": {"min": [-0.13233593106269836, -0.10907939821481705, 0.12009190022945404, -0.44528764486312866, -0.4378569722175598, -0.5919144749641418, -0.59302818775177, 0.10412853956222534, -0.1348935067653656, 0.0871579647064209, -0.27496305108070374, -0.4287412166595459, 0.7203657627105713, 0.368025541305542], "max": [-0.11199843883514404, -0.09220536053180695, 0.1387350708246231, 0.5541890859603882, 0.5257673859596252, 0.957598090171814, 0.5981877446174622, 0.12242148816585541, -0.11653309315443039, 0.10024993121623993, -0.012823916040360928, -0.12055140733718872, 0.8649882078170776, 0.5895639061927795], "mean": [-0.12198105454444885, -0.1006716787815094, 0.12744252383708954, 0.2530907988548279, -0.14258980751037598, 0.6876241564750671, -0.3500072658061981, 0.11197400093078613, -0.12759457528591156, 0.09235058724880219, -0.14203138649463654, -0.2670658826828003, 0.7997516989707947, 0.5010260343551636], "std": [0.005610704887658358, 0.003500422229990363, 0.004148948471993208, 0.21546387672424316, 0.22742056846618652, 0.36564064025878906, 0.2973952889442444, 0.005383871030062437, 0.005265159998089075, 0.003989511635154486, 0.09066735208034515, 0.07176484912633896, 0.029610447585582733, 0.06020543351769447], "count": [651]}, "timestamp": {"min": [0.0], "max": [21.666666666666668], "mean": [10.833333333333334], "std": [6.264243030146638], "count": [651]}, "frame_index": {"min": [0], "max": [650], "mean": [325.0], "std": [187.92729090439914], "count": [651]}, "episode_index": {"min": [206], "max": [206], "mean": [206.0], "std": [0.0], "count": [651]}, "index": {"min": [153967], "max": [154617], "mean": [154292.0], "std": [187.92729090439914], "count": [651]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [651]}}} +{"episode_index": 207, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43860362457351915]], [[0.38531775736150503]], [[0.3154301410641126]]], "std": [[[0.1800638693604592]], [[0.1771212809068441]], [[0.17402387793059712]]], "count": [159]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4446088570997931]], [[0.4028615444430742]], [[0.33656273208095255]]], "std": [[[0.17166699579778444]], [[0.15646029142572246]], [[0.16528603203846917]]], "count": [159]}, "observation.state": {"min": [0.39053088426589966, -0.21623651683330536, 0.12730734050273895, -1.5177358388900757, 0.08389481157064438, -0.9940545558929443, -0.5773746967315674, -0.46448376774787903, 0.1705930531024933, 2.2078254222869873, -0.1177806630730629, -0.4837888479232788], "max": [0.49556776881217957, -0.08566828072071075, 0.14902278780937195, -0.027888759970664978, 1.0400770902633667, 0.7649132013320923, -0.44684505462646484, -0.3637638986110687, 0.18969519436359406, 2.8022964000701904, 0.2678075432777405, 0.18546849489212036], "mean": [0.44526275992393494, -0.13033272325992584, 0.13896797597408295, -0.8908113837242126, 0.4889422059059143, -0.10157565772533417, -0.5220491886138916, -0.41786661744117737, 0.1815975159406662, 2.6084561347961426, 0.0710480660200119, -0.3067762851715088], "std": [0.028685955330729485, 0.025870490819215775, 0.004186089150607586, 0.3847629427909851, 0.22329579293727875, 0.4559236764907837, 0.03973180428147316, 0.022020339965820312, 0.005854959599673748, 0.19351336359977722, 0.08533832430839539, 0.13354353606700897], "count": [862]}, "action": {"min": [-0.1328449249267578, -0.10792234539985657, 0.11665818840265274, -0.4635864496231079, -0.5296993851661682, -0.6297511458396912, -0.6346666216850281, 0.11081671714782715, -0.13938753306865692, 0.07673532515764236, 0.2216877043247223, -0.4880257546901703, 0.2997284531593323, 0.6103487610816956], "max": [-0.108759306371212, -0.09277871251106262, 0.1374357044696808, 0.6414822936058044, 0.46883875131607056, 0.9534791111946106, 0.6915619969367981, 0.1338263601064682, -0.11907747387886047, 0.09028658270835876, 0.47125616669654846, -0.326802134513855, 0.5655661225318909, 0.8037348389625549], "mean": [-0.11947471648454666, -0.09916773438453674, 0.12948672473430634, 0.2783721685409546, -0.17189401388168335, 0.7381230592727661, -0.38021358847618103, 0.12004861235618591, -0.13104145228862762, 0.08378709107637405, 0.37112370133399963, -0.3933025896549225, 0.4704352617263794, 0.6847816705703735], "std": [0.00658000074326992, 0.0032143080607056618, 0.004840468056499958, 0.16131867468357086, 0.19837622344493866, 0.2854553759098053, 0.2381415069103241, 0.007476766128093004, 0.005045933648943901, 0.002988262567669153, 0.054001472890377045, 0.04007173702120781, 0.09302262216806412, 0.06456901878118515], "count": [862]}, "timestamp": {"min": [0.0], "max": [28.7], "mean": [14.349999999999996], "std": [8.294593285856623], "count": [862]}, "frame_index": {"min": [0], "max": [861], "mean": [430.5], "std": [248.8377985756987], "count": [862]}, "episode_index": {"min": [207], "max": [207], "mean": [207.0], "std": [0.0], "count": [862]}, "index": {"min": [154618], "max": [155479], "mean": [155048.5], "std": [248.8377985756987], "count": [862]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [862]}}} +{"episode_index": 208, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.436854437834013]], [[0.38341619416047523]], [[0.3134321755767834]]], "std": [[[0.17720355859429684]], [[0.1748115085548451]], [[0.1711884597588085]]], "count": [117]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44140602945831703]], [[0.40137415274751875]], [[0.3335240163491797]]], "std": [[[0.16964797733960654]], [[0.15381709091469542]], [[0.1622334018980058]]], "count": [117]}, "observation.state": {"min": [0.3979601562023163, -0.17088863253593445, 0.12664364278316498, -1.8318513631820679, -0.26015588641166687, -0.7551766037940979, -0.5863639116287231, -0.4414777457714081, 0.17444823682308197, 3.1162023544311523, -0.18227308988571167, -0.789029598236084], "max": [0.4970196485519409, -0.11020340025424957, 0.14499132335186005, 0.028727520257234573, 0.8971552848815918, 0.8351392149925232, -0.505282998085022, -0.3897663354873657, 0.1893037110567093, 3.9277024269104004, 0.17967699468135834, 0.28416749835014343], "mean": [0.44480857253074646, -0.1457638442516327, 0.13627588748931885, -0.9646744728088379, 0.4007434546947479, -0.16497021913528442, -0.544939398765564, -0.41196367144584656, 0.18389025330543518, 3.477292060852051, 0.020172670483589172, -0.5016137957572937], "std": [0.03099813684821129, 0.012368913739919662, 0.004498471971601248, 0.3101154863834381, 0.2986374497413635, 0.39061713218688965, 0.021619560196995735, 0.015450192615389824, 0.003597866278141737, 0.12165716290473938, 0.11809418350458145, 0.25452661514282227], "count": [574]}, "action": {"min": [-0.12986792623996735, -0.10761535912752151, 0.11746450513601303, -0.3863733112812042, -0.43585970997810364, -0.6194168925285339, -0.636046826839447, 0.1099642813205719, -0.13647408783435822, 0.07879755645990372, -0.13537029922008514, -0.5921362638473511, 0.5118986964225769, 0.3564789295196533], "max": [-0.10861265659332275, -0.09347440302371979, 0.1318371742963791, 0.5827438235282898, 0.5337982177734375, 0.9936758279800415, 0.6746477484703064, 0.12425962090492249, -0.12205995619297028, 0.09007523208856583, 0.24313227832317352, -0.17443358898162842, 0.8711791634559631, 0.6335878968238831], "mean": [-0.121213398873806, -0.1003568097949028, 0.12614300847053528, 0.24023567140102386, -0.16632984578609467, 0.7901882529258728, -0.3359439969062805, 0.11591603606939316, -0.1310568004846573, 0.08471235632896423, 0.1625521183013916, -0.3214203715324402, 0.7889854311943054, 0.47252190113067627], "std": [0.006503407843410969, 0.0028888701926916838, 0.0028723138384521008, 0.17444007098674774, 0.1616942584514618, 0.2663407623767853, 0.22327853739261627, 0.003771821968257427, 0.003358556656166911, 0.003253707429394126, 0.07569853961467743, 0.10515397787094116, 0.05727965012192726, 0.06650552153587341], "count": [574]}, "timestamp": {"min": [0.0], "max": [19.1], "mean": [9.549999999999999], "std": [5.523309193268511], "count": [574]}, "frame_index": {"min": [0], "max": [573], "mean": [286.5], "std": [165.6992757980553], "count": [574]}, "episode_index": {"min": [208], "max": [208], "mean": [208.0], "std": [0.0], "count": [574]}, "index": {"min": [155480], "max": [156053], "mean": [155766.5], "std": [165.6992757980553], "count": [574]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [574]}}} +{"episode_index": 209, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38735273355766947]], [[0.3375771411699994]], [[0.2680939475074958]]], "std": [[[0.17267071580726046]], [[0.16931418948266475]], [[0.1627940073899037]]], "count": [202]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38771273107702925]], [[0.353878259884812]], [[0.2857336156409759]]], "std": [[[0.16630885893620329]], [[0.15032542068081525]], [[0.1569655487371564]]], "count": [202]}, "observation.state": {"min": [0.37394246459007263, -0.1744951456785202, 0.12441790848970413, -2.1556127071380615, -0.8306132555007935, -0.5363724231719971, -0.5869045257568359, -0.4795739948749542, 0.17511582374572754, 3.0625216960906982, -0.5663582682609558, -0.9387650489807129], "max": [0.5106965899467468, -0.10197096318006516, 0.14506781101226807, 0.8907628655433655, 0.8393580317497253, 1.3246344327926636, -0.4913511574268341, -0.3631537854671478, 0.19852162897586823, 3.4508674144744873, -0.14428813755512238, -0.1443801075220108], "mean": [0.42795321345329285, -0.14718563854694366, 0.13805168867111206, -0.2713751494884491, 0.21354028582572937, 0.3715725243091583, -0.5497517585754395, -0.4248589873313904, 0.1881686896085739, 3.2544283866882324, -0.3238529860973358, -0.5674293041229248], "std": [0.03172038868069649, 0.01595214568078518, 0.004464035388082266, 0.7754397988319397, 0.4252782166004181, 0.5049682855606079, 0.024704892188310623, 0.032647427171468735, 0.005912053398787975, 0.09286406636238098, 0.08939414471387863, 0.22149278223514557], "count": [1187]}, "action": {"min": [-0.13317859172821045, -0.11284469813108444, 0.11748465150594711, -0.44521263241767883, -0.4757508337497711, -0.618393063545227, -0.6216562390327454, 0.10428281873464584, -0.13948245346546173, 0.07665351033210754, 0.004016823600977659, -0.3725830018520355, 0.6459909081459045, 0.49967411160469055], "max": [-0.10733397305011749, -0.09514188766479492, 0.1367969512939453, 0.6184353828430176, 0.7619033455848694, 0.8772682547569275, 0.8781725168228149, 0.12600065767765045, -0.11946002393960953, 0.09957975894212723, 0.3058259189128876, -0.0996924564242363, 0.8158528804779053, 0.727433979511261], "mean": [-0.12366464734077454, -0.10369821637868881, 0.12755988538265228, 0.09984997659921646, 0.18493953347206116, 0.21394868195056915, 0.20593726634979248, 0.11288557201623917, -0.13305304944515228, 0.08647753298282623, 0.16693031787872314, -0.21031226217746735, 0.7216424345970154, 0.6259273290634155], "std": [0.0062797293066978455, 0.004646454472094774, 0.0038476951885968447, 0.2681928873062134, 0.39211979508399963, 0.5350947976112366, 0.5963485836982727, 0.005657858215272427, 0.00472857803106308, 0.006271680351346731, 0.0836545005440712, 0.06104934215545654, 0.043206412345170975, 0.05251934751868248], "count": [1187]}, "timestamp": {"min": [0.0], "max": [39.53333333333333], "mean": [19.76666666666667], "std": [11.421908772179892], "count": [1187]}, "frame_index": {"min": [0], "max": [1186], "mean": [593.0], "std": [342.6572631653968], "count": [1187]}, "episode_index": {"min": [209], "max": [209], "mean": [209.0], "std": [0.0], "count": [1187]}, "index": {"min": [156054], "max": [157240], "mean": [156647.0], "std": [342.6572631653968], "count": [1187]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1187]}}} +{"episode_index": 210, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4409962603801585]], [[0.3856125635439361]], [[0.3148562486186101]]], "std": [[[0.17245601335644725]], [[0.1713110475799161]], [[0.1681708589686061]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44809302279688046]], [[0.40564325013419217]], [[0.337535476066433]]], "std": [[[0.164184712577134]], [[0.14929088719806072]], [[0.15898846896033608]]], "count": [138]}, "observation.state": {"min": [0.37873828411102295, -0.18241095542907715, 0.12233737111091614, -1.7542660236358643, -0.08594436198472977, -0.6044569611549377, -0.5853754281997681, -0.42139092087745667, 0.1689286231994629, 3.3542003631591797, -0.2712234556674957, -0.8232988715171814], "max": [0.481983482837677, -0.1160108894109726, 0.1431039273738861, -0.13483062386512756, 1.1504793167114258, 0.6978382468223572, -0.4835434556007385, -0.36531615257263184, 0.18554316461086273, 3.8878612518310547, 0.26794418692588806, -0.3406279683113098], "mean": [0.4430147111415863, -0.14700663089752197, 0.137297585606575, -0.849629819393158, 0.5526964068412781, 0.170263409614563, -0.5380899310112, -0.3950856626033783, 0.17879214882850647, 3.581089973449707, 0.017907975241541862, -0.6641958951950073], "std": [0.020552489906549454, 0.014194252900779247, 0.0037793873343616724, 0.4202365577220917, 0.26737964153289795, 0.372046560049057, 0.0266858097165823, 0.014939939603209496, 0.004882081877440214, 0.15523725748062134, 0.14574237167835236, 0.14672845602035522], "count": [714]}, "action": {"min": [-0.1319435089826584, -0.1076493114233017, 0.1135096549987793, -0.326878160238266, -0.5226104259490967, -0.5778199434280396, -0.5728718042373657, 0.11166869848966599, -0.13339464366436005, 0.08206437528133392, -0.03137630969285965, -0.34096699953079224, 0.7534560561180115, 0.283704549074173], "max": [-0.11237241327762604, -0.09430842101573944, 0.1346600353717804, 0.6639989614486694, 0.5100014209747314, 0.9745796918869019, 0.629883348941803, 0.12874403595924377, -0.11618774384260178, 0.09011701494455338, 0.25316837430000305, -0.1912272572517395, 0.9231139421463013, 0.5875887870788574], "mean": [-0.1205967366695404, -0.1003151461482048, 0.12658452987670898, 0.30692189931869507, -0.1974044293165207, 0.6134772896766663, -0.2780384123325348, 0.11868862807750702, -0.12571179866790771, 0.08491998165845871, 0.16229766607284546, -0.23939985036849976, 0.8419907689094543, 0.43725231289863586], "std": [0.004443798679858446, 0.0024416246451437473, 0.0033260886557400227, 0.23920714855194092, 0.260324627161026, 0.41977933049201965, 0.334614098072052, 0.004745391197502613, 0.004831400234252214, 0.002088041277602315, 0.07216410338878632, 0.04450828954577446, 0.045392606407403946, 0.08342467993497849], "count": [714]}, "timestamp": {"min": [0.0], "max": [23.766666666666666], "mean": [11.883333333333335], "std": [6.8704614649047215], "count": [714]}, "frame_index": {"min": [0], "max": [713], "mean": [356.5], "std": [206.11384394714165], "count": [714]}, "episode_index": {"min": [210], "max": [210], "mean": [210.0], "std": [0.0], "count": [714]}, "index": {"min": [157241], "max": [157954], "mean": [157597.5], "std": [206.11384394714165], "count": [714]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [714]}}} +{"episode_index": 211, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44603246258561524]], [[0.39000430390020935]], [[0.3197927684508807]]], "std": [[[0.17219866490886385]], [[0.1709508706785198]], [[0.1673918370328534]]], "count": [153]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45828134834180584]], [[0.41213297770088425]], [[0.34397234147834876]]], "std": [[[0.16108126979394288]], [[0.1470750432022761]], [[0.15627789788122162]]], "count": [153]}, "observation.state": {"min": [0.38626793026924133, -0.19075922667980194, 0.12031515687704086, -2.267796754837036, -0.11053892970085144, -0.8535714745521545, -0.6339591145515442, -0.3993965685367584, 0.17102991044521332, 2.4607114791870117, -0.4484409987926483, -0.16913220286369324], "max": [0.5159403681755066, -0.10835766047239304, 0.14638744294643402, 0.30342134833335876, 0.9546791911125183, 1.0960307121276855, -0.5429467558860779, -0.326741099357605, 0.1946016550064087, 3.02561616897583, -0.09509900212287903, 0.803981602191925], "mean": [0.4435831606388092, -0.15118491649627686, 0.13714800775051117, -0.5120072364807129, 0.46159982681274414, 0.2318924367427826, -0.5894150137901306, -0.3638623058795929, 0.1863330453634262, 2.774670362472534, -0.2878904640674591, 0.16746912896633148], "std": [0.03248218074440956, 0.01737896166741848, 0.005432406440377235, 0.5273190140724182, 0.2574053108692169, 0.5260002613067627, 0.026604069396853447, 0.019338296726346016, 0.006314900238066912, 0.13287140429019928, 0.0823173075914383, 0.24344080686569214], "count": [825]}, "action": {"min": [-0.13342416286468506, -0.10782389342784882, 0.11413780599832535, -0.5257464051246643, -0.5079531669616699, -0.649422824382782, -0.6500662565231323, 0.09726390242576599, -0.13092446327209473, 0.08443031460046768, -0.19489337503910065, -0.5833101272583008, 0.26073911786079407, 0.7380459904670715], "max": [-0.10783868283033371, -0.09100154787302017, 0.13400480151176453, 0.546859860420227, 0.5735505819320679, 0.9422721862792969, 0.763840913772583, 0.12010867148637772, -0.11320407688617706, 0.09799066185951233, 0.14988739788532257, -0.2766226530075073, 0.5901878476142883, 0.8753980994224548], "mean": [-0.12160798162221909, -0.1011696457862854, 0.12682999670505524, 0.059677235782146454, 0.07795752584934235, 0.2592887878417969, -0.007496297359466553, 0.10702673345804214, -0.12357449531555176, 0.09082840383052826, 0.03824307397007942, -0.39543309807777405, 0.45050349831581116, 0.7867302894592285], "std": [0.0058672367595136166, 0.0035156449303030968, 0.0043689776211977005, 0.3177386522293091, 0.34444355964660645, 0.6275215744972229, 0.5564996600151062, 0.0063878926448524, 0.004600712098181248, 0.00391359394416213, 0.08321473747491837, 0.07927253842353821, 0.07854371517896652, 0.02991417795419693], "count": [825]}, "timestamp": {"min": [0.0], "max": [27.466666666666665], "mean": [13.733333333333333], "std": [7.938560369534311], "count": [825]}, "frame_index": {"min": [0], "max": [824], "mean": [412.0], "std": [238.15681108602934], "count": [825]}, "episode_index": {"min": [211], "max": [211], "mean": [211.0], "std": [0.0], "count": [825]}, "index": {"min": [157955], "max": [158779], "mean": [158367.0], "std": [238.15681108602934], "count": [825]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [825]}}} +{"episode_index": 212, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4383454398392757]], [[0.38370379339360494]], [[0.312539894068073]]], "std": [[[0.167624743041695]], [[0.16850120297369503]], [[0.16469888676827535]]], "count": [167]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4447578209593884]], [[0.40236123015407094]], [[0.333433554459708]]], "std": [[[0.15640847952078862]], [[0.14552479232588578]], [[0.1548501745164024]]], "count": [167]}, "observation.state": {"min": [0.39111781120300293, -0.20439757406711578, 0.12339513748884201, -1.5835784673690796, 0.19812291860580444, -0.4068601727485657, -0.566323459148407, -0.45076820254325867, 0.17301711440086365, 2.1245784759521484, -0.3309336006641388, -0.31470298767089844], "max": [0.5016687512397766, -0.11211863905191422, 0.14530114829540253, 0.23212677240371704, 1.0428097248077393, 0.995421290397644, -0.45252126455307007, -0.34753069281578064, 0.1981988549232483, 4.539577484130859, 0.7745923399925232, 0.5660272836685181], "mean": [0.44629231095314026, -0.16264747083187103, 0.1362452656030655, -0.7084614038467407, 0.49409693479537964, 0.06715960800647736, -0.5193401575088501, -0.4075089991092682, 0.18159019947052002, 3.1999125480651855, 0.04404871165752411, -0.1368299126625061], "std": [0.0249178446829319, 0.01624942570924759, 0.004204504657536745, 0.3640018403530121, 0.17981356382369995, 0.23831075429916382, 0.0285110455006361, 0.030928635969758034, 0.006365657784044743, 0.7202432751655579, 0.21758192777633667, 0.19843436777591705], "count": [922]}, "action": {"min": [-0.1303822547197342, -0.10987480729818344, 0.1150544062256813, -0.5184868574142456, -0.43975943326950073, -0.6879675984382629, -0.6942304372787476, 0.1092359721660614, -0.14071565866470337, 0.07500313222408295, -0.16668248176574707, -0.6283188462257385, -0.10776618123054504, 0.04735627397894859], "max": [-0.1085934191942215, -0.09330225735902786, 0.1321568489074707, 0.6193295121192932, 0.5493857264518738, 0.8881822228431702, 0.8145644068717957, 0.1316285878419876, -0.12153404206037521, 0.09960797429084778, 0.4024549126625061, -0.3068711459636688, 0.9401150941848755, 0.817197322845459], "mean": [-0.12098445743322372, -0.10211201757192612, 0.12440578639507294, 0.25026392936706543, -0.2586311101913452, 0.673732340335846, -0.3932311534881592, 0.12007936835289001, -0.12950605154037476, 0.08584831655025482, 0.14118826389312744, -0.4168027937412262, 0.5966426730155945, 0.5486965179443359], "std": [0.005045384168624878, 0.0035105051938444376, 0.003612272907048464, 0.1846664994955063, 0.1669217199087143, 0.32659828662872314, 0.30545201897621155, 0.005230148322880268, 0.004189698025584221, 0.007234357763081789, 0.18298666179180145, 0.07145152240991592, 0.2655850648880005, 0.200416699051857], "count": [922]}, "timestamp": {"min": [0.0], "max": [30.7], "mean": [15.350000000000001], "std": [8.871943918267794], "count": [922]}, "frame_index": {"min": [0], "max": [921], "mean": [460.5], "std": [266.1583175480338], "count": [922]}, "episode_index": {"min": [212], "max": [212], "mean": [212.0], "std": [0.0], "count": [922]}, "index": {"min": [158780], "max": [159701], "mean": [159240.5], "std": [266.1583175480338], "count": [922]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [922]}}} +{"episode_index": 213, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4467564459811702]], [[0.3907741061702459]], [[0.31989431849128536]]], "std": [[[0.16926497973135354]], [[0.1701027016448279]], [[0.16669257465455617]]], "count": [112]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4532663106909431]], [[0.40934131117724865]], [[0.3405258325552443]]], "std": [[[0.15764833911196316]], [[0.14669103728051536]], [[0.15648256815413164]]], "count": [112]}, "observation.state": {"min": [0.4030262529850006, -0.19675207138061523, 0.12405495345592499, -1.2960935831069946, -0.05233177915215492, -0.588203489780426, -0.5572260618209839, -0.4588693380355835, 0.16611826419830322, 3.1975619792938232, -0.4017113149166107, -0.7959132194519043], "max": [0.48752841353416443, -0.13066864013671875, 0.14170393347740173, 0.17802676558494568, 0.948257327079773, 0.881072461605072, -0.46282339096069336, -0.39765897393226624, 0.18525798618793488, 3.5445988178253174, 0.02131528966128826, -0.19144052267074585], "mean": [0.4446357786655426, -0.1636357307434082, 0.1347772181034088, -0.8342368006706238, 0.561347484588623, 0.07290319353342056, -0.5211355686187744, -0.43431246280670166, 0.17938990890979767, 3.3833656311035156, -0.1465172916650772, -0.6165194511413574], "std": [0.0237596295773983, 0.015357076190412045, 0.004056946374475956, 0.31698867678642273, 0.22080881893634796, 0.31941720843315125, 0.02764696627855301, 0.019165415316820145, 0.004290485754609108, 0.08528444170951843, 0.1082669124007225, 0.1761854737997055], "count": [544]}, "action": {"min": [-0.13062900304794312, -0.10745260119438171, 0.11282642185688019, -0.34819188714027405, -0.44702157378196716, -0.6202998161315918, -0.6190120577812195, 0.11491987854242325, -0.13624079525470734, 0.0762874186038971, -0.010722880251705647, -0.4031296968460083, 0.7027856111526489, 0.42630815505981445], "max": [-0.11172118782997131, -0.09575968980789185, 0.13074952363967896, 0.5562461614608765, 0.48916617035865784, 0.9622893333435059, 0.7179920077323914, 0.1305612027645111, -0.11879618465900421, 0.08832460641860962, 0.2382943332195282, -0.11346860229969025, 0.8512417078018188, 0.6413838267326355], "mean": [-0.1214398741722107, -0.10092687606811523, 0.12301616370677948, 0.31997376680374146, -0.25253602862358093, 0.7227835655212402, -0.3970032036304474, 0.12149631232023239, -0.13002020120620728, 0.08209670335054398, 0.19362276792526245, -0.23900006711483002, 0.7774394154548645, 0.5363386869430542], "std": [0.005950009450316429, 0.0024203562643378973, 0.0033840904943645, 0.16581854224205017, 0.1537993848323822, 0.24080036580562592, 0.2113761007785797, 0.004619520623236895, 0.004583732225000858, 0.003311501583084464, 0.04763195663690567, 0.07839982211589813, 0.04157176613807678, 0.056339964270591736], "count": [544]}, "timestamp": {"min": [0.0], "max": [18.1], "mean": [9.049999999999999], "std": [5.234633596431452], "count": [544]}, "frame_index": {"min": [0], "max": [543], "mean": [271.5], "std": [157.0390078929436], "count": [544]}, "episode_index": {"min": [213], "max": [213], "mean": [213.0], "std": [0.0], "count": [544]}, "index": {"min": [159702], "max": [160245], "mean": [159973.5], "std": [157.0390078929436], "count": [544]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [544]}}} +{"episode_index": 214, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.436244828076158]], [[0.38786328502415457]], [[0.3181410249123804]]], "std": [[[0.17064206848291913]], [[0.17254755501136765]], [[0.17312225544109713]]], "count": [230]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44026303163777586]], [[0.403651320214076]], [[0.3385992090556029]]], "std": [[[0.1672259879620004]], [[0.15448536644582914]], [[0.16844829486199822]]], "count": [230]}, "observation.state": {"min": [0.3327493965625763, -0.2121589183807373, 0.1310678869485855, -2.0201528072357178, 0.10917256027460098, -1.1869043111801147, -0.5777453780174255, -0.5355097651481628, 0.1785522848367691, 2.9656448364257812, -0.7710397839546204, -1.1438039541244507], "max": [0.4648699164390564, -0.03371744975447655, 0.1450146734714508, -0.21283529698848724, 1.1083953380584717, 0.7437635064125061, -0.4567764699459076, -0.3955583870410919, 0.19762977957725525, 4.259012222290039, 0.5349318981170654, 0.4319632351398468], "mean": [0.40690848231315613, -0.13713771104812622, 0.13981354236602783, -1.1598182916641235, 0.8383397459983826, -0.02387349121272564, -0.5189868211746216, -0.47907498478889465, 0.19044052064418793, 3.5061354637145996, -0.3357923924922943, -0.5120922327041626], "std": [0.030687982216477394, 0.03654339164495468, 0.0029126496519893408, 0.3821251690387726, 0.20979918539524078, 0.5256733894348145, 0.03324931487441063, 0.03179982304573059, 0.0037649318110197783, 0.37495526671409607, 0.24912862479686737, 0.31808337569236755], "count": [1415]}, "action": {"min": [-0.13779565691947937, -0.11442913115024567, 0.12114811688661575, -0.4477671682834625, -0.439519464969635, -0.576016366481781, -0.5767571926116943, 0.10913242399692535, -0.14985084533691406, 0.07515887916088104, -0.23434513807296753, -0.6273383498191833, -0.600030779838562, -0.6283609867095947], "max": [-0.11406657099723816, -0.08568321913480759, 0.13779839873313904, 0.6675487160682678, 0.3680504858493805, 0.9157629609107971, 0.5840424299240112, 0.12779444456100464, -0.1283128708600998, 0.09102160483598709, 0.25999337434768677, 0.6990113854408264, 0.9588515758514404, 0.7567638158798218], "mean": [-0.12379253655672073, -0.10042571276426315, 0.12975870072841644, 0.4878637194633484, -0.1868109256029129, 0.7317060828208923, -0.33538204431533813, 0.11793879419565201, -0.14189846813678741, 0.08146936446428299, 0.05684446915984154, -0.16868644952774048, 0.7016133666038513, 0.50876384973526], "std": [0.005094722378998995, 0.005164891481399536, 0.004017385188490152, 0.12202931195497513, 0.18242131173610687, 0.12748107314109802, 0.12164117395877838, 0.005324229132384062, 0.004838747438043356, 0.004206465557217598, 0.1105608269572258, 0.2177148014307022, 0.2899870276451111, 0.27110135555267334], "count": [1415]}, "timestamp": {"min": [0.0], "max": [47.13333333333333], "mean": [23.566666666666663], "std": [13.615840448209985], "count": [1415]}, "frame_index": {"min": [0], "max": [1414], "mean": [707.0], "std": [408.47521344629956], "count": [1415]}, "episode_index": {"min": [214], "max": [214], "mean": [214.0], "std": [0.0], "count": [1415]}, "index": {"min": [160246], "max": [161660], "mean": [160953.0], "std": [408.47521344629956], "count": [1415]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1415]}}} +{"episode_index": 215, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4215431853811484]], [[0.37415168124863113]], [[0.30491594909568764]]], "std": [[[0.17568570096807973]], [[0.17277753981984367]], [[0.1716905483301955]]], "count": [189]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42049379113785434]], [[0.38701058201058197]], [[0.3225197519336953]]], "std": [[[0.17395634904850923]], [[0.15578949058276761]], [[0.16671373475168705]]], "count": [189]}, "observation.state": {"min": [0.3384101390838623, -0.22128719091415405, 0.13337397575378418, -2.391094446182251, -0.04809604957699776, -0.975760817527771, -0.606481671333313, -0.5548551678657532, 0.16997861862182617, 2.8631064891815186, -0.9125951528549194, -0.6280891299247742], "max": [0.4592245817184448, -0.08723598718643188, 0.14808687567710876, -0.6018101572990417, 1.1526654958724976, 0.8839306235313416, -0.4784850776195526, -0.3992421329021454, 0.20055550336837769, 4.044290065765381, -0.24881507456302643, 0.3973114490509033], "mean": [0.3893866240978241, -0.14393287897109985, 0.14039623737335205, -1.3635220527648926, 0.7712931036949158, -0.3146795630455017, -0.5444337725639343, -0.4601682722568512, 0.19018465280532837, 3.358555316925049, -0.479269415140152, -0.15530936419963837], "std": [0.028207221999764442, 0.03812941163778305, 0.0033255997113883495, 0.543493390083313, 0.30238232016563416, 0.4022175967693329, 0.03560188040137291, 0.03346805274486542, 0.006056132726371288, 0.24291761219501495, 0.14661851525306702, 0.23995468020439148], "count": [1085]}, "action": {"min": [-0.13528114557266235, -0.113791324198246, 0.11922480165958405, 0.2788418233394623, -0.5081960558891296, 0.5694820880889893, -0.6062619090080261, 0.09917843341827393, -0.14728504419326782, 0.0666942447423935, -0.22326146066188812, -0.4530872106552124, 0.48623958230018616, 0.4117787778377533], "max": [-0.11437756568193436, -0.09183452278375626, 0.13728360831737518, 0.6354861855506897, 0.12092555314302444, 0.9261928796768188, 0.16154532134532928, 0.13472528755664825, -0.11942596733570099, 0.09073483943939209, 0.12723520398139954, -0.03741184249520302, 0.8150927424430847, 0.7811605334281921], "mean": [-0.12689656019210815, -0.1031954288482666, 0.1305529624223709, 0.4490652084350586, -0.09320332109928131, 0.7783961296081543, -0.3087739646434784, 0.11360971629619598, -0.13745737075805664, 0.08315218240022659, -0.03437514975667, -0.3197096288204193, 0.669439435005188, 0.6490361094474792], "std": [0.004663596395403147, 0.004432802088558674, 0.004933177959173918, 0.08964104950428009, 0.1482270210981369, 0.07874298840761185, 0.2284816950559616, 0.007399002555757761, 0.0067580570466816425, 0.004547910764813423, 0.07769539952278137, 0.09671451896429062, 0.08052738755941391, 0.07302463054656982], "count": [1085]}, "timestamp": {"min": [0.0], "max": [36.13333333333333], "mean": [18.066666666666666], "std": [10.440412933510926], "count": [1085]}, "frame_index": {"min": [0], "max": [1084], "mean": [542.0], "std": [313.2123880053278], "count": [1085]}, "episode_index": {"min": [215], "max": [215], "mean": [215.0], "std": [0.0], "count": [1085]}, "index": {"min": [161661], "max": [162745], "mean": [162203.0], "std": [313.2123880053278], "count": [1085]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1085]}}} +{"episode_index": 216, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4256168328161792]], [[0.37818780809181135]], [[0.309698074151097]]], "std": [[[0.18029322094007408]], [[0.17674055150739174]], [[0.1753268127960545]]], "count": [198]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4232296865715984]], [[0.3904867479258819]], [[0.3268420575581523]]], "std": [[[0.17951847415209582]], [[0.15987640964595323]], [[0.1701197850986941]]], "count": [198]}, "observation.state": {"min": [0.3159678876399994, -0.20289936661720276, 0.12295439839363098, -3.104459524154663, -0.9179239869117737, -1.2727378606796265, -0.5988361239433289, -0.48223060369491577, 0.16972972452640533, 2.355656862258911, -0.8269240856170654, -0.8662964105606079], "max": [0.44213417172431946, -0.0752580314874649, 0.1475333571434021, -0.0325019396841526, 1.263614296913147, 1.0192195177078247, -0.4615027904510498, -0.3771010637283325, 0.21716098487377167, 3.8937325477600098, 0.6394588351249695, 0.7810722589492798], "mean": [0.3835567831993103, -0.14850559830665588, 0.1361919641494751, -1.095702886581421, 0.6581586599349976, -0.1759851574897766, -0.55345618724823, -0.43776991963386536, 0.19244495034217834, 3.2830512523651123, -0.2733702063560486, -0.03715791925787926], "std": [0.029099568724632263, 0.028179949149489403, 0.004199250601232052, 0.6550913453102112, 0.46425825357437134, 0.6369005441665649, 0.03354412317276001, 0.0218514334410429, 0.00949567649513483, 0.45890048146247864, 0.32072946429252625, 0.49048373103141785], "count": [1159]}, "action": {"min": [-0.1423705369234085, -0.1126507818698883, 0.11273142695426941, -0.525212824344635, -0.34014692902565, -0.6038496494293213, -0.6030952334403992, 0.09596477448940277, -0.15276803076267242, 0.07653039693832397, -0.28170186281204224, -0.6175370812416077, -0.5511954426765442, -0.6055870652198792], "max": [-0.11510983854532242, -0.08862853795289993, 0.13895751535892487, 0.6562923789024353, 0.3806892931461334, 0.9975486993789673, 0.6454679369926453, 0.13541686534881592, -0.12035641819238663, 0.1015169769525528, 0.12689292430877686, 0.7446770668029785, 0.877566933631897, 0.8913952708244324], "mean": [-0.13090147078037262, -0.10118279606103897, 0.1286601424217224, 0.25777214765548706, -0.026516349986195564, 0.5999780297279358, -0.1763535887002945, 0.1109674796462059, -0.13782340288162231, 0.08548349142074585, -0.06612549722194672, -0.21121740341186523, 0.5201482772827148, 0.5122285485267639], "std": [0.005516641307622194, 0.006110919173806906, 0.005011784378439188, 0.3302871882915497, 0.20263293385505676, 0.49253615736961365, 0.38604968786239624, 0.00825728103518486, 0.008047104813158512, 0.005178813356906176, 0.07014154642820358, 0.3514823317527771, 0.37057554721832275, 0.39025163650512695], "count": [1159]}, "timestamp": {"min": [0.0], "max": [38.6], "mean": [19.3], "std": [11.152478548635626], "count": [1159]}, "frame_index": {"min": [0], "max": [1158], "mean": [579.0], "std": [334.5743564590687], "count": [1159]}, "episode_index": {"min": [216], "max": [216], "mean": [216.0], "std": [0.0], "count": [1159]}, "index": {"min": [162746], "max": [163904], "mean": [163325.0], "std": [334.5743564590687], "count": [1159]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1159]}}} +{"episode_index": 217, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3332531033557702]], [[0.29285816627646083]], [[0.22701442338958802]]], "std": [[[0.1660965367999796]], [[0.16184568075390343]], [[0.15409925443571776]]], "count": [134]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.32856438396254023]], [[0.3051137470328098]], [[0.24256274997561214]]], "std": [[[0.16278420878450722]], [[0.1471515184843634]], [[0.152063021170311]]], "count": [134]}, "observation.state": {"min": [0.3257294297218323, -0.18471232056617737, 0.127876415848732, -1.9744404554367065, -0.13267403841018677, -0.39075514674186707, -0.5685784816741943, -0.4926408529281616, 0.16806788742542267, 3.038616895675659, -0.5345219969749451, -0.5657747387886047], "max": [0.4458101987838745, -0.05043717101216316, 0.14749577641487122, -0.012371709570288658, 1.2118290662765503, 1.1556525230407715, -0.4534093737602234, -0.4300403892993927, 0.19820663332939148, 3.519855499267578, -0.09755846112966537, 0.1297890543937683], "mean": [0.39900898933410645, -0.12938274443149567, 0.13858948647975922, -1.0362160205841064, 0.652458906173706, 0.2596941590309143, -0.5364928245544434, -0.4567434787750244, 0.1898517608642578, 3.3161563873291016, -0.31463050842285156, -0.31459441781044006], "std": [0.024391774088144302, 0.023266440257430077, 0.0036183716729283333, 0.40072548389434814, 0.2773820161819458, 0.36364448070526123, 0.027573637664318085, 0.013157467357814312, 0.006932342424988747, 0.08939894288778305, 0.09528540074825287, 0.17655996978282928], "count": [687]}, "action": {"min": [-0.13843677937984467, -0.10923127830028534, 0.12148841470479965, -0.4355042576789856, -0.6147474646568298, -0.57188481092453, -0.5416527986526489, 0.10701533406972885, -0.14605021476745605, 0.07443354278802872, -0.08884774893522263, -0.4953155517578125, 0.6077690720558167, 0.5503221750259399], "max": [-0.11740332841873169, -0.09042485058307648, 0.13911284506320953, 0.6769630908966064, 0.6245318651199341, 0.8898738622665405, 0.5988956689834595, 0.13617278635501862, -0.127640038728714, 0.08815459907054901, 0.1763533055782318, -0.2603517472743988, 0.7695416212081909, 0.7459887266159058], "mean": [-0.1261945515871048, -0.1000487357378006, 0.13117076456546783, 0.4056413769721985, -0.28768834471702576, 0.6892580986022949, -0.2783183455467224, 0.11500796675682068, -0.13856098055839539, 0.08366119861602783, 0.08571486175060272, -0.3154999613761902, 0.7073862552642822, 0.61777663230896], "std": [0.004886008333414793, 0.0037993581499904394, 0.0034374704118818045, 0.1928049921989441, 0.2187899947166443, 0.2548283636569977, 0.22399239242076874, 0.006824439391493797, 0.00481874356046319, 0.002524641575291753, 0.0603540800511837, 0.06776561588048935, 0.030893011018633842, 0.04335973411798477], "count": [687]}, "timestamp": {"min": [0.0], "max": [22.866666666666667], "mean": [11.433333333333334], "std": [6.610653578939131], "count": [687]}, "frame_index": {"min": [0], "max": [686], "mean": [343.0], "std": [198.31960736817393], "count": [687]}, "episode_index": {"min": [217], "max": [217], "mean": [217.0], "std": [0.0], "count": [687]}, "index": {"min": [163905], "max": [164591], "mean": [164248.0], "std": [198.31960736817393], "count": [687]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [687]}}} +{"episode_index": 218, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43266058460421203]], [[0.3837093923989349]], [[0.3141534233034778]]], "std": [[[0.17698275969342575]], [[0.17412095473877076]], [[0.17281059636453658]]], "count": [135]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43119878560477687]], [[0.3969643710158961]], [[0.3321932159283466]]], "std": [[[0.17508760331069245]], [[0.15616208591411923]], [[0.1667305714400976]]], "count": [135]}, "observation.state": {"min": [0.34485089778900146, -0.21313197910785675, 0.13297732174396515, -1.9096462726593018, 0.27668890357017517, -1.0403121709823608, -0.5894298553466797, -0.45937132835388184, 0.17392711341381073, 2.4238059520721436, -0.8584871292114258, -0.2933274209499359], "max": [0.4519266188144684, -0.06701788306236267, 0.14990298449993134, 0.10631279647350311, 1.1991219520568848, 0.9484052062034607, -0.47682470083236694, -0.37662994861602783, 0.19641515612602234, 3.24788761138916, -0.2892594635486603, 0.7561380863189697], "mean": [0.3956811726093292, -0.15088652074337006, 0.14082491397857666, -1.0101629495620728, 0.813566267490387, -0.13160711526870728, -0.5534260272979736, -0.42652666568756104, 0.1876686066389084, 2.9584484100341797, -0.4886118173599243, 0.14911329746246338], "std": [0.023851998150348663, 0.03112746588885784, 0.0036097222473472357, 0.5153709053993225, 0.25855913758277893, 0.5808261632919312, 0.028538551181554794, 0.024640196934342384, 0.004985629115253687, 0.19917252659797668, 0.15128476917743683, 0.30502381920814514], "count": [698]}, "action": {"min": [-0.13799691200256348, -0.11061961948871613, 0.12101197987794876, -0.454723984003067, -0.5899286866188049, -0.6388281583786011, -0.62553471326828, 0.10481227189302444, -0.1417338103055954, 0.08183827996253967, -0.268128365278244, -0.43588992953300476, 0.29817402362823486, 0.6461697220802307], "max": [-0.11434347927570343, -0.09259107708930969, 0.13968919217586517, 0.6938135027885437, 0.6116657853126526, 0.9289460182189941, 0.7026747465133667, 0.13107071816921234, -0.12108403444290161, 0.09569823741912842, 0.06951652467250824, -0.1859082281589508, 0.6706817150115967, 0.8814783692359924], "mean": [-0.12623175978660583, -0.10340307652950287, 0.13040702044963837, 0.2811202108860016, -0.07232063263654709, 0.5479622483253479, -0.20332060754299164, 0.11369267106056213, -0.1318662017583847, 0.08678514510393143, -0.03622033819556236, -0.3421909809112549, 0.5334181189537048, 0.7560781836509705], "std": [0.005271011032164097, 0.003881719196215272, 0.0038473159074783325, 0.33609631657600403, 0.21435829997062683, 0.5118510723114014, 0.39145514369010925, 0.005985998082906008, 0.005447001196444035, 0.004395684693008661, 0.08822417259216309, 0.06785435974597931, 0.09654169529676437, 0.06079544126987457], "count": [698]}, "timestamp": {"min": [0.0], "max": [23.233333333333334], "mean": [11.616666666666665], "std": [6.716501238657586], "count": [698]}, "frame_index": {"min": [0], "max": [697], "mean": [348.5], "std": [201.4950371597276], "count": [698]}, "episode_index": {"min": [218], "max": [218], "mean": [218.0], "std": [0.0], "count": [698]}, "index": {"min": [164592], "max": [165289], "mean": [164940.5], "std": [201.4950371597276], "count": [698]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [698]}}} +{"episode_index": 219, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42514435064149114]], [[0.37925695375491125]], [[0.30670025417574437]]], "std": [[[0.16049341587327343]], [[0.1637578957102862]], [[0.16253405676340082]]], "count": [234]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42603269835949575]], [[0.3929521023034095]], [[0.3261409860715416]]], "std": [[[0.15475608792794668]], [[0.14440937330317338]], [[0.15646446571950776]]], "count": [234]}, "observation.state": {"min": [0.31357383728027344, -0.18112897872924805, 0.1137714833021164, -2.1264657974243164, -0.562942385673523, -0.7758739590644836, -0.6300359964370728, -0.46221327781677246, 0.1660599261522293, 2.8234751224517822, -0.7028581500053406, -0.8338164687156677], "max": [0.47890210151672363, -0.0385364405810833, 0.1416274607181549, -0.16544537246227264, 0.8957889080047607, 0.8336949944496155, -0.4726080894470215, -0.3745139241218567, 0.20673881471157074, 4.5383195877075195, 0.20222201943397522, 0.636325478553772], "mean": [0.40493738651275635, -0.12221955507993698, 0.12819133698940277, -0.9514883160591125, 0.41169485449790955, 0.059506937861442566, -0.5470342040061951, -0.4156564474105835, 0.18304352462291718, 3.680889844894409, -0.19672413170337677, -0.3841729164123535], "std": [0.038879137486219406, 0.026575667783617973, 0.006689324509352446, 0.47470197081565857, 0.30195578932762146, 0.3948995769023895, 0.03556307032704353, 0.015210784040391445, 0.009180507622659206, 0.5406475067138672, 0.20639315247535706, 0.46504348516464233], "count": [1447]}, "action": {"min": [-0.15028253197669983, -0.10430283099412918, 0.11550764739513397, -0.33839771151542664, -0.5215583443641663, -0.5687593221664429, -0.6365641951560974, 0.09996754676103592, -0.14864301681518555, 0.06640244275331497, -0.27409127354621887, -0.6689946055412292, -0.4460841119289398, -0.6296474933624268], "max": [-0.11413426697254181, -0.08094856888055801, 0.13865770399570465, 0.5741809606552124, 0.5446059107780457, 0.9952095746994019, 0.5962879061698914, 0.13193239271640778, -0.11561563611030579, 0.09595334529876709, 0.1501625031232834, 0.6296598315238953, 0.9650775194168091, 0.7402378916740417], "mean": [-0.13072949647903442, -0.09366144239902496, 0.12540119886398315, 0.2844485938549042, -0.23475366830825806, 0.7729295492172241, -0.33363065123558044, 0.11510857939720154, -0.12924791872501373, 0.08423475176095963, -0.027838869020342827, -0.2472543716430664, 0.7319587469100952, 0.47087565064430237], "std": [0.008681660518050194, 0.004990639165043831, 0.004639382008463144, 0.1506158411502838, 0.1610737442970276, 0.22444726526737213, 0.23716047406196594, 0.00650350097566843, 0.007480801548808813, 0.005320464726537466, 0.12357804924249649, 0.21670633554458618, 0.250416100025177, 0.2359265685081482], "count": [1447]}, "timestamp": {"min": [0.0], "max": [48.2], "mean": [24.099999999999998], "std": [13.923760666971804], "count": [1447]}, "frame_index": {"min": [0], "max": [1446], "mean": [723.0], "std": [417.71282000915414], "count": [1447]}, "episode_index": {"min": [219], "max": [219], "mean": [219.0], "std": [0.0], "count": [1447]}, "index": {"min": [165290], "max": [166736], "mean": [166013.0], "std": [417.71282000915414], "count": [1447]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1447]}}} +{"episode_index": 220, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43501100217864924]], [[0.3915159885620915]], [[0.3285291857298475]]], "std": [[[0.21104436592010714]], [[0.20128279404130242]], [[0.19675174888775063]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4458901116557734]], [[0.4178222086056645]], [[0.35655532135076257]]], "std": [[[0.21509256265242427]], [[0.1891189115940767]], [[0.1960227726156543]]], "count": [100]}, "observation.state": {"min": [0.6260201930999756, -0.04921697825193405, 0.14569781720638275, -1.7769125699996948, -0.29718437790870667, 0.29556816816329956, -0.6196025609970093, -0.29572659730911255, 0.14914464950561523, 1.4269400835037231, -0.848785936832428, 0.10710558295249939], "max": [0.7362467646598816, 0.045610461384058, 0.15869830548763275, -0.6617814302444458, 0.17106890678405762, 1.3223083019256592, -0.49084144830703735, -0.2092706263065338, 0.179094135761261, 1.930405616760254, -0.49189141392707825, 0.6751750111579895], "mean": [0.6788150072097778, -0.013795030303299427, 0.15259864926338196, -1.1962710618972778, -0.09517353028059006, 0.743556797504425, -0.5651146173477173, -0.2687665820121765, 0.16625206172466278, 1.7268134355545044, -0.7573867440223694, 0.28047677874565125], "std": [0.033337634056806564, 0.018540017306804657, 0.003690323792397976, 0.23434647917747498, 0.11898622661828995, 0.3226128816604614, 0.03804159164428711, 0.0229487307369709, 0.010087993927299976, 0.14432750642299652, 0.0830397829413414, 0.16061653196811676], "count": [407]}, "action": {"min": [-0.08761279284954071, -0.08508338779211044, 0.12239004671573639, -0.4510875344276428, -0.6711946725845337, -0.6664507389068604, -0.24849379062652588, 0.11539159715175629, -0.11171851307153702, 0.08247983455657959, 0.0386955700814724, -0.04887966066598892, 0.035738445818424225, 0.9469354152679443], "max": [-0.06471703201532364, -0.06490564346313477, 0.13849829137325287, 0.44259342551231384, 0.805396556854248, 0.8803255558013916, 0.34294772148132324, 0.1364092379808426, -0.08631476759910583, 0.10096661746501923, 0.22963447868824005, 0.09200232475996017, 0.2526729702949524, 0.9958779811859131], "mean": [-0.07717736065387726, -0.0793522521853447, 0.13144752383232117, 0.08815663307905197, -0.18390798568725586, 0.420075386762619, -0.035642802715301514, 0.1239447221159935, -0.10114388912916183, 0.09332064539194107, 0.17468078434467316, 0.02563246712088585, 0.16323091089725494, 0.9664502143859863], "std": [0.006419018842279911, 0.0043683601543307304, 0.0047159562818706036, 0.29945242404937744, 0.5833128094673157, 0.5727918744087219, 0.15052089095115662, 0.00616029417142272, 0.008162061683833599, 0.005418398883193731, 0.04926285520195961, 0.03686371445655823, 0.06429574638605118, 0.01550984662026167], "count": [407]}, "timestamp": {"min": [0.0], "max": [13.533333333333333], "mean": [6.766666666666666], "std": [3.9163475047265375], "count": [407]}, "frame_index": {"min": [0], "max": [406], "mean": [203.0], "std": [117.49042514179612], "count": [407]}, "episode_index": {"min": [220], "max": [220], "mean": [220.0], "std": [0.0], "count": [407]}, "index": {"min": [166737], "max": [167143], "mean": [166940.0], "std": [117.49042514179612], "count": [407]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [407]}}} +{"episode_index": 221, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4431741490325503]], [[0.39810012888543755]], [[0.33493224346944495]]], "std": [[[0.20829145452830505]], [[0.19938277871597176]], [[0.1961469876665384]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.466657226752087]], [[0.4350326446860372]], [[0.37360640328738753]]], "std": [[[0.20441868616132358]], [[0.179780494666411]], [[0.1888732053557441]]], "count": [101]}, "observation.state": {"min": [0.6519299149513245, -0.06812994927167892, 0.14031949639320374, -1.757621169090271, -0.251001238822937, 0.3329390287399292, -0.6338355541229248, -0.29741787910461426, 0.14834612607955933, 1.2040396928787231, -0.64629065990448, 0.3289448916912079], "max": [0.7345399856567383, 0.016974570229649544, 0.15568313002586365, -0.3526984751224518, 0.245125874876976, 1.4034515619277954, -0.4763999581336975, -0.20733992755413055, 0.1703973263502121, 1.5074609518051147, -0.4252128005027771, 0.6214167475700378], "mean": [0.6838672161102295, -0.012983723543584347, 0.1482248455286026, -1.0323634147644043, -0.052048951387405396, 0.8154608011245728, -0.5817890763282776, -0.25724780559539795, 0.16310669481754303, 1.3337860107421875, -0.5234136581420898, 0.4699138402938843], "std": [0.02748207375407219, 0.021764583885669708, 0.004622945096343756, 0.35835695266723633, 0.10544823110103607, 0.3443041741847992, 0.04621688649058342, 0.025150997564196587, 0.005824604537338018, 0.07433286309242249, 0.05499095842242241, 0.07630811631679535], "count": [472]}, "action": {"min": [-0.08582250028848648, -0.084840327501297, 0.11645171046257019, -0.4450356364250183, -0.6571283340454102, -0.661524772644043, -0.43094876408576965, 0.11454033851623535, -0.10759244859218597, 0.08140800893306732, 0.09451978653669357, -0.03925144672393799, -0.09061427414417267, 0.9527703523635864], "max": [-0.07372026145458221, -0.06617391854524612, 0.1356716901063919, 0.43243032693862915, 0.8414986729621887, 0.8599464297294617, 0.46254876255989075, 0.13712039589881897, -0.084178127348423, 0.09692918509244919, 0.29111984372138977, 0.04720574617385864, 0.053944431245326996, 0.9934215545654297], "mean": [-0.07884162664413452, -0.07706905156373978, 0.12796713411808014, 0.048029158264398575, -0.05154664069414139, 0.31292811036109924, -0.0044182981364429, 0.1213025227189064, -0.09891099482774734, 0.09015350043773651, 0.19441184401512146, 0.004120178520679474, -0.03663743659853935, 0.9777551293373108], "std": [0.003160263178870082, 0.005372769199311733, 0.005521650426089764, 0.3391539454460144, 0.6296611428260803, 0.5757715106010437, 0.23255395889282227, 0.0069758291356265545, 0.005642615724354982, 0.0032642162404954433, 0.05308213829994202, 0.02457701601088047, 0.035729505121707916, 0.01192573644220829], "count": [472]}, "timestamp": {"min": [0.0], "max": [15.7], "mean": [7.85], "std": [4.541811924282594], "count": [472]}, "frame_index": {"min": [0], "max": [471], "mean": [235.5], "std": [136.2543577284778], "count": [472]}, "episode_index": {"min": [221], "max": [221], "mean": [221.0], "std": [0.0], "count": [472]}, "index": {"min": [167144], "max": [167615], "mean": [167379.5], "std": [136.2543577284778], "count": [472]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [472]}}} +{"episode_index": 222, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46259947167755994]], [[0.4176827505446623]], [[0.3513960866013072]]], "std": [[[0.19872468666997192]], [[0.19125791814880688]], [[0.19079966064879442]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4777973937908497]], [[0.44595672113289764]], [[0.3830269226579521]]], "std": [[[0.20358483509913022]], [[0.17980581364943077]], [[0.19031193840329488]]], "count": [100]}, "observation.state": {"min": [0.5853831768035889, -0.0098542096093297, 0.1404906064271927, -1.9939416646957397, -0.18910491466522217, 0.4743782877922058, -0.609207808971405, -0.2551977038383484, 0.1569664627313614, 1.095420241355896, -0.30879849195480347, -0.0802813172340393], "max": [0.6703486442565918, 0.03718496114015579, 0.15831071138381958, -1.1535043716430664, 0.3649560809135437, 0.8249291777610779, -0.47844648361206055, -0.20219658315181732, 0.17799746990203857, 1.71211838722229, 0.0277372095733881, 0.32870596647262573], "mean": [0.6354316473007202, 0.0060239071026444435, 0.1481696367263794, -1.4929215908050537, 0.08970033377408981, 0.6596075892448425, -0.5522527694702148, -0.22832392156124115, 0.16618642210960388, 1.4198728799819946, -0.12021150439977646, 0.05890508368611336], "std": [0.023010117933154106, 0.010468617081642151, 0.0038856021128594875, 0.25885260105133057, 0.14572806656360626, 0.12801998853683472, 0.03515799716114998, 0.017679519951343536, 0.00699567049741745, 0.17800241708755493, 0.0828392282128334, 0.11734125763177872], "count": [272]}, "action": {"min": [-0.08880319446325302, -0.08290364593267441, 0.12725289165973663, 0.20757751166820526, -0.6416548490524292, 0.6866209506988525, -0.14914578199386597, 0.11055820435285568, -0.10787168890237808, 0.0909106656908989, 0.2458139806985855, -0.28752952814102173, -0.24719494581222534, 0.8685431480407715], "max": [-0.08087716996669769, -0.06546284258365631, 0.14762566983699799, 0.47419267892837524, -0.3780152201652527, 0.8446552157402039, 0.1952701210975647, 0.1328096091747284, -0.08934149891138077, 0.10036707669496536, 0.4481126666069031, -0.10585472732782364, 0.035594161599874496, 0.9584806561470032], "mean": [-0.08530300110578537, -0.07629689574241638, 0.13413488864898682, 0.35866421461105347, -0.524989128112793, 0.7551887631416321, -0.012998940423130989, 0.11933835595846176, -0.09788821637630463, 0.09666847437620163, 0.35128462314605713, -0.18358804285526276, -0.08712947368621826, 0.9064685106277466], "std": [0.0023865108378231525, 0.0033863727003335953, 0.005033205728977919, 0.06561768800020218, 0.084849052131176, 0.05387761816382408, 0.10420862585306168, 0.007017177529633045, 0.005524992011487484, 0.0025568953715264797, 0.057173773646354675, 0.06324504315853119, 0.07461751252412796, 0.027950363233685493], "count": [272]}, "timestamp": {"min": [0.0], "max": [9.033333333333333], "mean": [4.516666666666667], "std": [2.617303531839167], "count": [272]}, "frame_index": {"min": [0], "max": [271], "mean": [135.5], "std": [78.51910595517501], "count": [272]}, "episode_index": {"min": [222], "max": [222], "mean": [222.0], "std": [0.0], "count": [272]}, "index": {"min": [167616], "max": [167887], "mean": [167751.5], "std": [78.51910595517501], "count": [272]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [272]}}} +{"episode_index": 223, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46474679466230934]], [[0.41849728485838783]], [[0.3537853213507625]]], "std": [[[0.2067871371411775]], [[0.19943473067380002]], [[0.19803533611045326]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4838817783224401]], [[0.4499231100217865]], [[0.3880668763616558]]], "std": [[[0.2057397566028966]], [[0.18289021675151432]], [[0.19322631704132454]]], "count": [100]}, "observation.state": {"min": [0.625610888004303, -0.04973439872264862, 0.14610613882541656, -1.7722994089126587, -0.3589440882205963, 0.3211042881011963, -0.5642923712730408, -0.27410295605659485, 0.1479676067829132, 1.3227241039276123, -0.37534046173095703, 0.1632901281118393], "max": [0.7011700868606567, 0.008271049708127975, 0.16020070016384125, -0.8274365067481995, 0.07337380200624466, 1.0960180759429932, -0.42717525362968445, -0.21736404299736023, 0.16495808959007263, 1.6104187965393066, -0.16027460992336273, 0.2897323668003082], "mean": [0.6662418246269226, -0.008116175420582294, 0.15253648161888123, -1.2826123237609863, -0.14687980711460114, 0.5482881665229797, -0.5085089802742004, -0.23474331200122833, 0.1565893590450287, 1.47543466091156, -0.24599114060401917, 0.23589085042476654], "std": [0.023538341745734215, 0.013361145742237568, 0.003375461557880044, 0.262184739112854, 0.11391881108283997, 0.20786656439304352, 0.04865084961056709, 0.013045146130025387, 0.006452730391174555, 0.059902459383010864, 0.06825230270624161, 0.04063839465379715], "count": [370]}, "action": {"min": [-0.08832944929599762, -0.08798947930335999, 0.12587006390094757, -0.39509549736976624, -0.6747069358825684, -0.6670620441436768, -0.26619529724121094, 0.12134719640016556, -0.10065509378910065, 0.08902586251497269, 0.22853121161460876, -0.16477660834789276, -0.11406586319208145, 0.935617208480835], "max": [-0.07201097160577774, -0.07234705984592438, 0.14079749584197998, 0.37920039892196655, 0.7369147539138794, 0.8872168660163879, 0.26771092414855957, 0.14449995756149292, -0.09002512693405151, 0.09841965138912201, 0.3047383725643158, -0.07974158972501755, 0.03417829051613808, 0.9647461771965027], "mean": [-0.07949370890855789, -0.07932543009519577, 0.13356035947799683, 0.1806870996952057, -0.35768431425094604, 0.6402208209037781, -0.07520686835050583, 0.1308366060256958, -0.09433139115571976, 0.0933479443192482, 0.26485124230384827, -0.11471784114837646, -0.04712746664881706, 0.9553465247154236], "std": [0.004257535096257925, 0.0035189040936529636, 0.0036863244604319334, 0.19675444066524506, 0.4002556800842285, 0.45310112833976746, 0.1402076631784439, 0.008617356419563293, 0.0028812678065150976, 0.0022900898475199938, 0.02139998786151409, 0.01676935888826847, 0.03159784898161888, 0.006972001865506172], "count": [370]}, "timestamp": {"min": [0.0], "max": [12.3], "mean": [6.15], "std": [3.560313656594505], "count": [370]}, "frame_index": {"min": [0], "max": [369], "mean": [184.5], "std": [106.80940969783515], "count": [370]}, "episode_index": {"min": [223], "max": [223], "mean": [223.0], "std": [0.0], "count": [370]}, "index": {"min": [167888], "max": [168257], "mean": [168072.5], "std": [106.80940969783515], "count": [370]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [370]}}} +{"episode_index": 224, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.449238197167756]], [[0.40406879357298475]], [[0.3399479684095861]]], "std": [[[0.21121807813222232]], [[0.20268326009797644]], [[0.20014876075329366]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46834316993464054]], [[0.43607995370370367]], [[0.37490843954248365]]], "std": [[[0.21228034627236483]], [[0.18844791519473678]], [[0.19731860071430626]]], "count": [100]}, "observation.state": {"min": [0.6382529735565186, -0.0890045017004013, 0.14237283170223236, -1.6603249311447144, -0.29814085364341736, 0.25090792775154114, -0.5870435237884521, -0.26697486639022827, 0.14477485418319702, 0.9522020220756531, -0.3250582218170166, 0.11836817860603333], "max": [0.7312578558921814, 0.03928554058074951, 0.16201162338256836, -0.49025508761405945, 0.19129109382629395, 1.4005188941955566, -0.41524362564086914, -0.1679539829492569, 0.16922159492969513, 1.411003589630127, -0.042493950575590134, 0.3804141879081726], "mean": [0.6722645163536072, -0.011044732294976711, 0.15571489930152893, -1.1228041648864746, -0.04075181856751442, 0.7746966481208801, -0.506109356880188, -0.24493110179901123, 0.15617620944976807, 1.206969976425171, -0.1521451324224472, 0.2543260455131531], "std": [0.02481977269053459, 0.028152061626315117, 0.0037331697531044483, 0.38110727071762085, 0.12841466069221497, 0.32463133335113525, 0.047298796474933624, 0.02227039821445942, 0.00615216139703989, 0.1345110833644867, 0.09257732331752777, 0.08198723196983337], "count": [412]}, "action": {"min": [-0.08472035080194473, -0.08872619271278381, 0.11801168322563171, -0.5085064768791199, -0.6690986156463623, -0.6648514270782471, -0.33005931973457336, 0.12054867297410965, -0.10516015440225601, 0.08428943902254105, 0.23177318274974823, -0.13103565573692322, -0.2977619469165802, 0.9060807228088379], "max": [-0.06914613395929337, -0.06671687215566635, 0.1426156759262085, 0.40350794792175293, 0.8325315713882446, 0.9040722250938416, 0.37581515312194824, 0.14634019136428833, -0.08856000751256943, 0.10892389714717865, 0.3541807234287262, -0.025866113603115082, -0.04970947653055191, 0.9544889330863953], "mean": [-0.07588693499565125, -0.08028268069028854, 0.13441866636276245, 0.0035763094201684, 0.042176682502031326, 0.22065941989421844, 0.09898648411035538, 0.13097772002220154, -0.0953257828950882, 0.09191858768463135, 0.29664045572280884, -0.08514569699764252, -0.17886176705360413, 0.9297555088996887], "std": [0.002696043811738491, 0.004400178324431181, 0.0066496324725449085, 0.3422755002975464, 0.6090055704116821, 0.6465646028518677, 0.18339374661445618, 0.006373570766299963, 0.004292658064514399, 0.006302680354565382, 0.029421666637063026, 0.033794522285461426, 0.0784597173333168, 0.01238445658236742], "count": [412]}, "timestamp": {"min": [0.0], "max": [13.7], "mean": [6.85], "std": [3.964460170621524], "count": [412]}, "frame_index": {"min": [0], "max": [411], "mean": [205.5], "std": [118.93380511864572], "count": [412]}, "episode_index": {"min": [224], "max": [224], "mean": [224.0], "std": [0.0], "count": [412]}, "index": {"min": [168258], "max": [168669], "mean": [168463.5], "std": [118.93380511864572], "count": [412]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [412]}}} +{"episode_index": 225, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45541096132897607]], [[0.41059657952069717]], [[0.34726401416122005]]], "std": [[[0.208750060915954]], [[0.20064851417532925]], [[0.1979595333458564]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4717569362745098]], [[0.44155659586056645]], [[0.38034112745098037]]], "std": [[[0.20702356997196808]], [[0.1826734711952751]], [[0.19224554804468794]]], "count": [100]}, "observation.state": {"min": [0.6495822072029114, -0.06525708734989166, 0.13852933049201965, -1.5871431827545166, -0.5290565490722656, 0.45580512285232544, -0.6116327047348022, -0.27563977241516113, 0.15530720353126526, 1.3585811853408813, -0.46579381823539734, 0.0973329022526741], "max": [0.753754198551178, 0.04161781072616577, 0.1570986807346344, -0.4388810396194458, 0.11901038885116577, 1.4084694385528564, -0.511059582233429, -0.1919407993555069, 0.1698049157857895, 2.2415854930877686, -0.2813345491886139, 0.32292574644088745], "mean": [0.6846894025802612, -0.002506087301298976, 0.1471918821334839, -1.0349678993225098, -0.21368831396102905, 0.7570468783378601, -0.5822516083717346, -0.2527654767036438, 0.1598164141178131, 1.5347983837127686, -0.3152431547641754, 0.24654917418956757], "std": [0.021220946684479713, 0.026007510721683502, 0.0030422918498516083, 0.3435591161251068, 0.17767897248268127, 0.2964088022708893, 0.020038755610585213, 0.023862376809120178, 0.003140304936096072, 0.20088285207748413, 0.03569784760475159, 0.05312655121088028], "count": [431]}, "action": {"min": [-0.08358222246170044, -0.08624250441789627, 0.1164562925696373, -0.43460679054260254, -0.6863210201263428, -0.6852733492851257, -0.34856316447257996, 0.1183677613735199, -0.09864317625761032, 0.08292914181947708, 0.1283772736787796, -0.20069631934165955, -0.0921301394701004, 0.9269730448722839], "max": [-0.07253053039312363, -0.06567585468292236, 0.13875845074653625, 0.4099147915840149, 0.8877575993537903, 0.8348168134689331, 0.4132726490497589, 0.13192340731620789, -0.09117327630519867, 0.10461997240781784, 0.2846536934375763, -0.07932952046394348, 0.2904099225997925, 0.9663876295089722], "mean": [-0.08032761514186859, -0.07587413489818573, 0.1281375139951706, 0.044021863490343094, -0.004751531407237053, 0.2532806396484375, 0.027942026033997536, 0.12100242078304291, -0.09563695639371872, 0.08923117071390152, 0.2536598742008209, -0.13120462000370026, -0.012846387922763824, 0.9534651637077332], "std": [0.002347678644582629, 0.004445705097168684, 0.005444263108074665, 0.2700296938419342, 0.6456171870231628, 0.6237560510635376, 0.23302097618579865, 0.0017371393041685224, 0.001560020842589438, 0.0054878126829862595, 0.03342188894748688, 0.024571504443883896, 0.08621028065681458, 0.005324047524482012], "count": [431]}, "timestamp": {"min": [0.0], "max": [14.333333333333334], "mean": [7.166666666666667], "std": [4.147288270665545], "count": [431]}, "frame_index": {"min": [0], "max": [430], "mean": [215.0], "std": [124.41864811996632], "count": [431]}, "episode_index": {"min": [225], "max": [225], "mean": [225.0], "std": [0.0], "count": [431]}, "index": {"min": [168670], "max": [169100], "mean": [168885.0], "std": [124.41864811996632], "count": [431]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [431]}}} +{"episode_index": 226, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46159386165577343]], [[0.41542094226579523]], [[0.35104157952069714]]], "std": [[[0.20759266791352235]], [[0.20003940542410129]], [[0.19824927623836547]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4782179166666667]], [[0.4449693300653595]], [[0.3836896922657952]]], "std": [[[0.20840193894411996]], [[0.18531184503336287]], [[0.1951665641886529]]], "count": [100]}, "observation.state": {"min": [0.6394577026367188, -0.0529547818005085, 0.1422496736049652, -1.6521470546722412, -0.2947249412536621, 0.2340957224369049, -0.6116250157356262, -0.3476388156414032, 0.14413060247898102, 0.9056508541107178, -0.31767985224723816, 0.2520730495452881], "max": [0.7157815098762512, 0.05035993829369545, 0.16185347735881805, -0.5831477046012878, 0.12338276207447052, 1.2960853576660156, -0.5141023397445679, -0.2329021841287613, 0.16319124400615692, 1.3174818754196167, -0.04536331817507744, 0.43178245425224304], "mean": [0.6716694831848145, -0.0039129615761339664, 0.15244673192501068, -1.0943530797958374, -0.05667213350534439, 0.6729361414909363, -0.5504879355430603, -0.27298301458358765, 0.1499512791633606, 1.1054637432098389, -0.1483343541622162, 0.3707830309867859], "std": [0.02129017375409603, 0.027801571413874626, 0.0049539413303136826, 0.3175126314163208, 0.1116279736161232, 0.3079913854598999, 0.03295324742794037, 0.023838171735405922, 0.005297617521136999, 0.17183460295200348, 0.05369649454951286, 0.04857510328292847], "count": [423]}, "action": {"min": [-0.08761224895715714, -0.08655786514282227, 0.12321191281080246, -0.4649248421192169, -0.6604679226875305, -0.6591358184814453, -0.3321860432624817, 0.11955748498439789, -0.10376636683940887, 0.0713701918721199, 0.22328023612499237, -0.14033395051956177, -0.3176773488521576, 0.9001427888870239], "max": [-0.07014543563127518, -0.06648501008749008, 0.13880784809589386, 0.38891085982322693, 0.8147549629211426, 0.8918407559394836, 0.3449902832508087, 0.13541550934314728, -0.08685937523841858, 0.09608468413352966, 0.33682572841644287, -0.0016695165541023016, -0.13717667758464813, 0.9591853618621826], "mean": [-0.07800628989934921, -0.07796498388051987, 0.13293224573135376, 0.060268428176641464, -0.03878610208630562, 0.2931760847568512, 0.006490396335721016, 0.12892161309719086, -0.0929318517446518, 0.08261764049530029, 0.27279776334762573, -0.07148101180791855, -0.22190549969673157, 0.9287599325180054], "std": [0.005039475858211517, 0.005768471863120794, 0.0040433937683701515, 0.31612321734428406, 0.5845776796340942, 0.6467700004577637, 0.22111639380455017, 0.0052938312292099, 0.003847372718155384, 0.004316503647714853, 0.03636956959962845, 0.033854998648166656, 0.07521147280931473, 0.022558161988854408], "count": [423]}, "timestamp": {"min": [0.0], "max": [14.066666666666666], "mean": [7.033333333333333], "std": [4.070308023652191], "count": [423]}, "frame_index": {"min": [0], "max": [422], "mean": [211.0], "std": [122.10924070956574], "count": [423]}, "episode_index": {"min": [226], "max": [226], "mean": [226.0], "std": [0.0], "count": [423]}, "index": {"min": [169101], "max": [169523], "mean": [169312.0], "std": [122.10924070956574], "count": [423]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [423]}}} +{"episode_index": 227, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47063301752913195]], [[0.4233718169734764]], [[0.3578435070256441]]], "std": [[[0.20080072986126643]], [[0.19534517956381714]], [[0.19538407969114766]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49543994723271567]], [[0.45885062261397935]], [[0.39662651655973297]]], "std": [[[0.19855974510090757]], [[0.17683989451454452]], [[0.1885941863013212]]], "count": [109]}, "observation.state": {"min": [0.6288003325462341, -0.0644693672657013, 0.1406811773777008, -1.8815478086471558, -0.6837290525436401, -0.006993750110268593, -0.6583089232444763, -0.27984094619750977, 0.15296481549739838, 1.3969544172286987, -0.48806557059288025, 0.004502189811319113], "max": [0.7302307486534119, 0.029693910852074623, 0.15794774889945984, -0.1956407129764557, 0.5048718452453613, 1.4011908769607544, -0.5142027139663696, -0.19499127566814423, 0.1745247095823288, 2.135272741317749, -0.19976255297660828, 0.2339225858449936], "mean": [0.6666409373283386, -0.0005126855685375631, 0.14992181956768036, -1.0847941637039185, -0.10474055260419846, 0.7128265500068665, -0.6024729013442993, -0.23854143917560577, 0.1606285125017166, 1.8475393056869507, -0.38723134994506836, 0.13654768466949463], "std": [0.028722628951072693, 0.0233395304530859, 0.005193617194890976, 0.3966333866119385, 0.259084552526474, 0.36168497800827026, 0.033613890409469604, 0.016159184277057648, 0.00460824416950345, 0.18189729750156403, 0.06449095159769058, 0.055297281593084335], "count": [525]}, "action": {"min": [-0.08806604892015457, -0.08873144537210464, 0.11620885878801346, -0.5863096117973328, -0.6775747537612915, -0.6809971928596497, -0.5004570484161377, 0.10808952152729034, -0.09918595105409622, 0.0843106210231781, 0.1724555343389511, -0.23439666628837585, -0.08995435386896133, 0.9156280159950256], "max": [-0.07093366235494614, -0.06622126698493958, 0.14039570093154907, 0.5945839285850525, 0.8392308950424194, 0.9064430594444275, 0.5222246646881104, 0.13043788075447083, -0.08590588718652725, 0.09942615032196045, 0.3326382339000702, -0.10592253506183624, 0.24266564846038818, 0.9662440419197083], "mean": [-0.08077895641326904, -0.07700857520103455, 0.1318242847919464, 0.09915563464164734, -0.06265049427747726, 0.3517516553401947, 0.0011680914321914315, 0.11809556186199188, -0.09295845031738281, 0.09042602777481079, 0.2220468670129776, -0.17014582455158234, 0.12635773420333862, 0.946885347366333], "std": [0.004676011856645346, 0.006161907222121954, 0.006090601906180382, 0.304522842168808, 0.6011968851089478, 0.5930845141410828, 0.23788967728614807, 0.004811652936041355, 0.0032020453363656998, 0.00402418989688158, 0.040287964046001434, 0.030736075714230537, 0.0805143490433693, 0.011668707244098186], "count": [525]}, "timestamp": {"min": [0.0], "max": [17.466666666666665], "mean": [8.733333333333333], "std": [5.051805691110926], "count": [525]}, "frame_index": {"min": [0], "max": [524], "mean": [262.0], "std": [151.5541707333278], "count": [525]}, "episode_index": {"min": [227], "max": [227], "mean": [227.0], "std": [0.0], "count": [525]}, "index": {"min": [169524], "max": [170048], "mean": [169786.0], "std": [151.5541707333278], "count": [525]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [525]}}} +{"episode_index": 228, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47308239106753813]], [[0.42841716503267974]], [[0.3621244335511983]]], "std": [[[0.19547379274963514]], [[0.18909590716471555]], [[0.18954321030758428]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4883066367102396]], [[0.4563726007625272]], [[0.3938876715686274]]], "std": [[[0.19470961617239244]], [[0.1728731134729902]], [[0.18470908963765623]]], "count": [100]}, "observation.state": {"min": [0.6133317351341248, -0.02070464938879013, 0.12999066710472107, -1.5567381381988525, -0.4067668616771698, 0.2654916048049927, -0.5317333340644836, -0.2511819005012512, 0.15215721726417542, 1.1363097429275513, -0.3365356922149658, 0.2840210795402527], "max": [0.7185848355293274, 0.046228278428316116, 0.16372272372245789, -0.5789539217948914, 0.21520249545574188, 1.3377782106399536, -0.4383268654346466, -0.20105363428592682, 0.1749511957168579, 1.4112132787704468, -0.03757504001259804, 0.43940556049346924], "mean": [0.652411937713623, 0.020258046686649323, 0.14696425199508667, -1.103987693786621, -0.04264798387885094, 0.6012712717056274, -0.4959634840488434, -0.23014454543590546, 0.16434909403324127, 1.2822493314743042, -0.1791580617427826, 0.3714205324649811], "std": [0.026095353066921234, 0.019894111901521683, 0.012558906339108944, 0.26816225051879883, 0.14093883335590363, 0.2858287990093231, 0.034857094287872314, 0.012758382596075535, 0.006910896394401789, 0.056099627166986465, 0.09337852150201797, 0.038526490330696106], "count": [283]}, "action": {"min": [-0.09646108746528625, -0.08919660747051239, 0.12429502606391907, -0.45622098445892334, -0.598098635673523, -0.5774573683738708, -0.3545345962047577, 0.12232816964387894, -0.10878531634807587, 0.09504634886980057, 0.18841004371643066, -0.1242765337228775, -0.21576780080795288, 0.9458433389663696], "max": [-0.07384864240884781, -0.06278570741415024, 0.14620085060596466, 0.4412822425365448, 0.7891805768013, 0.8540101647377014, 0.3626668453216553, 0.1400594413280487, -0.09249666333198547, 0.10642769187688828, 0.28521257638931274, -0.0023721493780612946, -0.10297667235136032, 0.962770938873291], "mean": [-0.08432595431804657, -0.07280150055885315, 0.13349416851997375, 0.14815950393676758, -0.2619832754135132, 0.5664350986480713, -0.08462345600128174, 0.12826785445213318, -0.09931079298257828, 0.0991244688630104, 0.22708968818187714, -0.08253280073404312, -0.14762210845947266, 0.9574867486953735], "std": [0.008501154370605946, 0.007834676653146744, 0.00818369910120964, 0.2847004532814026, 0.47062817215919495, 0.4874741733074188, 0.20304478704929352, 0.006444013677537441, 0.00479457713663578, 0.0029978540260344744, 0.02689846232533455, 0.0308096744120121, 0.036847542971372604, 0.0038445217069238424], "count": [283]}, "timestamp": {"min": [0.0], "max": [9.4], "mean": [4.699999999999999], "std": [2.723151768733347], "count": [283]}, "frame_index": {"min": [0], "max": [282], "mean": [141.0], "std": [81.69455306200041], "count": [283]}, "episode_index": {"min": [228], "max": [228], "mean": [228.0], "std": [0.0], "count": [283]}, "index": {"min": [170049], "max": [170331], "mean": [170190.0], "std": [81.69455306200041], "count": [283]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [283]}}} +{"episode_index": 229, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4771797875816994]], [[0.4302678894335512]], [[0.36354421296296296]]], "std": [[[0.20051360588223244]], [[0.19473029413232038]], [[0.19660104333650927]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49495072440087146]], [[0.4595168082788671]], [[0.39683158496732024]]], "std": [[[0.2003457337578844]], [[0.17897683478703424]], [[0.19188615618599017]]], "count": [100]}, "observation.state": {"min": [0.6065511703491211, -0.05795910954475403, 0.14544762670993805, -1.8641436100006104, -0.26698771119117737, 0.5199460983276367, -0.5045724511146545, -0.22957368195056915, 0.14992761611938477, 1.1082113981246948, -0.13964250683784485, 0.30694761872291565], "max": [0.6577528715133667, 0.0329451784491539, 0.16008533537387848, -0.6290698051452637, 0.2656213641166687, 1.2658103704452515, -0.33710500597953796, -0.20808903872966766, 0.169002503156662, 1.2338156700134277, -0.04973569139838219, 0.42476579546928406], "mean": [0.6289283633232117, -0.007761487737298012, 0.15306414663791656, -1.3172777891159058, 0.030911564826965332, 0.7445604205131531, -0.44356197118759155, -0.21468785405158997, 0.1605495661497116, 1.1813501119613647, -0.1036582812666893, 0.3673441708087921], "std": [0.012215651571750641, 0.02761237882077694, 0.005025739315897226, 0.3214868903160095, 0.14923742413520813, 0.23333275318145752, 0.057837557047605515, 0.005212308838963509, 0.006161349359899759, 0.04332965612411499, 0.03251783177256584, 0.03368694335222244], "count": [280]}, "action": {"min": [-0.08990230411291122, -0.09253314882516861, 0.13194599747657776, -0.5236435532569885, -0.6747438907623291, -0.6730295419692993, -0.24729904532432556, 0.12707030773162842, -0.10167481750249863, 0.0989667996764183, 0.19377538561820984, -0.09142716974020004, -0.23470768332481384, 0.9407849907875061], "max": [-0.0795825719833374, -0.07096200436353683, 0.14159035682678223, 0.452692449092865, 0.7942667603492737, 0.8174740076065063, 0.28456076979637146, 0.1539691835641861, -0.09240388125181198, 0.10541623830795288, 0.25874218344688416, -0.01162447314709425, -0.1853334754705429, 0.9527020454406738], "mean": [-0.08383969217538834, -0.08092919737100601, 0.1372046023607254, 0.15077218413352966, -0.18203526735305786, 0.4272684156894684, 0.031219761818647385, 0.13605248928070068, -0.09663372486829758, 0.10108902305364609, 0.2269972860813141, -0.06265097111463547, -0.20352116227149963, 0.9495545625686646], "std": [0.00381241412833333, 0.006812312174588442, 0.0029729155357927084, 0.3135204315185547, 0.5493841767311096, 0.5842300653457642, 0.13840177655220032, 0.009864808060228825, 0.0024853958748281, 0.0018723466200754046, 0.018388759344816208, 0.028528200462460518, 0.017616499215364456, 0.003125635674223304], "count": [280]}, "timestamp": {"min": [0.0], "max": [9.3], "mean": [4.65], "std": [2.6942840731197344], "count": [280]}, "frame_index": {"min": [0], "max": [279], "mean": [139.5], "std": [80.82852219359204], "count": [280]}, "episode_index": {"min": [229], "max": [229], "mean": [229.0], "std": [0.0], "count": [280]}, "index": {"min": [170332], "max": [170611], "mean": [170471.5], "std": [80.82852219359204], "count": [280]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [280]}}} +{"episode_index": 230, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4421894978392085]], [[0.396912083169637]], [[0.33122397674916965]]], "std": [[[0.20538323669340505]], [[0.1969643705376896]], [[0.1953213438083332]]], "count": [183]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4575888573401431]], [[0.42560095449837493]], [[0.36221334690524665]]], "std": [[[0.2039102173388411]], [[0.18045850950929188]], [[0.1898372169846463]]], "count": [183]}, "observation.state": {"min": [0.5841938257217407, -0.09013973921537399, 0.15070149302482605, -1.5869334936141968, -0.09933473914861679, 0.22460561990737915, -0.5150753855705261, -0.3013487458229065, 0.15306851267814636, 1.1956520080566406, -0.20987366139888763, 0.11754613369703293], "max": [0.7008843421936035, 0.010116780176758766, 0.16971677541732788, -0.8339369297027588, 0.953312873840332, 1.1800591945648193, -0.3504730463027954, -0.16919735074043274, 0.1794726550579071, 1.7978816032409668, 0.49107158184051514, 0.40465670824050903], "mean": [0.6320766806602478, -0.01512453518807888, 0.15795059502124786, -1.2372080087661743, 0.22155454754829407, 0.4608726501464844, -0.4474956691265106, -0.2450619786977768, 0.1685570478439331, 1.4212913513183594, 0.04419863596558571, 0.22304369509220123], "std": [0.03129759803414345, 0.01827348582446575, 0.0046406458131968975, 0.12542879581451416, 0.28926849365234375, 0.2233435958623886, 0.040978286415338516, 0.026366813108325005, 0.005244235508143902, 0.13634349405765533, 0.1890828162431717, 0.06370815634727478], "count": [1044]}, "action": {"min": [-0.0873274877667427, -0.09404198825359344, 0.12689834833145142, 0.22055749595165253, -0.5711840391159058, 0.46189138293266296, -0.29655152559280396, 0.12531277537345886, -0.1115766242146492, 0.08845040947198868, 0.17546512186527252, -0.35500967502593994, -0.28039953112602234, 0.8719562888145447], "max": [-0.06687933206558228, -0.07503502815961838, 0.14802268147468567, 0.7350588440895081, -0.3802987039089203, 0.8693737983703613, 0.06567222625017166, 0.1429225653409958, -0.09032411128282547, 0.11066173762083054, 0.3518296778202057, -0.11043127626180649, 0.07988704741001129, 0.9629116654396057], "mean": [-0.0795130655169487, -0.08290353417396545, 0.1386163979768753, 0.3932918906211853, -0.44610676169395447, 0.7622718214988708, -0.1580699235200882, 0.13172870874404907, -0.10449613630771637, 0.1028611958026886, 0.27022817730903625, -0.19744132459163666, -0.1286243051290512, 0.9263156652450562], "std": [0.007791720796376467, 0.00327535392716527, 0.004777324385941029, 0.1468084156513214, 0.036312226206064224, 0.10628151148557663, 0.07808618992567062, 0.0054969992488622665, 0.004567032679915428, 0.005173059180378914, 0.041570477187633514, 0.053025878965854645, 0.08992782235145569, 0.02757873758673668], "count": [1044]}, "timestamp": {"min": [0.0], "max": [34.766666666666666], "mean": [17.383333333333333], "std": [10.045890075419273], "count": [1044]}, "frame_index": {"min": [0], "max": [1043], "mean": [521.5], "std": [301.37670226257814], "count": [1044]}, "episode_index": {"min": [230], "max": [230], "mean": [230.0], "std": [0.0], "count": [1044]}, "index": {"min": [170612], "max": [171655], "mean": [171133.5], "std": [301.37670226257814], "count": [1044]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1044]}}} +{"episode_index": 231, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45800746134483994]], [[0.41026546206400577]], [[0.3454137080398503]]], "std": [[[0.20926799585186312]], [[0.20240561983493632]], [[0.2024722303527838]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47714065771939845]], [[0.44143537819658607]], [[0.3788212846627324]]], "std": [[[0.2097361809237759]], [[0.18740100109465246]], [[0.19884958081046245]]], "count": [103]}, "observation.state": {"min": [0.5814986228942871, -0.07367487251758575, 0.154922217130661, -1.7335067987442017, -0.11832720786333084, 0.10849978774785995, -0.4729401469230652, -0.2820728123188019, 0.15309055149555206, 1.2277345657348633, -0.03757504001259804, 0.3776974380016327], "max": [0.6813149452209473, -0.0035447299014776945, 0.16737566888332367, -1.2344447374343872, 1.0023653507232666, 0.7571001648902893, -0.33122801780700684, -0.1511879414319992, 0.17012768983840942, 1.5456246137619019, 0.5137532353401184, 0.5522584915161133], "mean": [0.6266995072364807, -0.0176234133541584, 0.15911893546581268, -1.5661450624465942, 0.4119041860103607, 0.3212119936943054, -0.40619727969169617, -0.22259169816970825, 0.16136303544044495, 1.3604096174240112, 0.13199423253536224, 0.4833701550960541], "std": [0.03012489341199398, 0.01593903638422489, 0.0025976826436817646, 0.10124048590660095, 0.32685133814811707, 0.17415519058704376, 0.04266905412077904, 0.037588879466056824, 0.004305749665945768, 0.0818554237484932, 0.18655462563037872, 0.051720622926950455], "count": [486]}, "action": {"min": [-0.08760839700698853, -0.0911707654595375, 0.12513534724712372, 0.2386639416217804, -0.44399404525756836, 0.54132479429245, -0.16555580496788025, 0.13235141336917877, -0.10314807295799255, 0.08958569914102554, 0.11157238483428955, -0.36059051752090454, -0.31061387062072754, 0.8855868577957153], "max": [-0.06728766858577728, -0.07723977416753769, 0.14508606493473053, 0.7386519312858582, -0.22669267654418945, 0.9214939475059509, 0.030897164717316628, 0.149937242269516, -0.093043252825737, 0.11902545392513275, 0.18351782858371735, -0.06390547752380371, -0.13133512437343597, 0.9733328819274902], "mean": [-0.07875258475542068, -0.08377783745527267, 0.13827477395534515, 0.4864017069339752, -0.3472316265106201, 0.7767478227615356, -0.04188574105501175, 0.13953092694282532, -0.09826715290546417, 0.10258705914020538, 0.14244402945041656, -0.1780976504087448, -0.19684934616088867, 0.9476456642150879], "std": [0.006688941270112991, 0.0023406008258461952, 0.005411996506154537, 0.14703354239463806, 0.042968422174453735, 0.11221170425415039, 0.04118577763438225, 0.004924389999359846, 0.0027139761950820684, 0.00813734158873558, 0.019359083846211433, 0.08897485584020615, 0.04563731700181961, 0.02888200432062149], "count": [486]}, "timestamp": {"min": [0.0], "max": [16.166666666666668], "mean": [8.083333333333334], "std": [4.676527280729516], "count": [486]}, "frame_index": {"min": [0], "max": [485], "mean": [242.5], "std": [140.2958184218855], "count": [486]}, "episode_index": {"min": [231], "max": [231], "mean": [231.0], "std": [0.0], "count": [486]}, "index": {"min": [171656], "max": [172141], "mean": [171898.5], "std": [140.2958184218855], "count": [486]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [486]}}} +{"episode_index": 232, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44289494714096933]], [[0.3981561439694275]], [[0.3322660720025715]]], "std": [[[0.20782085959282004]], [[0.19867453837933338]], [[0.19710919189130346]]], "count": [122]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4564629317118468]], [[0.4250450283938712]], [[0.3619739789813922]]], "std": [[[0.21093744619869748]], [[0.18654539060508557]], [[0.19511343431496975]]], "count": [122]}, "observation.state": {"min": [0.611879825592041, -0.0567312017083168, 0.15760034322738647, -1.9442452192306519, 0.04372368007898331, 0.11852522194385529, -0.4982320964336395, -0.2628740966320038, 0.15831848978996277, 1.9775859117507935, -0.3425477147102356, 0.017639830708503723], "max": [0.669421911239624, 0.019608020782470703, 0.1689869612455368, -1.3682268857955933, 1.0544239282608032, 0.7262968420982361, -0.4203329086303711, -0.16732072830200195, 0.1800067126750946, 2.7098231315612793, 0.1002911925315857, 0.506601870059967], "mean": [0.6308454275131226, -0.009958776645362377, 0.16205695271492004, -1.6805751323699951, 0.44795656204223633, 0.3314042091369629, -0.4606873393058777, -0.2280227690935135, 0.17307965457439423, 2.1522133350372314, -0.11593668162822723, 0.21688541769981384], "std": [0.013969148509204388, 0.013052920810878277, 0.002850477583706379, 0.18310712277889252, 0.3195095360279083, 0.1675451397895813, 0.021852729842066765, 0.02432582713663578, 0.005505209323018789, 0.15467198193073273, 0.1372816413640976, 0.11275888234376907], "count": [607]}, "action": {"min": [-0.08116767555475235, -0.09082614630460739, 0.12881964445114136, 0.3422936499118805, -0.4483872354030609, 0.5386084914207458, -0.13512569665908813, 0.12097670137882233, -0.11079995334148407, 0.0979807898402214, 0.028666578233242035, -0.43072310090065, 0.07757829874753952, 0.8350676894187927], "max": [-0.06695211678743362, -0.07698089629411697, 0.14572346210479736, 0.7540171146392822, -0.24814797937870026, 0.8919323086738586, 0.12266073375940323, 0.13654936850070953, -0.09107448160648346, 0.11300475895404816, 0.2215510457754135, -0.18903285264968872, 0.4838007390499115, 0.9451048374176025], "mean": [-0.07610738277435303, -0.08349902182817459, 0.14040876924991608, 0.5126141905784607, -0.33355453610420227, 0.7674819231033325, 0.011768941767513752, 0.12857580184936523, -0.10490435361862183, 0.10755722969770432, 0.16235144436359406, -0.28853639960289, 0.20840688049793243, 0.9130102396011353], "std": [0.004076629877090454, 0.002215324668213725, 0.0037097888998687267, 0.12995795905590057, 0.06428186595439911, 0.10365646332502365, 0.07096179574728012, 0.004386170767247677, 0.005157889798283577, 0.00341227650642395, 0.0466681532561779, 0.057284165173769, 0.08612075448036194, 0.022156286984682083], "count": [607]}, "timestamp": {"min": [0.0], "max": [20.2], "mean": [10.1], "std": [5.840852297015869], "count": [607]}, "frame_index": {"min": [0], "max": [606], "mean": [303.0], "std": [175.22556891047608], "count": [607]}, "episode_index": {"min": [232], "max": [232], "mean": [232.0], "std": [0.0], "count": [607]}, "index": {"min": [172142], "max": [172748], "mean": [172445.0], "std": [175.22556891047608], "count": [607]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [607]}}} +{"episode_index": 233, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44504728213507627]], [[0.4002779520697168]], [[0.3348878622004357]]], "std": [[[0.21176175976243153]], [[0.20308807135452167]], [[0.20282426278760127]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4630602096949891]], [[0.4310055283224401]], [[0.36875333605664484]]], "std": [[[0.2156711624082963]], [[0.19206957953975207]], [[0.20221225167615364]]], "count": [100]}, "observation.state": {"min": [0.6171390414237976, -0.07275587320327759, 0.15163740515708923, -1.6037087440490723, -0.00860810000449419, 0.0984267070889473, -0.5297640562057495, -0.268280029296875, 0.15663591027259827, -0.2388368546962738, 0.42944851517677307, -0.9879540801048279], "max": [0.6659621596336365, 0.0009730643359944224, 0.16695566475391388, -0.853647768497467, 0.9710755944252014, 1.03469979763031, -0.3868471384048462, -0.18926100432872772, 0.17606599628925323, 1.4523125886917114, 0.838948130607605, 0.16273784637451172], "mean": [0.641181230545044, -0.024372758343815804, 0.15919768810272217, -1.1440739631652832, 0.5325299501419067, 0.6483865976333618, -0.44516995549201965, -0.2220361828804016, 0.16894812881946564, 0.2583109736442566, 0.5789504051208496, -0.5885192155838013], "std": [0.01361923012882471, 0.016862593591213226, 0.0033631883561611176, 0.21565183997154236, 0.33590710163116455, 0.2156001627445221, 0.04193266108632088, 0.01976923644542694, 0.004508810583502054, 0.589260458946228, 0.13212436437606812, 0.3649981915950775], "count": [410]}, "action": {"min": [-0.08318443596363068, -0.0912601500749588, 0.12801256775856018, 0.29111823439598083, -0.5775837302207947, 0.4920288920402527, -0.3192104697227478, 0.12381957471370697, -0.10422633588314056, 0.09271401911973953, -0.49257975816726685, -0.49076715111732483, -0.5579079985618591, -0.5803039073944092], "max": [-0.07016611099243164, -0.07596106827259064, 0.1407458484172821, 0.7372704744338989, -0.25885242223739624, 0.8122566342353821, -0.010119535960257053, 0.13604521751403809, -0.09000170230865479, 0.1120525449514389, 0.4093366861343384, 0.39181166887283325, 0.7306071519851685, 0.8082762956619263], "mean": [-0.07609836012125015, -0.08257319033145905, 0.1361636072397232, 0.5427707433700562, -0.46002835035324097, 0.6471315026283264, -0.16439186036586761, 0.13104857504367828, -0.09837738424539566, 0.10701866447925568, -0.23292508721351624, 0.1080264300107956, 0.40151524543762207, -0.1160200759768486], "std": [0.004285557195544243, 0.0036562939640134573, 0.0030833801720291376, 0.15428631007671356, 0.0787767618894577, 0.08388551324605942, 0.10451329499483109, 0.0029821274802088737, 0.0032348595559597015, 0.005346079356968403, 0.32661041617393494, 0.36050090193748474, 0.469056099653244, 0.5502289533615112], "count": [410]}, "timestamp": {"min": [0.0], "max": [13.633333333333333], "mean": [6.8166666666666655], "std": [3.9452151046834216], "count": [410]}, "frame_index": {"min": [0], "max": [409], "mean": [204.5], "std": [118.35645314050265], "count": [410]}, "episode_index": {"min": [233], "max": [233], "mean": [233.0], "std": [0.0], "count": [410]}, "index": {"min": [172749], "max": [173158], "mean": [172953.5], "std": [118.35645314050265], "count": [410]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [410]}}} +{"episode_index": 234, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45022234913382825]], [[0.40473756266260547]], [[0.3400882485140766]]], "std": [[[0.21052068021305026]], [[0.20218064563981322]], [[0.20076912703584582]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4685215194492036]], [[0.4366456575078791]], [[0.3745872067813102]]], "std": [[[0.2149654881033976]], [[0.1904252003428272]], [[0.1999541049950588]]], "count": [103]}, "observation.state": {"min": [0.6077172756195068, -0.05991296097636223, 0.15602535009384155, -1.539962887763977, 0.3619500994682312, 0.09880158305168152, -0.5156314373016357, -0.22312520444393158, 0.16022922098636627, 0.9811392426490784, -0.002459459938108921, 0.030626880005002022], "max": [0.6956097483634949, 0.027060460299253464, 0.16633734107017517, -0.9691869020462036, 0.9212032556533813, 0.7332333326339722, -0.38049131631851196, -0.13788940012454987, 0.17818672955036163, 1.8226250410079956, 0.2929486632347107, 0.229163259267807], "mean": [0.6496118903160095, -0.010633949190378189, 0.1606539487838745, -1.3743075132369995, 0.5909039974212646, 0.4223272502422333, -0.4682363271713257, -0.19302217662334442, 0.16917148232460022, 1.2608299255371094, 0.14794409275054932, 0.1473378986120224], "std": [0.023898383602499962, 0.019625825807452202, 0.0028186803683638573, 0.16978278756141663, 0.19392578303813934, 0.16644656658172607, 0.023226751014590263, 0.02087278664112091, 0.004173160996288061, 0.3259219229221344, 0.09555123746395111, 0.04776908829808235], "count": [487]}, "action": {"min": [-0.08066518604755402, -0.08824186027050018, 0.12721134722232819, 0.46355050802230835, -0.49954524636268616, 0.6143554449081421, -0.25882741808891296, 0.118462473154068, -0.10306031256914139, 0.09886837005615234, 0.22423262894153595, -0.30457451939582825, -0.36442139744758606, 0.8613441586494446], "max": [-0.06559498608112335, -0.07083820551633835, 0.14380937814712524, 0.7050524950027466, -0.20947298407554626, 0.7882273197174072, -0.019413305446505547, 0.14140643179416656, -0.09136505424976349, 0.11720894277095795, 0.3579850494861603, -0.14688175916671753, 0.0556805245578289, 0.9316878318786621], "mean": [-0.07327981293201447, -0.08057884871959686, 0.13690485060214996, 0.5696633458137512, -0.37466952204704285, 0.7054556608200073, -0.12889860570430756, 0.12692691385746002, -0.09738828241825104, 0.10754761099815369, 0.2834591269493103, -0.22161225974559784, -0.22136539220809937, 0.89033043384552], "std": [0.004915820434689522, 0.004592298995703459, 0.004262595437467098, 0.082051120698452, 0.08339356631040573, 0.053727228194475174, 0.06519618630409241, 0.004089361522346735, 0.0036098577547818422, 0.00400571571663022, 0.03928757831454277, 0.04365251213312149, 0.15750984847545624, 0.02428901009261608], "count": [487]}, "timestamp": {"min": [0.0], "max": [16.2], "mean": [8.1], "std": [4.686149805543993], "count": [487]}, "frame_index": {"min": [0], "max": [486], "mean": [243.0], "std": [140.5844941663198], "count": [487]}, "episode_index": {"min": [234], "max": [234], "mean": [234.0], "std": [0.0], "count": [487]}, "index": {"min": [173159], "max": [173645], "mean": [173402.0], "std": [140.5844941663198], "count": [487]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [487]}}} +{"episode_index": 235, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.466758630174292]], [[0.41972898420479304]], [[0.35405725490196077]]], "std": [[[0.20361813987661243]], [[0.19840273978356643]], [[0.19921223337743232]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4842308769063181]], [[0.4488138671023965]], [[0.38614691993464056]]], "std": [[[0.2057596815082532]], [[0.184865876430865]], [[0.1965686010921262]]], "count": [100]}, "observation.state": {"min": [0.606489360332489, -0.026110559701919556, 0.1554562747478485, -1.5057834386825562, 0.23624451458454132, 0.26604950428009033, -0.4623831808567047, -0.2608044147491455, 0.15588276088237762, 0.11470039933919907, 0.1839127242565155, -0.569465696811676], "max": [0.6712676882743835, 0.013839139603078365, 0.16657456755638123, -0.941507875919342, 0.9135516285896301, 0.7685920000076294, -0.3502722680568695, -0.17359930276870728, 0.16594715416431427, 1.0702574253082275, 0.5417637228965759, 0.12314371019601822], "mean": [0.6298721432685852, -0.008702445775270462, 0.16212190687656403, -1.313808560371399, 0.46441107988357544, 0.451900452375412, -0.419095903635025, -0.2280629724264145, 0.16015133261680603, 0.377957284450531, 0.37100714445114136, -0.3847595751285553], "std": [0.021103238686919212, 0.008973744697868824, 0.0018882248550653458, 0.16342799365520477, 0.2013874351978302, 0.14469937980175018, 0.04109715297818184, 0.02159036137163639, 0.0030519284773617983, 0.33482712507247925, 0.11394849419593811, 0.24701321125030518], "count": [366]}, "action": {"min": [-0.08225077390670776, -0.08629655838012695, 0.1349310427904129, 0.4004545211791992, -0.422667533159256, 0.5594809651374817, -0.2386646270751953, 0.1312398761510849, -0.10005171597003937, 0.09682287275791168, -0.5454340577125549, -0.3147909939289093, -0.6251024603843689, -0.6210702061653137], "max": [-0.06827108561992645, -0.075424425303936, 0.14522181451320648, 0.7077046036720276, -0.3600194752216339, 0.8346295952796936, -0.07782333344221115, 0.14969460666179657, -0.09156447649002075, 0.10872960090637207, 0.5418579578399658, 0.2575952410697937, 0.6624322533607483, 0.841545820236206], "mean": [-0.076095350086689, -0.08233838528394699, 0.1414196491241455, 0.5081579685211182, -0.39655694365501404, 0.7392998337745667, -0.13851673901081085, 0.1379621922969818, -0.09556847810745239, 0.10189048200845718, -0.18494610488414764, 0.057401143014431, 0.25544866919517517, -0.1268325001001358], "std": [0.004451134242117405, 0.003204780863597989, 0.0028968914411962032, 0.09348659217357635, 0.01739126816391945, 0.08317350596189499, 0.052979111671447754, 0.006663820706307888, 0.002182450145483017, 0.003225412219762802, 0.3945189416408539, 0.2264898419380188, 0.5199735164642334, 0.6354875564575195], "count": [366]}, "timestamp": {"min": [0.0], "max": [12.166666666666666], "mean": [6.083333333333333], "std": [3.5218234965342514], "count": [366]}, "frame_index": {"min": [0], "max": [365], "mean": [182.5], "std": [105.65470489602754], "count": [366]}, "episode_index": {"min": [235], "max": [235], "mean": [235.0], "std": [0.0], "count": [366]}, "index": {"min": [173646], "max": [174011], "mean": [173828.5], "std": [105.65470489602754], "count": [366]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [366]}}} +{"episode_index": 236, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4445806147579805]], [[0.39895106801174574]], [[0.33276577389409867]]], "std": [[[0.2073325386121341]], [[0.1994600695625533]], [[0.19932654852136644]]], "count": [115]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46229954058918254]], [[0.4288045230652648]], [[0.3649958889836128]]], "std": [[[0.20924119107615538]], [[0.1863744863969299]], [[0.1969993998308676]]], "count": [115]}, "observation.state": {"min": [0.5698836445808411, -0.07730455696582794, 0.1542714685201645, -1.8295447826385498, 0.1830929070711136, 0.1011003702878952, -0.4534093737602234, -0.2596074044704437, 0.15452684462070465, -0.13231435418128967, 0.05383478105068207, -0.8698436617851257], "max": [0.6828749179840088, 0.04168730974197388, 0.16819491982460022, -0.5720341801643372, 1.0400770902633667, 0.9495499134063721, -0.3286949694156647, -0.18499034643173218, 0.18487298488616943, 0.8517605662345886, 0.5339754223823547, -0.5050407648086548], "mean": [0.6335587501525879, -0.016705302521586418, 0.16208714246749878, -1.1849336624145508, 0.5192207098007202, 0.5816746354103088, -0.41047221422195435, -0.22605954110622406, 0.16797733306884766, 0.13319914042949677, 0.20548118650913239, -0.7122985124588013], "std": [0.03583215922117233, 0.024137338623404503, 0.0036864569410681725, 0.4495093822479248, 0.2752703130245209, 0.23267167806625366, 0.02767683006823063, 0.01807834394276142, 0.011091246269643307, 0.22515036165714264, 0.11882234364748001, 0.09950008988380432], "count": [564]}, "action": {"min": [-0.09104032069444656, -0.09119908511638641, 0.12413038313388824, -0.4535697102546692, -0.5735282897949219, -0.5724623203277588, -0.3994443714618683, 0.12673968076705933, -0.11477886885404587, 0.09709437191486359, -0.6047812104225159, -0.38328126072883606, -0.6043255925178528, -0.5578190684318542], "max": [-0.06482595205307007, -0.07357629388570786, 0.14803539216518402, 0.7544038891792297, 0.5734735727310181, 0.8236318230628967, 0.4016248881816864, 0.15145814418792725, -0.08972359448671341, 0.11588548123836517, 0.6142048239707947, 0.2799535393714905, 0.7246760725975037, 0.6951749920845032], "mean": [-0.07567641139030457, -0.08342112600803375, 0.13957059383392334, 0.5075109601020813, -0.39840760827064514, 0.611723005771637, -0.14338433742523193, 0.13680239021778107, -0.10196468979120255, 0.10758763551712036, -0.12343353778123856, 0.07293437421321869, 0.23008187115192413, -0.10099127143621445], "std": [0.008313621394336224, 0.00370249105617404, 0.006278302986174822, 0.2189783900976181, 0.2081189751625061, 0.23633526265621185, 0.20449990034103394, 0.007559448480606079, 0.008058691397309303, 0.005802053026854992, 0.5304960608482361, 0.21300971508026123, 0.5812179446220398, 0.5016911625862122], "count": [564]}, "timestamp": {"min": [0.0], "max": [18.766666666666666], "mean": [9.383333333333333], "std": [5.427083999786693], "count": [564]}, "frame_index": {"min": [0], "max": [563], "mean": [281.5], "std": [162.81251999360083], "count": [564]}, "episode_index": {"min": [236], "max": [236], "mean": [236.0], "std": [0.0], "count": [564]}, "index": {"min": [174012], "max": [174575], "mean": [174293.5], "std": [162.81251999360083], "count": [564]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [564]}}} +{"episode_index": 237, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44392465731663033]], [[0.397038850308642]], [[0.3318136551379811]]], "std": [[[0.21179524094502536]], [[0.20367727472658387]], [[0.2033668868879277]]], "count": [120]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46543623819898333]], [[0.4308095520152505]], [[0.36791457652505444]]], "std": [[[0.21459593930357396]], [[0.1912968283437554]], [[0.20220573616655038]]], "count": [120]}, "observation.state": {"min": [0.607022225856781, -0.08881915360689163, 0.1501401960849762, -1.7303614616394043, 0.15713196992874146, 0.09625350683927536, -0.4252600073814392, -0.26506736874580383, 0.1545216590166092, 0.6169078350067139, 0.09523563832044601, -0.5338543653488159], "max": [0.703355610370636, 0.023199090734124184, 0.1663477122783661, -1.069628357887268, 0.8776162266731262, 0.6536067128181458, -0.33231690526008606, -0.16891160607337952, 0.16480383276939392, 2.043009042739868, 0.7480848431587219, 0.38345059752464294], "mean": [0.65854811668396, -0.025839615613222122, 0.15835176408290863, -1.4176959991455078, 0.4625577926635742, 0.41500091552734375, -0.40183278918266296, -0.20487239956855774, 0.1618470847606659, 1.636440396308899, 0.2987663745880127, 0.11561008542776108], "std": [0.025886304676532745, 0.01990552805364132, 0.004424101207405329, 0.18566085398197174, 0.17278389632701874, 0.1085456982254982, 0.02309926226735115, 0.020273985341191292, 0.0023830789141356945, 0.4433977007865906, 0.19318166375160217, 0.29805076122283936], "count": [595]}, "action": {"min": [-0.08731944859027863, -0.09140916913747787, 0.12048595398664474, 0.34804078936576843, -0.47681692242622375, 0.56998610496521, -0.25390222668647766, 0.13524766266345978, -0.10011062771081924, 0.0991753414273262, 0.12686073780059814, -0.4329579770565033, -0.46813926100730896, 0.672427773475647], "max": [-0.06366249173879623, -0.07364052534103394, 0.1405714899301529, 0.7083848714828491, -0.2568349242210388, 0.8325375914573669, 0.08130013197660446, 0.14787010848522186, -0.08874695003032684, 0.11116344481706619, 0.4859056770801544, -0.3124510645866394, 0.10756836831569672, 0.9298372864723206], "mean": [-0.07360631227493286, -0.08254876732826233, 0.13341742753982544, 0.519635021686554, -0.3974095284938812, 0.7347450852394104, -0.1003192812204361, 0.13864856958389282, -0.0962446853518486, 0.10454072058200836, 0.24881179630756378, -0.3574734926223755, -0.06802244484424591, 0.869257390499115], "std": [0.00704665994271636, 0.003628872102126479, 0.003766274079680443, 0.09023742377758026, 0.04656616598367691, 0.05743144080042839, 0.09231101721525192, 0.002765580778941512, 0.002485979115590453, 0.0022349690552800894, 0.10123438388109207, 0.02959064207971096, 0.17701731622219086, 0.08724459260702133], "count": [595]}, "timestamp": {"min": [0.0], "max": [19.8], "mean": [9.899999999999999], "std": [5.725382083319854], "count": [595]}, "frame_index": {"min": [0], "max": [594], "mean": [297.0], "std": [171.76146249959564], "count": [595]}, "episode_index": {"min": [237], "max": [237], "mean": [237.0], "std": [0.0], "count": [595]}, "index": {"min": [174576], "max": [175170], "mean": [174873.0], "std": [171.76146249959564], "count": [595]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [595]}}} +{"episode_index": 238, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45926110838779954]], [[0.41153852124183005]], [[0.34546746187363836]]], "std": [[[0.206510865834851]], [[0.2005926427145941]], [[0.20175968225495788]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4773296160130719]], [[0.440725059912854]], [[0.37736279411764706]]], "std": [[[0.20735222338771847]], [[0.18636558757358823]], [[0.1986769631303276]]], "count": [100]}, "observation.state": {"min": [0.5998401045799255, -0.029732519760727882, 0.15751348435878754, -1.6185966730117798, 0.1274818480014801, 0.18815763294696808, -0.3934423625469208, -0.2403777837753296, 0.16316531598567963, 0.2633705735206604, 0.24184660613536835, -0.7660363912582397], "max": [0.6509336829185486, 0.01947673037648201, 0.16874843835830688, -1.1398745775222778, 0.8437303900718689, 0.811892032623291, -0.34458062052726746, -0.18234917521476746, 0.1704012155532837, 0.5214989185333252, 0.4379199743270874, -0.6605536341667175], "mean": [0.6234655380249023, -0.02049151062965393, 0.16233773529529572, -1.467159628868103, 0.40299803018569946, 0.4401435852050781, -0.37370622158050537, -0.2142602801322937, 0.16760356724262238, 0.39942294359207153, 0.31828373670578003, -0.7070623636245728], "std": [0.014611993916332722, 0.010266984812915325, 0.003745771711692214, 0.14380617439746857, 0.27954861521720886, 0.19365842640399933, 0.01808036118745804, 0.019836051389575005, 0.0024720088113099337, 0.09782823920249939, 0.06410516053438187, 0.02276691421866417], "count": [321]}, "action": {"min": [-0.08246610313653946, -0.09068982303142548, 0.13699452579021454, 0.35904285311698914, -0.4618535339832306, 0.5812118053436279, -0.12232656031847, 0.13788717985153198, -0.10539980232715607, 0.10861040651798248, -0.4921848773956299, -0.3332125246524811, -0.585370659828186, -0.5855862498283386], "max": [-0.07021894305944443, -0.07940617203712463, 0.14805054664611816, 0.6821066737174988, -0.293257474899292, 0.84968501329422, -0.026520127430558205, 0.1465306580066681, -0.09319714456796646, 0.11368821561336517, 0.5989580750465393, 0.26838886737823486, 0.586005449295044, 0.6120710968971252], "mean": [-0.07731972634792328, -0.0855601355433464, 0.14101092517375946, 0.4846563935279846, -0.39721018075942993, 0.7585428953170776, -0.059180956333875656, 0.14151722192764282, -0.10047904402017593, 0.11077331751585007, 0.5355380177497864, -0.26871660351753235, -0.5115270614624023, 0.5813731551170349], "std": [0.004762199241667986, 0.0028477937448769808, 0.002870077034458518, 0.12686480581760406, 0.03060084953904152, 0.10388734936714172, 0.024871086701750755, 0.003286748891696334, 0.004052009899169207, 0.0016739871352910995, 0.10891911387443542, 0.056548845022916794, 0.11566634476184845, 0.11356203258037567], "count": [321]}, "timestamp": {"min": [0.0], "max": [10.666666666666666], "mean": [5.333333333333333], "std": [3.088808951803387], "count": [321]}, "frame_index": {"min": [0], "max": [320], "mean": [160.0], "std": [92.66426855410162], "count": [321]}, "episode_index": {"min": [238], "max": [238], "mean": [238.0], "std": [0.0], "count": [321]}, "index": {"min": [175171], "max": [175491], "mean": [175331.0], "std": [92.66426855410162], "count": [321]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [321]}}} +{"episode_index": 239, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48305634640522876]], [[0.43492587581699343]], [[0.369429431372549]]], "std": [[[0.20109957232806783]], [[0.1975733590039932]], [[0.19998732906311828]]], "count": [125]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5014807777777778]], [[0.4638917843137255]], [[0.40185018082788676]]], "std": [[[0.20195554417335382]], [[0.18298677255023169]], [[0.1966264211416974]]], "count": [125]}, "observation.state": {"min": [0.5958165526390076, -0.04382650926709175, 0.15226741135120392, -2.0574777126312256, -0.10671310871839523, -0.0656602531671524, -0.39780569076538086, -0.20439757406711578, 0.15665924549102783, 0.2904205620288849, 0.40908968448638916, -0.8749658465385437], "max": [0.6397511959075928, 0.041679590940475464, 0.1681806594133377, -1.1237283945083618, 0.984329342842102, 0.551349937915802, -0.3322088122367859, -0.16942903399467468, 0.16912825405597687, 0.5594527721405029, 0.6137711405754089, -0.5718899369239807], "mean": [0.6167792677879333, -0.009878205135464668, 0.16102518141269684, -1.5328468084335327, 0.31400609016418457, 0.3094418942928314, -0.380165159702301, -0.19445616006851196, 0.16196027398109436, 0.4528599679470062, 0.5244688987731934, -0.8144713044166565], "std": [0.012054645456373692, 0.025857780128717422, 0.003576441667973995, 0.30418169498443604, 0.3590517044067383, 0.1513107866048813, 0.020858034491539, 0.011115621775388718, 0.0033351813908666372, 0.06350533664226532, 0.05001957342028618, 0.06957754492759705], "count": [628]}, "action": {"min": [-0.08593834936618805, -0.09136033803224564, 0.13802018761634827, 0.22800889611244202, -0.514221727848053, 0.6453256607055664, -0.22547677159309387, 0.1395009160041809, -0.09865570813417435, 0.10585858672857285, 0.44220131635665894, -0.42183056473731995, -0.546765923500061, 0.5648043155670166], "max": [-0.07116816937923431, -0.07266052067279816, 0.1466209590435028, 0.7317137122154236, -0.1652115434408188, 0.8476324677467346, 0.12025370448827744, 0.14871084690093994, -0.08641351759433746, 0.11450526863336563, 0.5491225719451904, -0.3314594626426697, -0.44826316833496094, 0.6739567518234253], "mean": [-0.07982847839593887, -0.08496209233999252, 0.1416574865579605, 0.4348992109298706, -0.38358157873153687, 0.7769643664360046, -0.06642349809408188, 0.14174562692642212, -0.09258010238409042, 0.1087532564997673, 0.5179402232170105, -0.39557117223739624, -0.4786888062953949, 0.5852183699607849], "std": [0.004672682844102383, 0.005058284383267164, 0.0023179110139608383, 0.17178815603256226, 0.10408571362495422, 0.059871356934309006, 0.1082276776432991, 0.0032192799262702465, 0.0030476965475827456, 0.002814285457134247, 0.035497114062309265, 0.030771158635616302, 0.030020570382475853, 0.023017052561044693], "count": [628]}, "timestamp": {"min": [0.0], "max": [20.9], "mean": [10.45], "std": [6.042925156283539], "count": [628]}, "frame_index": {"min": [0], "max": [627], "mean": [313.5], "std": [181.2877546885062], "count": [628]}, "episode_index": {"min": [239], "max": [239], "mean": [239.0], "std": [0.0], "count": [628]}, "index": {"min": [175492], "max": [176119], "mean": [175805.5], "std": [181.2877546885062], "count": [628]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [628]}}} +{"episode_index": 240, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48582564232589587]], [[0.45869343775824506]], [[0.42982429193899785]]], "std": [[[0.2194380890481111]], [[0.21500332293448668]], [[0.21931163870588194]]], "count": [145]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4987575069491398]], [[0.4827364172488919]], [[0.4566985632183908]]], "std": [[[0.20851737689735875]], [[0.19195111160272307]], [[0.20565557937960113]]], "count": [145]}, "observation.state": {"min": [0.3632233142852783, -0.28353241086006165, 0.09282861649990082, -0.738947331905365, -0.6316705346107483, 0.22126534581184387, -0.6228461265563965, -0.4596030116081238, 0.1549922078847885, 0.38247445225715637, -0.9097258448600769, -0.380329430103302], "max": [0.4717971980571747, -0.02951629087328911, 0.13875746726989746, -0.13126589357852936, 0.12105993926525116, 1.3576617240905762, -0.4114286005496979, -0.28460586071014404, 0.18876445293426514, 1.8637242317199707, -0.13649986684322357, 0.011167449876666069], "mean": [0.43747445940971375, -0.15181323885917664, 0.12052982300519943, -0.40838661789894104, -0.2939102351665497, 0.61685711145401, -0.5476837158203125, -0.35375726222991943, 0.17099528014659882, 1.2558797597885132, -0.4958113431930542, -0.16717468202114105], "std": [0.0268483255058527, 0.06115317717194557, 0.01578100584447384, 0.14952996373176575, 0.1666831523180008, 0.3408728837966919, 0.04380727559328079, 0.05156285688281059, 0.00808468833565712, 0.45659416913986206, 0.16056950390338898, 0.10929066687822342], "count": [765]}, "action": {"min": [-0.14690934121608734, -0.10725866258144379, 0.08472728729248047, -0.2189534455537796, -0.6216196417808533, -0.6192259788513184, -0.5981611609458923, 0.1086055189371109, -0.12431291490793228, 0.06627622991800308, 0.37866318225860596, -0.14860649406909943, -0.4121001958847046, 0.5972966551780701], "max": [-0.11976700276136398, -0.07468226552009583, 0.13519249856472015, 0.21296735107898712, 0.8462954163551331, 0.6713783740997314, 0.5427176356315613, 0.14777278900146484, -0.10720096528530121, 0.09973648935556412, 0.6921271681785583, 0.19237548112869263, 0.20106163620948792, 0.909229040145874], "mean": [-0.1322290450334549, -0.09647243469953537, 0.11394569277763367, -0.029756341129541397, 0.249629944562912, -0.08881016820669174, 0.09368126839399338, 0.12355871498584747, -0.11565953493118286, 0.08585596829652786, 0.5219076871871948, 0.01076145563274622, -0.04647887125611305, 0.8150503039360046], "std": [0.008752928115427494, 0.007707206532359123, 0.015367981977760792, 0.11710887402296066, 0.6132805347442627, 0.5563668608665466, 0.46985572576522827, 0.008115667849779129, 0.004139535594731569, 0.0085708973929286, 0.07807537168264389, 0.09887129068374634, 0.19397611916065216, 0.08678159862756729], "count": [765]}, "timestamp": {"min": [0.0], "max": [25.466666666666665], "mean": [12.733333333333333], "std": [7.361209642946424], "count": [765]}, "frame_index": {"min": [0], "max": [764], "mean": [382.0], "std": [220.8362892883927], "count": [765]}, "episode_index": {"min": [240], "max": [240], "mean": [240.0], "std": [0.0], "count": [765]}, "index": {"min": [176120], "max": [176884], "mean": [176502.0], "std": [220.8362892883927], "count": [765]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [765]}}} +{"episode_index": 241, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48024902598677105]], [[0.4519645061728395]], [[0.4217586238198983]]], "std": [[[0.22105429383050562]], [[0.21497208726393074]], [[0.22005819234730056]]], "count": [111]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49562708296531827]], [[0.4778943453257179]], [[0.45117496417986613]]], "std": [[[0.21151769805424084]], [[0.19302864377726253]], [[0.20772172683915105]]], "count": [111]}, "observation.state": {"min": [0.409219890832901, -0.15649345517158508, 0.08902271836996078, -1.281834602355957, -0.6833191514015198, 0.534893274307251, -0.6270241141319275, -0.40629297494888306, 0.14764873683452606, 1.0593535900115967, -0.7351043820381165, -0.2045971006155014], "max": [0.5183112025260925, -0.035825759172439575, 0.1445285528898239, -0.177397683262825, 0.09591881930828094, 1.2333097457885742, -0.4982243776321411, -0.29309317469596863, 0.182819664478302, 1.6299198865890503, -0.23392169177532196, 0.45920491218566895], "mean": [0.4582497477531433, -0.10112152993679047, 0.12540733814239502, -0.6061968803405762, -0.24572335183620453, 0.8231664299964905, -0.5460003018379211, -0.3307192325592041, 0.1626541018486023, 1.2717186212539673, -0.47691118717193604, 0.17090201377868652], "std": [0.023958008736371994, 0.03071962110698223, 0.01574990339577198, 0.25377407670021057, 0.2385587990283966, 0.20207373797893524, 0.03013836406171322, 0.032195206731557846, 0.00898563489317894, 0.18719041347503662, 0.14938382804393768, 0.21718962490558624], "count": [535]}, "action": {"min": [-0.14704789221286774, -0.10902074724435806, 0.1005525141954422, -0.26872870326042175, -0.6475685238838196, -0.6486916542053223, -0.48516640067100525, 0.10675852000713348, -0.11687932908535004, 0.069389708340168, 0.234688401222229, -0.17038299143314362, -0.1608666628599167, 0.8461885452270508], "max": [-0.11697753518819809, -0.0670744925737381, 0.1326448917388916, 0.2641690969467163, 0.8074150681495667, 0.7582592368125916, 0.5878927707672119, 0.13815724849700928, -0.09580705314874649, 0.09379580616950989, 0.50677889585495, 0.1694285124540329, 0.08303217589855194, 0.971105694770813], "mean": [-0.12658220529556274, -0.09222888946533203, 0.12118953466415405, -0.06058661267161369, 0.5028772950172424, -0.31421056389808655, 0.3157642185688019, 0.12734268605709076, -0.10802756994962692, 0.08401544392108917, 0.37901532649993896, 0.00782694760710001, -0.03977973014116287, 0.910681962966919], "std": [0.007834028452634811, 0.012327469885349274, 0.008562520146369934, 0.16931378841400146, 0.4875500798225403, 0.4606679081916809, 0.2577233910560608, 0.007848283275961876, 0.006243215408176184, 0.005916281137615442, 0.09116390347480774, 0.10429541021585464, 0.06688451766967773, 0.0412386953830719], "count": [535]}, "timestamp": {"min": [0.0], "max": [17.8], "mean": [8.900000000000002], "std": [5.14803090727146], "count": [535]}, "frame_index": {"min": [0], "max": [534], "mean": [267.0], "std": [154.44092721814383], "count": [535]}, "episode_index": {"min": [241], "max": [241], "mean": [241.0], "std": [0.0], "count": [535]}, "index": {"min": [176885], "max": [177419], "mean": [177152.0], "std": [154.44092721814383], "count": [535]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [535]}}} +{"episode_index": 242, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4734672772617819]], [[0.4464485191737514]], [[0.41630650564319294]]], "std": [[[0.2224917963820671]], [[0.21673740518257745]], [[0.22193964960079593]]], "count": [133]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48808024964371716]], [[0.471906451176962]], [[0.4453564732910708]]], "std": [[[0.21388301613943497]], [[0.1958483535524279]], [[0.21033765751488775]]], "count": [133]}, "observation.state": {"min": [0.39436906576156616, -0.1606096774339676, 0.09929841011762619, -1.1614725589752197, -0.7396133542060852, 0.3267800211906433, -0.6552507281303406, -0.41525906324386597, 0.14390115439891815, 1.2143144607543945, -1.1040228605270386, -0.31641247868537903], "max": [0.5127585530281067, -0.03864455968141556, 0.14648984372615814, -0.30195352435112, 0.6277080774307251, 1.0952332019805908, -0.480886846780777, -0.20971080660820007, 0.18102042376995087, 1.7261675596237183, -0.0953722819685936, 0.5860781669616699], "mean": [0.45561671257019043, -0.11221719533205032, 0.13232894241809845, -0.7259759306907654, -0.01909674145281315, 0.7690224647521973, -0.5540707111358643, -0.3100251257419586, 0.16632702946662903, 1.4692184925079346, -0.5927550792694092, 0.03274277597665787], "std": [0.03072189725935459, 0.031786512583494186, 0.01192348264157772, 0.25526341795921326, 0.47615891695022583, 0.22004267573356628, 0.03706803172826767, 0.0440090037882328, 0.010596947744488716, 0.12178724259138107, 0.2918807566165924, 0.22769586741924286], "count": [682]}, "action": {"min": [-0.13204899430274963, -0.10924260318279266, 0.10381610691547394, -0.4613909125328064, -0.6383427977561951, -0.631272554397583, -0.39436957240104675, 0.11059720069169998, -0.11855175346136093, 0.06673531234264374, 0.1428956538438797, -0.25993046164512634, -0.13712573051452637, 0.8422060012817383], "max": [-0.11040600389242172, -0.0667734146118164, 0.1323998123407364, 0.48681607842445374, 0.8315104246139526, 0.7782739996910095, 0.5020064115524292, 0.13769260048866272, -0.0849991887807846, 0.10383594781160355, 0.5373836159706116, 0.23276525735855103, 0.19634610414505005, 0.9863614439964294], "mean": [-0.1228446513414383, -0.0959392637014389, 0.12496031075716019, 0.026538124307990074, 0.3348597586154938, -0.10286060720682144, 0.13691876828670502, 0.1252870261669159, -0.10726296901702881, 0.0884556770324707, 0.38646575808525085, 0.014989587478339672, 0.05022689327597618, 0.9015854597091675], "std": [0.004909763112664223, 0.012548391707241535, 0.006845113355666399, 0.30093127489089966, 0.5639757513999939, 0.5825967192649841, 0.33134666085243225, 0.005305145401507616, 0.00886237807571888, 0.008661802858114243, 0.10095950216054916, 0.13171590864658356, 0.0777798518538475, 0.03805461525917053], "count": [682]}, "timestamp": {"min": [0.0], "max": [22.7], "mean": [11.35], "std": [6.562541005162897], "count": [682]}, "frame_index": {"min": [0], "max": [681], "mean": [340.5], "std": [196.8762301548869], "count": [682]}, "episode_index": {"min": [242], "max": [242], "mean": [242.0], "std": [0.0], "count": [682]}, "index": {"min": [177420], "max": [178101], "mean": [177760.5], "std": [196.8762301548869], "count": [682]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [682]}}} +{"episode_index": 243, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47157825435729844]], [[0.44355873956063907]], [[0.41302847449164853]]], "std": [[[0.22186225937382312]], [[0.21624326710961883]], [[0.22132092696991812]]], "count": [120]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48787961147421927]], [[0.4707854870188816]], [[0.44368052151416126]]], "std": [[[0.2128096070844042]], [[0.19448368480364273]], [[0.20939771844698804]]], "count": [120]}, "observation.state": {"min": [0.4099458158016205, -0.16605420410633087, 0.10465727001428604, -0.9656221866607666, -0.39064374566078186, 0.45491889119148254, -0.6374034881591797, -0.4028100073337555, 0.1369919329881668, 1.06732177734375, -0.5614393949508667, -0.10135500878095627], "max": [0.5198480486869812, -0.06470105797052383, 0.1461528092622757, -0.3642314374446869, 0.5827546715736389, 1.1962651014328003, -0.47694826126098633, -0.224082812666893, 0.1759195178747177, 1.8417067527770996, -0.08867709338665009, 0.48441681265830994], "mean": [0.47366103529930115, -0.11452382802963257, 0.1324390023946762, -0.6495587229728699, -0.0015588287496939301, 0.825531542301178, -0.5534612536430359, -0.3098856210708618, 0.15909002721309662, 1.3528690338134766, -0.3788176476955414, 0.19848650693893433], "std": [0.022651376202702522, 0.028668245300650597, 0.010611037723720074, 0.14293639361858368, 0.284379243850708, 0.20515675842761993, 0.04103224352002144, 0.03866749629378319, 0.00969872809946537, 0.24879367649555206, 0.15959826111793518, 0.14710894227027893], "count": [597]}, "action": {"min": [-0.1342478096485138, -0.10932376980781555, 0.10820375382900238, -0.3741387724876404, -0.6231855750083923, -0.6242921352386475, -0.4544367492198944, 0.1092563048005104, -0.1131446585059166, 0.06283418089151382, 0.12426349520683289, -0.3024596571922302, -0.13174012303352356, 0.8543010950088501], "max": [-0.10920481383800507, -0.07093102484941483, 0.13481062650680542, 0.47180476784706116, 0.7963491678237915, 0.746677041053772, 0.5169941186904907, 0.1433662623167038, -0.08482637256383896, 0.09425590932369232, 0.5005902647972107, 0.10886073112487793, 0.11489841341972351, 0.986267626285553], "mean": [-0.12004513293504715, -0.0955536961555481, 0.1246144250035286, -0.0553106963634491, 0.42394670844078064, -0.24639452993869781, 0.20186123251914978, 0.12693800032138824, -0.1028878316283226, 0.0840659886598587, 0.3404523730278015, -0.05782872065901756, -0.049027908593416214, 0.9190844297409058], "std": [0.0054763201624155045, 0.010320906527340412, 0.006693590898066759, 0.26709920167922974, 0.5147450566291809, 0.5200581550598145, 0.3301313817501068, 0.007438925560563803, 0.007633623667061329, 0.007568942382931709, 0.10481659322977066, 0.12926174700260162, 0.06876132637262344, 0.03472340852022171], "count": [597]}, "timestamp": {"min": [0.0], "max": [19.866666666666667], "mean": [9.933333333333334], "std": [5.744627119382139], "count": [597]}, "frame_index": {"min": [0], "max": [596], "mean": [298.0], "std": [172.3388135814642], "count": [597]}, "episode_index": {"min": [243], "max": [243], "mean": [243.0], "std": [0.0], "count": [597]}, "index": {"min": [178102], "max": [178698], "mean": [178400.0], "std": [172.3388135814642], "count": [597]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [597]}}} +{"episode_index": 244, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4686593063651887]], [[0.4421494362009068]], [[0.41192992256962846]]], "std": [[[0.22348294248175446]], [[0.21737828553534513]], [[0.22246521155953897]]], "count": [111]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4856106842136254]], [[0.47016339133250895]], [[0.44330977791517007]]], "std": [[[0.2137372057444975]], [[0.19524714719946967]], [[0.20991067288179838]]], "count": [111]}, "observation.state": {"min": [0.39267781376838684, -0.1796770989894867, 0.09690933674573898, -1.3753563165664673, -0.5327457189559937, 0.6324645280838013, -0.5963494181632996, -0.3656791150569916, 0.1466272473335266, 1.4198106527328491, -1.0273698568344116, -0.021910719573497772], "max": [0.5247673988342285, -0.046019770205020905, 0.14508596062660217, -0.0719236508011818, 0.6088522672653198, 1.2197802066802979, -0.49864915013313293, -0.29268383979797363, 0.1835157871246338, 1.693665623664856, -0.18240973353385925, 0.5223955512046814], "mean": [0.4681067168712616, -0.12464675307273865, 0.12688958644866943, -0.7566927671432495, 0.067980095744133, 0.8937258720397949, -0.5415206551551819, -0.3251192271709442, 0.16590262949466705, 1.531272530555725, -0.5316483974456787, 0.24397538602352142], "std": [0.03420032933354378, 0.040523383766412735, 0.01359701156616211, 0.39293044805526733, 0.3943920135498047, 0.19847720861434937, 0.030215144157409668, 0.019508104771375656, 0.010148291476070881, 0.06089290976524353, 0.23112861812114716, 0.16606178879737854], "count": [539]}, "action": {"min": [-0.14203515648841858, -0.11002755910158157, 0.09791555255651474, -0.5261117219924927, -0.6584985256195068, -0.6561473608016968, -0.473615825176239, 0.10981110483407974, -0.12077702581882477, 0.07511447370052338, 0.13976949453353882, -0.19251370429992676, -0.08395510911941528, 0.903985857963562], "max": [-0.11279533803462982, -0.07626491785049438, 0.132997527718544, 0.4635317623615265, 0.7967958450317383, 0.7120785713195801, 0.5668702721595764, 0.13328959047794342, -0.09174081683158875, 0.09861114621162415, 0.4200293719768524, 0.1900787055492401, 0.18328697979450226, 0.982925534248352], "mean": [-0.12274567782878876, -0.09384600818157196, 0.11930442601442337, -0.0022015764843672514, 0.24531705677509308, -0.048921115696430206, 0.1856004148721695, 0.12686578929424286, -0.10909391194581985, 0.08764047920703888, 0.2818019390106201, -0.025143327191472054, 0.05809454992413521, 0.9448171257972717], "std": [0.007390336133539677, 0.01067950390279293, 0.00906385574489832, 0.33528760075569153, 0.6240329146385193, 0.5600457191467285, 0.29578378796577454, 0.005843480117619038, 0.007984967902302742, 0.006454870570451021, 0.08325058966875076, 0.10933507978916168, 0.06619951128959656, 0.02517594024538994], "count": [539]}, "timestamp": {"min": [0.0], "max": [17.933333333333334], "mean": [8.966666666666667], "std": [5.186520991955976], "count": [539]}, "frame_index": {"min": [0], "max": [538], "mean": [269.0], "std": [155.59562975867928], "count": [539]}, "episode_index": {"min": [244], "max": [244], "mean": [244.0], "std": [0.0], "count": [539]}, "index": {"min": [178699], "max": [179237], "mean": [178968.0], "std": [155.59562975867928], "count": [539]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [539]}}} +{"episode_index": 245, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4643105012838469]], [[0.4381031989184563]], [[0.4072700017507003]]], "std": [[[0.222551731927989]], [[0.21592424114980177]], [[0.22101187035315276]]], "count": [112]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.481007564484127]], [[0.4663362511671335]], [[0.4386699857026144]]], "std": [[[0.2143792900622283]], [[0.19478539742689976]], [[0.20971180581212287]]], "count": [112]}, "observation.state": {"min": [0.4185721278190613, -0.1804879903793335, 0.09535250067710876, -1.3510322570800781, -0.32560476660728455, 0.49962118268013, -0.6370559334754944, -0.3332204818725586, 0.14990685880184174, 0.5047236680984497, -1.1155003309249878, -0.17185209691524506], "max": [0.5546852946281433, -0.031609151512384415, 0.14433282613754272, -0.16921977698802948, 0.5645819902420044, 1.0634664297103882, -0.49321234226226807, -0.25719788670539856, 0.18110597133636475, 1.4596517086029053, -0.2687639892101288, 1.0316288471221924], "mean": [0.4960467517375946, -0.11953303962945938, 0.1258983314037323, -0.8348127007484436, 0.1470787525177002, 0.8131014108657837, -0.5540500283241272, -0.28774064779281616, 0.16522392630577087, 1.0550358295440674, -0.6443189382553101, 0.2487827092409134], "std": [0.027440553531050682, 0.04350182041525841, 0.012538272887468338, 0.338069349527359, 0.21650013327598572, 0.15969856083393097, 0.036817215383052826, 0.018516365438699722, 0.00790997501462698, 0.27029481530189514, 0.26295021176338196, 0.37397879362106323], "count": [541]}, "action": {"min": [-0.13955862820148468, -0.10820477455854416, 0.09721102565526962, -0.4206772446632385, -0.6551699638366699, -0.6533128619194031, -0.5361235737800598, 0.1050942987203598, -0.11378791928291321, 0.07522358745336533, 0.2061772495508194, -0.11395422369241714, -0.20987844467163086, 0.815870463848114], "max": [-0.1058741956949234, -0.0685175359249115, 0.1299232840538025, 0.45827099680900574, 0.7789282202720642, 0.7329676151275635, 0.5503395199775696, 0.135154128074646, -0.09457085281610489, 0.09684848040342331, 0.5524128675460815, 0.40175560116767883, 0.06436328589916229, 0.94133460521698], "mean": [-0.11878180503845215, -0.09100813418626785, 0.11793989688158035, -0.04721660166978836, 0.22878305613994598, -0.0987582728266716, 0.1574130356311798, 0.12496812641620636, -0.105397067964077, 0.08823559433221817, 0.3913653790950775, 0.11045907437801361, -0.056016772985458374, 0.8862279653549194], "std": [0.007830765098333359, 0.011392596177756786, 0.007034389767795801, 0.3363274335861206, 0.5921556353569031, 0.6055622696876526, 0.28359559178352356, 0.007548893336206675, 0.00535098509863019, 0.005049089435487986, 0.10916484147310257, 0.1656550168991089, 0.07377989590167999, 0.0359363779425621], "count": [541]}, "timestamp": {"min": [0.0], "max": [18.0], "mean": [9.0], "std": [5.205766033928148], "count": [541]}, "frame_index": {"min": [0], "max": [540], "mean": [270.0], "std": [156.17298101784445], "count": [541]}, "episode_index": {"min": [245], "max": [245], "mean": [245.0], "std": [0.0], "count": [541]}, "index": {"min": [179238], "max": [179778], "mean": [179508.0], "std": [156.17298101784445], "count": [541]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [541]}}} +{"episode_index": 246, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4719509319264429]], [[0.44489745116502344]], [[0.41355529245596545]]], "std": [[[0.22210459006318614]], [[0.21761374858898197]], [[0.22264435570648763]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4890202102027252]], [[0.4723258580739264]], [[0.44442857076917397]]], "std": [[[0.21154043151752483]], [[0.1946478338274048]], [[0.20936653659745164]]], "count": [118]}, "observation.state": {"min": [0.408123254776001, -0.19488315284252167, 0.10587707906961441, -1.4497963190078735, -0.6199197769165039, 0.6873061656951904, -0.5709416270256042, -0.4119769036769867, 0.13977636396884918, 0.7701911330223083, -0.34090808033943176, -0.37398582696914673], "max": [0.5048427581787109, -0.04703916981816292, 0.14377540349960327, -0.47012484073638916, 0.5516015291213989, 1.0969334840774536, -0.34363844990730286, -0.25653374195098877, 0.18062245845794678, 1.6963915824890137, 0.38107919692993164, 0.11571259796619415], "mean": [0.4673022925853729, -0.13070593774318695, 0.13093233108520508, -0.9219039678573608, 0.061734676361083984, 0.9197859168052673, -0.4670046865940094, -0.34468650817871094, 0.15712107717990875, 1.144622802734375, -0.07129386812448502, -0.15931658446788788], "std": [0.02547987923026085, 0.039190832525491714, 0.010556130670011044, 0.31718310713768005, 0.35026678442955017, 0.1348288506269455, 0.058063603937625885, 0.04177875444293022, 0.009691322222352028, 0.3019023537635803, 0.19590523838996887, 0.15155179798603058], "count": [584]}, "action": {"min": [-0.13597190380096436, -0.11081989109516144, 0.11016912013292313, -0.4420042037963867, -0.6640926599502563, -0.6638423204421997, -0.4587177634239197, 0.11148537695407867, -0.11708623915910721, 0.0726558044552803, 0.41172733902931213, -0.3362288773059845, -0.3875996172428131, 0.7134081125259399], "max": [-0.11069399863481522, -0.07264458388090134, 0.13332651555538177, 0.49327969551086426, 0.8457280397415161, 0.7235375642776489, 0.4551674425601959, 0.15785621106624603, -0.09821703284978867, 0.09483294934034348, 0.5971483588218689, 0.0642850399017334, 0.07119296491146088, 0.884400486946106], "mean": [-0.12147577852010727, -0.09699229896068573, 0.12190473824739456, 0.0029973145574331284, 0.23690477013587952, -0.08470188826322556, 0.1504172682762146, 0.1363658308982849, -0.10718984156847, 0.08361340314149857, 0.5206862092018127, -0.12077948451042175, -0.1702052801847458, 0.8058393597602844], "std": [0.006492068525403738, 0.011064007878303528, 0.005342601332813501, 0.3224312365055084, 0.647481381893158, 0.579181432723999, 0.23541924357414246, 0.011575332842767239, 0.004291036166250706, 0.006540677044540644, 0.040726445615291595, 0.12988151609897614, 0.1253775805234909, 0.04127461090683937], "count": [584]}, "timestamp": {"min": [0.0], "max": [19.433333333333334], "mean": [9.716666666666665], "std": [5.619534381660696], "count": [584]}, "frame_index": {"min": [0], "max": [583], "mean": [291.5], "std": [168.5860314498209], "count": [584]}, "episode_index": {"min": [246], "max": [246], "mean": [246.0], "std": [0.0], "count": [584]}, "index": {"min": [179779], "max": [180362], "mean": [180070.5], "std": [168.5860314498209], "count": [584]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [584]}}} +{"episode_index": 247, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4727907896001538]], [[0.44667602404523904]], [[0.41548774710047415]]], "std": [[[0.22138508487130953]], [[0.21604303836966796]], [[0.22078940017067136]]], "count": [136]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48864973607907214]], [[0.4729834358580033]], [[0.4454636117518903]]], "std": [[[0.21069901853655645]], [[0.19336595267964413]], [[0.20754052576519932]]], "count": [136]}, "observation.state": {"min": [0.38660773634910583, -0.1974702775478363, 0.08826827257871628, -1.2835121154785156, -0.25564688444137573, 0.6157447695732117, -0.5892059206962585, -0.41187649965286255, 0.13772952556610107, 1.1795059442520142, -0.43067824840545654, -0.6354703307151794], "max": [0.4969346821308136, -0.09532169252634048, 0.14212653040885925, -0.3579407334327698, 0.780467689037323, 1.1894428730010986, -0.36533159017562866, -0.23528078198432922, 0.1878751963376999, 1.892661452293396, 1.0027753114700317, -0.13742005825042725], "mean": [0.4493304491043091, -0.13898324966430664, 0.12577961385250092, -0.6920195817947388, 0.22097037732601166, 0.8984516263008118, -0.5039137601852417, -0.32560017704963684, 0.16295269131660461, 1.5580639839172363, 0.11378031224012375, -0.37281763553619385], "std": [0.026087841019034386, 0.02604331076145172, 0.015983961522579193, 0.22748231887817383, 0.3214200735092163, 0.1809430718421936, 0.06113260239362717, 0.04388301074504852, 0.014145337976515293, 0.15207374095916748, 0.41539254784584045, 0.10928982496261597], "count": [700]}, "action": {"min": [-0.14773164689540863, -0.1055719181895256, 0.09310070425271988, -0.5173742175102234, -0.6422249674797058, -0.6408389806747437, -0.49929577112197876, 0.10848841816186905, -0.11916781216859818, 0.06919194757938385, -0.5318366289138794, -0.5870690941810608, -0.20677447319030762, -0.5840202569961548], "max": [-0.11554756760597229, -0.07145064324140549, 0.1341627836227417, 0.6026580929756165, 0.7916318774223328, 0.6640670299530029, 0.45609423518180847, 0.15092608332633972, -0.09128538519144058, 0.1062910333275795, 0.6052672863006592, 0.5932443141937256, 0.207412451505661, 0.8841157555580139], "mean": [-0.12610243260860443, -0.09442602843046188, 0.11950355768203735, 0.10410910099744797, 0.006064579356461763, 0.06961121410131454, -0.032242581248283386, 0.1273128241300583, -0.10663079470396042, 0.086700938642025, 0.5061596035957336, -0.27731579542160034, 0.012744493782520294, 0.7524926662445068], "std": [0.008097304031252861, 0.01159497257322073, 0.01155923679471016, 0.3554263412952423, 0.6340622901916504, 0.5743234753608704, 0.3535943627357483, 0.01192317996174097, 0.008392554707825184, 0.009218040853738785, 0.14021500945091248, 0.18284644186496735, 0.10113345086574554, 0.19279327988624573], "count": [700]}, "timestamp": {"min": [0.0], "max": [23.3], "mean": [11.65], "std": [6.735746267324637], "count": [700]}, "frame_index": {"min": [0], "max": [699], "mean": [349.5], "std": [202.0723880197391], "count": [700]}, "episode_index": {"min": [247], "max": [247], "mean": [247.0], "std": [0.0], "count": [700]}, "index": {"min": [180363], "max": [181062], "mean": [180712.5], "std": [202.0723880197391], "count": [700]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [700]}}} +{"episode_index": 248, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4752524484112303]], [[0.4491922452419123]], [[0.41798679964648333]]], "std": [[[0.21842205566227965]], [[0.21333600963372185]], [[0.2179486655285306]]], "count": [106]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49176240648250913]], [[0.4759749763637111]], [[0.44879933818391093]]], "std": [[[0.20636765562917028]], [[0.1896144147663577]], [[0.2035043044140157]]], "count": [106]}, "observation.state": {"min": [0.40258607268333435, -0.18519112467765808, 0.09307491779327393, -1.3778725862503052, -0.5781090259552002, 0.48125848174095154, -0.5498663187026978, -0.3214356005191803, 0.15197445452213287, 1.1090501546859741, 0.08293835818767548, -0.9182054996490479], "max": [0.5094764232635498, -0.028234310448169708, 0.13858118653297424, -0.014049230143427849, 0.8095712661743164, 1.3941717147827148, -0.465279221534729, -0.23908808827400208, 0.17785747349262238, 1.578336238861084, 0.8452333807945251, -0.3708862066268921], "mean": [0.45606815814971924, -0.10618537664413452, 0.11849573999643326, -0.5469396114349365, 0.08998355269432068, 0.9426551461219788, -0.5056362152099609, -0.2881108522415161, 0.16633930802345276, 1.3918062448501587, 0.38933634757995605, -0.6100107431411743], "std": [0.021351801231503487, 0.041987840086221695, 0.012830518186092377, 0.3645061254501343, 0.4171964228153229, 0.2580971419811249, 0.01688578724861145, 0.021786034107208252, 0.007153316866606474, 0.1381940096616745, 0.22350618243217468, 0.15149636566638947], "count": [502]}, "action": {"min": [-0.13922201097011566, -0.10296906530857086, 0.0984128937125206, -0.3822668194770813, -0.6277084350585938, -0.630659818649292, -0.46040278673171997, 0.11258947849273682, -0.114253930747509, 0.08476542681455612, -0.5066993236541748, -0.5965454578399658, -0.18797987699508667, -0.5997445583343506], "max": [-0.1173471212387085, -0.06696833670139313, 0.13181066513061523, 0.5721506476402283, 0.8034448027610779, 0.7236291170120239, 0.5653282999992371, 0.1314992755651474, -0.0887867733836174, 0.09962521493434906, 0.7251998782157898, 0.6020485162734985, 0.17528049647808075, 0.7868534922599792], "mean": [-0.12818481028079987, -0.08703422546386719, 0.11607078462839127, 0.03875449672341347, 0.2453736513853073, 0.015588467940688133, 0.17934443056583405, 0.12326397001743317, -0.10450594127178192, 0.09190172702074051, 0.5774261951446533, -0.39838990569114685, -0.05377151072025299, 0.6515770554542542], "std": [0.005260713864117861, 0.011234397999942303, 0.008608727715909481, 0.34478795528411865, 0.6038368344306946, 0.5179856419563293, 0.3925243616104126, 0.0038513578474521637, 0.00786521751433611, 0.003250224981456995, 0.1512892097234726, 0.1558256894350052, 0.06487344205379486, 0.17041707038879395], "count": [502]}, "timestamp": {"min": [0.0], "max": [16.7], "mean": [8.350000000000001], "std": [4.8304876680425455], "count": [502]}, "frame_index": {"min": [0], "max": [501], "mean": [250.5], "std": [144.91463004127638], "count": [502]}, "episode_index": {"min": [248], "max": [248], "mean": [248.0], "std": [0.0], "count": [502]}, "index": {"min": [181063], "max": [181564], "mean": [181313.5], "std": [144.91463004127638], "count": [502]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [502]}}} +{"episode_index": 249, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4751532798143412]], [[0.4481930093776641]], [[0.41667966751918156]]], "std": [[[0.22156595823977157]], [[0.216231666171755]], [[0.22080857362628806]]], "count": [115]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4909216230936819]], [[0.47464872833191246]], [[0.44676524107227433]]], "std": [[[0.21125613738308183]], [[0.19376127269001273]], [[0.20808070294958828]]], "count": [115]}, "observation.state": {"min": [0.37265273928642273, -0.16932864487171173, 0.10497616231441498, -1.1920872926712036, -0.11135874688625336, 0.28932371735572815, -0.5549710392951965, -0.35650452971458435, 0.1454268842935562, 1.2252182960510254, -0.1548091471195221, -0.5644946098327637], "max": [0.48160508275032043, -0.07452437281608582, 0.1396687626838684, -0.45334964990615845, 0.7434391975402832, 0.9993182420730591, -0.43942350149154663, -0.23894907534122467, 0.17688913643360138, 1.5720455646514893, 0.7901688814163208, -0.11625871807336807], "mean": [0.4435015320777893, -0.1163385808467865, 0.12516088783740997, -0.8180544376373291, 0.26625487208366394, 0.6728621125221252, -0.49919945001602173, -0.310747355222702, 0.16117873787879944, 1.4390449523925781, 0.24185408651828766, -0.4309789538383484], "std": [0.02236863598227501, 0.02443552576005459, 0.00943680852651596, 0.18973495066165924, 0.25096333026885986, 0.1968872994184494, 0.029507676139473915, 0.02913348749279976, 0.008226476609706879, 0.0758289098739624, 0.3001643717288971, 0.08459493517875671], "count": [564]}, "action": {"min": [-0.14258457720279694, -0.1035003662109375, 0.11049319058656693, -0.31540241837501526, -0.6571740508079529, -0.6582435965538025, -0.4927857518196106, 0.11485499888658524, -0.11375794559717178, 0.0759657472372055, 0.400348037481308, -0.5770143866539001, -0.15916147828102112, 0.623141348361969], "max": [-0.11411242932081223, -0.07442872226238251, 0.12959632277488708, 0.491743803024292, 0.7339277267456055, 0.7620062828063965, 0.4728858768939972, 0.13881927728652954, -0.0887872576713562, 0.09986839443445206, 0.6299657225608826, -0.1471610814332962, 0.012219873256981373, 0.8397168517112732], "mean": [-0.1262732893228531, -0.09123102575540543, 0.12134231626987457, 0.18931178748607635, -0.13869591057300568, 0.3206633925437927, -0.10400208830833435, 0.12802867591381073, -0.10437721014022827, 0.08725736290216446, 0.5552335381507874, -0.3423430025577545, -0.05530277639627457, 0.7391536235809326], "std": [0.005821348167955875, 0.00873612891882658, 0.005725701805204153, 0.28449711203575134, 0.5531347393989563, 0.5781449675559998, 0.33186545968055725, 0.004852000158280134, 0.008442740887403488, 0.0057899076491594315, 0.03703370317816734, 0.13128724694252014, 0.05256535857915878, 0.06114683300256729], "count": [564]}, "timestamp": {"min": [0.0], "max": [18.766666666666666], "mean": [9.383333333333333], "std": [5.427083999786693], "count": [564]}, "frame_index": {"min": [0], "max": [563], "mean": [281.5], "std": [162.81251999360083], "count": [564]}, "episode_index": {"min": [249], "max": [249], "mean": [249.0], "std": [0.0], "count": [564]}, "index": {"min": [181565], "max": [182128], "mean": [181846.5], "std": [162.81251999360083], "count": [564]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [564]}}} +{"episode_index": 250, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40618193082788673]], [[0.389844621459695]], [[0.36002502723311547]]], "std": [[[0.22242559759537026]], [[0.21630303741060908]], [[0.22123697215561225]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41862374455337686]], [[0.4155123502178649]], [[0.38766098039215685]]], "std": [[[0.22123947699614824]], [[0.20152196050408946]], [[0.21636903875613195]]], "count": [100]}, "observation.state": {"min": [0.31824609637260437, -0.13984325528144836, 0.09327194839715958, -1.2799474000930786, -0.0632627010345459, 0.49173906445503235, -0.6976021528244019, -0.28810426592826843, 0.16598086059093475, 1.1870547533035278, -0.4166046977043152, -0.8010822534561157], "max": [0.48074012994766235, -0.014565070159733295, 0.13556601107120514, 0.04864807054400444, 0.9410155415534973, 1.2757734060287476, -0.4531622529029846, -0.16793854534626007, 0.18564817309379578, 1.802494764328003, 0.3200026750564575, -0.3427027761936188], "mean": [0.4219995141029358, -0.08027291297912598, 0.11741167306900024, -0.5083785653114319, 0.3600260019302368, 0.9400030374526978, -0.5882036685943604, -0.2337137907743454, 0.1760212779045105, 1.5428431034088135, -0.05342397093772888, -0.584009051322937], "std": [0.040229432284832, 0.037306807935237885, 0.014126510359346867, 0.3956568241119385, 0.26737546920776367, 0.23241479694843292, 0.06389134377241135, 0.03069627285003662, 0.005302042700350285, 0.13639047741889954, 0.2051856368780136, 0.09971217811107635], "count": [462]}, "action": {"min": [-0.1578816920518875, -0.09988182038068771, 0.10962357372045517, -0.5444532632827759, -0.6135044693946838, -0.611719012260437, -0.5451725125312805, 0.08932898938655853, -0.11055668443441391, 0.09397613257169724, 0.5233725905418396, -0.4428926408290863, -0.12601785361766815, 0.6134625673294067], "max": [-0.11720508337020874, -0.05917004123330116, 0.13343092799186707, 0.5838125348091125, 0.7573688626289368, 0.718869686126709, 0.6184056401252747, 0.13094276189804077, -0.09192628413438797, 0.10170481353998184, 0.6441843509674072, -0.09082608669996262, 0.16284538805484772, 0.818476140499115], "mean": [-0.13278262317180634, -0.08221390843391418, 0.12040499597787857, 0.024346109479665756, 0.12549874186515808, 0.047731246799230576, 0.10342173278331757, 0.10893533378839493, -0.10214830935001373, 0.09905239939689636, 0.5910472869873047, -0.25695931911468506, 0.0301833413541317, 0.7526862025260925], "std": [0.010478734970092773, 0.012339540757238865, 0.007332558277994394, 0.424564927816391, 0.5496680736541748, 0.5496809482574463, 0.43144357204437256, 0.01146977674216032, 0.005437593441456556, 0.0014183238381519914, 0.02405412495136261, 0.09513293951749802, 0.07361318916082382, 0.046263694763183594], "count": [462]}, "timestamp": {"min": [0.0], "max": [15.366666666666667], "mean": [7.683333333333333], "std": [4.445586658782027], "count": [462]}, "frame_index": {"min": [0], "max": [461], "mean": [230.5], "std": [133.3675997634608], "count": [462]}, "episode_index": {"min": [250], "max": [250], "mean": [250.0], "std": [0.0], "count": [462]}, "index": {"min": [182129], "max": [182590], "mean": [182359.5], "std": [133.3675997634608], "count": [462]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [462]}}} +{"episode_index": 251, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4136202804261358]], [[0.39697417601087326]], [[0.367401943295157]]], "std": [[[0.22515930687291846]], [[0.21956424000713826]], [[0.22461352409958577]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42644303032120084]], [[0.4228725814994703]], [[0.3954649917051428]]], "std": [[[0.22366454657038037]], [[0.2044218252054158]], [[0.2195467701113725]]], "count": [109]}, "observation.state": {"min": [0.22053807973861694, -0.16282610595226288, 0.10006581246852875, -1.1170183420181274, -0.21656885743141174, 0.49047279357910156, -0.6217572093009949, -0.2934792935848236, 0.16593937575817108, 0.11868450790643692, -0.061349790543317795, -1.1791526079177856], "max": [0.4770795404911041, -0.03343170881271362, 0.13849692046642303, -0.242191880941391, 0.6312606334686279, 1.156660556793213, -0.48862501978874207, -0.16040116548538208, 0.19436313211917877, 2.2155840396881104, 1.0273698568344116, 0.1252242475748062], "mean": [0.3899267017841339, -0.09677788615226746, 0.12395836412906647, -0.6453017592430115, 0.20508936047554016, 0.7633084058761597, -0.539352297782898, -0.24583220481872559, 0.17442943155765533, 1.1007468700408936, 0.3132418990135193, -0.6867806911468506], "std": [0.06077414005994797, 0.02678816206753254, 0.01126843597739935, 0.22605326771736145, 0.2594429552555084, 0.182681143283844, 0.03984563425183296, 0.03534436225891113, 0.005827898159623146, 0.4125526547431946, 0.31096795201301575, 0.31575608253479004], "count": [525]}, "action": {"min": [-0.1639038473367691, -0.09946823865175247, 0.11277948319911957, -0.29997244477272034, -0.6294492483139038, -0.630395770072937, -0.4903049170970917, 0.09682919830083847, -0.11969250440597534, 0.08581514656543732, -0.5927942395210266, -0.6714614033699036, -0.549685537815094, -0.6806734204292297], "max": [-0.1172192171216011, -0.06967673450708389, 0.13767589628696442, 0.45259854197502136, 0.7315048575401306, 0.7646446228027344, 0.5365830063819885, 0.12341395765542984, -0.09273906797170639, 0.11728761345148087, 0.8192763328552246, 0.7009291052818298, 0.22595763206481934, 0.832705020904541], "mean": [-0.1350143551826477, -0.08985824137926102, 0.12540973722934723, 0.14010263979434967, -0.1109088659286499, 0.2858271896839142, -0.09264405071735382, 0.11487603187561035, -0.10332504659891129, 0.09953497350215912, 0.3689570724964142, -0.13092178106307983, -0.09474635869264603, 0.3794449269771576], "std": [0.012273921631276608, 0.008372534066438675, 0.006625526584684849, 0.27737706899642944, 0.5714725852012634, 0.5582255125045776, 0.40330639481544495, 0.006669045425951481, 0.006851385813206434, 0.006842882838100195, 0.48211851716041565, 0.4064684212207794, 0.20969446003437042, 0.5021435022354126], "count": [525]}, "timestamp": {"min": [0.0], "max": [17.466666666666665], "mean": [8.733333333333333], "std": [5.051805691110926], "count": [525]}, "frame_index": {"min": [0], "max": [524], "mean": [262.0], "std": [151.5541707333278], "count": [525]}, "episode_index": {"min": [251], "max": [251], "mean": [251.0], "std": [0.0], "count": [525]}, "index": {"min": [182591], "max": [183115], "mean": [182853.0], "std": [151.5541707333278], "count": [525]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [525]}}} +{"episode_index": 252, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40975137339418527]], [[0.3927543572984749]], [[0.3636453497107655]]], "std": [[[0.21960873336974224]], [[0.21467018405376778]], [[0.21887121524598285]]], "count": [116]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4225054466230937]], [[0.419937072721809]], [[0.3911560950529637]]], "std": [[[0.2195258109829585]], [[0.2002773854236631]], [[0.21543445365904434]]], "count": [116]}, "observation.state": {"min": [0.24837853014469147, -0.08901222050189972, 0.10105618089437485, -0.7741752862930298, -0.1654668003320694, 0.6778787970542908, -0.715349018573761, -0.25967690348625183, 0.1622164249420166, 1.094162106513977, -0.8051989078521729, -0.5136727690696716], "max": [0.5330229997634888, 0.043417200446128845, 0.14539189636707306, 0.45502719283103943, 0.4826001226902008, 1.406227946281433, -0.49800044298171997, -0.1725490242242813, 0.19863052666187286, 1.9771665334701538, 0.21042020618915558, 0.4245019257068634], "mean": [0.4184737801551819, -0.0471961684525013, 0.12901023030281067, -0.36800721287727356, 0.11664742231369019, 1.0064432621002197, -0.6142288446426392, -0.21898190677165985, 0.17831654846668243, 1.422532081604004, -0.27492982149124146, -0.08023153245449066], "std": [0.07020755112171173, 0.03893960639834404, 0.013674805872142315, 0.34844499826431274, 0.1935555636882782, 0.20889775454998016, 0.06639890372753143, 0.022590724751353264, 0.007767329923808575, 0.21042890846729279, 0.32182666659355164, 0.2524355351924896], "count": [568]}, "action": {"min": [-0.16337035596370697, -0.09994988888502121, 0.11791227012872696, -0.49789199233055115, -0.6062729358673096, -0.6107299327850342, -0.522728443145752, 0.08271746337413788, -0.10923651605844498, 0.08902189880609512, 0.17868371307849884, -0.3955780565738678, -0.1928001195192337, 0.7160614728927612], "max": [-0.1048281341791153, -0.06491085886955261, 0.14448566734790802, 0.4707079827785492, 0.7376528978347778, 0.6456065773963928, 0.7062020897865295, 0.12484609335660934, -0.0926978662610054, 0.10952449589967728, 0.6149492263793945, 0.08031544089317322, 0.16203433275222778, 0.9784685969352722], "mean": [-0.12862654030323029, -0.0850495845079422, 0.13208389282226562, -0.12729327380657196, 0.3082304894924164, -0.1418589949607849, 0.2603834569454193, 0.10559853166341782, -0.10081333667039871, 0.1001557782292366, 0.3943970203399658, -0.15244121849536896, -0.04046064242720604, 0.8726533651351929], "std": [0.015362348407506943, 0.00952880922704935, 0.006761464290320873, 0.3288603723049164, 0.5285281538963318, 0.48841479420661926, 0.418122798204422, 0.013428332284092903, 0.004071797709912062, 0.005186331924051046, 0.12515860795974731, 0.15596376359462738, 0.10849696397781372, 0.07930546253919601], "count": [568]}, "timestamp": {"min": [0.0], "max": [18.9], "mean": [9.450000000000001], "std": [5.465574077807381], "count": [568]}, "frame_index": {"min": [0], "max": [567], "mean": [283.5], "std": [163.96722233422142], "count": [568]}, "episode_index": {"min": [252], "max": [252], "mean": [252.0], "std": [0.0], "count": [568]}, "index": {"min": [183116], "max": [183683], "mean": [183399.5], "std": [163.96722233422142], "count": [568]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [568]}}} +{"episode_index": 253, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4077541530501089]], [[0.3919807166848221]], [[0.3622371051198257]]], "std": [[[0.221848746704445]], [[0.21554648517367922]], [[0.220321943679889]]], "count": [120]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42026832334785763]], [[0.4184619871096587]], [[0.38989608750907767]]], "std": [[[0.22202668880001114]], [[0.20176946775490529]], [[0.21692820176437866]]], "count": [120]}, "observation.state": {"min": [0.276365727186203, -0.14422203600406647, 0.0995887815952301, -2.291701316833496, -0.4854694902896881, -0.5977035164833069, -0.7376059293746948, -0.3088938593864441, 0.15657497942447662, 1.2684144973754883, -0.982962965965271, -0.17053627967834473], "max": [0.5185506343841553, 0.03741664066910744, 0.14265412092208862, -0.16313877701759338, 1.353657841682434, 1.177382469177246, -0.5386142730712891, -0.23172831535339355, 0.18725815415382385, 2.4565176963806152, -0.12201639264822006, 0.8320453763008118], "mean": [0.43853121995925903, -0.05860230326652527, 0.12528151273727417, -0.9737510085105896, 0.4096013605594635, 0.5434263944625854, -0.6269612908363342, -0.2611401379108429, 0.17082029581069946, 1.760698914527893, -0.4161897301673889, 0.2804553806781769], "std": [0.05901002138853073, 0.04516274482011795, 0.0125004006549716, 0.676550567150116, 0.5639711618423462, 0.5696209669113159, 0.057183027267456055, 0.01765986531972885, 0.007020814809948206, 0.28415122628211975, 0.255458265542984, 0.2774011492729187], "count": [598]}, "action": {"min": [-0.15774403512477875, -0.09771913290023804, 0.10846289992332458, -0.4567839205265045, -0.610906183719635, -0.6227108836174011, -0.4505084753036499, 0.09914548695087433, -0.11443518102169037, 0.07237359136343002, -0.1006871834397316, -0.31368231773376465, -0.11746294796466827, 0.8657304048538208], "max": [-0.10954615473747253, -0.0622795969247818, 0.14090202748775482, 0.7824661135673523, 0.7957751750946045, 0.7931045293807983, 0.5687312483787537, 0.12178352475166321, -0.08678191900253296, 0.1015547513961792, 0.46163082122802734, 0.017877833917737007, 0.3886246681213379, 0.9883262515068054], "mean": [-0.12623527646064758, -0.08390122652053833, 0.12439851462841034, 0.29010647535324097, 0.009547569788992405, 0.3213689923286438, 0.00100054987706244, 0.11023081839084625, -0.10053610056638718, 0.09177468717098236, 0.16601203382015228, -0.15962208807468414, 0.07201339304447174, 0.9409117698669434], "std": [0.012293549254536629, 0.010299957357347012, 0.009042994119226933, 0.3737660050392151, 0.5328488945960999, 0.5082715153694153, 0.36124706268310547, 0.005908480379730463, 0.0078077237121760845, 0.006905744317919016, 0.17079667747020721, 0.08925775438547134, 0.13512541353702545, 0.032604899257421494], "count": [598]}, "timestamp": {"min": [0.0], "max": [19.9], "mean": [9.95], "std": [5.754249637345333], "count": [598]}, "frame_index": {"min": [0], "max": [597], "mean": [298.5], "std": [172.62748912035997], "count": [598]}, "episode_index": {"min": [253], "max": [253], "mean": [253.0], "std": [0.0], "count": [598]}, "index": {"min": [183684], "max": [184281], "mean": [183982.5], "std": [172.62748912035997], "count": [598]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [598]}}} +{"episode_index": 254, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41750599128540306]], [[0.40177488007873713]], [[0.37346909996942246]]], "std": [[[0.222466578265176]], [[0.21749113944068096]], [[0.22228593613804948]]], "count": [114]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4299385487138325]], [[0.4270327752933532]], [[0.4012845836677751]]], "std": [[[0.221547943737755]], [[0.2029487669051723]], [[0.21761849685160062]]], "count": [114]}, "observation.state": {"min": [0.31661659479141235, -0.15453961491584778, 0.09266398847103119, -0.9951884746551514, -0.262888640165329, 0.4886690378189087, -0.7298831939697266, -0.4121004641056061, 0.14639520645141602, 2.044267177581787, -0.22749976813793182, 0.004644299857318401], "max": [0.47222965955734253, 0.019685249775648117, 0.1383141428232193, -0.48081904649734497, 0.9560455679893494, 1.089132308959961, -0.4991511106491089, -0.2594452202320099, 0.18610316514968872, 2.4642763137817383, 0.10821610689163208, 0.6197755336761475], "mean": [0.3948424458503723, -0.06792546808719635, 0.1199948713183403, -0.774970531463623, 0.43955522775650024, 0.8211972117424011, -0.5928992629051208, -0.33521541953086853, 0.16730016469955444, 2.2645175457000732, -0.06361204385757446, 0.23745979368686676], "std": [0.04125340282917023, 0.047262392938137054, 0.01473530288785696, 0.1569456160068512, 0.34771284461021423, 0.18942469358444214, 0.06817919760942459, 0.04496738314628601, 0.009391894564032555, 0.15233363211154938, 0.12578804790973663, 0.18938811123371124], "count": [559]}, "action": {"min": [-0.15150666236877441, -0.10026763379573822, 0.10791630297899246, -0.4172603487968445, -0.6278774738311768, -0.6263630986213684, -0.4954989552497864, 0.09699556976556778, -0.12188974022865295, 0.06651464104652405, -0.04056105017662048, -0.5868107080459595, 0.15045228600502014, 0.7798362970352173], "max": [-0.11811907589435577, -0.05856414511799812, 0.13469785451889038, 0.583415150642395, 0.8033756613731384, 0.7131113409996033, 0.3612058162689209, 0.13239693641662598, -0.0906565710902214, 0.09382613003253937, 0.327876478433609, -0.25853729248046875, 0.31336745619773865, 0.9128625988960266], "mean": [-0.13503777980804443, -0.08208715170621872, 0.1244213804602623, 0.12105032056570053, 0.1141931489109993, 0.09036736190319061, -0.09242020547389984, 0.11594566702842712, -0.10850732773542404, 0.08259526640176773, 0.1690990924835205, -0.406827449798584, 0.22529613971710205, 0.8517959117889404], "std": [0.010060441680252552, 0.0150213073939085, 0.007876538671553135, 0.39742588996887207, 0.5456250309944153, 0.627141535282135, 0.3265552222728729, 0.010246442630887032, 0.010535254143178463, 0.0063416846096515656, 0.11586610972881317, 0.1150939017534256, 0.039800532162189484, 0.03643106296658516], "count": [559]}, "timestamp": {"min": [0.0], "max": [18.6], "mean": [9.299999999999999], "std": [5.378971401051816], "count": [559]}, "frame_index": {"min": [0], "max": [558], "mean": [279.0], "std": [161.36914203155447], "count": [559]}, "episode_index": {"min": [254], "max": [254], "mean": [254.0], "std": [0.0], "count": [559]}, "index": {"min": [184282], "max": [184840], "mean": [184561.0], "std": [161.36914203155447], "count": [559]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [559]}}} +{"episode_index": 255, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.409300043488541]], [[0.3937885549137829]], [[0.36479805061559506]]], "std": [[[0.22033288315482205]], [[0.21497491799052829]], [[0.21942939416027793]]], "count": [129]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4212310740402965]], [[0.42003687026059344]], [[0.3922802266470757]]], "std": [[[0.21970579643692564]], [[0.20008865027975117]], [[0.21529242522216463]]], "count": [129]}, "observation.state": {"min": [0.3032562732696533, -0.16457143425941467, 0.09114214777946472, -1.3036423921585083, -0.7189812660217285, 0.07696828246116638, -0.697277843952179, -0.38654595613479614, 0.14286541938781738, 2.0788660049438477, -0.33339306712150574, 0.009584429673850536], "max": [0.537100613117218, 0.016001500189304352, 0.13824154436588287, 0.33298763632774353, 0.6812695860862732, 1.4064455032348633, -0.4879840314388275, -0.2435595542192459, 0.18244114518165588, 2.481470823287964, 0.33216333389282227, 0.5055009126663208], "mean": [0.4125763177871704, -0.06613598018884659, 0.11949249356985092, -0.45347651839256287, 0.021794550120830536, 0.935258150100708, -0.56638503074646, -0.32502415776252747, 0.16408398747444153, 2.3406496047973633, 0.018595460802316666, 0.24009297788143158], "std": [0.045446813106536865, 0.04743107035756111, 0.013124115765094757, 0.5200113654136658, 0.4550052583217621, 0.39836329221725464, 0.045731134712696075, 0.04169657081365585, 0.010920451022684574, 0.11264530569314957, 0.15657252073287964, 0.1882694661617279], "count": [656]}, "action": {"min": [-0.15215493738651276, -0.10168815404176712, 0.09477246552705765, -0.48799195885658264, -0.6072295904159546, -0.6089081764221191, -0.4826045036315918, 0.1010553240776062, -0.11866173148155212, 0.06409669667482376, 0.023786067962646484, -0.5963985323905945, 0.1449730545282364, 0.7228683233261108], "max": [-0.11555292457342148, -0.06323964893817902, 0.13355432450771332, 0.5285316109657288, 0.8364503979682922, 0.8562371730804443, 0.6700394749641418, 0.13257426023483276, -0.09194456040859222, 0.09504836052656174, 0.29323315620422363, -0.25441643595695496, 0.33040952682495117, 0.9411177635192871], "mean": [-0.13382390141487122, -0.08425522595643997, 0.12224606424570084, -0.00715096527710557, 0.29193851351737976, 0.0667278990149498, 0.27858564257621765, 0.12000610679388046, -0.10645205527544022, 0.08344630897045135, 0.1625540554523468, -0.44064801931381226, 0.2509051263332367, 0.8324970006942749], "std": [0.009405620396137238, 0.011277121491730213, 0.008594962768256664, 0.3388653099536896, 0.5438791513442993, 0.514102041721344, 0.39714357256889343, 0.009432132355868816, 0.008706762455403805, 0.007619983516633511, 0.09262793511152267, 0.08776681870222092, 0.05772550404071808, 0.06152748316526413], "count": [656]}, "timestamp": {"min": [0.0], "max": [21.833333333333332], "mean": [10.916666666666668], "std": [6.312355608909668], "count": [656]}, "frame_index": {"min": [0], "max": [655], "mean": [327.5], "std": [189.37066826729], "count": [656]}, "episode_index": {"min": [255], "max": [255], "mean": [255.0], "std": [0.0], "count": [656]}, "index": {"min": [184841], "max": [185496], "mean": [185168.5], "std": [189.37066826729], "count": [656]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [656]}}} +{"episode_index": 256, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42107874183006533]], [[0.4047149046840959]], [[0.37531335784313724]]], "std": [[[0.22363502455923423]], [[0.21856236865976444]], [[0.22313911199497674]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4327838888888889]], [[0.42938867102396516]], [[0.40226935457516344]]], "std": [[[0.22267511535031007]], [[0.20395770335281485]], [[0.21868328688969335]]], "count": [100]}, "observation.state": {"min": [0.22555014491081238, -0.13129417598247528, 0.08697716891765594, -0.9580733776092529, -0.21233311295509338, 0.5043656826019287, -0.5727642178535461, -0.368111789226532, 0.15655682981014252, 3.614845037460327, -0.8960621953010559, 0.1487894058227539], "max": [0.4575178623199463, 0.05337952822446823, 0.1333286166191101, -0.16460661590099335, 0.8273339867591858, 1.1721560955047607, -0.46700137853622437, -0.23670949041843414, 0.18544335663318634, 4.539997100830078, -0.3639996349811554, 1.1663806438446045], "mean": [0.3778911530971527, -0.052325282245874405, 0.11908712983131409, -0.7209187150001526, 0.2148314267396927, 0.9019495844841003, -0.5187474489212036, -0.30534467101097107, 0.16945324838161469, 4.193724155426025, -0.6244462132453918, 0.6431530117988586], "std": [0.05943962559103966, 0.048438940197229385, 0.015340759418904781, 0.1883191466331482, 0.3406004011631012, 0.20481422543525696, 0.03174682706594467, 0.031958792358636856, 0.008715048432350159, 0.354261189699173, 0.1781945824623108, 0.3135823607444763], "count": [390]}, "action": {"min": [-0.1703370064496994, -0.09522651880979538, 0.11431851983070374, -0.3703320324420929, -0.6110686659812927, -0.6097966432571411, -0.5577573776245117, 0.10855432599782944, -0.1200801357626915, 0.07879996299743652, -0.5671654939651489, -0.6097382307052612, -0.6097156405448914, -0.37824463844299316], "max": [-0.12179302424192429, -0.05053620785474777, 0.1370394080877304, 0.48068439960479736, 0.8120921850204468, 0.7471192479133606, 0.40733209252357483, 0.12758204340934753, -0.09036991000175476, 0.10320177674293518, 0.6332413554191589, 0.6633679866790771, 0.7617427706718445, 0.3505421578884125], "mean": [-0.13860245048999786, -0.08160929381847382, 0.12598948180675507, 0.08384449034929276, 0.18370968103408813, 0.04838750138878822, -0.021793344989418983, 0.12011624127626419, -0.10573524236679077, 0.09142125397920609, -0.0714922696352005, -0.13643020391464233, 0.2805972099304199, -0.010930914431810379], "std": [0.012956364080309868, 0.014573759399354458, 0.007129699923098087, 0.32232794165611267, 0.5919451713562012, 0.6093655228614807, 0.36164072155952454, 0.004216744564473629, 0.010642191395163536, 0.005431971978396177, 0.5081357359886169, 0.5190191864967346, 0.5603242516517639, 0.23637965321540833], "count": [390]}, "timestamp": {"min": [0.0], "max": [12.966666666666667], "mean": [6.483333333333333], "std": [3.752764413168077], "count": [390]}, "frame_index": {"min": [0], "max": [389], "mean": [194.5], "std": [112.5829323950423], "count": [390]}, "episode_index": {"min": [256], "max": [256], "mean": [256.0], "std": [0.0], "count": [390]}, "index": {"min": [185497], "max": [185886], "mean": [185691.5], "std": [112.5829323950423], "count": [390]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [390]}}} +{"episode_index": 257, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4268776116557734]], [[0.4109611737472767]], [[0.38225628267973855]]], "std": [[[0.2293404096431572]], [[0.22464910058756804]], [[0.22938049474920538]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4383458088235294]], [[0.4355137962962963]], [[0.4088737445533769]]], "std": [[[0.2283976284808579]], [[0.2101619120985819]], [[0.22480122031692376]]], "count": [100]}, "observation.state": {"min": [0.33904340863227844, -0.08823221921920776, 0.08691365271806717, -1.0350295305252075, -0.5296030640602112, 0.7492790818214417, -0.6066747307777405, -0.3306565284729004, 0.13813136518001556, 2.948659896850586, -0.9041237235069275, 0.06541687995195389], "max": [0.46422892808914185, 0.10610263049602509, 0.13172121345996857, 0.13629846274852753, 0.7637980580329895, 1.404029369354248, -0.47555816173553467, -0.165057972073555, 0.19115610420703888, 4.537899971008301, 0.27573245763778687, 1.3861867189407349], "mean": [0.392010897397995, -0.013503354974091053, 0.11443071812391281, -0.4637242555618286, 0.012771191075444221, 1.0986976623535156, -0.5521403551101685, -0.25934121012687683, 0.1725984364748001, 3.867497444152832, -0.29660001397132874, 0.7581667900085449], "std": [0.03494929522275925, 0.05597611889243126, 0.0123881371691823, 0.3325197100639343, 0.405011385679245, 0.23030446469783783, 0.03690669313073158, 0.04862765967845917, 0.011266255751252174, 0.6130489706993103, 0.3759075999259949, 0.46344438195228577], "count": [451]}, "action": {"min": [-0.1536269336938858, -0.09135804325342178, 0.10970909148454666, -0.42089688777923584, -0.6218934059143066, -0.6275597214698792, -0.35592007637023926, 0.0996122807264328, -0.11650398373603821, 0.07633735239505768, -0.5729460716247559, -0.5974396467208862, -0.5932360291481018, -0.613447904586792], "max": [-0.1283162236213684, -0.05283897742629051, 0.1378808319568634, 0.555040180683136, 0.8207312822341919, 0.6519381999969482, 0.6360697746276855, 0.13754111528396606, -0.08215675503015518, 0.1074138879776001, 0.5349385142326355, 0.7700383067131042, 0.7566674947738647, 0.31412455439567566], "mean": [-0.13899393379688263, -0.0753147155046463, 0.12444637715816498, -0.0434909351170063, 0.37534844875335693, -0.10215410590171814, 0.27432945370674133, 0.11381842195987701, -0.10317707061767578, 0.0955214723944664, -0.07598327100276947, 0.08992557227611542, 0.24943941831588745, -0.1418359875679016], "std": [0.007146557327359915, 0.01192409172654152, 0.007993063889443874, 0.3429034650325775, 0.5467559695243835, 0.4725731909275055, 0.36287692189216614, 0.008211190812289715, 0.00942772626876831, 0.007798339705914259, 0.42048826813697815, 0.5966339111328125, 0.49007830023765564, 0.3617229163646698], "count": [451]}, "timestamp": {"min": [0.0], "max": [15.0], "mean": [7.5], "std": [4.339738855430512], "count": [451]}, "frame_index": {"min": [0], "max": [450], "mean": [225.0], "std": [130.19216566291536], "count": [451]}, "episode_index": {"min": [257], "max": [257], "mean": [257.0], "std": [0.0], "count": [451]}, "index": {"min": [185887], "max": [186337], "mean": [186112.0], "std": [130.19216566291536], "count": [451]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [451]}}} +{"episode_index": 258, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41281536373229843]], [[0.39673648343886164]], [[0.36708280143654687]]], "std": [[[0.22340704307755327]], [[0.2180681246998359]], [[0.22299394331471256]]], "count": [128]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42567635357094225]], [[0.42321203107979305]], [[0.39508299504697714]]], "std": [[[0.22339255071874883]], [[0.2040482371874467]], [[0.21966071070270723]]], "count": [128]}, "observation.state": {"min": [0.17864997684955597, -0.12105383723974228, 0.0920080691576004, -1.1497299671173096, -0.49776676297187805, 0.1703876554965973, -0.5716753005981445, -0.3472295105457306, 0.14878816902637482, 3.0400848388671875, -0.5716871023178101, 0.3518437147140503], "max": [0.483999103307724, 0.11547029763460159, 0.1352769434452057, -0.1360887736082077, 0.8482393622398376, 1.399259328842163, -0.45722439885139465, -0.19791820645332336, 0.18843908607959747, 4.352114677429199, 0.1295313984155655, 1.402949571609497], "mean": [0.41543564200401306, -0.03184863179922104, 0.12265379726886749, -0.6865378022193909, 0.0781567245721817, 0.9725075364112854, -0.5015959739685059, -0.2727590501308441, 0.1743078976869583, 3.76086163520813, -0.38387247920036316, 0.9261051416397095], "std": [0.06429298222064972, 0.05294447019696236, 0.010032708756625652, 0.24318130314350128, 0.3237174451351166, 0.2732359766960144, 0.031755950301885605, 0.030050424858927727, 0.01049739122390747, 0.3319728374481201, 0.17041121423244476, 0.27305200695991516], "count": [648]}, "action": {"min": [-0.1747475564479828, -0.09323590993881226, 0.11440650373697281, -0.36194708943367004, -0.6512277126312256, -0.6542311310768127, -0.5932947397232056, 0.11328376084566116, -0.11681845784187317, 0.0807143822312355, -0.5497947335243225, -0.6296175122261047, -0.621272623538971, -0.5528958439826965], "max": [-0.12026849389076233, -0.04561227187514305, 0.13829654455184937, 0.5071186423301697, 0.8165836930274963, 0.8155427575111389, 0.5436325073242188, 0.12695972621440887, -0.08723307400941849, 0.11289581656455994, 0.549035906791687, 0.81463623046875, 0.7083793878555298, 0.5594505071640015], "mean": [-0.13208678364753723, -0.08025651425123215, 0.1283797174692154, -0.08925869315862656, 0.4330185353755951, -0.1801285296678543, 0.16872349381446838, 0.12073902785778046, -0.10725169628858566, 0.10038643330335617, 0.25202542543411255, 0.4051551818847656, -0.23103193938732147, -0.23765453696250916], "std": [0.011772922240197659, 0.01142174657434225, 0.0054677375592291355, 0.295714795589447, 0.5073920488357544, 0.5361877083778381, 0.3334999978542328, 0.004297520034015179, 0.008861853741109371, 0.007463788613677025, 0.3331476151943207, 0.4954291880130768, 0.4655970633029938, 0.298762708902359], "count": [648]}, "timestamp": {"min": [0.0], "max": [21.566666666666666], "mean": [10.783333333333333], "std": [6.235375482471557], "count": [648]}, "frame_index": {"min": [0], "max": [647], "mean": [323.5], "std": [187.06126447414672], "count": [648]}, "episode_index": {"min": [258], "max": [258], "mean": [258.0], "std": [0.0], "count": [648]}, "index": {"min": [186338], "max": [186985], "mean": [186661.5], "std": [187.06126447414672], "count": [648]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [648]}}} +{"episode_index": 259, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4263344515415594]], [[0.4110934941737638]], [[0.3816853399187958]]], "std": [[[0.2269015439289354]], [[0.22255698523893533]], [[0.22695475157448666]]], "count": [132]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43641175851653796]], [[0.43526194749785435]], [[0.4079393568033274]]], "std": [[[0.22491194043074728]], [[0.20693975110560772]], [[0.2213621999030974]]], "count": [132]}, "observation.state": {"min": [0.2960973083972931, -0.07071705907583237, 0.0764266699552536, -1.0692089796066284, -0.6446509957313538, 0.7293742895126343, -0.6662710309028625, -0.4571162760257721, 0.15480683743953705, 3.1312999725341797, -0.8888204097747803, 0.2062613070011139], "max": [0.4670863151550293, 0.08029325306415558, 0.12807993590831757, -0.15579962730407715, 0.597648024559021, 1.3995476961135864, -0.5289917588233948, -0.2587733268737793, 0.19258850812911987, 4.472476959228516, -0.18445926904678345, 1.391363263130188], "mean": [0.38638681173324585, 0.00017526473675388843, 0.10494373738765717, -0.5747619271278381, -0.0358700267970562, 1.0198643207550049, -0.596243143081665, -0.32393503189086914, 0.1726357638835907, 3.8358778953552246, -0.4334540069103241, 0.8026787638664246], "std": [0.03788921236991882, 0.03196199610829353, 0.016995055601000786, 0.2395140677690506, 0.40639275312423706, 0.2053464651107788, 0.03599745035171509, 0.054531291127204895, 0.00921197235584259, 0.5099542140960693, 0.17858242988586426, 0.455481618642807], "count": [675]}, "action": {"min": [-0.16405132412910461, -0.08455943316221237, 0.09393393993377686, -0.43379658460617065, -0.6138564348220825, -0.61424720287323, -0.44342803955078125, 0.0993875190615654, -0.12299316376447678, 0.06363868713378906, -0.5311464667320251, -0.5929270386695862, -0.5940980315208435, -0.5208650827407837], "max": [-0.13092055916786194, -0.0552283376455307, 0.14346295595169067, 0.5109801888465881, 0.8549776077270508, 0.6747829914093018, 0.5916419625282288, 0.12050121277570724, -0.09200915694236755, 0.09677118808031082, 0.6130604147911072, 0.7437806725502014, 0.7384569048881531, 0.46852198243141174], "mean": [-0.14399054646492004, -0.06909030675888062, 0.11865771561861038, -0.0005731244455091655, 0.3314877450466156, -0.14005230367183685, 0.2439386248588562, 0.10990490764379501, -0.1079009547829628, 0.08614125847816467, 0.06908697634935379, 0.15814831852912903, 0.09915579110383987, -0.1172458678483963], "std": [0.008774769492447376, 0.008648574352264404, 0.014927576296031475, 0.31028908491134644, 0.578345775604248, 0.5097675323486328, 0.346942663192749, 0.005373144522309303, 0.009300872683525085, 0.009165698662400246, 0.4616193473339081, 0.583905041217804, 0.5182971954345703, 0.3520911931991577], "count": [675]}, "timestamp": {"min": [0.0], "max": [22.466666666666665], "mean": [11.233333333333333], "std": [6.495183400598278], "count": [675]}, "frame_index": {"min": [0], "max": [674], "mean": [337.0], "std": [194.85550201794834], "count": [675]}, "episode_index": {"min": [259], "max": [259], "mean": [259.0], "std": [0.0], "count": [675]}, "index": {"min": [186986], "max": [187660], "mean": [187323.0], "std": [194.85550201794834], "count": [675]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [675]}}} +{"episode_index": 260, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4139748194545308]], [[0.39727712468732346]], [[0.3668138490478496]]], "std": [[[0.21727777365718434]], [[0.21197854656566142]], [[0.2154791788191146]]], "count": [108]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42434542685386917]], [[0.42137684832163314]], [[0.3922956129468248]]], "std": [[[0.21607578889961704]], [[0.19716744836794908]], [[0.21114127954106485]]], "count": [108]}, "observation.state": {"min": [0.33993926644325256, -0.20485320687294006, 0.09776748716831207, -1.6238389015197754, -0.835122287273407, 0.6094860434532166, -0.6334726214408875, -0.4338245093822479, 0.1576210856437683, 3.6228132247924805, -0.5533778071403503, 0.0691312775015831], "max": [0.45211195945739746, 0.11746276915073395, 0.13071011006832123, -0.04529302939772606, 0.581661581993103, 1.406934380531311, -0.4511852264404297, -0.24545933306217194, 0.18947871029376984, 4.539577484130859, -0.22831958532333374, 0.5593472719192505], "mean": [0.4080163538455963, -0.019030187278985977, 0.11904305219650269, -0.7413693070411682, -0.03325576335191727, 1.0291564464569092, -0.5327059626579285, -0.3352961242198944, 0.17144380509853363, 4.287625789642334, -0.43404892086982727, 0.3152224123477936], "std": [0.026249004527926445, 0.08050289005041122, 0.009618218056857586, 0.48100119829177856, 0.48607000708580017, 0.22224663197994232, 0.05030769854784012, 0.06539972871541977, 0.009780850261449814, 0.25200343132019043, 0.09733446687459946, 0.12875089049339294], "count": [517]}, "action": {"min": [-0.1472742110490799, -0.10411211848258972, 0.10953880846500397, -0.4255104959011078, -0.6840483546257019, -0.6798813939094543, -0.34158626198768616, 0.09548079967498779, -0.11717667430639267, 0.07397150248289108, -0.484853595495224, -0.5942250490188599, 0.6217008829116821, 0.12534868717193604], "max": [-0.12490899860858917, -0.05598066747188568, 0.1397981196641922, 0.4839981496334076, 0.8002269864082336, 0.7367262840270996, 0.5789824724197388, 0.1363944262266159, -0.09781459718942642, 0.10088592022657394, -0.2582838237285614, -0.4111179709434509, 0.8050251007080078, 0.5144915580749512], "mean": [-0.1347939819097519, -0.07824887335300446, 0.1258627325296402, 0.03139524906873703, 0.24953193962574005, -0.004143768921494484, 0.22443857789039612, 0.1177743673324585, -0.11079771816730499, 0.08793804049491882, -0.3976021409034729, -0.508580207824707, 0.7129008769989014, 0.24318596720695496], "std": [0.0064582787454128265, 0.012242577970027924, 0.007660266477614641, 0.31918978691101074, 0.6336023211479187, 0.5398836731910706, 0.30257201194763184, 0.012179436162114143, 0.0038992809131741524, 0.009895564056932926, 0.04857237637042999, 0.048491355031728745, 0.04886399209499359, 0.0937688946723938], "count": [517]}, "timestamp": {"min": [0.0], "max": [17.2], "mean": [8.6], "std": [4.974825513411389], "count": [517]}, "frame_index": {"min": [0], "max": [516], "mean": [258.0], "std": [149.24476540234167], "count": [517]}, "episode_index": {"min": [260], "max": [260], "mean": [260.0], "std": [0.0], "count": [517]}, "index": {"min": [187661], "max": [188177], "mean": [187919.0], "std": [149.24476540234167], "count": [517]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [517]}}} +{"episode_index": 261, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41312071350762525]], [[0.3973317483660131]], [[0.36684307189542487]]], "std": [[[0.21860686637219526]], [[0.21275301618360085]], [[0.2155952853769328]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4215476062091503]], [[0.42080443899782133]], [[0.3911925408496732]]], "std": [[[0.2179662604291122]], [[0.19785953949540494]], [[0.21125766724687253]]], "count": [100]}, "observation.state": {"min": [0.28150907158851624, -0.07973722368478775, 0.08659347146749496, -1.211378812789917, -0.7028581500053406, 0.8296781778335571, -0.6973859667778015, -0.4209275543689728, 0.16598474979400635, 3.398235321044922, -0.5558372735977173, 0.3906051814556122], "max": [0.4585449993610382, 0.12043602019548416, 0.1297132670879364, -0.2939853072166443, 0.5457261800765991, 1.4005372524261475, -0.4917295575141907, -0.23058536648750305, 0.19787219166755676, 4.39656925201416, 0.07965908199548721, 1.1623802185058594], "mean": [0.385606050491333, 0.00733600789681077, 0.11472439765930176, -0.755594789981842, -0.20119556784629822, 1.1313494443893433, -0.5716971158981323, -0.3180871605873108, 0.18064871430397034, 4.008251667022705, -0.24482889473438263, 0.748267650604248], "std": [0.0507933609187603, 0.062924824655056, 0.011019129306077957, 0.2625269591808319, 0.43441033363342285, 0.15871413052082062, 0.04405763000249863, 0.06335990130901337, 0.008050602860748768, 0.3480146527290344, 0.18907848000526428, 0.22279810905456543], "count": [367]}, "action": {"min": [-0.16292324662208557, -0.0912305936217308, 0.10570461302995682, -0.48326730728149414, -0.6276381611824036, -0.6256919503211975, -0.4723113775253296, 0.08697270601987839, -0.1289716362953186, 0.07561780512332916, -0.4534182548522949, -0.6544675230979919, -0.6531230807304382, -0.48843130469322205], "max": [-0.1295841783285141, -0.05080898851156235, 0.1419192999601364, 0.4868193566799164, 0.8327197432518005, 0.6706056594848633, 0.5138432383537292, 0.12373050302267075, -0.09484235942363739, 0.10399086773395538, 0.49832406640052795, 0.764494776725769, 0.7181271910667419, 0.36246952414512634], "mean": [-0.14163079857826233, -0.07392998784780502, 0.12628273665905, -0.06675907969474792, 0.4973025619983673, -0.25268957018852234, 0.21593926846981049, 0.10921765863895416, -0.11493771523237228, 0.09246841073036194, 0.11536600440740585, 0.28830084204673767, -0.15704268217086792, -0.13364781439304352], "std": [0.008255301974713802, 0.011782207526266575, 0.0091888178139925, 0.25597256422042847, 0.540779173374176, 0.4489445090293884, 0.27970755100250244, 0.008872099220752716, 0.00996418483555317, 0.008531183004379272, 0.35335829854011536, 0.596831202507019, 0.5526193380355835, 0.27311447262763977], "count": [367]}, "timestamp": {"min": [0.0], "max": [12.2], "mean": [6.1], "std": [3.531446036839741], "count": [367]}, "frame_index": {"min": [0], "max": [366], "mean": [183.0], "std": [105.94338110519222], "count": [367]}, "episode_index": {"min": [261], "max": [261], "mean": [261.0], "std": [0.0], "count": [367]}, "index": {"min": [188178], "max": [188544], "mean": [188361.0], "std": [105.94338110519222], "count": [367]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [367]}}} +{"episode_index": 262, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4117873774509804]], [[0.39569040305010894]], [[0.36525742647058823]]], "std": [[[0.22109405190170045]], [[0.2165036744749912]], [[0.2206216556828637]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4224365196078431]], [[0.4206900735294118]], [[0.3915560784313726]]], "std": [[[0.22046021881849898]], [[0.20199489930150985]], [[0.21688163432782942]]], "count": [100]}, "observation.state": {"min": [0.3193504512310028, -0.11391802877187729, 0.08502884954214096, -1.281834602355957, -0.9408789277076721, 0.9207885265350342, -0.6078640222549438, -0.4564444124698639, 0.16183792054653168, 4.1074066162109375, -0.6257951855659485, 0.23650318384170532], "max": [0.45856043696403503, 0.07280220091342926, 0.12915067374706268, -0.25938645005226135, 0.6402786374092102, 1.39877188205719, -0.4846864342689514, -0.26933032274246216, 0.1896122246980667, 4.539158344268799, -0.2986873984336853, 0.5648645758628845], "mean": [0.3966139256954193, -0.03527016192674637, 0.11621756851673126, -0.6674872636795044, -0.38851335644721985, 1.1617026329040527, -0.5491862893104553, -0.35440513491630554, 0.17415285110473633, 4.4250969886779785, -0.42340534925460815, 0.4098362326622009], "std": [0.030979381874203682, 0.05295911431312561, 0.01328496728092432, 0.24634341895580292, 0.45780816674232483, 0.13424570858478546, 0.026452235877513885, 0.0573815293610096, 0.007601896300911903, 0.12155462056398392, 0.07458607107400894, 0.07575422525405884], "count": [355]}, "action": {"min": [-0.15684130787849426, -0.09325450658798218, 0.10283397883176804, -0.4883802831172943, -0.611231803894043, -0.6337703466415405, -0.08016552776098251, 0.10035358369350433, -0.12563374638557434, 0.0682414174079895, -0.48596620559692383, -0.6180106997489929, 0.6478719115257263, 0.06452970206737518], "max": [-0.13000640273094177, -0.05686276778578758, 0.1365092247724533, 0.5080710649490356, 0.8476223349571228, 0.6268096566200256, 0.5280753374099731, 0.12603315711021423, -0.09662028402090073, 0.09460405260324478, -0.36078953742980957, -0.4732915461063385, 0.7682206630706787, 0.2955726683139801], "mean": [-0.14003492891788483, -0.08130598813295364, 0.12251713871955872, -0.0620834045112133, 0.698336660861969, -0.3475880026817322, 0.35693618655204773, 0.11519608646631241, -0.11483341455459595, 0.08575528115034103, -0.4253169894218445, -0.5524161458015442, 0.6950716376304626, 0.15316586196422577], "std": [0.008137926459312439, 0.011350865475833416, 0.008987671695649624, 0.20695996284484863, 0.34643855690956116, 0.2766367495059967, 0.1444670557975769, 0.0067489370703697205, 0.006080893334001303, 0.009482618421316147, 0.0311698280274868, 0.04038610681891441, 0.03459816798567772, 0.05964747816324234], "count": [355]}, "timestamp": {"min": [0.0], "max": [11.8], "mean": [5.9], "std": [3.41597553985518], "count": [355]}, "frame_index": {"min": [0], "max": [354], "mean": [177.0], "std": [102.4792661956554], "count": [355]}, "episode_index": {"min": [262], "max": [262], "mean": [262.0], "std": [0.0], "count": [355]}, "index": {"min": [188545], "max": [188899], "mean": [188722.0], "std": [102.4792661956554], "count": [355]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [355]}}} +{"episode_index": 263, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40076256228564033]], [[0.3853977463922863]], [[0.3547817548911754]]], "std": [[[0.22246437792847934]], [[0.2161378463819087]], [[0.21992715149048098]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41005301289932916]], [[0.40950657908928145]], [[0.380180776656097]]], "std": [[[0.22368779869469813]], [[0.20326530831962997]], [[0.21791576164394835]]], "count": [101]}, "observation.state": {"min": [0.35865914821624756, -0.13066092133522034, 0.08116590231657028, -1.8092048168182373, -0.8881372213363647, 0.7456669211387634, -0.666541337966919, -0.46859225630760193, 0.15498442947864532, 4.175765514373779, -0.3700116276741028, -0.4346110224723816], "max": [0.5050898790359497, 0.020465239882469177, 0.12886807322502136, -0.33235856890678406, 0.6032501459121704, 1.3922511339187622, -0.505591869354248, -0.24481834471225739, 0.19262869656085968, 4.541254997253418, 0.7959076166152954, 0.4148849546909332], "mean": [0.41771745681762695, -0.06276696175336838, 0.11692418903112411, -0.8371757864952087, -0.09073606133460999, 1.0429593324661255, -0.5826157927513123, -0.33212971687316895, 0.1769653707742691, 4.430726528167725, 0.29586490988731384, -0.18190647661685944], "std": [0.03471330180764198, 0.04120935499668121, 0.014360863715410233, 0.43614354729652405, 0.4271823465824127, 0.18750834465026855, 0.03877075016498566, 0.04590049013495445, 0.009940329007804394, 0.12398472428321838, 0.3568800091743469, 0.22896237671375275], "count": [476]}, "action": {"min": [-0.15358774363994598, -0.09617877006530762, 0.09702764451503754, -0.40188655257225037, -0.6571711897850037, -0.6683552861213684, -0.40102511644363403, 0.096222884953022, -0.1265442967414856, 0.06567937135696411, -0.374045193195343, -0.5925769805908203, 0.7234636545181274, -0.08513303846120834], "max": [-0.12537690997123718, -0.059789758175611496, 0.13064518570899963, 0.47098761796951294, 0.8581938743591309, 0.6793702840805054, 0.5016453266143799, 0.13255156576633453, -0.09336697310209274, 0.09868685901165009, 0.07387730479240417, -0.19974385201931, 0.9658956527709961, 0.2636434733867645], "mean": [-0.13507409393787384, -0.08350636810064316, 0.12038637697696686, -0.04101574793457985, 0.45386800169944763, -0.2129693180322647, 0.30192872881889343, 0.1139698177576065, -0.11568372696638107, 0.0888063833117485, -0.09550699591636658, -0.3544888496398926, 0.8998914957046509, 0.08389871567487717], "std": [0.007987543940544128, 0.010563037358224392, 0.01021550688892603, 0.27438485622406006, 0.5661332607269287, 0.48152104020118713, 0.16777382791042328, 0.006984978914260864, 0.008797653950750828, 0.00708817271515727, 0.1401522010564804, 0.10815474390983582, 0.06620698422193527, 0.11246652901172638], "count": [476]}, "timestamp": {"min": [0.0], "max": [15.833333333333334], "mean": [7.916666666666666], "std": [4.5803020278870985], "count": [476]}, "frame_index": {"min": [0], "max": [475], "mean": [237.5], "std": [137.40906083661295], "count": [476]}, "episode_index": {"min": [263], "max": [263], "mean": [263.0], "std": [0.0], "count": [476]}, "index": {"min": [188900], "max": [189375], "mean": [189137.5], "std": [137.40906083661295], "count": [476]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [476]}}} +{"episode_index": 264, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4122383496732026]], [[0.39548165305010896]], [[0.36499239379084963]]], "std": [[[0.22000871849813725]], [[0.21418701984015093]], [[0.2181691629874301]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42371922385620914]], [[0.42157160675381267]], [[0.39205418300653594]]], "std": [[[0.21796115634146063]], [[0.19806582494417618]], [[0.21299918966808534]]], "count": [100]}, "observation.state": {"min": [0.33217790722846985, -0.12482252717018127, 0.07814554870128632, -1.3501935005187988, -0.5752396583557129, 0.9266526103019714, -0.5746408104896545, -0.4585449993610382, 0.15318389236927032, 4.152490139007568, -0.5833012461662292, 0.1365322768688202], "max": [0.4904089868068695, 0.0319335013628006, 0.13447971642017365, -0.5655337572097778, 0.5673147439956665, 1.4005401134490967, -0.4936525225639343, -0.29958799481391907, 0.18983778357505798, 4.539577484130859, -0.11559447646141052, 0.46688541769981384], "mean": [0.40859517455101013, -0.04249828681349754, 0.11027629673480988, -0.8590620756149292, -0.06559325754642487, 1.2032873630523682, -0.5240840911865234, -0.34274163842201233, 0.17439191043376923, 4.440331935882568, -0.3340737521648407, 0.3413085639476776], "std": [0.045150235295295715, 0.04558387026190758, 0.015309853479266167, 0.21230891346931458, 0.3644382059574127, 0.13705101609230042, 0.021472454071044922, 0.043700847774744034, 0.008938427083194256, 0.10051973909139633, 0.12175733596086502, 0.09301833063364029], "count": [316]}, "action": {"min": [-0.15830421447753906, -0.09546426683664322, 0.09694555401802063, -0.49176225066185, 0.6510872840881348, -0.6367430090904236, -0.030780566856265068, 0.10717293620109558, -0.12725600600242615, 0.06520687788724899, -0.4787772595882416, -0.6110396981239319, 0.6883351802825928, 0.06894869357347488], "max": [-0.12581147253513336, -0.05961523950099945, 0.137680783867836, -0.051591649651527405, 0.8647927045822144, -0.3830014169216156, 0.41524699330329895, 0.13144248723983765, -0.10484901070594788, 0.09873366355895996, -0.2694578170776367, -0.4739989638328552, 0.8310575485229492, 0.31360942125320435], "mean": [-0.13907089829444885, -0.07709317654371262, 0.11815925687551498, -0.2557849586009979, 0.7552496790885925, -0.49792346358299255, 0.2626851201057434, 0.11856377124786377, -0.11535977572202682, 0.08946910500526428, -0.37321242690086365, -0.536397397518158, 0.7367289066314697, 0.15093913674354553], "std": [0.010683837346732616, 0.01022820919752121, 0.010927783325314522, 0.1352657973766327, 0.07676494121551514, 0.0782158300280571, 0.13012853264808655, 0.006015326362103224, 0.005179392173886299, 0.009249764494597912, 0.049204353243112564, 0.03295355290174484, 0.03954681381583214, 0.0486503429710865], "count": [316]}, "timestamp": {"min": [0.0], "max": [10.5], "mean": [5.25], "std": [3.040696192212128], "count": [316]}, "frame_index": {"min": [0], "max": [315], "mean": [157.5], "std": [91.22088576636384], "count": [316]}, "episode_index": {"min": [264], "max": [264], "mean": [264.0], "std": [0.0], "count": [316]}, "index": {"min": [189376], "max": [189691], "mean": [189533.5], "std": [91.22088576636384], "count": [316]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [316]}}} +{"episode_index": 265, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41677986928104577]], [[0.40042155501089327]], [[0.37027308551198257]]], "std": [[[0.2202196312720341]], [[0.2147606000419418]], [[0.2184692336666382]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4276677777777778]], [[0.42572086601307185]], [[0.39673760348583875]]], "std": [[[0.21908714372457552]], [[0.19993971734922308]], [[0.2140485435590495]]], "count": [100]}, "observation.state": {"min": [0.35029545426368713, -0.06678619235754013, 0.08280830085277557, -1.0314648151397705, -0.7523205876350403, 0.9397991895675659, -0.6184210181236267, -0.43425700068473816, 0.14875057339668274, 3.5412437915802, -0.5834378600120544, 0.2119746059179306], "max": [0.4409525990486145, 0.07569050043821335, 0.1291947364807129, -0.4361550807952881, 0.41305214166641235, 1.4088740348815918, -0.4726775884628296, -0.2482009083032608, 0.1894501894712448, 4.538528919219971, -0.16533015668392181, 0.9409185647964478], "mean": [0.40789473056793213, -0.0074079688638448715, 0.11170857399702072, -0.7282942533493042, -0.1406838297843933, 1.1937291622161865, -0.5618876218795776, -0.3175460994243622, 0.1733914315700531, 4.087579250335693, -0.3315676748752594, 0.5936692953109741], "std": [0.025668026879429817, 0.04384725168347359, 0.01361170969903469, 0.14991389214992523, 0.3729473948478699, 0.12851837277412415, 0.03516065701842308, 0.055290378630161285, 0.010388960130512714, 0.3795265257358551, 0.1255713850259781, 0.2505914568901062], "count": [256]}, "action": {"min": [-0.15125884115695953, -0.0879243016242981, 0.10023770481348038, -0.4501173794269562, -0.6232143044471741, -0.6170448064804077, -0.3419499695301056, 0.10078783333301544, -0.11981284618377686, 0.06831113994121552, -0.4460163712501526, -0.6226738691329956, -0.630141019821167, -0.4585895538330078], "max": [-0.13035348057746887, -0.05456976220011711, 0.13578176498413086, 0.41201451420783997, 0.8528923988342285, 0.6412913203239441, 0.44157958030700684, 0.13739122450351715, -0.09391918033361435, 0.09839865565299988, 0.4649019241333008, 0.7119612693786621, 0.7828598022460938, 0.32601532340049744], "mean": [-0.13909649848937988, -0.07370759546756744, 0.12225053459405899, -0.17178815603256226, 0.641380250453949, -0.3714750111103058, 0.271664559841156, 0.1134280115365982, -0.10964858531951904, 0.0897381603717804, -0.06188996508717537, -0.03733506053686142, 0.18774764239788055, -0.08251961320638657], "std": [0.006248095538467169, 0.009975127875804901, 0.010420877486467361, 0.2165631353855133, 0.38914695382118225, 0.32770419120788574, 0.20396028459072113, 0.009506171569228172, 0.006864188704639673, 0.009061984717845917, 0.38408026099205017, 0.6002995371818542, 0.6009752154350281, 0.28925541043281555], "count": [256]}, "timestamp": {"min": [0.0], "max": [8.5], "mean": [4.25], "std": [2.4633423545166346], "count": [256]}, "frame_index": {"min": [0], "max": [255], "mean": [127.5], "std": [73.90027063549903], "count": [256]}, "episode_index": {"min": [265], "max": [265], "mean": [265.0], "std": [0.0], "count": [256]}, "index": {"min": [189692], "max": [189947], "mean": [189819.5], "std": [73.90027063549903], "count": [256]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [256]}}} +{"episode_index": 266, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41243703976034857]], [[0.39695003267973855]], [[0.3658912581699347]]], "std": [[[0.21641140738235573]], [[0.21163483207249434]], [[0.21551554464269834]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4228781318082789]], [[0.42175235566448804]], [[0.39227275871459694]]], "std": [[[0.2149272980853149]], [[0.1965134663425086]], [[0.21088483668018945]]], "count": [100]}, "observation.state": {"min": [0.30286240577697754, -0.11025746166706085, 0.0761803686618805, -1.2556233406066895, -0.5919093489646912, 0.870855450630188, -0.6173552870750427, -0.4806937873363495, 0.16176143288612366, 3.932734966278076, -0.5342487096786499, 0.11337319016456604], "max": [0.460305780172348, 0.05728723108768463, 0.12295959144830704, -0.31034111976623535, 0.5541976690292358, 1.3491642475128174, -0.5279414653778076, -0.2769603729248047, 0.19173814356327057, 4.539787292480469, -0.15726861357688904, 0.48971715569496155], "mean": [0.3930620551109314, -0.021955519914627075, 0.10643873363733292, -0.6630353331565857, -0.061908505856990814, 1.1463556289672852, -0.5750429034233093, -0.3463976979255676, 0.1733332872390747, 4.305852890014648, -0.29687821865081787, 0.3252808451652527], "std": [0.04262078180909157, 0.05580915883183479, 0.015603160485625267, 0.3100879192352295, 0.36220991611480713, 0.15792728960514069, 0.020836858078837395, 0.0548553429543972, 0.008082933723926544, 0.19818849861621857, 0.10154371708631516, 0.09123384952545166], "count": [302]}, "action": {"min": [-0.15577366948127747, -0.08782640844583511, 0.09505531936883926, -0.47555264830589294, -0.6288802623748779, -0.6317827105522156, -0.5265612006187439, 0.09853976964950562, -0.12806712090969086, 0.06140768527984619, -0.4285132884979248, -0.5982425808906555, 0.6401466727256775, 0.06202179193496704], "max": [-0.13275393843650818, -0.05281703546643257, 0.13220837712287903, 0.4143725335597992, 0.8315470814704895, 0.6380280256271362, 0.525096595287323, 0.12120401114225388, -0.09630953520536423, 0.09618127346038818, -0.3032987117767334, -0.42584896087646484, 0.7983295321464539, 0.38489478826522827], "mean": [-0.1424652636051178, -0.0732637271285057, 0.11735658347606659, -0.1752615123987198, 0.5188227295875549, -0.27672260999679565, 0.18518806993961334, 0.11285115033388138, -0.11296295374631882, 0.08507442474365234, -0.3586166501045227, -0.5366576313972473, 0.7256168723106384, 0.208853617310524], "std": [0.009213410317897797, 0.011675022542476654, 0.011542212218046188, 0.2345815747976303, 0.5035918354988098, 0.4078589081764221, 0.33801528811454773, 0.0055205123499035835, 0.007596578449010849, 0.008970790542662144, 0.04384670406579971, 0.040635477751493454, 0.04085167869925499, 0.0894966721534729], "count": [302]}, "timestamp": {"min": [0.0], "max": [10.033333333333333], "mean": [5.016666666666667], "std": [2.9059804235786277], "count": [302]}, "frame_index": {"min": [0], "max": [301], "mean": [150.5], "std": [87.17941270735884], "count": [302]}, "episode_index": {"min": [266], "max": [266], "mean": [266.0], "std": [0.0], "count": [302]}, "index": {"min": [189948], "max": [190249], "mean": [190098.5], "std": [87.17941270735884], "count": [302]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [302]}}} +{"episode_index": 267, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42094490468409584]], [[0.4069581045751634]], [[0.37676140795206975]]], "std": [[[0.2173733751689257]], [[0.21233512138460803]], [[0.21673003109450736]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4289117401960785]], [[0.42953482843137253]], [[0.40088832244008715]]], "std": [[[0.21663326438140343]], [[0.19784122639088045]], [[0.212113582651435]]], "count": [100]}, "observation.state": {"min": [0.2809993624687195, -0.08312749862670898, 0.07631000131368637, -1.0559985637664795, -0.6421915292739868, 0.8156532645225525, -0.7123371362686157, -0.4387207329273224, 0.16764788329601288, 3.6345558166503906, -0.43054160475730896, 0.04984705150127411], "max": [0.4116293787956238, 0.0956692099571228, 0.12809938192367554, -0.2835007905960083, 0.45499953627586365, 1.405868411064148, -0.5273236632347107, -0.24525855481624603, 0.18919481337070465, 4.539997100830078, 0.03579875826835632, 0.8094094395637512], "mean": [0.3572494387626648, 0.008058441802859306, 0.10580597817897797, -0.7012155652046204, -0.21404485404491425, 1.2017446756362915, -0.5993741750717163, -0.32429060339927673, 0.17885459959506989, 4.255804061889648, -0.19461141526699066, 0.39191222190856934], "std": [0.030109774321317673, 0.049532145261764526, 0.014640980400145054, 0.15258243680000305, 0.36918339133262634, 0.1579723209142685, 0.03822043538093567, 0.05127716064453125, 0.004459918476641178, 0.31795960664749146, 0.11629357188940048, 0.23586951196193695], "count": [426]}, "action": {"min": [-0.165657639503479, -0.08820725977420807, 0.101072758436203, -0.4502762258052826, -0.6321157217025757, -0.6296627521514893, -0.4962381422519684, 0.09536820650100708, -0.1265188753604889, 0.0652114674448967, -0.48582783341407776, -0.6428417563438416, -0.6434604525566101, -0.4293835163116455], "max": [-0.13493217527866364, -0.05128533020615578, 0.1406448483467102, 0.3840492367744446, 0.8461935520172119, 0.6978166103363037, 0.5073944330215454, 0.11383558064699173, -0.09492398798465729, 0.1075795367360115, 0.42081910371780396, 0.7361367344856262, 0.8307372331619263, 0.3173971474170685], "mean": [-0.1487930566072464, -0.07072669267654419, 0.12087203562259674, -0.09599431604146957, 0.5638325810432434, -0.27721211314201355, 0.23294995725154877, 0.10686670243740082, -0.11382710188627243, 0.08874008804559708, -0.16663262248039246, -0.18830500543117523, 0.39684993028640747, 0.006976116914302111], "std": [0.007740364409983158, 0.010314625687897205, 0.01132251601666212, 0.215443417429924, 0.4979659914970398, 0.4052892327308655, 0.28830528259277344, 0.004178517963737249, 0.00664648087695241, 0.009181519038975239, 0.2988903224468231, 0.5366553664207458, 0.5874876379966736, 0.2382442057132721], "count": [426]}, "timestamp": {"min": [0.0], "max": [14.166666666666666], "mean": [7.083333333333333], "std": [4.099175617211434], "count": [426]}, "frame_index": {"min": [0], "max": [425], "mean": [212.5], "std": [122.97526851634302], "count": [426]}, "episode_index": {"min": [267], "max": [267], "mean": [267.0], "std": [0.0], "count": [426]}, "index": {"min": [190250], "max": [190675], "mean": [190462.5], "std": [122.97526851634302], "count": [426]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [426]}}} +{"episode_index": 268, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4178013507625272]], [[0.40416696350762527]], [[0.3745844580610022]]], "std": [[[0.22290198921764773]], [[0.21830924884175476]], [[0.22335921486908042]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42769792483660135]], [[0.428908052832244]], [[0.4005666911764706]]], "std": [[[0.22101100865851603]], [[0.20286301732753542]], [[0.21801378216713876]]], "count": [100]}, "observation.state": {"min": [0.039509501308202744, -0.09373853355646133, 0.08694346994161606, -1.0962589979171753, -1.0046881437301636, 0.7647529244422913, -0.6148608326911926, -0.3430515229701996, 0.1630188375711441, 3.709834575653076, -0.5610294938087463, 0.1484849601984024], "max": [0.46226733922958374, 0.10909131914377213, 0.12528902292251587, 0.042986441403627396, 0.5066481232643127, 1.3938268423080444, -0.4902699589729309, -0.25948381423950195, 0.18796983361244202, 4.530141353607178, -0.15221306681632996, 0.819405734539032], "mean": [0.36315858364105225, -0.00476262578740716, 0.10439306497573853, -0.5456344485282898, -0.39338570833206177, 1.169799566268921, -0.5657278895378113, -0.3135337233543396, 0.17779570817947388, 4.182956695556641, -0.28878793120384216, 0.49788469076156616], "std": [0.1118699461221695, 0.054158762097358704, 0.011278711259365082, 0.3169668912887573, 0.5288128852844238, 0.1623869389295578, 0.03248808905482292, 0.025682369247078896, 0.006776878144592047, 0.25780215859413147, 0.09202483296394348, 0.1946016103029251], "count": [379]}, "action": {"min": [-0.1972917765378952, -0.08837238699197769, 0.1024216040968895, -0.47588279843330383, -0.6147463917732239, -0.6118284463882446, -0.3213885724544525, 0.10363823175430298, -0.12205566465854645, 0.08314972370862961, -0.46021413803100586, -0.620184063911438, -0.6158977150917053, -0.40488409996032715], "max": [-0.13184046745300293, -0.059270650148391724, 0.13653478026390076, 0.40965571999549866, 0.8607181906700134, 0.6356365084648132, 0.6196480989456177, 0.11847369372844696, -0.09725981205701828, 0.10761777311563492, 0.4597700536251068, 0.6891989707946777, 0.7799180746078491, 0.3735359311103821], "mean": [-0.148147314786911, -0.07141052186489105, 0.11609680205583572, -0.10386748611927032, 0.6957565546035767, -0.33514347672462463, 0.37888219952583313, 0.11097581684589386, -0.11275900155305862, 0.09227826446294785, -0.20136891305446625, -0.2778855860233307, 0.426227331161499, 0.061635781079530716], "std": [0.01847653277218342, 0.006518774200230837, 0.00887495931237936, 0.24108880758285522, 0.2897990345954895, 0.2548113167285919, 0.20548857748508453, 0.004793704021722078, 0.005897785071283579, 0.0065582431852817535, 0.3033427596092224, 0.5169873237609863, 0.5253642797470093, 0.24791328608989716], "count": [379]}, "timestamp": {"min": [0.0], "max": [12.6], "mean": [6.3], "std": [3.6469165057620936], "count": [379]}, "frame_index": {"min": [0], "max": [378], "mean": [189.0], "std": [109.40749517286281], "count": [379]}, "episode_index": {"min": [268], "max": [268], "mean": [268.0], "std": [0.0], "count": [379]}, "index": {"min": [190676], "max": [191054], "mean": [190865.0], "std": [109.40749517286281], "count": [379]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [379]}}} +{"episode_index": 269, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4231728431372549]], [[0.40717201797385616]], [[0.37634104575163396]]], "std": [[[0.22085803793074857]], [[0.21604428381499874]], [[0.21989246870762877]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43380680827886714]], [[0.43214249183006537]], [[0.4029376225490196]]], "std": [[[0.21963764393826687]], [[0.20091926618316275]], [[0.2150122669284232]]], "count": [100]}, "observation.state": {"min": [0.29189613461494446, -0.07260140776634216, 0.06925947964191437, -1.0270613431930542, -0.653805673122406, 0.717171847820282, -0.6250084638595581, -0.43699854612350464, 0.15665017068386078, 3.469529867172241, -0.6540789008140564, -0.14347317814826965], "max": [0.43297502398490906, 0.06608343124389648, 0.12763270735740662, -0.44978493452072144, 0.6134978532791138, 1.4109171628952026, -0.5148823261260986, -0.2669980525970459, 0.1930733174085617, 4.540206432342529, -0.14428813755512238, 1.0361803770065308], "mean": [0.38299086689949036, -0.015396439470350742, 0.10165882855653763, -0.7743184566497803, 0.10440599918365479, 1.1406759023666382, -0.5777692794799805, -0.3123197555541992, 0.17166317999362946, 4.154123783111572, -0.36012038588523865, 0.4425516724586487], "std": [0.03657085448503494, 0.03847191482782364, 0.016658347100019455, 0.16436231136322021, 0.30714496970176697, 0.1948927491903305, 0.028378907591104507, 0.044175345450639725, 0.009428112767636776, 0.4105566740036011, 0.14067834615707397, 0.3914240896701813], "count": [261]}, "action": {"min": [-0.16110120713710785, -0.09239460527896881, 0.08944014459848404, -0.5260158777236938, -0.615708589553833, -0.6214920878410339, -0.3478381633758545, 0.09923595935106277, -0.1291777640581131, 0.07189303636550903, -0.49726536870002747, -0.6109816431999207, -0.6022064089775085, -0.4618327021598816], "max": [-0.13157835602760315, -0.05138152092695236, 0.13231779634952545, 0.45043671131134033, 0.8659672737121582, 0.7199066281318665, 0.4527139663696289, 0.1231277659535408, -0.0892457365989685, 0.09949475526809692, 0.527699887752533, 0.7185865044593811, 0.8333673477172852, 0.39186498522758484], "mean": [-0.14478884637355804, -0.06901203095912933, 0.11531985551118851, -0.15043607354164124, 0.4322783350944519, -0.23610076308250427, 0.1777692437171936, 0.11219481378793716, -0.10756506770849228, 0.08783417195081711, -0.15335685014724731, -0.1292339712381363, 0.3884843587875366, 0.004691791720688343], "std": [0.009866133332252502, 0.009648682549595833, 0.012084083631634712, 0.31064966320991516, 0.5468378067016602, 0.49144357442855835, 0.2571133077144623, 0.0064514027908444405, 0.009942211210727692, 0.00541114155203104, 0.37159743905067444, 0.5306009650230408, 0.5487962365150452, 0.2967129945755005], "count": [261]}, "timestamp": {"min": [0.0], "max": [8.666666666666666], "mean": [4.333333333333333], "std": [2.5114552369905794], "count": [261]}, "frame_index": {"min": [0], "max": [260], "mean": [130.0], "std": [75.34365710971738], "count": [261]}, "episode_index": {"min": [269], "max": [269], "mean": [269.0], "std": [0.0], "count": [261]}, "index": {"min": [191055], "max": [191315], "mean": [191185.0], "std": [75.34365710971738], "count": [261]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [261]}}} +{"episode_index": 270, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5316864384128136]], [[0.48337637678528206]], [[0.4496714652424756]]], "std": [[[0.244948072217453]], [[0.22163344098994103]], [[0.22662366152564184]]], "count": [108]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5529501381828451]], [[0.5140910695553942]], [[0.4855385575526507]]], "std": [[[0.2626683585436694]], [[0.2173089118389007]], [[0.2325841976487627]]], "count": [108]}, "observation.state": {"min": [0.194303959608078, -0.18054205179214478, 0.08060072362422943, -1.3078361749649048, -0.4574590027332306, 0.744949221611023, -0.615131139755249, -0.35924607515335083, 0.15036964416503906, 2.918254852294922, -0.5539243817329407, 0.5337843298912048], "max": [0.5105730295181274, 0.006657000165432692, 0.13005289435386658, -0.21556125581264496, 0.7713130116462708, 1.2950637340545654, -0.49089550971984863, -0.1764412820339203, 0.18057838082313538, 4.129424095153809, 0.11764402687549591, 1.3897031545639038], "mean": [0.43087196350097656, -0.06853651255369186, 0.11564164608716965, -0.8689164519309998, 0.24637004733085632, 1.0763826370239258, -0.5611580610275269, -0.2674744725227356, 0.16517090797424316, 3.54630446434021, -0.2118246704339981, 0.9141181707382202], "std": [0.053691163659095764, 0.041044410318136215, 0.010145883075892925, 0.2744947373867035, 0.3374207317829132, 0.13697178661823273, 0.028766043484210968, 0.05652115121483803, 0.009315717965364456, 0.3545999228954315, 0.18189875781536102, 0.2843121886253357], "count": [517]}, "action": {"min": [-0.1763799488544464, -0.09022051095962524, 0.09316564351320267, -0.5251807570457458, -0.6149808764457703, -0.616470992565155, -0.19740541279315948, 0.1091369017958641, -0.11955688148736954, 0.08320111781358719, -0.52093905210495, -0.6201914548873901, -0.6282246708869934, -0.5882663726806641], "max": [-0.12144114822149277, -0.06897654384374619, 0.13339993357658386, 0.5904241800308228, 0.8135266304016113, 0.6715703010559082, 0.5108678936958313, 0.12674784660339355, -0.07816554605960846, 0.10204155743122101, 0.4922909438610077, 0.7387623190879822, 0.6448780298233032, 0.6535212993621826], "mean": [-0.13173474371433258, -0.08007815480232239, 0.11901120096445084, -0.15499426424503326, 0.44972726702690125, -0.2661389112472534, 0.192271888256073, 0.1182650700211525, -0.09965351223945618, 0.09137652814388275, 0.17859122157096863, 0.4300384819507599, -0.24616147577762604, -0.2507874369621277], "std": [0.010094345547258854, 0.005719361361116171, 0.00880815926939249, 0.3750050961971283, 0.5101358890533447, 0.4780481457710266, 0.19111819565296173, 0.0036811961326748133, 0.012994020245969296, 0.003992588259279728, 0.31751856207847595, 0.49123743176460266, 0.4126672148704529, 0.38373902440071106], "count": [517]}, "timestamp": {"min": [0.0], "max": [17.2], "mean": [8.6], "std": [4.974825513411389], "count": [517]}, "frame_index": {"min": [0], "max": [516], "mean": [258.0], "std": [149.24476540234167], "count": [517]}, "episode_index": {"min": [270], "max": [270], "mean": [270.0], "std": [0.0], "count": [517]}, "index": {"min": [191316], "max": [191832], "mean": [191574.0], "std": [149.24476540234167], "count": [517]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [517]}}} +{"episode_index": 271, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5024983687363834]], [[0.4575886192810457]], [[0.4229758306100218]]], "std": [[[0.24114545092675524]], [[0.21686600137158724]], [[0.22152553088042873]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5251451171023965]], [[0.4905277314814815]], [[0.4608013017429194]]], "std": [[[0.2575413327440782]], [[0.21231753099036021]], [[0.22646761004411092]]], "count": [100]}, "observation.state": {"min": [0.40392211079597473, -0.05903257057070732, 0.07431630790233612, -0.9685578346252441, -0.6436945796012878, 0.9601450562477112, -0.6061109900474548, -0.3361937403678894, 0.1401626467704773, 3.0568599700927734, -0.9922542572021484, -0.25341713428497314], "max": [0.4993519186973572, 0.16186848282814026, 0.13134528696537018, -0.009855429641902447, 0.4887487590312958, 1.40182363986969, -0.48917335271835327, -0.23697978258132935, 0.184792622923851, 4.533706188201904, -0.11436475068330765, 1.321219563484192], "mean": [0.4450148046016693, -0.0011894191848114133, 0.11292823404073715, -0.5175241231918335, 0.033803634345531464, 1.2242648601531982, -0.5725206732749939, -0.2819936275482178, 0.16758805513381958, 3.5678744316101074, -0.35531702637672424, 0.7346124053001404], "std": [0.027760257944464684, 0.061745304614305496, 0.014219814911484718, 0.25850456953048706, 0.3483927249908447, 0.11213257163763046, 0.030377384275197983, 0.03143437206745148, 0.00862328615039587, 0.4797762632369995, 0.21443673968315125, 0.3916492462158203], "count": [455]}, "action": {"min": [-0.1533551812171936, -0.09063837677240372, 0.10120980441570282, -0.5258979201316833, -0.5558125972747803, -0.57675701379776, -0.39954084157943726, 0.10567907243967056, -0.11469060182571411, 0.0722925066947937, -0.5416592955589294, -0.5691660642623901, -0.5586713552474976, -0.6036934852600098], "max": [-0.12451523542404175, -0.03935810178518295, 0.13390426337718964, 0.5093111395835876, 0.8536227941513062, 0.5711380243301392, 0.5643801093101501, 0.13015148043632507, -0.08149883151054382, 0.09774885326623917, 0.5881732702255249, 0.687162458896637, 0.8783828020095825, 0.5673173666000366], "mean": [-0.13214895129203796, -0.0712687075138092, 0.12156448513269424, -0.3404371440410614, 0.6674005389213562, -0.4045737683773041, 0.3613697290420532, 0.11502858996391296, -0.1012386679649353, 0.0906066820025444, 0.06196790561079979, 0.2052459865808487, 0.044313330203294754, -0.21587657928466797], "std": [0.006824036594480276, 0.01313130371272564, 0.00884116068482399, 0.1789168417453766, 0.21037013828754425, 0.19944436848163605, 0.16842304170131683, 0.0052930451929569244, 0.007768408395349979, 0.0057194349355995655, 0.3845599293708801, 0.5370858311653137, 0.5173856616020203, 0.44881200790405273], "count": [455]}, "timestamp": {"min": [0.0], "max": [15.133333333333333], "mean": [7.566666666666667], "std": [4.378228967161138], "count": [455]}, "frame_index": {"min": [0], "max": [454], "mean": [227.0], "std": [131.34686901483414], "count": [455]}, "episode_index": {"min": [271], "max": [271], "mean": [271.0], "std": [0.0], "count": [455]}, "index": {"min": [191833], "max": [192287], "mean": [192060.0], "std": [131.34686901483414], "count": [455]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [455]}}} +{"episode_index": 272, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5345670673165688]], [[0.48564211532070456]], [[0.4515162590930911]]], "std": [[[0.2361776792818822]], [[0.214139525643897]], [[0.2186598958103324]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5569430181677191]], [[0.5169850610206418]], [[0.4883307623426018]]], "std": [[[0.25247789056442205]], [[0.20835135034254298]], [[0.222632636038136]]], "count": [118]}, "observation.state": {"min": [0.3285636603832245, -0.10875924676656723, 0.09035660326480865, -1.189361333847046, -0.21766194701194763, 0.4788866341114044, -0.6557140946388245, -0.37315472960472107, 0.1420293152332306, 2.9140610694885254, -0.6215594410896301, -0.43111199140548706], "max": [0.5107660889625549, 0.03622734174132347, 0.13420361280441284, -0.46467292308807373, 0.6169137954711914, 1.3331876993179321, -0.482099324464798, -0.18658122420310974, 0.19495165348052979, 4.541674613952637, 0.015166649594902992, 1.4137153625488281], "mean": [0.4123627543449402, -0.0523810088634491, 0.12033809721469879, -0.8733253479003906, 0.23255690932273865, 0.9467183351516724, -0.5688546299934387, -0.24735507369041443, 0.16772320866584778, 3.874478816986084, -0.30826377868652344, 0.3900173306465149], "std": [0.058325037360191345, 0.030900217592716217, 0.007981001399457455, 0.15486155450344086, 0.21893417835235596, 0.1954696625471115, 0.04839830845594406, 0.05637294054031372, 0.01599528081715107, 0.5960599780082703, 0.16634449362754822, 0.6374626755714417], "count": [580]}, "action": {"min": [-0.1528547704219818, -0.09595289826393127, 0.10853531211614609, -0.5355075001716614, -0.6650063395500183, -0.6634174585342407, -0.3679795563220978, 0.09069076180458069, -0.11753884702920914, 0.08327941596508026, -0.5728244185447693, -0.6127246022224426, -0.6087327599525452, -0.6062629222869873], "max": [-0.11753829568624496, -0.05611608177423477, 0.13675716519355774, 0.4888498783111572, 0.8167160153388977, 0.7734373211860657, 0.37939688563346863, 0.13033150136470795, -0.07329657673835754, 0.11277101188898087, 0.5839606523513794, 0.6546329855918884, 0.9349018931388855, 0.6080886125564575], "mean": [-0.13289427757263184, -0.08111128956079483, 0.12550035119056702, -0.005715933162719011, 0.018130561336874962, 0.0963539257645607, -0.03927411139011383, 0.1148310974240303, -0.09764213860034943, 0.0944020077586174, -0.2510448098182678, -0.2408030778169632, 0.48552244901657104, 0.24826255440711975], "std": [0.009871239773929119, 0.006935145705938339, 0.007117605768144131, 0.36864039301872253, 0.6361417770385742, 0.6115521788597107, 0.2724773585796356, 0.011800331994891167, 0.012777425348758698, 0.009306334890425205, 0.27399933338165283, 0.39019888639450073, 0.4917188584804535, 0.33541861176490784], "count": [580]}, "timestamp": {"min": [0.0], "max": [19.3], "mean": [9.65], "std": [5.58104430689773], "count": [580]}, "frame_index": {"min": [0], "max": [579], "mean": [289.5], "std": [167.43132920693188], "count": [580]}, "episode_index": {"min": [272], "max": [272], "mean": [272.0], "std": [0.0], "count": [580]}, "index": {"min": [192288], "max": [192867], "mean": [192577.5], "std": [167.43132920693188], "count": [580]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [580]}}} +{"episode_index": 273, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4987600462962963]], [[0.45250753267973853]], [[0.41956601851851855]]], "std": [[[0.23884053474746994]], [[0.2171557985494753]], [[0.2205242972503467]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5254921187363835]], [[0.48936691448801745]], [[0.4606061002178649]]], "std": [[[0.2554506128170315]], [[0.21155358492440154]], [[0.2252029707610346]]], "count": [100]}, "observation.state": {"min": [0.23859383165836334, -0.13263793289661407, 0.0739818587899208, -1.2591880559921265, -0.9436116814613342, 0.8017645478248596, -0.6265376210212708, -0.35043445229530334, 0.1509724110364914, 3.3367960453033447, -0.647657036781311, -0.5698930621147156], "max": [0.5513259172439575, 0.027052730321884155, 0.13531970977783203, -0.17844614386558533, 0.5625324845314026, 1.403342604637146, -0.4359096586704254, -0.21568821370601654, 0.1808791160583496, 4.547755718231201, 0.060803238302469254, 0.789642870426178], "mean": [0.47769197821617126, -0.0644562616944313, 0.11498202383518219, -0.7712405323982239, -0.10927365720272064, 1.1317932605743408, -0.4947861433029175, -0.2922106087207794, 0.16282780468463898, 3.859058380126953, -0.3559918701648712, 0.29881852865219116], "std": [0.09356668591499329, 0.042405787855386734, 0.01744830422103405, 0.29740262031555176, 0.520643949508667, 0.20166964828968048, 0.037402741611003876, 0.026037558913230896, 0.006650199182331562, 0.44520002603530884, 0.18031874299049377, 0.43953362107276917], "count": [420]}, "action": {"min": [-0.17570756375789642, -0.08864729851484299, 0.09587985277175903, -0.5270460844039917, -0.6004616022109985, -0.5992165803909302, -0.31508854031562805, 0.11006783694028854, -0.12032289803028107, 0.07327359914779663, -0.4433944821357727, -0.5951840877532959, -0.5924169421195984, -0.580917477607727], "max": [-0.10669339448213577, -0.06232314556837082, 0.1392263025045395, 0.5315704345703125, 0.8846191167831421, 0.6499422192573547, 0.5363399386405945, 0.13748276233673096, -0.09212328493595123, 0.09745825827121735, 0.24686913192272186, 0.6315146684646606, 0.937532901763916, 0.5655291080474854], "mean": [-0.1265764832496643, -0.07929040491580963, 0.11415228992700577, -0.02045127935707569, 0.44703713059425354, -0.15805403888225555, 0.23860417306423187, 0.1273203045129776, -0.10236160457134247, 0.09169213473796844, -0.17316460609436035, -0.12209074199199677, 0.4065525233745575, 0.1337631195783615], "std": [0.021405130624771118, 0.007514073513448238, 0.00979412067681551, 0.34366676211357117, 0.5887677073478699, 0.4455280900001526, 0.23361726105213165, 0.006676046177744865, 0.006217700894922018, 0.004751696716994047, 0.25205573439598083, 0.45698338747024536, 0.5563536286354065, 0.4359305500984192], "count": [420]}, "timestamp": {"min": [0.0], "max": [13.966666666666667], "mean": [6.9833333333333325], "std": [4.041440428948661], "count": [420]}, "frame_index": {"min": [0], "max": [419], "mean": [209.5], "std": [121.24321286845984], "count": [420]}, "episode_index": {"min": [273], "max": [273], "mean": [273.0], "std": [0.0], "count": [420]}, "index": {"min": [192868], "max": [193287], "mean": [193077.5], "std": [121.24321286845984], "count": [420]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [420]}}} +{"episode_index": 274, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5077001579520697]], [[0.45834083333333336]], [[0.42586912581699343]]], "std": [[[0.24214104796496125]], [[0.22168274995957635]], [[0.22362730224330363]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5373363671023965]], [[0.4977229466230937]], [[0.4693716693899782]]], "std": [[[0.25861893256477]], [[0.2159296965641436]], [[0.22863509664705564]]], "count": [100]}, "observation.state": {"min": [0.34402456879615784, -0.1684945970773697, 0.08345256000757217, -1.0704671144485474, -0.3384486138820648, 0.5477849841117859, -0.6012302041053772, -0.3119520843029022, 0.14527003467082977, 3.123751163482666, -0.5320625305175781, 0.1913367658853531], "max": [0.5937545895576477, -0.026689760386943817, 0.143770232796669, -0.6093589663505554, 0.4670235514640808, 1.3698217868804932, -0.3792248070240021, -0.23999936878681183, 0.16268698871135712, 4.016191482543945, -0.3406347930431366, 1.2749574184417725], "mean": [0.4974220097064972, -0.1018407866358757, 0.12693151831626892, -0.8641875982284546, 0.008962204679846764, 1.0756101608276367, -0.5018467307090759, -0.2798274755477905, 0.15372218191623688, 3.466665029525757, -0.4329971671104431, 0.8599092960357666], "std": [0.04924928396940231, 0.03082527220249176, 0.01827796921133995, 0.11850210279226303, 0.25298333168029785, 0.187186598777771, 0.07621482759714127, 0.025177326053380966, 0.0059295352548360825, 0.3316022455692291, 0.04110020771622658, 0.4123058617115021], "count": [284]}, "action": {"min": [-0.15983663499355316, -0.10238774865865707, 0.09141482412815094, -0.470467209815979, -0.6580555438995361, -0.6588089466094971, -0.3405219614505768, 0.11727439612150192, -0.10681692510843277, 0.0826692059636116, -0.4035477638244629, -0.5621963143348694, -0.5404254198074341, -0.5648301243782043], "max": [-0.10346807539463043, -0.07310709357261658, 0.13718734681606293, 0.4920184016227722, 0.8622618317604065, 0.7488628029823303, 0.3840731084346771, 0.14287111163139343, -0.08263183385133743, 0.09601687639951706, 0.4951636791229248, 0.670990526676178, 0.7687835693359375, 0.5659719705581665], "mean": [-0.11831221729516983, -0.08930667489767075, 0.1202593669295311, -0.24176259338855743, 0.6380838751792908, -0.4271370470523834, 0.2164798378944397, 0.1312532126903534, -0.093939408659935, 0.0881795734167099, 0.22926226258277893, 0.29266157746315, -0.04794355854392052, -0.25578227639198303], "std": [0.014868734404444695, 0.008497152477502823, 0.012437635101377964, 0.2090819776058197, 0.36890771985054016, 0.32422497868537903, 0.14198730885982513, 0.007576776202768087, 0.00833893846720457, 0.004677177872508764, 0.33269259333610535, 0.47874751687049866, 0.512233555316925, 0.43794772028923035], "count": [284]}, "timestamp": {"min": [0.0], "max": [9.433333333333334], "mean": [4.716666666666667], "std": [2.7327743330826926], "count": [284]}, "frame_index": {"min": [0], "max": [283], "mean": [141.5], "std": [81.98322999248077], "count": [284]}, "episode_index": {"min": [274], "max": [274], "mean": [274.0], "std": [0.0], "count": [284]}, "index": {"min": [193288], "max": [193571], "mean": [193429.5], "std": [81.98322999248077], "count": [284]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [284]}}} +{"episode_index": 275, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5108530582788671]], [[0.4617327178649237]], [[0.4273327614379085]]], "std": [[[0.24168841053005752]], [[0.21954306363445183]], [[0.22339939921395213]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.536914188453159]], [[0.4978739324618736]], [[0.468465288671024]]], "std": [[[0.25791647888309877]], [[0.21393671429644973]], [[0.22847989764105014]]], "count": [100]}, "observation.state": {"min": [0.3855111002922058, -0.15586018562316895, 0.08587662130594254, -1.2935773134231567, -0.5043253302574158, 0.781757116317749, -0.5526233315467834, -0.399921715259552, 0.12677456438541412, 3.2980034351348877, -1.3436833620071411, 0.11281614005565643], "max": [0.5766410231590271, 0.0651489719748497, 0.13762710988521576, -0.10400620847940445, 0.4193374216556549, 1.3675670623779297, -0.4149578809738159, -0.2626964747905731, 0.17956338822841644, 4.540416240692139, -0.3415912389755249, 1.1246377229690552], "mean": [0.507039487361908, -0.054513320326805115, 0.11916748434305191, -0.7109972238540649, -0.02266618236899376, 1.0590660572052002, -0.4747084677219391, -0.3213827311992645, 0.15606866776943207, 4.142775535583496, -0.6856499910354614, 0.3574117124080658], "std": [0.039847955107688904, 0.06508137285709381, 0.014816341921687126, 0.36538031697273254, 0.2818174660205841, 0.18732163310050964, 0.03866933658719063, 0.02839832939207554, 0.012769718654453754, 0.2623366415500641, 0.29671818017959595, 0.21870486438274384], "count": [318]}, "action": {"min": [-0.1387486457824707, -0.09585127979516983, 0.09934171289205551, -0.4584842324256897, -0.6322764754295349, -0.6358925700187683, -0.32512596249580383, 0.11007923632860184, -0.11286425590515137, 0.06755761802196503, -0.611993134021759, -0.5206102728843689, -0.6089653968811035, -0.4558565020561218], "max": [-0.10389545559883118, -0.05268837884068489, 0.13668812811374664, 0.4608682096004486, 0.8577330708503723, 0.6681081652641296, 0.5412898063659668, 0.14956334233283997, -0.07441610842943192, 0.09508591145277023, 0.6841890215873718, 0.3457373380661011, 0.7841899991035461, 0.43338149785995483], "mean": [-0.12087133526802063, -0.07974614948034286, 0.11771532148122787, -0.18400157988071442, 0.5042465329170227, -0.2810262441635132, 0.27012214064598083, 0.13183213770389557, -0.09915482997894287, 0.08469932526350021, -0.2635520398616791, -0.3461804986000061, 0.5317473411560059, 0.19541756808757782], "std": [0.008779897354543209, 0.013403835706412792, 0.010012173093855381, 0.27152568101882935, 0.500726044178009, 0.42916542291641235, 0.22649818658828735, 0.00886601023375988, 0.01108608115464449, 0.008156088180840015, 0.3881940543651581, 0.2781076729297638, 0.4404789209365845, 0.2601841986179352], "count": [318]}, "timestamp": {"min": [0.0], "max": [10.566666666666666], "mean": [5.283333333333333], "std": [3.059941296943577], "count": [318]}, "frame_index": {"min": [0], "max": [317], "mean": [158.5], "std": [91.79823890830731], "count": [318]}, "episode_index": {"min": [275], "max": [275], "mean": [275.0], "std": [0.0], "count": [318]}, "index": {"min": [193572], "max": [193889], "mean": [193730.5], "std": [91.79823890830731], "count": [318]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [318]}}} +{"episode_index": 276, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5262619744008715]], [[0.4780126034858388]], [[0.44403327342047927]]], "std": [[[0.23615894052693992]], [[0.21485907312629793]], [[0.21937654891181374]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5495487037037037]], [[0.5107349346405228]], [[0.48200117647058827]]], "std": [[[0.25093938648609826]], [[0.20801306367281125]], [[0.2230025719049797]]], "count": [100]}, "observation.state": {"min": [0.4066482186317444, -0.13982008397579193, 0.08938179165124893, -1.1157602071762085, -0.6383657455444336, 0.8774935603141785, -0.543549120426178, -0.3702664375305176, 0.13549600541591644, 3.4219300746917725, -1.1838185787200928, 0.09448345750570297], "max": [0.5277484059333801, 0.11207229644060135, 0.1365395188331604, -0.08932791650295258, 0.41906413435935974, 1.3788210153579712, -0.438867449760437, -0.245907261967659, 0.1821455955505371, 4.53873872756958, -0.282154381275177, 1.0310451984405518], "mean": [0.480461448431015, -0.03381797671318054, 0.11847475916147232, -0.6823939085006714, -0.07254332304000854, 1.089634656906128, -0.5008358359336853, -0.2925136387348175, 0.15946176648139954, 3.9676995277404785, -0.6358962059020996, 0.5570842027664185], "std": [0.032055240124464035, 0.07104457914829254, 0.012256031855940819, 0.33528563380241394, 0.31232213973999023, 0.12877684831619263, 0.027030210942029953, 0.03016759268939495, 0.012978398241102695, 0.34286507964134216, 0.2885918915271759, 0.2994220554828644], "count": [231]}, "action": {"min": [-0.13629230856895447, -0.09421706199645996, 0.10201749205589294, -0.46459996700286865, -0.6245817542076111, -0.6272825598716736, -0.3904959261417389, 0.10993552953004837, -0.11453016847372055, 0.07053697854280472, -0.6009585857391357, -0.6000377535820007, -0.596360445022583, -0.5030648112297058], "max": [-0.113546222448349, -0.04903727397322655, 0.1385602355003357, 0.3978150486946106, 0.838860809803009, 0.655535876750946, 0.5533110499382019, 0.1428685486316681, -0.07580690085887909, 0.09946424514055252, 0.5461825132369995, 0.6736920475959778, 0.8024646639823914, 0.43932902812957764], "mean": [-0.1251383125782013, -0.07762257754802704, 0.12083689868450165, -0.21434849500656128, 0.5883691310882568, -0.34740573167800903, 0.261947363615036, 0.12672822177410126, -0.09781228005886078, 0.08846449851989746, -0.18852049112319946, -0.07494904845952988, 0.28461840748786926, 0.04989399015903473], "std": [0.006042886525392532, 0.011892409063875675, 0.009995606727898121, 0.2185235619544983, 0.42028069496154785, 0.3640398383140564, 0.2483062446117401, 0.00773085281252861, 0.011185004375874996, 0.007876121439039707, 0.435687780380249, 0.5017012357711792, 0.5436844825744629, 0.37178581953048706], "count": [231]}, "timestamp": {"min": [0.0], "max": [7.666666666666667], "mean": [3.8333333333333335], "std": [2.222777708350689], "count": [231]}, "frame_index": {"min": [0], "max": [230], "mean": [115.0], "std": [66.68333125052067], "count": [231]}, "episode_index": {"min": [276], "max": [276], "mean": [276.0], "std": [0.0], "count": [231]}, "index": {"min": [193890], "max": [194120], "mean": [194005.0], "std": [66.68333125052067], "count": [231]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [231]}}} +{"episode_index": 277, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5151320944239209]], [[0.46827400658330964]], [[0.43386548617031356]]], "std": [[[0.24335201283779112]], [[0.2201161592068748]], [[0.2250675670759671]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.538494154747245]], [[0.5015382427930914]], [[0.4722651716080958]]], "std": [[[0.2581600673153133]], [[0.2138259568928976]], [[0.22902550822432052]]], "count": [138]}, "observation.state": {"min": [0.3033875524997711, -0.10773211717605591, 0.06000138074159622, -1.1530849933624268, -0.7863430380821228, 0.7556936740875244, -0.5692580938339233, -0.34634140133857727, 0.13897784054279327, 3.155414342880249, -0.7397500276565552, 0.16735097765922546], "max": [0.550306499004364, 0.042158398777246475, 0.13250675797462463, -0.3879263997077942, 0.54067063331604, 1.4024834632873535, -0.4576800465583801, -0.2592675983905792, 0.19518627226352692, 4.542093753814697, -0.22627003490924835, 1.3853482007980347], "mean": [0.453317791223526, -0.056448593735694885, 0.11672284454107285, -0.7355933785438538, -0.13560321927070618, 1.1255342960357666, -0.4946209192276001, -0.291706919670105, 0.17214305698871613, 4.047879695892334, -0.41815510392189026, 0.5428876876831055], "std": [0.04834092780947685, 0.03573722019791603, 0.01810400001704693, 0.21071404218673706, 0.35877880454063416, 0.11375746876001358, 0.030925191938877106, 0.025141652673482895, 0.011966107413172722, 0.4236481785774231, 0.10630063712596893, 0.38033220171928406], "count": [715]}, "action": {"min": [-0.1737351268529892, -0.09711916744709015, 0.07881224900484085, -0.5299638509750366, -0.6104444265365601, -0.6065312623977661, -0.36619654297828674, 0.10854652523994446, -0.12368883937597275, 0.0788457989692688, -0.5249632000923157, -0.5982881188392639, -0.5980771780014038, -0.5206339359283447], "max": [-0.11742521077394485, -0.057113006711006165, 0.13607576489448547, 0.33457815647125244, 0.8758129477500916, 0.6609092354774475, 0.4843071401119232, 0.13752606511116028, -0.08353162556886673, 0.1167878657579422, 0.5521107912063599, 0.6529564261436462, 0.8200764060020447, 0.393886923789978], "mean": [-0.13039834797382355, -0.08083630353212357, 0.11937876045703888, -0.2371169924736023, 0.7424454092979431, -0.4805745482444763, 0.3162783682346344, 0.12280060350894928, -0.10835866630077362, 0.0971241369843483, -0.14672717452049255, -0.22867552936077118, 0.4590586721897125, 0.07425670325756073], "std": [0.011296272277832031, 0.010887610726058483, 0.014073614031076431, 0.15340480208396912, 0.10965544730424881, 0.11373308300971985, 0.11434263736009598, 0.004304203670471907, 0.009862757287919521, 0.008782168850302696, 0.3705781400203705, 0.4824376404285431, 0.4890008568763733, 0.3173852860927582], "count": [715]}, "timestamp": {"min": [0.0], "max": [23.8], "mean": [11.9], "std": [6.880083978815634], "count": [715]}, "frame_index": {"min": [0], "max": [714], "mean": [357.0], "std": [206.402519364469], "count": [715]}, "episode_index": {"min": [277], "max": [277], "mean": [277.0], "std": [0.0], "count": [715]}, "index": {"min": [194121], "max": [194835], "mean": [194478.0], "std": [206.402519364469], "count": [715]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [715]}}} +{"episode_index": 278, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.519882878540305]], [[0.47360436546840956]], [[0.4389371623093682]]], "std": [[[0.22697273882965993]], [[0.20711318329729675]], [[0.21253706986651552]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.544746304466231]], [[0.5077504983660132]], [[0.47851739651416125]]], "std": [[[0.2425808276636335]], [[0.20122851606553263]], [[0.21585933384649325]]], "count": [100]}, "observation.state": {"min": [0.08974587917327881, -0.12205006927251816, 0.08141220360994339, -1.0849357843399048, -0.891143262386322, 0.33728301525115967, -0.5695206522941589, -0.451810747385025, 0.1438142955303192, 3.2805991172790527, -0.8997513651847839, -0.030477730557322502], "max": [0.565118670463562, 0.14886340498924255, 0.14136171340942383, -0.06039069965481758, 0.5524213910102844, 1.4015601873397827, -0.4175141155719757, -0.1620383858680725, 0.189325749874115, 4.541883945465088, -0.15781515836715698, 1.3361676931381226], "mean": [0.4371381402015686, -0.02174469456076622, 0.11797498911619186, -0.6556917428970337, -0.07883340120315552, 0.8258275389671326, -0.481865257024765, -0.26229560375213623, 0.16640348732471466, 4.099226951599121, -0.4179096519947052, 0.48102983832359314], "std": [0.11484447121620178, 0.05616225302219391, 0.018454186618328094, 0.2534947395324707, 0.38577893376350403, 0.3269406855106354, 0.04094579443335533, 0.06178387999534607, 0.01424169261008501, 0.49893516302108765, 0.18966396152973175, 0.5002608895301819], "count": [347]}, "action": {"min": [-0.18929222226142883, -0.09411846846342087, 0.09253259003162384, -0.5231320858001709, -0.6198646426200867, -0.6524903178215027, -0.6423473358154297, 0.11223108321428299, -0.1167108565568924, 0.06355743110179901, -0.5176973342895508, -0.6196226477622986, -0.6171150207519531, -0.5062630772590637], "max": [-0.10876509547233582, -0.04695875942707062, 0.13886849582195282, 0.5418853759765625, 0.8804071545600891, 0.7425834536552429, 0.6744931936264038, 0.13973203301429749, -0.08390725404024124, 0.11995266377925873, 0.5283888578414917, 0.7003563642501831, 0.8649311065673828, 0.45314890146255493], "mean": [-0.13083471357822418, -0.07609157264232635, 0.12299767136573792, 0.032127201557159424, 0.18278749287128448, 0.01926584541797638, 0.05246465653181076, 0.12640607357025146, -0.10133107006549835, 0.09742546826601028, -0.09945680946111679, -0.03856028616428375, 0.3856620788574219, -0.009988668374717236], "std": [0.022593999281525612, 0.010302120819687843, 0.012707879766821861, 0.29185423254966736, 0.6114204525947571, 0.5843321681022644, 0.40246111154556274, 0.0066751157864928246, 0.009884292259812355, 0.013609497807919979, 0.3954046964645386, 0.5048601627349854, 0.5676591992378235, 0.3260691165924072], "count": [347]}, "timestamp": {"min": [0.0], "max": [11.533333333333333], "mean": [5.766666666666667], "std": [3.3389951915043077], "count": [347]}, "frame_index": {"min": [0], "max": [346], "mean": [173.0], "std": [100.16985574512923], "count": [347]}, "episode_index": {"min": [278], "max": [278], "mean": [278.0], "std": [0.0], "count": [347]}, "index": {"min": [194836], "max": [195182], "mean": [195009.0], "std": [100.16985574512923], "count": [347]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [347]}}} +{"episode_index": 279, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6280873665577342]], [[0.5758518981481482]], [[0.5365974863834423]]], "std": [[[0.26454730498992257]], [[0.26625517321389036]], [[0.2723015176502998]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6473854112200437]], [[0.6023623120915033]], [[0.5677665005446623]]], "std": [[[0.22845073453968615]], [[0.22550521081907546]], [[0.2363116404858937]]], "count": [100]}, "observation.state": {"min": [0.04995064064860344, -0.1285448968410492, 0.09177214652299881, -0.837291955947876, -0.28447720408439636, 0.988472580909729, -0.5791122913360596, -0.35359305143356323, 0.14927297830581665, 2.9438371658325195, -0.7562830448150635, 0.10098978877067566], "max": [0.45427432656288147, -0.047332629561424255, 0.13610008358955383, -0.43762290477752686, 0.5274168848991394, 1.3890330791473389, -0.48128071427345276, -0.22483192384243011, 0.1759013682603836, 4.315628528594971, -0.07897590100765228, 1.400145411491394], "mean": [0.35857367515563965, -0.08491449803113937, 0.1221502497792244, -0.6571119427680969, 0.27102142572402954, 1.115361213684082, -0.5422770977020264, -0.27205222845077515, 0.1599637120962143, 3.3524467945098877, -0.4106041491031647, 1.0262582302093506], "std": [0.1016145870089531, 0.017926441505551338, 0.015192913822829723, 0.1337498426437378, 0.21902073919773102, 0.0962076336145401, 0.03445020318031311, 0.04659139737486839, 0.008162182755768299, 0.45005449652671814, 0.17178978025913239, 0.46109941601753235], "count": [190]}, "action": {"min": [-0.1934690773487091, -0.09496498107910156, 0.10810974985361099, -0.49737316370010376, 0.5925470590591431, -0.6171114444732666, 0.261819452047348, 0.11738866567611694, -0.11606498062610626, 0.0839216560125351, -0.5715426802635193, -0.5958718657493591, -0.5980831384658813, -0.5846377015113831], "max": [-0.12031356245279312, -0.07329097390174866, 0.13834866881370544, -0.07942075282335281, 0.8135344982147217, -0.31614628434181213, 0.4341282844543457, 0.12751494348049164, -0.08519454300403595, 0.09729360044002533, 0.5291509032249451, 0.7245813608169556, 0.7980555891990662, 0.5926583409309387], "mean": [-0.13963505625724792, -0.08711381256580353, 0.12659984827041626, -0.37650981545448303, 0.6583647131919861, -0.5315353870391846, 0.3443088233470917, 0.12358138710260391, -0.09612788259983063, 0.09016460925340652, 0.002150796353816986, 0.06858846545219421, 0.1153695285320282, -0.041426025331020355], "std": [0.01893583871424198, 0.005936502479016781, 0.010400108993053436, 0.1103503406047821, 0.058674417436122894, 0.06688627600669861, 0.06020158529281616, 0.0023996958043426275, 0.011777563020586967, 0.0030628391541540623, 0.45414212346076965, 0.5651571750640869, 0.43668296933174133, 0.513736367225647], "count": [190]}, "timestamp": {"min": [0.0], "max": [6.3], "mean": [3.15], "std": [1.8282505298782221], "count": [190]}, "frame_index": {"min": [0], "max": [189], "mean": [94.5], "std": [54.847515896346664], "count": [190]}, "episode_index": {"min": [279], "max": [279], "mean": [279.0], "std": [0.0], "count": [190]}, "index": {"min": [195183], "max": [195372], "mean": [195277.5], "std": [54.847515896346664], "count": [190]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [190]}}} +{"episode_index": 280, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39743824891067536]], [[0.3608990822440087]], [[0.31661976307189543]]], "std": [[[0.23750838478091976]], [[0.23534537281349252]], [[0.23378659330877039]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3954853376906318]], [[0.3766610648148148]], [[0.332469825708061]]], "std": [[[0.21736233060276822]], [[0.20991346410751993]], [[0.21625027484336673]]], "count": [100]}, "observation.state": {"min": [0.31774410605430603, -0.11522316932678223, 0.07197391241788864, -1.9320831298828125, -0.5745564699172974, -0.6205617189407349, -0.6475666165351868, -0.37717828154563904, 0.14229245483875275, 3.1168313026428223, -1.2815136909484863, -0.5790941715240479], "max": [0.5309687852859497, 0.07163607329130173, 0.1317976862192154, -0.06689108908176422, 0.9053534269332886, 1.397874116897583, -0.49366024136543274, -0.21523256599903107, 0.19210369884967804, 4.540416240692139, -0.2956813871860504, 1.3054190874099731], "mean": [0.4146183133125305, -0.06112612783908844, 0.10735402256250381, -0.7330344319343567, 0.30953139066696167, 0.9986791610717773, -0.588999330997467, -0.318682998418808, 0.1642809361219406, 3.8372435569763184, -0.5569328665733337, 0.596085786819458], "std": [0.05536322668194771, 0.04559837654232979, 0.016340313479304314, 0.4204948842525482, 0.4161643981933594, 0.5289775729179382, 0.04303216189146042, 0.035744454711675644, 0.010864813812077045, 0.5304825901985168, 0.2721961438655853, 0.5839937925338745], "count": [319]}, "action": {"min": [-0.163284033536911, -0.09698624908924103, 0.09642982482910156, -0.5767513513565063, -0.5787733197212219, -0.5845823287963867, -0.5041316747665405, 0.10087908804416656, -0.12180592864751816, 0.059205714613199234, -0.6120405197143555, -0.5808035731315613, -0.5788895487785339, -0.5472717881202698], "max": [-0.11743051558732986, -0.05133870989084244, 0.13115020096302032, 0.636046826839447, 0.8734689354896545, 0.9648721814155579, 0.5601077079772949, 0.13465231657028198, -0.08374159038066864, 0.09791756421327591, 0.5842803716659546, 0.6822140216827393, 0.8080208897590637, 0.5379194021224976], "mean": [-0.13751503825187683, -0.07494419813156128, 0.11412915587425232, -0.07235895097255707, 0.3204764425754547, -0.04369476065039635, 0.17744660377502441, 0.11499489843845367, -0.1012229174375534, 0.08282367885112762, -0.027676375582814217, 0.08556675165891647, 0.2288777232170105, -0.05667567998170853], "std": [0.01171555370092392, 0.01115529052913189, 0.010875312611460686, 0.4436876177787781, 0.5206436514854431, 0.5535390377044678, 0.2903938889503479, 0.005734683014452457, 0.011165359988808632, 0.007151516620069742, 0.4751248359680176, 0.518394410610199, 0.5178135633468628, 0.41678279638290405], "count": [319]}, "timestamp": {"min": [0.0], "max": [10.6], "mean": [5.3], "std": [3.0695638488590236], "count": [319]}, "frame_index": {"min": [0], "max": [318], "mean": [159.0], "std": [92.0869154657707], "count": [319]}, "episode_index": {"min": [280], "max": [280], "mean": [280.0], "std": [0.0], "count": [319]}, "index": {"min": [195373], "max": [195691], "mean": [195532.0], "std": [92.0869154657707], "count": [319]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [319]}}} +{"episode_index": 281, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39841363289760345]], [[0.3622036328976035]], [[0.3173619607843137]]], "std": [[[0.23407821441392346]], [[0.23299054316720771]], [[0.23146181375024832]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39437448529411767]], [[0.37700493191721135]], [[0.3319053104575163]]], "std": [[[0.2144876447099249]], [[0.2073754961736423]], [[0.21385863092420643]]], "count": [100]}, "observation.state": {"min": [0.3132880926132202, -0.07121904194355011, 0.08772642910480499, -1.3132880926132202, -0.40157467126846313, 0.672824501991272, -0.6692597270011902, -0.43262749910354614, 0.12797492742538452, 2.6758532524108887, -1.2791908979415894, -0.10679926723241806], "max": [0.463533878326416, 0.041849490255117416, 0.13075807690620422, -0.23673994839191437, 0.8046523332595825, 1.399460792541504, -0.4987109303474426, -0.28360190987586975, 0.18736834824085236, 4.542513370513916, -0.3735641837120056, 1.3978248834609985], "mean": [0.4086720645427704, -0.03168769180774689, 0.10795300453901291, -0.6859811544418335, 0.25762197375297546, 1.0702906847000122, -0.6137542128562927, -0.32331982254981995, 0.16516943275928497, 3.5782299041748047, -0.6020895838737488, 0.8498506546020508], "std": [0.04099903628230095, 0.03108731284737587, 0.011644980870187283, 0.23262251913547516, 0.411104679107666, 0.18310017883777618, 0.04719267040491104, 0.036615435034036636, 0.013599890284240246, 0.5789366364479065, 0.2511955499649048, 0.5211195349693298], "count": [270]}, "action": {"min": [-0.15648432075977325, -0.08607317507266998, 0.10482427477836609, -0.49257534742355347, -0.6107075214385986, -0.6064462065696716, -0.40219250321388245, 0.09960717707872391, -0.1186918243765831, 0.06045817956328392, -0.6132921576499939, -0.5111711025238037, -0.5619880557060242, -0.6012119054794312], "max": [-0.12888507544994354, -0.05631636828184128, 0.1384500414133072, 0.5646394491195679, 0.8185504674911499, 0.710055947303772, 0.48789575695991516, 0.14604511857032776, -0.0819639340043068, 0.09557421505451202, 0.6819532513618469, 0.6310805678367615, 0.8376858830451965, 0.619784951210022], "mean": [-0.1384892463684082, -0.07219534367322922, 0.11762639135122299, 0.11292382329702377, 0.10148807615041733, 0.08192414790391922, 0.08448321372270584, 0.11204952746629715, -0.10047577321529388, 0.08209919184446335, 0.13121934235095978, 0.17165686190128326, 0.09129001945257187, -0.20138034224510193], "std": [0.006394476629793644, 0.0069427150301635265, 0.009523213841021061, 0.4060252010822296, 0.632792055606842, 0.5349374413490295, 0.33415457606315613, 0.01127663068473339, 0.009798510931432247, 0.0073938830755651, 0.4966994524002075, 0.49445316195487976, 0.49119833111763, 0.41467738151550293], "count": [270]}, "timestamp": {"min": [0.0], "max": [8.966666666666667], "mean": [4.483333333333333], "std": [2.5980583918394538], "count": [270]}, "frame_index": {"min": [0], "max": [269], "mean": [134.5], "std": [77.9417517551836], "count": [270]}, "episode_index": {"min": [281], "max": [281], "mean": [281.0], "std": [0.0], "count": [270]}, "index": {"min": [195692], "max": [195961], "mean": [195826.5], "std": [77.9417517551836], "count": [270]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [270]}}} +{"episode_index": 282, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42044343954248364]], [[0.382105727124183]], [[0.33690290032679737]]], "std": [[[0.23916830462986916]], [[0.23489287423766952]], [[0.2340475583946855]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42794032135076254]], [[0.4048660947712418]], [[0.3600051279956427]]], "std": [[[0.2192270419564637]], [[0.20870450566245938]], [[0.21722601867637314]]], "count": [100]}, "observation.state": {"min": [0.15106438100337982, -0.0972137600183487, 0.07336872071027756, -0.9618477821350098, -0.5040520429611206, 0.7093241810798645, -0.5893062949180603, -0.4299863278865814, 0.1561005413532257, 3.2216763496398926, -0.8028760552406311, -0.3878689706325531], "max": [0.5336176753044128, 0.06836163252592087, 0.1391087770462036, -0.10400620847940445, 0.5688177347183228, 1.403099775314331, -0.42232537269592285, -0.27505284547805786, 0.1922009140253067, 4.540835857391357, -0.04399694874882698, 1.0110914707183838], "mean": [0.4127839207649231, -0.030667336657643318, 0.11187263578176498, -0.46968382596969604, -0.006994277238845825, 1.1340389251708984, -0.5189505219459534, -0.3131760060787201, 0.171675443649292, 4.035003185272217, -0.4424172043800354, 0.23265904188156128], "std": [0.12628129124641418, 0.05291932821273804, 0.019267240539193153, 0.23881365358829498, 0.3110101521015167, 0.1937784105539322, 0.044841468334198, 0.032450586557388306, 0.009228305891156197, 0.4414816200733185, 0.22071002423763275, 0.4538808763027191], "count": [397]}, "action": {"min": [-0.1820429265499115, -0.09308731555938721, 0.10164782404899597, -0.46966642141342163, -0.6094195246696472, -0.613953173160553, -0.2794969975948334, 0.10671521723270416, -0.13822247087955475, 0.08097391575574875, -0.5064560174942017, -0.6045403480529785, -0.485575407743454, -0.5932738184928894], "max": [-0.10691501945257187, -0.05402809754014015, 0.13239608705043793, 0.5137863159179688, 0.8026314973831177, 0.6231281757354736, 0.6207823753356934, 0.13496935367584229, -0.09642782062292099, 0.10509773343801498, 0.47388437390327454, 0.6484329104423523, 0.9012660384178162, 0.5943273901939392], "mean": [-0.13574668765068054, -0.07532491534948349, 0.11855097115039825, -0.18802323937416077, 0.5391094088554382, -0.28980809450149536, 0.381376713514328, 0.11978739500045776, -0.10931035131216049, 0.09209948778152466, -0.21854956448078156, -0.16997455060482025, 0.5359369516372681, 0.13892711699008942], "std": [0.02436400204896927, 0.01091755460947752, 0.008474690839648247, 0.2800678014755249, 0.4256950914859772, 0.35563015937805176, 0.2417530119419098, 0.008056006394326687, 0.00923584308475256, 0.0048964801244437695, 0.2956679165363312, 0.41024988889694214, 0.473690390586853, 0.36974117159843445], "count": [397]}, "timestamp": {"min": [0.0], "max": [13.2], "mean": [6.6], "std": [3.820122162095518], "count": [397]}, "frame_index": {"min": [0], "max": [396], "mean": [198.0], "std": [114.60366486286553], "count": [397]}, "episode_index": {"min": [282], "max": [282], "mean": [282.0], "std": [0.0], "count": [397]}, "index": {"min": [195962], "max": [196358], "mean": [196160.0], "std": [114.60366486286553], "count": [397]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [397]}}} +{"episode_index": 283, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4264570452069717]], [[0.3878962391067538]], [[0.34318949074074073]]], "std": [[[0.2367659983033031]], [[0.23279804124163958]], [[0.2321131123144682]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4395284831154684]], [[0.41500643790849673]], [[0.3714853077342048]]], "std": [[[0.21676917387734518]], [[0.2068462917059162]], [[0.21554727387365727]]], "count": [100]}, "observation.state": {"min": [0.29572659730911255, -0.1232934296131134, 0.07924479991197586, -1.0388039350509644, -0.5625324845314026, 0.6557456851005554, -0.6564322710037231, -0.4458024799823761, 0.1539098173379898, 3.572906970977783, -0.7560097575187683, -0.4331163167953491], "max": [0.5288218855857849, -0.005737990140914917, 0.14731816947460175, -0.1948019564151764, 0.5537877082824707, 1.3988986015319824, -0.4299168288707733, -0.2415207475423813, 0.1830296665430069, 4.544190883636475, -0.04536331817507744, 0.5540681481361389], "mean": [0.4390849173069, -0.06824633479118347, 0.11087972670793533, -0.6528036594390869, 0.021032659336924553, 1.1715151071548462, -0.5060915946960449, -0.32469335198402405, 0.16695581376552582, 4.076595783233643, -0.47263696789741516, 0.16233587265014648], "std": [0.0768686830997467, 0.04109717532992363, 0.023460902273654938, 0.23156870901584625, 0.36345773935317993, 0.21123260259628296, 0.05138770118355751, 0.0356576070189476, 0.0064804693683981895, 0.39295494556427, 0.18930217623710632, 0.34463807940483093], "count": [307]}, "action": {"min": [-0.16484029591083527, -0.10262255370616913, 0.09941453486680984, -0.5175791382789612, -0.599237322807312, -0.6029459238052368, -0.21510033309459686, 0.10637867450714111, -0.12079369276762009, 0.06441359966993332, -0.49688729643821716, -0.5164492726325989, 0.5942829847335815, 0.14958776533603668], "max": [-0.11296811699867249, -0.06173458322882652, 0.1363801509141922, 0.5168761014938354, 0.8681842684745789, 0.6197731494903564, 0.5995855331420898, 0.13575923442840576, -0.09132612496614456, 0.10155777633190155, -0.21793566644191742, -0.14352265000343323, 0.9368067979812622, 0.5301051735877991], "mean": [-0.1329062283039093, -0.07913019508123398, 0.11385391652584076, -0.18652285635471344, 0.5607892274856567, -0.2871811091899872, 0.2971835434436798, 0.12405861169099808, -0.10750950127840042, 0.0892874076962471, -0.3519110381603241, -0.4021841883659363, 0.7299906611442566, 0.3636942207813263], "std": [0.019536521285772324, 0.013779699802398682, 0.012158711440861225, 0.29604268074035645, 0.4588976800441742, 0.37032192945480347, 0.2111091911792755, 0.007078526075929403, 0.0066772568970918655, 0.007433348335325718, 0.07252918928861618, 0.10022915154695511, 0.11993487924337387, 0.13984210789203644], "count": [307]}, "timestamp": {"min": [0.0], "max": [10.2], "mean": [5.1], "std": [2.9540932054806035], "count": [307]}, "frame_index": {"min": [0], "max": [306], "mean": [153.0], "std": [88.6227961644181], "count": [307]}, "episode_index": {"min": [283], "max": [283], "mean": [283.0], "std": [0.0], "count": [307]}, "index": {"min": [196359], "max": [196665], "mean": [196512.0], "std": [88.6227961644181], "count": [307]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [307]}}} +{"episode_index": 284, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4290813071895425]], [[0.3942187826797386]], [[0.3509725925925926]]], "std": [[[0.24845330687177175]], [[0.2421550346188976]], [[0.24121418041940088]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43531276960784315]], [[0.4162194144880174]], [[0.37406925381263617]]], "std": [[[0.23179335626177042]], [[0.21829423662999511]], [[0.2267758942067531]]], "count": [100]}, "observation.state": {"min": [0.3294595181941986, -0.08019285649061203, 0.08362367004156113, -0.9966562986373901, -0.14620104432106018, 0.7248591184616089, -0.6900879740715027, -0.399651437997818, 0.1561964601278305, 4.073436737060547, -0.9295381307601929, -0.3192601799964905], "max": [0.5313008427619934, -0.022704830393195152, 0.13644230365753174, -0.5697275996208191, 0.6559918522834778, 1.400173306465149, -0.49603113532066345, -0.2708902955055237, 0.180230975151062, 4.540206432342529, -0.293905109167099, 0.2361675649881363], "mean": [0.4222733676433563, -0.05526077747344971, 0.10562358051538467, -0.7660298347473145, 0.23103050887584686, 1.083043098449707, -0.5805274844169617, -0.3101249635219574, 0.16715553402900696, 4.3008551597595215, -0.6517938375473022, 0.014360230416059494], "std": [0.07259851694107056, 0.017096150666475296, 0.01685798354446888, 0.13132698833942413, 0.30508163571357727, 0.257243812084198, 0.05199110507965088, 0.0373590886592865, 0.006991015747189522, 0.20436914265155792, 0.13781116902828217, 0.1671312004327774], "count": [200]}, "action": {"min": [-0.15844810009002686, -0.08916520327329636, 0.1013098731637001, -0.4576914310455322, -0.6079646944999695, -0.6036428809165955, -0.3121274411678314, 0.09719409793615341, -0.11451979726552963, 0.06839404255151749, -0.5637574791908264, -0.47082263231277466, 0.6487122774124146, 0.16631002724170685], "max": [-0.11508218944072723, -0.06361810863018036, 0.1346748173236847, 0.5496900677680969, 0.8111233711242676, 0.6476829051971436, 0.3947097957134247, 0.12622734904289246, -0.09108752012252808, 0.0991605669260025, -0.3179582357406616, -0.24719500541687012, 0.8890881538391113, 0.4319092035293579], "mean": [-0.136777862906456, -0.07345585525035858, 0.11287853121757507, 0.018422286957502365, 0.25442400574684143, -0.04451855272054672, 0.10680614411830902, 0.11290931701660156, -0.10215265303850174, 0.08417163789272308, -0.4639057517051697, -0.3421906530857086, 0.7335827350616455, 0.32829296588897705], "std": [0.017191102728247643, 0.0066076116636395454, 0.009527643211185932, 0.4030040204524994, 0.6190062165260315, 0.5398625135421753, 0.2907007038593292, 0.007119002286344767, 0.008327212184667587, 0.007412601727992296, 0.06610365957021713, 0.060307882726192474, 0.06780581176280975, 0.09577453881502151], "count": [200]}, "timestamp": {"min": [0.0], "max": [6.633333333333334], "mean": [3.3166666666666664], "std": [1.9244768408871828], "count": [200]}, "frame_index": {"min": [0], "max": [199], "mean": [99.5], "std": [57.73430522661548], "count": [200]}, "episode_index": {"min": [284], "max": [284], "mean": [284.0], "std": [0.0], "count": [200]}, "index": {"min": [196666], "max": [196865], "mean": [196765.5], "std": [57.73430522661548], "count": [200]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [200]}}} +{"episode_index": 285, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41761470588235294]], [[0.37971161220043576]], [[0.33587686274509804]]], "std": [[[0.2474122659861381]], [[0.24272000530514196]], [[0.2416677772444309]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42752083605664487]], [[0.40475070533769064]], [[0.36073230664488015]]], "std": [[[0.22858891511823523]], [[0.217311279466356]], [[0.22591987738223518]]], "count": [100]}, "observation.state": {"min": [0.2529890239238739, -0.11902275681495667, 0.08862735331058502, -1.3667590618133545, -0.49407759308815, 0.5054950714111328, -0.7194111943244934, -0.4219701290130615, 0.15263685584068298, 3.622393846511841, -1.0141160488128662, -0.6204191446304321], "max": [0.5363515019416809, -0.02063513919711113, 0.13876913487911224, -0.34808531403541565, 0.6480669379234314, 1.3941847085952759, -0.3876039683818817, -0.26372361183166504, 0.19038869440555573, 4.542303562164307, 0.07405698299407959, 0.34434401988983154], "mean": [0.414867639541626, -0.07046669721603394, 0.11466272175312042, -0.7881006598472595, -0.016929814592003822, 1.0770244598388672, -0.5086928009986877, -0.3195587396621704, 0.16945064067840576, 4.017341613769531, -0.5804364085197449, -0.0538155771791935], "std": [0.10652349889278412, 0.02707277238368988, 0.01955058053135872, 0.2950250804424286, 0.43894121050834656, 0.32416433095932007, 0.0875130295753479, 0.04085639864206314, 0.010708031244575977, 0.35522550344467163, 0.2666073739528656, 0.25136876106262207], "count": [303]}, "action": {"min": [-0.16963617503643036, -0.0925576314330101, 0.10534689575433731, -0.4348796606063843, -0.602125883102417, -0.6050055623054504, -0.3344259262084961, 0.08714224398136139, -0.1282818615436554, 0.06772647053003311, -0.6008542776107788, -0.4967265725135803, -0.6007661819458008, -0.17162099480628967], "max": [-0.10758901387453079, -0.07074170559644699, 0.13587132096290588, 0.5470033884048462, 0.8530781865119934, 0.6963720321655273, 0.48300644755363464, 0.13813510537147522, -0.09156295657157898, 0.10781591385602951, 0.6059838533401489, 0.5043889284133911, 0.966620147228241, 0.5879290699958801], "mean": [-0.13491111993789673, -0.08177077770233154, 0.11715756356716156, 0.02669055573642254, 0.40248849987983704, -0.08420098572969437, 0.22825242578983307, 0.12239569425582886, -0.10728129744529724, 0.09064996242523193, -0.29952436685562134, -0.2678503096103668, 0.7302859425544739, 0.42472386360168457], "std": [0.02395983226597309, 0.00784983579069376, 0.010693397372961044, 0.33612382411956787, 0.5893728137016296, 0.5001803040504456, 0.25996506214141846, 0.014156642369925976, 0.00925944373011589, 0.010239820927381516, 0.16904433071613312, 0.13382989168167114, 0.21261902153491974, 0.18204420804977417], "count": [303]}, "timestamp": {"min": [0.0], "max": [10.066666666666666], "mean": [5.033333333333333], "std": [2.9156029806440964], "count": [303]}, "frame_index": {"min": [0], "max": [302], "mean": [151.0], "std": [87.46808941932291], "count": [303]}, "episode_index": {"min": [285], "max": [285], "mean": [285.0], "std": [0.0], "count": [303]}, "index": {"min": [196866], "max": [197168], "mean": [197017.0], "std": [87.46808941932291], "count": [303]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [303]}}} +{"episode_index": 286, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4127277096949891]], [[0.373595258714597]], [[0.32914028594771244]]], "std": [[[0.23818257580340216]], [[0.2355640036131856]], [[0.23485590061384284]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4200394090413943]], [[0.39560665305010895]], [[0.35152093137254903]]], "std": [[[0.22071671425179834]], [[0.21124183987300638]], [[0.21955677474773191]]], "count": [100]}, "observation.state": {"min": [0.14049196243286133, -0.20906981825828552, 0.08238440752029419, -0.9075380563735962, -0.22230759263038635, 0.17578785121440887, -0.6073852181434631, -0.39032235741615295, 0.13615581393241882, 3.0432300567626953, -0.8807588815689087, -0.017546089366078377], "max": [0.5903797745704651, 0.07738178223371506, 0.1403428465127945, -0.28392016887664795, 0.5209949612617493, 1.1324247121810913, -0.49986159801483154, -0.26976278424263, 0.16926825046539307, 4.424038410186768, -0.5275535583496094, 1.3977946043014526], "mean": [0.4518379867076874, -0.07545500248670578, 0.1194073036313057, -0.6009419560432434, 0.16845597326755524, 0.8444854617118835, -0.555578887462616, -0.3337515890598297, 0.15416401624679565, 3.459104299545288, -0.6909067630767822, 0.9718765616416931], "std": [0.0907304510474205, 0.06623735278844833, 0.014373967424035072, 0.1505805402994156, 0.22417353093624115, 0.18644869327545166, 0.02582651935517788, 0.03965403512120247, 0.008239476941525936, 0.35904866456985474, 0.12119916826486588, 0.395216703414917], "count": [292]}, "action": {"min": [-0.18119417130947113, -0.10051416605710983, 0.09786669164896011, -0.39746221899986267, -0.6073430776596069, -0.6038578748703003, -0.5749902725219727, 0.11784090846776962, -0.11128375679254532, 0.06894303113222122, -0.5140447020530701, -0.55241459608078, -0.5508365631103516, -0.5523991584777832], "max": [-0.1078663095831871, -0.04959206283092499, 0.1349637359380722, 0.448125422000885, 0.8223671913146973, 0.8231672644615173, 0.5092950463294983, 0.13927003741264343, -0.086025670170784, 0.08882985264062881, 0.6125535368919373, 0.6510135531425476, 0.7903711795806885, 0.5121287703514099], "mean": [-0.1276242733001709, -0.08251381665468216, 0.11971911042928696, -0.0013874255819246173, 0.20836061239242554, -0.02171028032898903, 0.04592624679207802, 0.1254168152809143, -0.09557325392961502, 0.08039600402116776, 0.3557145893573761, 0.35390153527259827, -0.1841629594564438, -0.3342243432998657], "std": [0.0166640505194664, 0.01268291100859642, 0.00922506581991911, 0.3266200125217438, 0.5793870091438293, 0.5864449143409729, 0.4095311164855957, 0.00523083470761776, 0.007060503587126732, 0.006597645115107298, 0.3804054856300354, 0.39094704389572144, 0.4334180951118469, 0.34234437346458435], "count": [292]}, "timestamp": {"min": [0.0], "max": [9.7], "mean": [4.8500000000000005], "std": [2.8097548331166227], "count": [292]}, "frame_index": {"min": [0], "max": [291], "mean": [145.5], "std": [84.2926449934987], "count": [292]}, "episode_index": {"min": [286], "max": [286], "mean": [286.0], "std": [0.0], "count": [292]}, "index": {"min": [197169], "max": [197460], "mean": [197314.5], "std": [84.2926449934987], "count": [292]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [292]}}} +{"episode_index": 287, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42994641339869283]], [[0.38967571623093683]], [[0.34427734477124183]]], "std": [[[0.22991507569799266]], [[0.22908943329496967]], [[0.22944094924199263]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43737348039215684]], [[0.4118102096949891]], [[0.367103779956427]]], "std": [[[0.20967035909617482]], [[0.20298322444208017]], [[0.21202218811423015]]], "count": [100]}, "observation.state": {"min": [0.32172906398773193, -0.14886340498924255, 0.08074849843978882, -0.9616380929946899, -0.5026856660842896, 0.1233917623758316, -0.6357508301734924, -0.3634626865386963, 0.14648595452308655, 3.064199209213257, -0.8826717734336853, -0.05754677951335907], "max": [0.51334547996521, 0.07562872022390366, 0.1306336224079132, -0.29629188776016235, 0.6001074910163879, 1.3764927387237549, -0.49927467107772827, -0.2958965003490448, 0.17557859420776367, 4.514834403991699, -0.4816436469554901, 1.3724796772003174], "mean": [0.43059584498405457, -0.061783529818058014, 0.1091492548584938, -0.6963177919387817, 0.27030715346336365, 0.8903603553771973, -0.5870293974876404, -0.3332434892654419, 0.15792712569236755, 3.4395358562469482, -0.6436123847961426, 0.9443815350532532], "std": [0.05528948828577995, 0.061670441180467606, 0.016322238370776176, 0.20084449648857117, 0.27807527780532837, 0.3605964183807373, 0.04418626427650452, 0.017336856573820114, 0.009251905605196953, 0.3839179575443268, 0.09158383309841156, 0.413566917181015], "count": [248]}, "action": {"min": [-0.16056576371192932, -0.09377776086330414, 0.09726149588823318, -0.5455484390258789, -0.6118476986885071, -0.6041818857192993, -0.502625584602356, 0.10463991016149521, -0.1136186346411705, 0.07311993092298508, -0.5204958319664001, -0.5533437132835388, -0.5520815253257751, -0.5444568395614624], "max": [-0.1140136867761612, -0.04608842730522156, 0.13145209848880768, 0.3345817029476166, 0.8384581804275513, 0.8353634476661682, 0.5064674019813538, 0.12894780933856964, -0.08843224495649338, 0.09317994862794876, 0.5773757100105286, 0.5974488258361816, 0.8076780438423157, 0.5598514676094055], "mean": [-0.1344098448753357, -0.07566873729228973, 0.11466079950332642, -0.21421916782855988, 0.40128031373023987, -0.182126984000206, 0.1095423474907875, 0.11992079019546509, -0.09746631234884262, 0.08032666146755219, 0.20827268064022064, 0.23723162710666656, -0.03540046885609627, -0.20573212206363678], "std": [0.013865688815712929, 0.012523381039500237, 0.009571398608386517, 0.3199707865715027, 0.45170894265174866, 0.5630456209182739, 0.352805495262146, 0.0051830122247338295, 0.007878728210926056, 0.00616026297211647, 0.46362483501434326, 0.47530055046081543, 0.4649128317832947, 0.4469476342201233], "count": [248]}, "timestamp": {"min": [0.0], "max": [8.233333333333333], "mean": [4.116666666666667], "std": [2.386361712360937], "count": [248]}, "frame_index": {"min": [0], "max": [247], "mean": [123.5], "std": [71.5908513708281], "count": [248]}, "episode_index": {"min": [287], "max": [287], "mean": [287.0], "std": [0.0], "count": [248]}, "index": {"min": [197461], "max": [197708], "mean": [197584.5], "std": [71.5908513708281], "count": [248]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [248]}}} +{"episode_index": 288, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3989333469498911]], [[0.3624651195854159]], [[0.3182207944860951]]], "std": [[[0.2454495117604612]], [[0.24259393493284304]], [[0.24182702506815834]]], "count": [136]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40325104126617967]], [[0.38410330561963346]], [[0.3394917900166603]]], "std": [[[0.22531796548673444]], [[0.21703242573626408]], [[0.22505914082452375]]], "count": [136]}, "observation.state": {"min": [0.1905893236398697, -0.13492387533187866, 0.06284543871879578, -1.1264543533325195, -0.8968819975852966, 0.582465648651123, -0.5913065075874329, -0.40135815739631653, 0.1427694857120514, 3.5588576793670654, -1.2774146795272827, -0.6279611587524414], "max": [0.5400043725967407, 0.043370869010686874, 0.12713623046875, 0.1570577770471573, 0.6748476624488831, 1.401250958442688, -0.4543052017688751, -0.2741338610649109, 0.18009746074676514, 4.5389485359191895, -0.47932085394859314, 0.5860849618911743], "mean": [0.4506337642669678, -0.057696353644132614, 0.10851594060659409, -0.44009795784950256, -0.036969635635614395, 1.1217563152313232, -0.5532819628715515, -0.3398352265357971, 0.16334648430347443, 4.111716270446777, -0.7584205865859985, 0.12389052659273148], "std": [0.058206137269735336, 0.046892739832401276, 0.016118617728352547, 0.3157643973827362, 0.4853224754333496, 0.21862629055976868, 0.02537551149725914, 0.02304631657898426, 0.009267868474125862, 0.36607757210731506, 0.28284379839897156, 0.3223353326320648], "count": [703]}, "action": {"min": [-0.17975392937660217, -0.09067589044570923, 0.08622957766056061, -0.5349818468093872, -0.5865146517753601, -0.5915998816490173, -0.5484665632247925, 0.10783946514129639, -0.11409302055835724, 0.06797390431165695, -0.6039950847625732, -0.5253978967666626, -0.606908917427063, -0.48760542273521423], "max": [-0.116847462952137, -0.05176987126469612, 0.1280062347650528, 0.5589184761047363, 0.8649376630783081, 0.6593858003616333, 0.6023949980735779, 0.13734421133995056, -0.0844704806804657, 0.08988174051046371, 0.6354003548622131, 0.2570636570453644, 0.8108327388763428, 0.5389723777770996], "mean": [-0.13332265615463257, -0.07616383582353592, 0.11267197132110596, -0.19049015641212463, 0.5249506235122681, -0.22084753215312958, 0.32883334159851074, 0.11903293430805206, -0.10296179354190826, 0.08125043660402298, -0.25301337242126465, -0.2823566198348999, 0.4614184498786926, 0.2514707148075104], "std": [0.01091268751770258, 0.01136882696300745, 0.010874609462916851, 0.29124170541763306, 0.4471021890640259, 0.39294350147247314, 0.3034941852092743, 0.005744106136262417, 0.008738094940781593, 0.006543256808072329, 0.4040309190750122, 0.2583692967891693, 0.48332422971725464, 0.3413453698158264], "count": [703]}, "timestamp": {"min": [0.0], "max": [23.4], "mean": [11.700000000000001], "std": [6.764613810115105], "count": [703]}, "frame_index": {"min": [0], "max": [702], "mean": [351.0], "std": [202.93841430345316], "count": [703]}, "episode_index": {"min": [288], "max": [288], "mean": [288.0], "std": [0.0], "count": [703]}, "index": {"min": [197709], "max": [198411], "mean": [198060.0], "std": [202.93841430345316], "count": [703]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [703]}}} +{"episode_index": 289, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4237798774509804]], [[0.38956671840958607]], [[0.34603090413943355]]], "std": [[[0.2437191203885105]], [[0.24025626250895074]], [[0.24017651777743373]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4313151688453159]], [[0.41199122549019607]], [[0.3697295533769063]]], "std": [[[0.22515161650175916]], [[0.21542981329893937]], [[0.22377557158708647]]], "count": [100]}, "observation.state": {"min": [0.3389661908149719, -0.09496644884347916, 0.06975985318422318, -1.0115443468093872, -0.5287832617759705, 0.5632671117782593, -0.6837553381919861, -0.41997766494750977, 0.15081556141376495, 3.9285411834716797, -0.7881193161010742, -0.3627118468284607], "max": [0.5244739651679993, 0.07291804254055023, 0.13279972970485687, -0.057874418795108795, 0.6663762331008911, 1.3987724781036377, -0.4755967855453491, -0.2512436807155609, 0.18013116717338562, 4.539577484130859, -0.3687819242477417, 0.2022746354341507], "mean": [0.438180148601532, -0.01822611130774021, 0.1025582104921341, -0.3960002362728119, -0.038213394582271576, 1.087829351425171, -0.5735937356948853, -0.3210372030735016, 0.16706259548664093, 4.344844341278076, -0.4695990979671478, -0.010688088834285736], "std": [0.07046744972467422, 0.06183210015296936, 0.022455202415585518, 0.337929904460907, 0.44384121894836426, 0.31630510091781616, 0.051135044544935226, 0.044895704835653305, 0.0076370807364583015, 0.2265419363975525, 0.08821609616279602, 0.18385252356529236], "count": [320]}, "action": {"min": [-0.16308662295341492, -0.09139792621135712, 0.09433845430612564, -0.3779734671115875, -0.5818029642105103, -0.5705767869949341, -0.4390822947025299, 0.09805741161108017, -0.11713472008705139, 0.07044746726751328, -0.501731276512146, -0.4979027807712555, 0.6872508525848389, 0.13947178423404694], "max": [-0.11588159203529358, -0.050033293664455414, 0.12936244904994965, 0.5319858193397522, 0.7885157465934753, 0.6798444390296936, 0.6147225499153137, 0.13021497428417206, -0.08880693465471268, 0.09730067849159241, -0.29168200492858887, -0.24047450721263885, 0.8689161539077759, 0.44491878151893616], "mean": [-0.1363372653722763, -0.06962990015745163, 0.11073116213083267, -0.035239823162555695, 0.3656972646713257, -0.008628346025943756, 0.28414469957351685, 0.11462990939617157, -0.1051158532500267, 0.08375273644924164, -0.39560970664024353, -0.3735094666481018, 0.7744127511978149, 0.28315305709838867], "std": [0.018522929400205612, 0.013992405496537685, 0.011517052538692951, 0.35042551159858704, 0.5556817054748535, 0.44492021203041077, 0.3932896554470062, 0.007898777723312378, 0.008503158576786518, 0.006731986999511719, 0.07691715657711029, 0.07743975520133972, 0.0517115518450737, 0.09749431908130646], "count": [320]}, "timestamp": {"min": [0.0], "max": [10.633333333333333], "mean": [5.316666666666666], "std": [3.079186400478037], "count": [320]}, "frame_index": {"min": [0], "max": [319], "mean": [159.5], "std": [92.37559201434111], "count": [320]}, "episode_index": {"min": [289], "max": [289], "mean": [289.0], "std": [0.0], "count": [320]}, "index": {"min": [198412], "max": [198731], "mean": [198571.5], "std": [92.37559201434111], "count": [320]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [320]}}} +{"episode_index": 290, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6208870261437908]], [[0.5881863289760348]], [[0.5586344814814814]]], "std": [[[0.23961792934342277]], [[0.23535176502193883]], [[0.2416117411395576]]], "count": [125]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6406941808278868]], [[0.6153350043572985]], [[0.589690614379085]]], "std": [[[0.22660994052626246]], [[0.20674256349946954]], [[0.22142613857253096]]], "count": [125]}, "observation.state": {"min": [0.28501516580581665, -0.1590728461742401, 0.10770614445209503, -4.544400691986084, -1.1948862075805664, -1.0783867835998535, -0.6385541558265686, -0.3687450587749481, 0.14210578799247742, 2.364044427871704, -0.8669586181640625, -1.355244517326355], "max": [0.467827707529068, -0.08304254710674286, 0.13844506442546844, -3.3086977005004883, -0.3239651322364807, 0.19453680515289307, -0.42125964164733887, -0.22688616812229156, 0.19081518054008484, 4.541674613952637, 0.9037138223648071, 0.7336653470993042], "mean": [0.4011037051677704, -0.11380601674318314, 0.12833689153194427, -3.968374490737915, -0.7133574485778809, -0.4031897783279419, -0.5259023308753967, -0.28778597712516785, 0.1699802577495575, 3.394279718399048, -0.0853937491774559, -0.31922993063926697], "std": [0.056302692741155624, 0.01772575080394745, 0.009448673576116562, 0.4533865749835968, 0.28037118911743164, 0.39389607310295105, 0.037340760231018066, 0.02688407152891159, 0.011170468293130398, 0.7822320461273193, 0.3728853762149811, 0.5753582715988159], "count": [630]}, "action": {"min": [-0.15126806497573853, -0.09627637267112732, 0.10782764106988907, 0.14879582822322845, 0.31824174523353577, 0.2037886083126068, 0.45419418811798096, 0.10992354154586792, -0.11912649124860764, 0.07634387910366058, -0.2937870919704437, -0.5088059902191162, 0.1921008676290512, -0.12345975637435913], "max": [-0.11424650251865387, -0.08551076054573059, 0.13483351469039917, 0.5589950084686279, 0.5958638787269592, 0.5630221962928772, 0.787168562412262, 0.14878852665424347, -0.09087865054607391, 0.11685484647750854, 0.28932154178619385, 0.22182339429855347, 0.9818556904792786, 0.885490357875824], "mean": [-0.12941519916057587, -0.0910094603896141, 0.1251758337020874, 0.35464516282081604, 0.4726737439632416, 0.4060617983341217, 0.6629900336265564, 0.12127381563186646, -0.10665469616651535, 0.09445884823799133, 0.009679291397333145, -0.22047679126262665, 0.64426189661026, 0.5600424408912659], "std": [0.010496500879526138, 0.0031082741916179657, 0.0075289844535291195, 0.13093692064285278, 0.08173840492963791, 0.10858754813671112, 0.1036716029047966, 0.006949759088456631, 0.006568184122443199, 0.008357437327504158, 0.1564476042985916, 0.22524333000183105, 0.27423396706581116, 0.26862815022468567], "count": [630]}, "timestamp": {"min": [0.0], "max": [20.966666666666665], "mean": [10.483333333333333], "std": [6.062170189577937], "count": [630]}, "frame_index": {"min": [0], "max": [629], "mean": [314.5], "std": [181.86510568733812], "count": [630]}, "episode_index": {"min": [290], "max": [290], "mean": [290.0], "std": [0.0], "count": [630]}, "index": {"min": [198732], "max": [199361], "mean": [199046.5], "std": [181.86510568733812], "count": [630]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [630]}}} +{"episode_index": 291, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5371232081399387]], [[0.5047670522717944]], [[0.4708735771683875]]], "std": [[[0.22909099043234965]], [[0.2236778259680276]], [[0.23023241408768155]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5609284795238546]], [[0.5382109046919895]], [[0.5086685729847495]]], "std": [[[0.2164377764576477]], [[0.19517489472037122]], [[0.21086524808233328]]], "count": [138]}, "observation.state": {"min": [0.419467955827713, -0.21529434621334076, 0.09976637363433838, -4.539577484130859, -0.8791192173957825, 0.024146240204572678, -0.5953995585441589, -0.39497917890548706, 0.13093435764312744, 2.330284357070923, -1.0481386184692383, -1.40571129322052], "max": [0.5756293535232544, -0.0866413414478302, 0.14076153934001923, -4.536851406097412, 0.15549233555793762, 0.555533766746521, -0.42285823822021484, -0.28629714250564575, 0.1899881511926651, 4.541883945465088, 0.09332273155450821, -0.01102301012724638], "mean": [0.49843037128448486, -0.13760602474212646, 0.12695439159870148, -4.537867546081543, -0.3092445731163025, 0.2667279541492462, -0.5226141214370728, -0.32791760563850403, 0.16856780648231506, 3.7048516273498535, -0.5007221102714539, -0.8935622572898865], "std": [0.0404106080532074, 0.0319068543612957, 0.010653132572770119, 0.0003225494874641299, 0.2490415722131729, 0.13492530584335327, 0.043934814631938934, 0.026060672476887703, 0.011989348568022251, 0.710625410079956, 0.2502783238887787, 0.3643037676811218], "count": [715]}, "action": {"min": [-0.13232508301734924, -0.10563059151172638, 0.10219426453113556, 0.027049701660871506, 0.15895050764083862, 0.13018319010734558, 0.7662532925605774, 0.11324446648359299, -0.1261783391237259, 0.0643349438905716, -0.3809918165206909, -0.2605685293674469, 0.33899492025375366, 0.173631489276886], "max": [-0.10722322016954422, -0.07316433638334274, 0.1286468356847763, 0.2887232005596161, 0.5250630378723145, 0.3973151743412018, 0.9599063396453857, 0.14662636816501617, -0.0858089029788971, 0.10352560877799988, 0.4690008759498596, 0.24847795069217682, 0.9559969902038574, 0.8767110109329224], "mean": [-0.11687977612018585, -0.09351886808872223, 0.11570367217063904, 0.1915629357099533, 0.3217190206050873, 0.21973945200443268, 0.8905988931655884, 0.1221141442656517, -0.10817704349756241, 0.08962602913379669, 0.0295974463224411, 0.013944899663329124, 0.7406120896339417, 0.5516892075538635], "std": [0.007269567809998989, 0.008776981383562088, 0.006902217399328947, 0.07524624466896057, 0.08633888512849808, 0.059691522270441055, 0.040874745696783066, 0.007666229270398617, 0.008710790425539017, 0.0076406956650316715, 0.25716766715049744, 0.13260139524936676, 0.15852642059326172, 0.19290797412395477], "count": [715]}, "timestamp": {"min": [0.0], "max": [23.8], "mean": [11.9], "std": [6.880083978815634], "count": [715]}, "frame_index": {"min": [0], "max": [714], "mean": [357.0], "std": [206.402519364469], "count": [715]}, "episode_index": {"min": [291], "max": [291], "mean": [291.0], "std": [0.0], "count": [715]}, "index": {"min": [199362], "max": [200076], "mean": [199719.0], "std": [206.402519364469], "count": [715]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [715]}}} +{"episode_index": 292, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5674764133986928]], [[0.5301291830065359]], [[0.4945997358387799]]], "std": [[[0.22815312552951741]], [[0.2225455624528513]], [[0.22856622210956398]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5856635784313725]], [[0.5573890059912855]], [[0.5268948338779956]]], "std": [[[0.21514999043861965]], [[0.1943999677385557]], [[0.20907982181944224]]], "count": [100]}, "observation.state": {"min": [0.3933188021183014, -0.11874473839998245, 0.09965358674526215, -4.541045188903809, -0.7487680315971375, -0.42989733815193176, -0.5831667184829712, -0.4449298083782196, 0.14608411490917206, 2.352511405944824, -1.0149359703063965, -1.3314388990402222], "max": [0.48721176385879517, -0.05263042077422142, 0.13924747705459595, -4.071130275726318, -0.37629690766334534, -0.0799422487616539, -0.344657838344574, -0.23016060888767242, 0.19178998470306396, 4.5550947189331055, 0.7094166874885559, 0.1817697435617447], "mean": [0.42715415358543396, -0.08375687152147293, 0.12404308468103409, -4.3273444175720215, -0.5272507071495056, -0.3071511685848236, -0.49678540229797363, -0.3036486506462097, 0.1703474223613739, 3.8448173999786377, -0.3535638451576233, -0.4536323845386505], "std": [0.023493165150284767, 0.018088433891534805, 0.012060769833624363, 0.16848154366016388, 0.12853370606899261, 0.09870170801877975, 0.05715136602520943, 0.04669402167201042, 0.013422106392681599, 0.7802466154098511, 0.4582902491092682, 0.44739216566085815], "count": [444]}, "action": {"min": [-0.1412392407655716, -0.09723403304815292, 0.10465166717767715, 0.3083209991455078, 0.3449331820011139, 0.13277044892311096, 0.7468111515045166, 0.11202657967805862, -0.12213055044412613, 0.07114965468645096, -0.4236331880092621, -0.4034150540828705, 0.39551085233688354, -0.06534095108509064], "max": [-0.11370480060577393, -0.07567381113767624, 0.13336443901062012, 0.4373683035373688, 0.51880943775177, 0.330661416053772, 0.8560650944709778, 0.15316639840602875, -0.09054110199213028, 0.11338046193122864, 0.18862557411193848, 0.23660574853420258, 0.994130551815033, 0.9141273498535156], "mean": [-0.1270313858985901, -0.0854964554309845, 0.12356890738010406, 0.38139617443084717, 0.4214438796043396, 0.2405935376882553, 0.7811009883880615, 0.12533286213874817, -0.1084245815873146, 0.09475072473287582, -0.11228475719690323, -0.10717710852622986, 0.7728978991508484, 0.45248866081237793], "std": [0.007259877864271402, 0.005565984174609184, 0.009734575636684895, 0.04069973900914192, 0.05746889114379883, 0.05809682607650757, 0.024162106215953827, 0.00980280339717865, 0.009214150719344616, 0.009008445776998997, 0.16510942578315735, 0.1623368263244629, 0.19292376935482025, 0.2880186140537262], "count": [444]}, "timestamp": {"min": [0.0], "max": [14.766666666666667], "mean": [7.383333333333333], "std": [4.272381155835787], "count": [444]}, "frame_index": {"min": [0], "max": [443], "mean": [221.5], "std": [128.17143467507364], "count": [444]}, "episode_index": {"min": [292], "max": [292], "mean": [292.0], "std": [0.0], "count": [444]}, "index": {"min": [200077], "max": [200520], "mean": [200298.5], "std": [128.17143467507364], "count": [444]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [444]}}} +{"episode_index": 293, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5312610321350762]], [[0.49945002723311543]], [[0.46540882897603486]]], "std": [[[0.22279560781277813]], [[0.21503674162072728]], [[0.21989986884549137]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5436898910675382]], [[0.5232967265795208]], [[0.493234447167756]]], "std": [[[0.2164323309348376]], [[0.19227620078029345]], [[0.20479231341380078]]], "count": [100]}, "observation.state": {"min": [0.3997209370136261, -0.19157010316848755, 0.10415689647197723, -4.547755718231201, -0.6794933080673218, -0.7665166854858398, -0.6078253984451294, -0.3950255215167999, 0.14866243302822113, 4.227978229522705, -0.970665693283081, -1.0216145515441895], "max": [0.5038619637489319, -0.08877281099557877, 0.13561266660690308, -2.725130558013916, 0.4290386140346527, 0.31184911727905273, -0.45466819405555725, -0.27794116735458374, 0.19265331327915192, 4.540206432342529, 0.8595802187919617, 0.6636952757835388], "mean": [0.44493386149406433, -0.140370175242424, 0.1229107603430748, -4.0139899253845215, -0.20888394117355347, -0.1361815184354782, -0.5426222681999207, -0.3411136567592621, 0.17508196830749512, 4.533828258514404, 0.36844104528427124, -0.1823631078004837], "std": [0.025758109986782074, 0.020075062289834023, 0.008962391875684261, 0.6721305251121521, 0.34825918078422546, 0.3162822425365448, 0.04163738340139389, 0.03717045485973358, 0.010198268108069897, 0.030158309265971184, 0.5877947807312012, 0.5664263367652893], "count": [455]}, "action": {"min": [-0.13285554945468903, -0.10560411214828491, 0.10006532073020935, 0.14934305846691132, -0.1104489415884018, 0.13579115271568298, 0.2490505874156952, 0.11035644263029099, -0.13130195438861847, 0.07298865169286728, -0.5341101884841919, -0.693859338760376, 0.7059222459793091, -0.1146874949336052], "max": [-0.12169888615608215, -0.07767409831285477, 0.12805452942848206, 0.6362749338150024, 0.45811760425567627, 0.7519105672836304, 0.896271824836731, 0.13714440166950226, -0.10103382915258408, 0.09795660525560379, 0.14467988908290863, 0.030932867899537086, 0.9989304542541504, 0.4872601628303528], "mean": [-0.12693049013614655, -0.0941210389137268, 0.11612319201231003, 0.3817582130432129, 0.2470720410346985, 0.37287637591362, 0.7160337567329407, 0.12142699211835861, -0.11628764867782593, 0.08950205147266388, -0.03582826256752014, -0.3321155905723572, 0.8636724948883057, 0.061665017157793045], "std": [0.002983070444315672, 0.008376567624509335, 0.0073049492202699184, 0.16724997758865356, 0.17920958995819092, 0.20105192065238953, 0.20239488780498505, 0.007478222716599703, 0.005635745357722044, 0.007402754854410887, 0.1960640847682953, 0.24687480926513672, 0.0951458141207695, 0.17390243709087372], "count": [455]}, "timestamp": {"min": [0.0], "max": [15.133333333333333], "mean": [7.566666666666667], "std": [4.378228967161138], "count": [455]}, "frame_index": {"min": [0], "max": [454], "mean": [227.0], "std": [131.34686901483414], "count": [455]}, "episode_index": {"min": [293], "max": [293], "mean": [293.0], "std": [0.0], "count": [455]}, "index": {"min": [200521], "max": [200975], "mean": [200748.0], "std": [131.34686901483414], "count": [455]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [455]}}} +{"episode_index": 294, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5518296141441327]], [[0.5139343121235422]], [[0.478024675338545]]], "std": [[[0.216079675888081]], [[0.21044332051731807]], [[0.21625955037987477]]], "count": [102]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5724137671408432]], [[0.5438591193558033]], [[0.5120342389679183]]], "std": [[[0.20402778977232924]], [[0.1835321065181895]], [[0.1983120573906964]]], "count": [102]}, "observation.state": {"min": [0.3902760446071625, -0.17959988117218018, 0.08879456669092178, -4.540626049041748, -0.7090067863464355, -0.5532339215278625, -0.5176084637641907, -0.4195374548435211, 0.14175449311733246, 1.4521028995513916, -0.7143356204032898, -1.001942753791809], "max": [0.4706619679927826, -0.07345090806484222, 0.12938399612903595, -4.396149635314941, -0.3593539893627167, 0.361205130815506, -0.4039838910102844, -0.2795243263244629, 0.18257078528404236, 4.541464805603027, 0.9157378077507019, 1.2833244800567627], "mean": [0.4288560152053833, -0.11735665798187256, 0.11765991151332855, -4.525778770446777, -0.49174484610557556, -0.02452191896736622, -0.45461800694465637, -0.33237072825431824, 0.16975697875022888, 2.6659295558929443, 0.4094546139240265, -0.1358904391527176], "std": [0.022698726505041122, 0.034109409898519516, 0.013609292916953564, 0.035856593400239944, 0.11146994680166245, 0.27605268359184265, 0.025145214051008224, 0.03403044864535332, 0.01065757218748331, 1.1817482709884644, 0.5560084581375122, 0.5520981550216675], "count": [479]}, "action": {"min": [-0.1395828276872635, -0.09821600466966629, 0.09485403448343277, 0.10042212158441544, 0.3383954167366028, 0.09001266211271286, 0.7549624443054199, 0.11810342967510223, -0.12621091306209564, 0.07072829455137253, -0.5528329610824585, -0.6867583990097046, -0.1659659743309021, -0.5973337888717651], "max": [-0.12253357470035553, -0.06650321930646896, 0.12889140844345093, 0.5133190155029297, 0.4709188938140869, 0.30016395449638367, 0.8800022006034851, 0.1467537134885788, -0.0999625101685524, 0.10384175926446915, 0.5574365854263306, 0.6020893454551697, 0.9314678907394409, 0.837406575679779], "mean": [-0.12989158928394318, -0.08751144260168076, 0.11518000066280365, 0.29347243905067444, 0.39574772119522095, 0.20030014216899872, 0.8350728750228882, 0.12888211011886597, -0.11347094178199768, 0.08975371718406677, 0.14842680096626282, -0.4522283375263214, 0.25171658396720886, 0.5568130016326904], "std": [0.004953137133270502, 0.01012345775961876, 0.010708308778703213, 0.11617778986692429, 0.039302412420511246, 0.05842188373208046, 0.036550018936395645, 0.0068078478798270226, 0.0072649335488677025, 0.006979374680668116, 0.3338574171066284, 0.2445065826177597, 0.4210926592350006, 0.2269231230020523], "count": [479]}, "timestamp": {"min": [0.0], "max": [15.933333333333334], "mean": [7.966666666666666], "std": [4.609169604651628], "count": [479]}, "frame_index": {"min": [0], "max": [478], "mean": [239.0], "std": [138.27508813954884], "count": [479]}, "episode_index": {"min": [294], "max": [294], "mean": [294.0], "std": [0.0], "count": [479]}, "index": {"min": [200976], "max": [201454], "mean": [201215.0], "std": [138.27508813954884], "count": [479]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [479]}}} +{"episode_index": 295, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.552060204248366]], [[0.5124286029411765]], [[0.47543521786492376]]], "std": [[[0.22109425492433823]], [[0.21391055740542683]], [[0.22026512314791666]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5698508823529411]], [[0.5400198474945535]], [[0.5077352260348584]]], "std": [[[0.21135032636441692]], [[0.189658867804536]], [[0.20486842684660184]]], "count": [100]}, "observation.state": {"min": [0.37994301319122314, -0.14156542718410492, 0.09017901122570038, -2.3514630794525146, 0.309481680393219, -0.5992836952209473, -0.5769885182380676, -0.5398035645484924, 0.13922932744026184, 1.0669023990631104, -1.0367977619171143, -1.0615588426589966], "max": [0.49750617146492004, -0.05629099905490875, 0.13714878261089325, -0.9545086026191711, 0.6531224846839905, 0.6533766984939575, -0.38939565420150757, -0.22350360453128815, 0.1860085427761078, 4.119359016418457, 1.2895753383636475, 0.5914974808692932], "mean": [0.445122092962265, -0.08930635452270508, 0.124421626329422, -1.8119022846221924, 0.4546121060848236, 0.0494198240339756, -0.4901966452598572, -0.3694074749946594, 0.16599220037460327, 2.6559576988220215, -0.16724403202533722, -0.2750338315963745], "std": [0.03956393897533417, 0.028434619307518005, 0.01298932358622551, 0.5230214595794678, 0.08889970183372498, 0.3968568742275238, 0.05611637607216835, 0.07979010045528412, 0.013511845842003822, 0.7384441494941711, 0.7651260495185852, 0.45837441086769104], "count": [411]}, "action": {"min": [-0.13939665257930756, -0.0971490889787674, 0.09568478167057037, 0.38254740834236145, -0.5184176564216614, 0.717469334602356, -0.2855132520198822, 0.11260398477315903, -0.12090828269720078, 0.060923222452402115, -0.6164412498474121, -0.6537420749664307, -0.40691182017326355, -0.6474913954734802], "max": [-0.11456362158060074, -0.06952686607837677, 0.13308262825012207, 0.5664883255958557, -0.019902849569916725, 0.8650442361831665, 0.22843684256076813, 0.15458226203918457, -0.10042872279882431, 0.11162500083446503, 0.6463547945022583, 0.7465301752090454, 0.8095996975898743, 0.9256488680839539], "mean": [-0.12521404027938843, -0.08838114142417908, 0.1211455762386322, 0.47328197956085205, -0.2776718735694885, 0.7974938154220581, 0.001953992061316967, 0.12897931039333344, -0.11036281287670135, 0.08547692745923996, -0.02612282708287239, -0.00622086925432086, 0.36100953817367554, 0.445629745721817], "std": [0.007699931040406227, 0.008457501418888569, 0.011248075403273106, 0.06367886066436768, 0.15360765159130096, 0.047636229544878006, 0.18161173164844513, 0.011144260875880718, 0.005601875018328428, 0.012865472584962845, 0.2801077663898468, 0.41043567657470703, 0.33717989921569824, 0.5565584897994995], "count": [411]}, "timestamp": {"min": [0.0], "max": [13.666666666666666], "mean": [6.833333333333333], "std": [3.954837637721774], "count": [411]}, "frame_index": {"min": [0], "max": [410], "mean": [205.0], "std": [118.64512913165322], "count": [411]}, "episode_index": {"min": [295], "max": [295], "mean": [295.0], "std": [0.0], "count": [411]}, "index": {"min": [201455], "max": [201865], "mean": [201660.0], "std": [118.64512913165322], "count": [411]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [411]}}} +{"episode_index": 296, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.551562908496732]], [[0.5151535375816994]], [[0.4799836601307189]]], "std": [[[0.2209963223737641]], [[0.21526470727879132]], [[0.2219644671290042]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5681317156862745]], [[0.5419743491285403]], [[0.5109128376906318]]], "std": [[[0.21103295783768528]], [[0.18936565217014042]], [[0.20459868316535862]]], "count": [100]}, "observation.state": {"min": [0.3893261253833771, -0.15403762459754944, 0.09703248739242554, -2.2512311935424805, 0.31194111704826355, -0.3376217484474182, -0.6454196572303772, -0.5214234590530396, 0.14030006527900696, 2.164419651031494, -1.0132962465286255, -1.383220911026001], "max": [0.5177783370018005, -0.058522868901491165, 0.1317017674446106, -0.8855206370353699, 0.7364707589149475, 0.6339977383613586, -0.4305655360221863, -0.2781805694103241, 0.18774427473545074, 4.541254997253418, 0.8966087102890015, 0.7612901329994202], "mean": [0.4464932978153229, -0.1103295162320137, 0.11947888135910034, -1.595415472984314, 0.5301066040992737, 0.11784534156322479, -0.543890118598938, -0.3725765347480774, 0.17117969691753387, 4.130694389343262, -0.12651991844177246, -0.4600182771682739], "std": [0.028180714696645737, 0.02313966304063797, 0.009065564721822739, 0.3443250060081482, 0.08270765841007233, 0.24524451792240143, 0.04648724943399429, 0.0626472756266594, 0.013654891401529312, 0.5610916018486023, 0.6409527063369751, 0.5689961314201355], "count": [426]}, "action": {"min": [-0.1328156292438507, -0.09752026945352554, 0.09329773485660553, 0.34271013736724854, -0.5590560436248779, 0.6850615739822388, -0.3125331401824951, 0.10167957842350006, -0.128029003739357, 0.06014646962285042, -0.39048516750335693, -0.7048074007034302, -0.7033143639564514, -0.07949035614728928], "max": [-0.11715910583734512, -0.0729907751083374, 0.12598761916160583, 0.5872585773468018, -0.14523541927337646, 0.834546685218811, 0.18548396229743958, 0.14219872653484344, -0.09797462821006775, 0.10150358825922012, 0.21346446871757507, 0.727430522441864, 0.9855207204818726, 0.9185638427734375], "mean": [-0.1265726089477539, -0.08756766468286514, 0.1154756247997284, 0.46694502234458923, -0.32657501101493835, 0.7986447215080261, -0.09065211564302444, 0.12140485644340515, -0.11496362835168839, 0.08393348008394241, -0.08787915110588074, -0.11096154898405075, 0.7531663179397583, 0.32490235567092896], "std": [0.00290685729123652, 0.006429316941648722, 0.008518203161656857, 0.06074363738298416, 0.10697106271982193, 0.02862769179046154, 0.11535792052745819, 0.009483843110501766, 0.008542452938854694, 0.011026392690837383, 0.15738974511623383, 0.26482251286506653, 0.3506762683391571, 0.29877644777297974], "count": [426]}, "timestamp": {"min": [0.0], "max": [14.166666666666666], "mean": [7.083333333333333], "std": [4.099175617211434], "count": [426]}, "frame_index": {"min": [0], "max": [425], "mean": [212.5], "std": [122.97526851634302], "count": [426]}, "episode_index": {"min": [296], "max": [296], "mean": [296.0], "std": [0.0], "count": [426]}, "index": {"min": [201866], "max": [202291], "mean": [202078.5], "std": [122.97526851634302], "count": [426]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [426]}}} +{"episode_index": 297, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5543073571308865]], [[0.5171695863708731]], [[0.4810978166373387]]], "std": [[[0.21710789971703062]], [[0.2115816173372228]], [[0.21733584552219448]]], "count": [104]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5723944402547343]], [[0.5444892612493716]], [[0.5128248648818502]]], "std": [[[0.20574933902713763]], [[0.1852784483667886]], [[0.19941068486869032]]], "count": [104]}, "observation.state": {"min": [0.38360360264778137, -0.1627720445394516, 0.08664272725582123, -1.4864920377731323, 0.3757503628730774, 0.14989016950130463, -0.5677598714828491, -0.42326754331588745, 0.14701613783836365, 1.58315908908844, -0.7180247902870178, -0.5400307774543762], "max": [0.5194078683853149, -0.08057127147912979, 0.1350889652967453, -0.9756873250007629, 1.065901279449463, 0.7128987908363342, -0.4013967514038086, -0.2996883690357208, 0.193459615111351, 4.541883945465088, 0.8291102647781372, 0.6223382353782654], "mean": [0.43369191884994507, -0.11764397472143173, 0.11693566292524338, -1.2003839015960693, 0.7760648727416992, 0.4746364653110504, -0.48788562417030334, -0.3486728370189667, 0.1724192053079605, 2.6012701988220215, -0.05952335521578789, 0.20065763592720032], "std": [0.0452658012509346, 0.01529709342867136, 0.01509594265371561, 0.16869398951530457, 0.17949746549129486, 0.18865902721881866, 0.0483340360224247, 0.02737206406891346, 0.011828026734292507, 0.7389134764671326, 0.3893851637840271, 0.284099817276001], "count": [490]}, "action": {"min": [-0.13387444615364075, -0.10225755721330643, 0.08510152250528336, 0.38366201519966125, -0.5523476600646973, 0.6523343324661255, -0.2654920220375061, 0.1120925024151802, -0.12797360122203827, 0.07011278718709946, -0.3160128891468048, -0.6335882544517517, -0.6150674223899841, -0.6242712140083313], "max": [-0.1206527128815651, -0.06411536782979965, 0.1245478093624115, 0.6604921817779541, -0.26286301016807556, 0.7481761574745178, -0.07458153367042542, 0.1442081332206726, -0.0989564061164856, 0.10664452612400055, 0.6301063299179077, 0.6462776064872742, 0.9183430671691895, 0.9633803963661194], "mean": [-0.12910622358322144, -0.08477434515953064, 0.11352074891328812, 0.5432072281837463, -0.4126763343811035, 0.6879537105560303, -0.2101743370294571, 0.12760761380195618, -0.11726611852645874, 0.09096423536539078, 0.12274502217769623, -0.33764535188674927, 0.2976859211921692, 0.6890813708305359], "std": [0.003460464533418417, 0.011739363893866539, 0.013449068181216717, 0.07423519343137741, 0.09113886952400208, 0.024429600685834885, 0.05249875783920288, 0.006044606678187847, 0.008845635689795017, 0.008438083343207836, 0.20836195349693298, 0.25625187158584595, 0.28247585892677307, 0.3443938195705414], "count": [490]}, "timestamp": {"min": [0.0], "max": [16.3], "mean": [8.15], "std": [4.715017379489591], "count": [490]}, "frame_index": {"min": [0], "max": [489], "mean": [244.5], "std": [141.45052138468773], "count": [490]}, "episode_index": {"min": [297], "max": [297], "mean": [297.0], "std": [0.0], "count": [490]}, "index": {"min": [202292], "max": [202781], "mean": [202536.5], "std": [141.45052138468773], "count": [490]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [490]}}} +{"episode_index": 298, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5555810893246187]], [[0.515150433006536]], [[0.47588424019607845]]], "std": [[[0.22160657471954945]], [[0.21425322112887016]], [[0.2205039559542319]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5747042483660131]], [[0.5436409667755991]], [[0.5091539569716776]]], "std": [[[0.20939092635150158]], [[0.1880139541572544]], [[0.20311187578830125]]], "count": [100]}, "observation.state": {"min": [0.3501487076282501, -0.1371711790561676, 0.10870298743247986, -2.1415634155273438, 0.46975627541542053, -0.19776691496372223, -0.6087212562561035, -0.39397522807121277, 0.13604433834552765, 2.079704761505127, -0.6917905807495117, -1.39271879196167], "max": [0.5521445274353027, -0.04620511084794998, 0.13653303682804108, -0.9555570483207703, 0.7788280248641968, 0.7355603575706482, -0.4425743818283081, -0.20801952481269836, 0.18540316820144653, 4.16444206237793, 0.8378550410270691, 0.380580335855484], "mean": [0.4543006420135498, -0.08079925179481506, 0.12557929754257202, -1.3998615741729736, 0.5842695236206055, 0.4522083103656769, -0.5263912677764893, -0.29060396552085876, 0.16563136875629425, 3.1975646018981934, 0.02045636624097824, -0.6926482319831848], "std": [0.04497252777218819, 0.024959919974207878, 0.006474755238741636, 0.3373118042945862, 0.07413087785243988, 0.2545875608921051, 0.04282570630311966, 0.05561131611466408, 0.013608304783701897, 0.7007896304130554, 0.4576717019081116, 0.5420339107513428], "count": [425]}, "action": {"min": [-0.14189770817756653, -0.09958691149950027, 0.10350442677736282, 0.4360566735267639, -0.527649998664856, 0.6873587369918823, -0.2597755491733551, 0.11091503500938416, -0.11450739949941635, 0.06845805794000626, -0.387371301651001, -0.590406596660614, -0.57808917760849, -0.563126802444458], "max": [-0.11238159984350204, -0.07305150479078293, 0.12982138991355896, 0.5929182171821594, -0.1708291918039322, 0.8421027660369873, 0.1943897306919098, 0.14472731947898865, -0.08897089213132858, 0.1062961146235466, 0.7638248205184937, 0.6098515391349792, 0.8670056462287903, 0.761619508266449], "mean": [-0.12238212674856186, -0.0855085551738739, 0.12223464250564575, 0.4956381618976593, -0.4285406172275543, 0.7299895882606506, -0.1093398928642273, 0.12229273468255997, -0.10417786240577698, 0.08994239568710327, 0.22447888553142548, -0.22600868344306946, 0.6124882698059082, 0.40387770533561707], "std": [0.0060454802587628365, 0.006495134439319372, 0.007421781774610281, 0.048219624906778336, 0.09641419351100922, 0.03864085674285889, 0.11287875473499298, 0.009318889118731022, 0.007104146759957075, 0.010556045919656754, 0.41157910227775574, 0.22545135021209717, 0.2927555441856384, 0.23310646414756775], "count": [425]}, "timestamp": {"min": [0.0], "max": [14.133333333333333], "mean": [7.066666666666667], "std": [4.089553086150667], "count": [425]}, "frame_index": {"min": [0], "max": [424], "mean": [212.0], "std": [122.68659258452001], "count": [425]}, "episode_index": {"min": [298], "max": [298], "mean": [298.0], "std": [0.0], "count": [425]}, "index": {"min": [202782], "max": [203206], "mean": [202994.0], "std": [122.68659258452001], "count": [425]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [425]}}} +{"episode_index": 299, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5229541775599128]], [[0.48513870370370366]], [[0.4437687363834423]]], "std": [[[0.22773368747359607]], [[0.2208427232657853]], [[0.2264440236350909]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5402766721132898]], [[0.5124962009803922]], [[0.474679128540305]]], "std": [[[0.2152101894818694]], [[0.19569404918534541]], [[0.21139190080862097]]], "count": [100]}, "observation.state": {"min": [0.4201939105987549, -0.12623578310012817, 0.11357574164867401, -1.6995370388031006, 0.23610787093639374, 0.24235005676746368, -0.531262218952179, -0.35844293236732483, 0.1372939646244049, 1.4659423828125, -1.0568833351135254, -1.1043245792388916], "max": [0.5315325260162354, -0.04355620965361595, 0.13803674280643463, -1.036916732788086, 0.7960442304611206, 0.7234497666358948, -0.4236459732055664, -0.1947055459022522, 0.18937371671199799, 4.53936767578125, 0.9810500741004944, 0.4551462233066559], "mean": [0.45797163248062134, -0.08743651211261749, 0.12640343606472015, -1.2436535358428955, 0.5350701212882996, 0.5236301422119141, -0.4786781966686249, -0.28656625747680664, 0.16253820061683655, 3.0881991386413574, -0.09935782849788666, -0.3340699374675751], "std": [0.033428777009248734, 0.02201385423541069, 0.0057824766263365746, 0.1764393448829651, 0.09656136482954025, 0.16345110535621643, 0.030670801177620888, 0.045650579035282135, 0.015845993533730507, 1.0479542016983032, 0.6344336271286011, 0.4492243230342865], "count": [449]}, "action": {"min": [-0.12677307426929474, -0.099077507853508, 0.11068175733089447, 0.33266711235046387, -0.5391579866409302, 0.6849783658981323, -0.22155094146728516, 0.11782804131507874, -0.11487612128257751, 0.07301931828260422, -0.5885706543922424, -0.6059248447418213, -0.5284169316291809, -0.5159381031990051], "max": [-0.11382009088993073, -0.07106377929449081, 0.12737132608890533, 0.5772947669029236, -0.32905343174934387, 0.7891162633895874, 0.0004815094289369881, 0.14345914125442505, -0.0863204300403595, 0.11195885390043259, 0.7676368951797485, 0.6339882612228394, 0.8977342247962952, 0.9124031662940979], "mean": [-0.12160242348909378, -0.08638916164636612, 0.1227044016122818, 0.4650614857673645, -0.4630787670612335, 0.7284897565841675, -0.1650543510913849, 0.12919829785823822, -0.10240744799375534, 0.09105926007032394, -0.11280647665262222, -0.11488384008407593, 0.35279321670532227, 0.4138615131378174], "std": [0.004676219541579485, 0.006806548684835434, 0.004408875480294228, 0.04153292253613472, 0.06619402021169662, 0.03556617349386215, 0.06295423954725266, 0.007237216457724571, 0.009665852412581444, 0.011361027136445045, 0.39050257205963135, 0.35172033309936523, 0.4545138478279114, 0.44220995903015137], "count": [449]}, "timestamp": {"min": [0.0], "max": [14.933333333333334], "mean": [7.466666666666667], "std": [4.320493798938574], "count": [449]}, "frame_index": {"min": [0], "max": [448], "mean": [224.0], "std": [129.6148139681572], "count": [449]}, "episode_index": {"min": [299], "max": [299], "mean": [299.0], "std": [0.0], "count": [449]}, "index": {"min": [203207], "max": [203655], "mean": [203431.0], "std": [129.6148139681572], "count": [449]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [449]}}} +{"episode_index": 300, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5239630855119826]], [[0.48677913126361655]], [[0.4455113017429194]]], "std": [[[0.2255656633115168]], [[0.21900140466893905]], [[0.22501522374083655]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.540291628540305]], [[0.5129758877995643]], [[0.4753041966230937]]], "std": [[[0.21304982834424113]], [[0.19426166461649694]], [[0.21003189055947585]]], "count": [100]}, "observation.state": {"min": [0.3820822238922119, -0.1302284449338913, 0.11650536209344864, -1.9096462726593018, 0.34418734908103943, -0.14788340032100677, -0.5470861196517944, -0.3683975338935852, 0.1431155949831009, 1.607483148574829, -1.0988306999206543, -1.1402270793914795], "max": [0.5473718643188477, -0.04514709860086441, 0.13728877902030945, -0.8721004724502563, 0.7241734266281128, 0.7942491769790649, -0.4301021695137024, -0.19130754470825195, 0.1900840848684311, 4.547755718231201, 0.9874719977378845, 0.3160057067871094], "mean": [0.4613160192966461, -0.07979471236467361, 0.12612956762313843, -1.1975528001785278, 0.5431725978851318, 0.531779944896698, -0.48125728964805603, -0.29167240858078003, 0.1674679070711136, 3.1014444828033447, -0.10380428284406662, -0.17226769030094147], "std": [0.043326713144779205, 0.021959824487566948, 0.004411723930388689, 0.32503607869148254, 0.10673007369041443, 0.24492782354354858, 0.03806650638580322, 0.05739462375640869, 0.014285883866250515, 0.740746259689331, 0.6844522953033447, 0.3602820932865143], "count": [398]}, "action": {"min": [-0.13274537026882172, -0.0973908007144928, 0.11065322905778885, 0.3899236023426056, -0.5801368355751038, 0.6579627394676208, -0.29164037108421326, 0.11725562065839767, -0.11980418860912323, 0.0772283524274826, -0.5616748332977295, -0.5689413547515869, -0.4708436131477356, -0.5000739097595215], "max": [-0.1111762523651123, -0.07365662604570389, 0.12872204184532166, 0.5609459280967712, -0.18687282502651215, 0.8412426710128784, 0.06965133547782898, 0.14251214265823364, -0.09030602127313614, 0.11327647417783737, 0.7547482848167419, 0.6706210970878601, 0.8900313377380371, 0.8636022806167603], "mean": [-0.12137991935014725, -0.0849362164735794, 0.12301447987556458, 0.47513195872306824, -0.4548560380935669, 0.7112737894058228, -0.1883298009634018, 0.1280059814453125, -0.10570643842220306, 0.09423859417438507, -0.12105754017829895, -0.07919611781835556, 0.35204559564590454, 0.37567150592803955], "std": [0.006219029892235994, 0.00651495112106204, 0.0046608769334852695, 0.05405145883560181, 0.09632028639316559, 0.04905002564191818, 0.1066371276974678, 0.006406810600310564, 0.009612321853637695, 0.010915866121649742, 0.3391055464744568, 0.39305633306503296, 0.46519964933395386, 0.47760987281799316], "count": [398]}, "timestamp": {"min": [0.0], "max": [13.233333333333333], "mean": [6.616666666666667], "std": [3.8297446970319635], "count": [398]}, "frame_index": {"min": [0], "max": [397], "mean": [198.5], "std": [114.8923409109589], "count": [398]}, "episode_index": {"min": [300], "max": [300], "mean": [300.0], "std": [0.0], "count": [398]}, "index": {"min": [203656], "max": [204053], "mean": [203854.5], "std": [114.8923409109589], "count": [398]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [398]}}} +{"episode_index": 301, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5306196132897604]], [[0.4946585838779956]], [[0.45474310729847495]]], "std": [[[0.22069874396295408]], [[0.21617359121787744]], [[0.2222584814744939]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5463356535947713]], [[0.519930408496732]], [[0.4831575871459695]]], "std": [[[0.20653096897531617]], [[0.19018096011952293]], [[0.2060661884121087]]], "count": [100]}, "observation.state": {"min": [0.3960989713668823, -0.13632167875766754, 0.10590819269418716, -1.7938975095748901, 0.4194740355014801, -0.1995038241147995, -0.5377339124679565, -0.3596322238445282, 0.14523114264011383, 1.654663324356079, -1.1768501996994019, -1.0368705987930298], "max": [0.4886404871940613, -0.04466056078672409, 0.12933732569217682, -0.8077256679534912, 0.904806911945343, 0.6095043420791626, -0.2944678068161011, -0.21459929645061493, 0.187477245926857, 4.546497344970703, 1.0283262729644775, 0.2670647203922272], "mean": [0.43463751673698425, -0.08102108538150787, 0.12200340628623962, -1.2105361223220825, 0.631486177444458, 0.34268718957901, -0.4681233763694763, -0.2912890315055847, 0.16621847450733185, 3.2889442443847656, 0.03591630235314369, -0.24444447457790375], "std": [0.03415009751915932, 0.021153932437300682, 0.008877263404428959, 0.35216546058654785, 0.14600616693496704, 0.289969265460968, 0.050592903047800064, 0.04187251627445221, 0.013362506404519081, 1.0436760187149048, 0.6753134727478027, 0.3349626660346985], "count": [349]}, "action": {"min": [-0.13086868822574615, -0.09528428316116333, 0.10427258163690567, 0.40178173780441284, -0.5370349884033203, 0.6999459266662598, -0.3570791780948639, 0.11834092438220978, -0.11664491891860962, 0.07601486146450043, -0.6356574296951294, -0.6334590911865234, -0.4836152195930481, -0.559780478477478], "max": [-0.12108685076236725, -0.07092981785535812, 0.1312303990125656, 0.613616943359375, -0.17098309099674225, 0.8329179883003235, -0.006680651567876339, 0.15792112052440643, -0.08998677134513855, 0.1096247136592865, 0.6581122279167175, 0.6559414267539978, 0.8841552138328552, 0.836736798286438], "mean": [-0.12694531679153442, -0.08370412886142731, 0.12113668769598007, 0.4825318455696106, -0.3759242594242096, 0.735579252243042, -0.23535789549350739, 0.12869122624397278, -0.10617031902074814, 0.09210923314094543, -0.13919611275196075, -0.10807004570960999, 0.3264857232570648, 0.24762430787086487], "std": [0.0032842850778251886, 0.00717115355655551, 0.00973555538803339, 0.07598008215427399, 0.11168629676103592, 0.029467357322573662, 0.10128447413444519, 0.00952661782503128, 0.007967159152030945, 0.010186737403273582, 0.3918372392654419, 0.4346786439418793, 0.48862770199775696, 0.4688235819339752], "count": [349]}, "timestamp": {"min": [0.0], "max": [11.6], "mean": [5.8], "std": [3.3582402799349804], "count": [349]}, "frame_index": {"min": [0], "max": [348], "mean": [174.0], "std": [100.74720839804942], "count": [349]}, "episode_index": {"min": [301], "max": [301], "mean": [301.0], "std": [0.0], "count": [349]}, "index": {"min": [204054], "max": [204402], "mean": [204228.0], "std": [100.74720839804942], "count": [349]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [349]}}} +{"episode_index": 302, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5373501171023964]], [[0.5000434395424836]], [[0.45897653050108933]]], "std": [[[0.2192358827697013]], [[0.2140516338190247]], [[0.2200074420400111]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5531347875816994]], [[0.52511924291939]], [[0.48776751361655774]]], "std": [[[0.20515357033132212]], [[0.18893813312851074]], [[0.20478335865294492]]], "count": [100]}, "observation.state": {"min": [0.37164878845214844, -0.10848122835159302, 0.11196835339069366, -1.5219296216964722, 0.48984184861183167, 0.159781351685524, -0.5616897940635681, -0.34304380416870117, 0.13352954387664795, 1.7876067161560059, -0.7663941383361816, -0.6999914646148682], "max": [0.4599968492984772, -0.021832169964909554, 0.13262343406677246, -1.2099109888076782, 0.9020741581916809, 0.583443284034729, -0.34370023012161255, -0.2132401019334793, 0.18976649641990662, 4.541464805603027, 0.9434750080108643, 0.6855064630508423], "mean": [0.4208697974681854, -0.05402142554521561, 0.12324357777833939, -1.3636138439178467, 0.7057940363883972, 0.3068414032459259, -0.47574540972709656, -0.2734796404838562, 0.1668935865163803, 3.706669569015503, -0.12756265699863434, 0.08974149078130722], "std": [0.028177088126540184, 0.02196952886879444, 0.007864881306886673, 0.08876235038042068, 0.14896883070468903, 0.12143012136220932, 0.04226372763514519, 0.03148158639669418, 0.012706690467894077, 0.9643444418907166, 0.4630178213119507, 0.3645334541797638], "count": [299]}, "action": {"min": [-0.13294361531734467, -0.09340193122625351, 0.1149267926812172, 0.4070715606212616, -0.49389705061912537, 0.7153648138046265, -0.2458450347185135, 0.11294399946928024, -0.11650905758142471, 0.0781855657696724, -0.5778999924659729, -0.6044974327087402, -0.37636563181877136, -0.5782235264778137], "max": [-0.12205201387405396, -0.07005060464143753, 0.1349761039018631, 0.5948014259338379, -0.2576085329055786, 0.8278799057006836, -0.08269069343805313, 0.14875851571559906, -0.07798413932323456, 0.11022914201021194, 0.6253864765167236, 0.6486798524856567, 0.8356993794441223, 0.798758864402771], "mean": [-0.12756410241127014, -0.08096851408481598, 0.1245308443903923, 0.5117342472076416, -0.3496105670928955, 0.7593839168548584, -0.16420041024684906, 0.12693150341510773, -0.10471338033676147, 0.09516926854848862, -0.25142914056777954, -0.3331313133239746, 0.5603635907173157, 0.3000955879688263], "std": [0.003167311195284128, 0.007571850903332233, 0.007396190892904997, 0.06678421795368195, 0.06923714280128479, 0.034785326570272446, 0.04255513846874237, 0.008928746916353703, 0.009802336804568768, 0.006817515939474106, 0.26919057965278625, 0.3242376148700714, 0.34770625829696655, 0.3510685861110687], "count": [299]}, "timestamp": {"min": [0.0], "max": [9.933333333333334], "mean": [4.966666666666667], "std": [2.8771127502720115], "count": [299]}, "frame_index": {"min": [0], "max": [298], "mean": [149.0], "std": [86.31338250816034], "count": [299]}, "episode_index": {"min": [302], "max": [302], "mean": [302.0], "std": [0.0], "count": [299]}, "index": {"min": [204403], "max": [204701], "mean": [204552.0], "std": [86.31338250816034], "count": [299]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [299]}}} +{"episode_index": 303, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5412457706971677]], [[0.5030332734204793]], [[0.4621562908496732]]], "std": [[[0.2281180868826393]], [[0.22484866229605266]], [[0.23228396568133278]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.557916868191721]], [[0.5284992919389978]], [[0.49114995098039216]]], "std": [[[0.21542476699749802]], [[0.20010049330471327]], [[0.21778306564117245]]], "count": [100]}, "observation.state": {"min": [0.38789743185043335, -0.11087527871131897, 0.09932173788547516, -1.4047129154205322, -0.009974460117518902, 0.3745216131210327, -0.5458659529685974, -0.33278027176856995, 0.1356334239244461, 1.5804331302642822, -0.4631977379322052, -0.6596349477767944], "max": [0.49071016907691956, -0.013669240288436413, 0.14116856455802917, -0.37282872200012207, 0.7939947247505188, 0.7937014698982239, -0.29901647567749023, -0.18916833400726318, 0.1830555945634842, 3.2120306491851807, 0.6039333343505859, 0.6533675789833069], "mean": [0.42416244745254517, -0.06982331722974777, 0.12554113566875458, -0.8974907994270325, 0.5941526293754578, 0.6058078408241272, -0.47397348284721375, -0.24972888827323914, 0.15900227427482605, 2.433738946914673, 0.17462150752544403, 0.14614035189151764], "std": [0.03523802012205124, 0.026965521275997162, 0.011368324048817158, 0.3577166199684143, 0.21324145793914795, 0.14344489574432373, 0.05444834753870964, 0.03820697218179703, 0.012752221897244453, 0.40943706035614014, 0.2529161274433136, 0.4427000880241394], "count": [335]}, "action": {"min": [-0.14372658729553223, -0.0960424393415451, 0.11321756988763809, 0.19199608266353607, -0.5848036408424377, 0.5826067328453064, -0.5262935757637024, 0.11962537467479706, -0.1132739707827568, 0.0787581205368042, -0.17428870499134064, -0.6679692268371582, 0.004280651919543743, 0.5233939290046692], "max": [-0.11169080436229706, -0.062082335352897644, 0.13857252895832062, 0.562717080116272, -0.34704893827438354, 0.7424370050430298, -0.12027487903833389, 0.16215695440769196, -0.08445308357477188, 0.1136985495686531, 0.65744948387146, -0.20953090488910675, 0.6278070211410522, 0.8683169484138489], "mean": [-0.12725280225276947, -0.08364856243133545, 0.1262522041797638, 0.4670273959636688, -0.4450461268424988, 0.6752272248268127, -0.3094315528869629, 0.13180941343307495, -0.09829271584749222, 0.09348543733358383, 0.18893206119537354, -0.4549647569656372, 0.2735516428947449, 0.7603967189788818], "std": [0.008626695722341537, 0.009438963606953621, 0.005874701775610447, 0.08639803528785706, 0.06741397827863693, 0.045984845608472824, 0.13422338664531708, 0.010065997950732708, 0.008292928338050842, 0.008249000646173954, 0.2439640760421753, 0.11196394264698029, 0.15888582170009613, 0.0835406556725502], "count": [335]}, "timestamp": {"min": [0.0], "max": [11.133333333333333], "mean": [5.566666666666666], "std": [3.2235246409964224], "count": [335]}, "frame_index": {"min": [0], "max": [334], "mean": [167.0], "std": [96.70573922989266], "count": [335]}, "episode_index": {"min": [303], "max": [303], "mean": [303.0], "std": [0.0], "count": [335]}, "index": {"min": [204702], "max": [205036], "mean": [204869.0], "std": [96.70573922989266], "count": [335]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [335]}}} +{"episode_index": 304, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5396345452069717]], [[0.5032419934640523]], [[0.46482360566448805]]], "std": [[[0.22265327484795702]], [[0.21917537119394978]], [[0.22533645740215572]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5551047875816993]], [[0.5286437282135076]], [[0.492836832788671]]], "std": [[[0.21068409463110543]], [[0.19493958934465414]], [[0.21142672937000223]]], "count": [100]}, "observation.state": {"min": [0.3570837080478668, -0.12980368733406067, 0.1077735498547554, -1.4783140420913696, 0.616503894329071, 0.3299577832221985, -0.5520750284194946, -0.34268084168434143, 0.14318430423736572, 1.6217420101165771, 0.20290519297122955, -1.0166860818862915], "max": [0.44441238045692444, -0.0660216435790062, 0.13222546875476837, -0.6850570440292358, 0.9451146721839905, 0.5785977244377136, -0.32698822021484375, -0.18208660185337067, 0.19042499363422394, 2.690321922302246, 1.156901240348816, 0.4333269000053406], "mean": [0.3969026207923889, -0.09280601143836975, 0.12356352061033249, -1.0013642311096191, 0.8167153000831604, 0.4453732967376709, -0.46134382486343384, -0.25765594840049744, 0.1688290238380432, 2.276979684829712, 0.5888709425926208, -0.29462680220603943], "std": [0.022372962906956673, 0.017141157761216164, 0.008100338280200958, 0.23624734580516815, 0.09848888963460922, 0.048907771706581116, 0.04464469105005264, 0.04758306220173836, 0.014742374420166016, 0.2787693738937378, 0.2738599479198456, 0.36426496505737305], "count": [310]}, "action": {"min": [-0.13653182983398438, -0.0953512117266655, 0.11292915046215057, 0.40997937321662903, -0.47155100107192993, 0.66072678565979, -0.4532991945743561, 0.11176526546478271, -0.12117967009544373, 0.08413111418485641, -0.6148493885993958, -0.6551182866096497, -0.3808380365371704, -0.6488444805145264], "max": [-0.12359011918306351, -0.07213696837425232, 0.1335267573595047, 0.5674884915351868, -0.2849624454975128, 0.728291392326355, -0.10204937309026718, 0.15527686476707458, -0.08620505034923553, 0.11318979412317276, 0.7079142332077026, 0.6934874653816223, 0.33739346265792847, 0.8023073077201843], "mean": [-0.13148170709609985, -0.08513814210891724, 0.12362246215343475, 0.5211287140846252, -0.35370779037475586, 0.7043853998184204, -0.30153992772102356, 0.1280813366174698, -0.10616712272167206, 0.09627591073513031, 0.18189331889152527, -0.18673473596572876, 0.11994786560535431, 0.359875351190567], "std": [0.003975542262196541, 0.007294148206710815, 0.005996975116431713, 0.050320859998464584, 0.04570659250020981, 0.021729430183768272, 0.10553349554538727, 0.00923962239176035, 0.010829447768628597, 0.0083015076816082, 0.4189792275428772, 0.5164635181427002, 0.2501874268054962, 0.5322362780570984], "count": [310]}, "timestamp": {"min": [0.0], "max": [10.3], "mean": [5.15], "std": [2.9829608706041646], "count": [310]}, "frame_index": {"min": [0], "max": [309], "mean": [154.5], "std": [89.48882611812493], "count": [310]}, "episode_index": {"min": [304], "max": [304], "mean": [304.0], "std": [0.0], "count": [310]}, "index": {"min": [205037], "max": [205346], "mean": [205191.5], "std": [89.48882611812493], "count": [310]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [310]}}} +{"episode_index": 305, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5347343164488018]], [[0.4988989596949891]], [[0.45908557189542487]]], "std": [[[0.22332821121561683]], [[0.21875902334664324]], [[0.22513037489800186]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5512628322440087]], [[0.5244068409586057]], [[0.4876724564270153]]], "std": [[[0.20939355598663376]], [[0.19336756750251313]], [[0.20986244901183676]]], "count": [100]}, "observation.state": {"min": [0.3640110194683075, -0.12173344194889069, 0.10474412143230438, -1.6414529085159302, 0.02063211053609848, -0.23273204267024994, -0.5365986227989197, -0.3230419158935547, 0.14741799235343933, 1.89979088306427, -0.43641698360443115, -0.8904028534889221], "max": [0.47507935762405396, -0.03373289853334427, 0.13600285351276398, -0.6361992955207825, 0.9539960622787476, 0.7506218552589417, -0.3568674921989441, -0.21293118596076965, 0.19070370495319366, 2.864574432373047, 1.1062091588974, 0.8247712254524231], "mean": [0.4183708429336548, -0.09614236652851105, 0.12249692529439926, -0.9647842645645142, 0.6099203824996948, 0.48258620500564575, -0.45099154114723206, -0.2603990435600281, 0.17107583582401276, 2.5046942234039307, 0.5137332081794739, 0.011782788671553135], "std": [0.03263077512383461, 0.016294412314891815, 0.008999645709991455, 0.20092923939228058, 0.22090959548950195, 0.18853098154067993, 0.04418909177184105, 0.03127850219607353, 0.011762038804590702, 0.23502613604068756, 0.40808022022247314, 0.4417951703071594], "count": [369]}, "action": {"min": [-0.14005325734615326, -0.09737692773342133, 0.10549625009298325, 0.18449212610721588, -0.6310221552848816, 0.6377101540565491, -0.4280703663825989, 0.1192886233329773, -0.11771611124277115, 0.08750566095113754, -0.60319983959198, -0.6862548589706421, -0.38688498735427856, -0.6880319118499756], "max": [-0.11800852417945862, -0.07145366817712784, 0.131632000207901, 0.5847575664520264, -0.1495029479265213, 0.9321547746658325, -0.08760058134794235, 0.1497180461883545, -0.08990385383367538, 0.11231708526611328, 0.6406051516532898, 0.7026004791259766, 0.4411298632621765, 0.8575202226638794], "mean": [-0.12960317730903625, -0.08558297902345657, 0.1221558004617691, 0.45099273324012756, -0.41028523445129395, 0.7129429578781128, -0.30848947167396545, 0.12946254014968872, -0.10851762443780899, 0.0985003113746643, -0.006615952588617802, -0.09666956961154938, 0.08032283931970596, 0.2724666893482208], "std": [0.0042628757655620575, 0.007788165006786585, 0.0077882325276732445, 0.08976787328720093, 0.09435863792896271, 0.057569459080696106, 0.0673954039812088, 0.007691074162721634, 0.007737205363810062, 0.007018832489848137, 0.3726215958595276, 0.5645908713340759, 0.30222994089126587, 0.600806713104248], "count": [369]}, "timestamp": {"min": [0.0], "max": [12.266666666666667], "mean": [6.133333333333333], "std": [3.5506911168682933], "count": [369]}, "frame_index": {"min": [0], "max": [368], "mean": [184.0], "std": [106.5207335060488], "count": [369]}, "episode_index": {"min": [305], "max": [305], "mean": [305.0], "std": [0.0], "count": [369]}, "index": {"min": [205347], "max": [205715], "mean": [205531.0], "std": [106.5207335060488], "count": [369]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [369]}}} +{"episode_index": 306, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5244275054466231]], [[0.4893311111111111]], [[0.4493756127450981]]], "std": [[[0.22218174049288292]], [[0.21643745169285442]], [[0.22226520452783996]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5365519444444444]], [[0.5121238752723312]], [[0.4759920697167756]]], "std": [[[0.21131930727873474]], [[0.19282607709824132]], [[0.2079049396654189]]], "count": [100]}, "observation.state": {"min": [0.3916970193386078, -0.12068314850330353, 0.0973578616976738, -1.5636578798294067, -0.3201393187046051, 0.1946776956319809, -0.6068986654281616, -0.4448603093624115, 0.14459337294101715, 2.386690855026245, -1.0294194221496582, -1.311057448387146], "max": [0.46832969784736633, -0.05081557855010033, 0.13269861042499542, 0.05200311169028282, 0.8136703372001648, 0.7459008097648621, -0.4379098415374756, -0.2361380010843277, 0.18525798618793488, 3.769176721572876, 0.5603463053703308, 0.9915851950645447], "mean": [0.4214782416820526, -0.08463574200868607, 0.12000096589326859, -0.9972634315490723, 0.511949360370636, 0.4200245141983032, -0.5375035405158997, -0.355204701423645, 0.1686769723892212, 2.911928176879883, -0.3446252644062042, -0.06136409193277359], "std": [0.021917954087257385, 0.01874120905995369, 0.010613217018544674, 0.3610379695892334, 0.25177201628685, 0.11936048418283463, 0.037028830498456955, 0.05480310693383217, 0.010647301562130451, 0.38705164194107056, 0.45921140909194946, 0.6620656847953796], "count": [446]}, "action": {"min": [-0.1434306800365448, -0.09427604079246521, 0.10792286694049835, -0.227582648396492, -0.5694244503974915, -0.5677056312561035, -0.4969276785850525, 0.10888530313968658, -0.12401492148637772, 0.07129088044166565, -0.2809208333492279, -0.603441059589386, 0.09559083729982376, 0.45225051045417786], "max": [-0.11969716101884842, -0.06747962534427643, 0.13014920055866241, 0.5420026183128357, 0.6353417634963989, 0.7922488451004028, 0.665067195892334, 0.14363375306129456, -0.09641460329294205, 0.10264278203248978, 0.49567854404449463, 0.11359764635562897, 0.8657692074775696, 0.8621720671653748], "mean": [-0.12990914285182953, -0.08371854573488235, 0.12084727734327316, 0.39646077156066895, -0.32281869649887085, 0.6586345434188843, -0.2091730535030365, 0.12221204489469528, -0.11109665036201477, 0.08603493124246597, 0.04308079555630684, -0.27962714433670044, 0.49518370628356934, 0.7324278354644775], "std": [0.006495209876447916, 0.008069192059338093, 0.005760253872722387, 0.1536725014448166, 0.2705100178718567, 0.31446683406829834, 0.2556813955307007, 0.007817464880645275, 0.007867429405450821, 0.007378708571195602, 0.21822939813137054, 0.20842427015304565, 0.19337227940559387, 0.09918604791164398], "count": [446]}, "timestamp": {"min": [0.0], "max": [14.833333333333334], "mean": [7.416666666666666], "std": [4.291626213401576], "count": [446]}, "frame_index": {"min": [0], "max": [445], "mean": [222.5], "std": [128.7487864020473], "count": [446]}, "episode_index": {"min": [306], "max": [306], "mean": [306.0], "std": [0.0], "count": [446]}, "index": {"min": [205716], "max": [206161], "mean": [205938.5], "std": [128.7487864020473], "count": [446]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [446]}}} +{"episode_index": 307, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5340364950980392]], [[0.4987244226579521]], [[0.45858308006535947]]], "std": [[[0.22112530581300072]], [[0.21674718205218488]], [[0.2226944570354672]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5474772031590415]], [[0.5217779084967321]], [[0.4849993246187364]]], "std": [[[0.2081882742409561]], [[0.19224952439038956]], [[0.20796320186794695]]], "count": [100]}, "observation.state": {"min": [0.3797885477542877, -0.13685454428195953, 0.09525787085294724, -1.5206714868545532, -0.042493950575590134, 0.06747370958328247, -0.6112620234489441, -0.37960320711135864, 0.14723651111125946, 1.8695955276489258, -0.5286466479301453, -1.1836857795715332], "max": [0.4595566689968109, -0.08506590127944946, 0.13028492033481598, -0.3579407334327698, 0.838948130607605, 0.7420763969421387, -0.44953256845474243, -0.2435595542192459, 0.18432724475860596, 2.9310460090637207, 0.6570849418640137, 0.7025936245918274], "mean": [0.4087965190410614, -0.10100237280130386, 0.118582583963871, -1.1785379648208618, 0.49934619665145874, 0.2885633111000061, -0.49742060899734497, -0.2983188033103943, 0.16732385754585266, 2.49686598777771, 0.07870668917894363, 0.09595536440610886], "std": [0.024513501673936844, 0.013544234447181225, 0.01080525666475296, 0.21921992301940918, 0.1869424432516098, 0.1227438747882843, 0.038659192621707916, 0.03638210520148277, 0.011850518174469471, 0.24419701099395752, 0.3746977150440216, 0.520075798034668], "count": [303]}, "action": {"min": [-0.1377972513437271, -0.09637150913476944, 0.09811019152402878, -0.20287109911441803, -0.5906609892845154, -0.5764930248260498, -0.49179601669311523, 0.11185387521982193, -0.11734595894813538, 0.07707270979881287, -0.14915312826633453, -0.6035544872283936, 0.21803878247737885, 0.568744421005249], "max": [-0.12183016538619995, -0.07015672326087952, 0.12767383456230164, 0.531903088092804, 0.6141620874404907, 0.8115149736404419, 0.5281654000282288, 0.14296165108680725, -0.09091611951589584, 0.10568663477897644, 0.7636332511901855, 0.013128900900483131, 0.49767887592315674, 0.8745303750038147], "mean": [-0.13252712786197662, -0.08593727648258209, 0.11907535046339035, 0.38865333795547485, -0.3713086247444153, 0.7669861912727356, -0.2331828773021698, 0.12653371691703796, -0.10790577530860901, 0.09258364886045456, 0.19648146629333496, -0.44556188583374023, 0.3225855827331543, 0.7419682741165161], "std": [0.004081425257027149, 0.00741594797000289, 0.009578296914696693, 0.10719777643680573, 0.13202494382858276, 0.15663021802902222, 0.12240173667669296, 0.008810681290924549, 0.0059767914935946465, 0.008593037724494934, 0.27071326971054077, 0.15057504177093506, 0.06764613091945648, 0.08807210624217987], "count": [303]}, "timestamp": {"min": [0.0], "max": [10.066666666666666], "mean": [5.033333333333333], "std": [2.9156029806440964], "count": [303]}, "frame_index": {"min": [0], "max": [302], "mean": [151.0], "std": [87.46808941932291], "count": [303]}, "episode_index": {"min": [307], "max": [307], "mean": [307.0], "std": [0.0], "count": [303]}, "index": {"min": [206162], "max": [206464], "mean": [206313.0], "std": [87.46808941932291], "count": [303]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [303]}}} +{"episode_index": 308, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5181001737732129]], [[0.48302749766573294]], [[0.44338916640730364]]], "std": [[[0.2331952828915624]], [[0.22672689008803534]], [[0.23274188208640972]]], "count": [105]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5360669856831621]], [[0.511444070961718]], [[0.4748592514783691]]], "std": [[[0.21969174674918024]], [[0.2015197982238529]], [[0.21730587427272996]]], "count": [105]}, "observation.state": {"min": [0.39127224683761597, -0.14055374264717102, 0.10813909769058228, -1.423585057258606, 0.3290206789970398, 0.06423234194517136, -0.5953068733215332, -0.3751162886619568, 0.1321360170841217, 1.8301738500595093, -0.6865984201431274, -0.7375088334083557], "max": [0.52306067943573, -0.07564417272806168, 0.1333545446395874, -0.84442138671875, 0.7233536243438721, 0.5074355006217957, -0.3436152935028076, -0.23058536648750305, 0.1828974336385727, 3.691801071166992, 1.0618022680282593, 0.6264787912368774], "mean": [0.46303805708885193, -0.10261733084917068, 0.121556356549263, -1.1181700229644775, 0.5401850938796997, 0.34230875968933105, -0.5059172511100769, -0.3053343594074249, 0.16301006078720093, 2.4704761505126953, 0.11783531308174133, -0.15402783453464508], "std": [0.027474086731672287, 0.014920515939593315, 0.006739361677318811, 0.14231649041175842, 0.10861225426197052, 0.14938616752624512, 0.0653131976723671, 0.03347667679190636, 0.013149704784154892, 0.4451757073402405, 0.46372857689857483, 0.31507566571235657], "count": [500]}, "action": {"min": [-0.1336861103773117, -0.09508451819419861, 0.10744590312242508, 0.2887309491634369, -0.4663493037223816, 0.7222161293029785, -0.3844122588634491, 0.1141347661614418, -0.12010285258293152, 0.07367388159036636, -0.5782132744789124, -0.5412346124649048, -0.4026273787021637, -0.5752446055412292], "max": [-0.1096104085445404, -0.07468890398740768, 0.12773576378822327, 0.4939100742340088, -0.25642839074134827, 0.812699556350708, -0.1330237239599228, 0.1587686687707901, -0.08630922436714172, 0.10635486245155334, 0.6596625447273254, 0.6730022430419922, 0.8337074518203735, 0.9187673926353455], "mean": [-0.12312003970146179, -0.08525267988443375, 0.11780469119548798, 0.43569937348365784, -0.395203560590744, 0.7564977407455444, -0.26705676317214966, 0.12758870422840118, -0.10519084334373474, 0.08836280554533005, 0.11737014353275299, -0.16632603108882904, 0.25787293910980225, 0.5238109827041626], "std": [0.005278237629681826, 0.005570189096033573, 0.004905221983790398, 0.04092017188668251, 0.06784094870090485, 0.02679099142551422, 0.05811554566025734, 0.010224295780062675, 0.008628400973975658, 0.008400390855967999, 0.32399508357048035, 0.3767840266227722, 0.3187224566936493, 0.5188066959381104], "count": [500]}, "timestamp": {"min": [0.0], "max": [16.633333333333333], "mean": [8.316666666666668], "std": [4.811242620732772], "count": [500]}, "frame_index": {"min": [0], "max": [499], "mean": [249.5], "std": [144.33727862198316], "count": [500]}, "episode_index": {"min": [308], "max": [308], "mean": [308.0], "std": [0.0], "count": [500]}, "index": {"min": [206465], "max": [206964], "mean": [206714.5], "std": [144.33727862198316], "count": [500]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [500]}}} +{"episode_index": 309, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5395079602396514]], [[0.5021073120915033]], [[0.46167708605664487]]], "std": [[[0.2234151474575025]], [[0.21919939516535653]], [[0.22490761076886787]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5526385866013073]], [[0.5255598093681917]], [[0.48846533496732025]]], "std": [[[0.20939986537382393]], [[0.19340120126615504]], [[0.20906825863562936]]], "count": [100]}, "observation.state": {"min": [0.4253372251987457, -0.10596361756324768, 0.1069011464715004, -1.3774532079696655, 0.34104469418525696, 0.20597194135189056, -0.6100959181785583, -0.3374834358692169, 0.1444844752550125, 1.6573892831802368, -0.8619030117988586, -1.0419689416885376], "max": [0.48647812008857727, -0.0193686094135046, 0.14053986966609955, -1.1243574619293213, 0.8285637497901917, 0.6444498300552368, -0.42832592129707336, -0.216661274433136, 0.18478743731975555, 2.9243359565734863, 1.0034584999084473, 0.6436740159988403], "mean": [0.4392000734806061, -0.06410301476716995, 0.12184225767850876, -1.264137625694275, 0.6161466240882874, 0.42949041724205017, -0.5224261283874512, -0.2623451352119446, 0.16733857989311218, 2.34352970123291, 0.15423355996608734, -0.07031355053186417], "std": [0.0160564836114645, 0.03133093938231468, 0.009721524082124233, 0.06296665966510773, 0.15279634296894073, 0.15388618409633636, 0.052124131470918655, 0.022519459947943687, 0.010854247957468033, 0.3206231892108917, 0.5672608017921448, 0.4731195271015167], "count": [300]}, "action": {"min": [-0.13186758756637573, -0.09616901725530624, 0.1135827898979187, 0.36479154229164124, -0.5426123142242432, 0.7132759094238281, -0.276637464761734, 0.1140175461769104, -0.11420845985412598, 0.08093847334384918, -0.5363677144050598, -0.6442036032676697, -0.2858787178993225, -0.6369779706001282], "max": [-0.11365388333797455, -0.06679350882768631, 0.13145315647125244, 0.5495119094848633, -0.26782462000846863, 0.7680469751358032, -0.09687729924917221, 0.1422998458147049, -0.08508109301328659, 0.10782741010189056, 0.7839372754096985, 0.6757932901382446, 0.49768248200416565, 0.8642029762268066], "mean": [-0.12571467459201813, -0.08120214194059372, 0.12206923216581345, 0.4817831516265869, -0.4077499806880951, 0.7440372109413147, -0.1800059825181961, 0.1221594363451004, -0.10224033892154694, 0.09404589235782623, 0.08571860194206238, -0.2143571972846985, 0.2017066329717636, 0.5195414423942566], "std": [0.005018491297960281, 0.009834893979132175, 0.004981969948858023, 0.05170353502035141, 0.09875231236219406, 0.013815682381391525, 0.0549141988158226, 0.006428587716072798, 0.008382353000342846, 0.006752615794539452, 0.3866218626499176, 0.4200318157672882, 0.2227119356393814, 0.5104808211326599], "count": [300]}, "timestamp": {"min": [0.0], "max": [9.966666666666667], "mean": [4.983333333333333], "std": [2.8867353083961027], "count": [300]}, "frame_index": {"min": [0], "max": [299], "mean": [149.5], "std": [86.60205925188308], "count": [300]}, "episode_index": {"min": [309], "max": [309], "mean": [309.0], "std": [0.0], "count": [300]}, "index": {"min": [206965], "max": [207264], "mean": [207114.5], "std": [86.60205925188308], "count": [300]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [300]}}} +{"episode_index": 310, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5336353135313532]], [[0.4976530555016286]], [[0.45825171487737004]]], "std": [[[0.2211792297801808]], [[0.21764335938794707]], [[0.2230922009049248]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5468308149442395]], [[0.5214635345887529]], [[0.4848320714424384]]], "std": [[[0.2072342193876203]], [[0.19183370419581916]], [[0.20785766650344265]]], "count": [101]}, "observation.state": {"min": [0.4060458540916443, -0.14407530426979065, 0.0996665507555008, -1.5695291757583618, -0.3426843285560608, 0.3788180947303772, -0.6228615641593933, -0.3367806673049927, 0.14322708547115326, 1.9543102979660034, -0.6641900539398193, -1.2040579319000244], "max": [0.46532556414604187, -0.03168636932969093, 0.13335323333740234, 0.07716590166091919, 0.9339104890823364, 0.7429661750793457, -0.4447213113307953, -0.2498226910829544, 0.18192003667354584, 2.9788553714752197, 0.6531224846839905, 0.5648027658462524], "mean": [0.42504623532295227, -0.09481175243854523, 0.12094192951917648, -1.131949782371521, 0.5099595785140991, 0.50396329164505, -0.5309736728668213, -0.28106558322906494, 0.16683471202850342, 2.6014816761016846, 0.05568581074476242, -0.050569918006658554], "std": [0.017584340646862984, 0.02370990253984928, 0.00999909732490778, 0.3933829665184021, 0.33260196447372437, 0.10731926560401917, 0.053690921515226364, 0.016980474814772606, 0.011071587912738323, 0.2674081027507782, 0.46213650703430176, 0.3737652897834778], "count": [473]}, "action": {"min": [-0.13529974222183228, -0.09998317807912827, 0.10416202247142792, -0.19904102385044098, -0.6493051648139954, -0.5610852241516113, -0.5718094110488892, 0.11279239505529404, -0.1173783466219902, 0.0771435871720314, -0.26590871810913086, -0.6150197386741638, 0.18681183457374573, 0.5279085636138916], "max": [-0.1190062090754509, -0.06750188022851944, 0.1313801407814026, 0.598580002784729, 0.5988881587982178, 0.7525572776794434, 0.6774262189865112, 0.13431331515312195, -0.081688292324543, 0.1031307503581047, 0.7578523755073547, -0.0769452378153801, 0.5261901021003723, 0.8666612505912781], "mean": [-0.12916305661201477, -0.08599793165922165, 0.11981181055307388, 0.4176478981971741, -0.39326679706573486, 0.6481379270553589, -0.14085912704467773, 0.12243782728910446, -0.10432341694831848, 0.09193187952041626, 0.2106921523809433, -0.42407727241516113, 0.39388370513916016, 0.7198629975318909], "std": [0.0036633035633713007, 0.009449295699596405, 0.006964727770537138, 0.1786389797925949, 0.26084282994270325, 0.28003305196762085, 0.2293870598077774, 0.004648332484066486, 0.010736451484262943, 0.0069231134839355946, 0.2533198893070221, 0.14302316308021545, 0.09199772775173187, 0.09659183025360107], "count": [473]}, "timestamp": {"min": [0.0], "max": [15.733333333333333], "mean": [7.866666666666667], "std": [4.551434450319542], "count": [473]}, "frame_index": {"min": [0], "max": [472], "mean": [236.0], "std": [136.54303350958628], "count": [473]}, "episode_index": {"min": [310], "max": [310], "mean": [310.0], "std": [0.0], "count": [473]}, "index": {"min": [207265], "max": [207737], "mean": [207501.0], "std": [136.54303350958628], "count": [473]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [473]}}} +{"episode_index": 311, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5346701579520697]], [[0.49895676742919387]], [[0.45869950708061]]], "std": [[[0.22191292395645085]], [[0.21781192034623315]], [[0.2232828588263047]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5463510212418301]], [[0.5211711546840958]], [[0.4838630637254902]]], "std": [[[0.20775645266199755]], [[0.19226853422658968]], [[0.20784493789300207]]], "count": [100]}, "observation.state": {"min": [0.4052426815032959, -0.10756994783878326, 0.0984622985124588, -1.475588083267212, 0.061349790543317795, 0.27854058146476746, -0.605570375919342, -0.31345027685165405, 0.1458909660577774, 1.7897037267684937, -0.4935310482978821, -1.3938920497894287], "max": [0.4643138647079468, -0.019878309220075607, 0.13616101443767548, -0.6296988725662231, 0.9296747446060181, 0.7900871634483337, -0.4346045255661011, -0.20282985270023346, 0.18726076185703278, 2.926852226257324, 1.0895394086837769, 0.4491017162799835], "mean": [0.42961472272872925, -0.07837903499603271, 0.12010505050420761, -1.1675196886062622, 0.500262975692749, 0.5127642750740051, -0.5064798593521118, -0.24792498350143433, 0.1718146950006485, 2.6171422004699707, 0.32525306940078735, -0.06792023777961731], "std": [0.017374370247125626, 0.030532872304320335, 0.011396167799830437, 0.2387523353099823, 0.2957073748111725, 0.14892888069152832, 0.045508645474910736, 0.02475392259657383, 0.011482384987175465, 0.21286939084529877, 0.4856078624725342, 0.4689861238002777], "count": [374]}, "action": {"min": [-0.1359509825706482, -0.09556915611028671, 0.10725458711385727, -0.28301379084587097, -0.6239144802093506, -0.6181533336639404, -0.39934203028678894, 0.11336009949445724, -0.11599904298782349, 0.081568144261837, -0.5684897303581238, -0.6529567241668701, -0.43730562925338745, -0.6442104578018188], "max": [-0.11971980333328247, -0.0616103932261467, 0.13068071007728577, 0.5860509872436523, 0.6233853101730347, 0.7553966641426086, 0.4056576192378998, 0.13678470253944397, -0.08471537381410599, 0.11099127680063248, 0.8169722557067871, 0.6976963877677917, 0.5343847274780273, 0.8609047532081604], "mean": [-0.12888768315315247, -0.08322984725236893, 0.12060311436653137, 0.40403732657432556, -0.4081086814403534, 0.6696051359176636, -0.17216409742832184, 0.12240146845579147, -0.10549245774745941, 0.09835881739854813, -0.018314121291041374, -0.05454364791512489, 0.12981094419956207, 0.29678186774253845], "std": [0.0036800503730773926, 0.01145222783088684, 0.007104105781763792, 0.18440811336040497, 0.24562273919582367, 0.2721608281135559, 0.15421076118946075, 0.004048763774335384, 0.008262954652309418, 0.008252856321632862, 0.3509071469306946, 0.5252175331115723, 0.36005568504333496, 0.6026024222373962], "count": [374]}, "timestamp": {"min": [0.0], "max": [12.433333333333334], "mean": [6.216666666666665], "std": [3.598803813614864], "count": [374]}, "frame_index": {"min": [0], "max": [373], "mean": [186.5], "std": [107.96411440844592], "count": [374]}, "episode_index": {"min": [311], "max": [311], "mean": [311.0], "std": [0.0], "count": [374]}, "index": {"min": [207738], "max": [208111], "mean": [207924.5], "std": [107.96411440844592], "count": [374]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [374]}}} +{"episode_index": 312, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5368068545751634]], [[0.5035212227668846]], [[0.46511724128540305]]], "std": [[[0.23650040548563653]], [[0.23095837533733124]], [[0.23708562141131262]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5498706590413943]], [[0.5276264188453159]], [[0.4923703431372549]]], "std": [[[0.22334713382152652]], [[0.20736459090587325]], [[0.2227670647462912]]], "count": [100]}, "observation.state": {"min": [0.36760979890823364, -0.15593741834163666, 0.09373214095830917, -1.8006075620651245, -0.08334825932979584, -0.24576139450073242, -0.6280744075775146, -0.3904150426387787, 0.14176616072654724, 1.9754889011383057, -1.0609824657440186, -1.2904541492462158], "max": [0.5102177858352661, -0.07007607817649841, 0.13806913793087006, -1.2667369842529297, 0.8695546984672546, 0.412992924451828, -0.481033593416214, -0.28448230028152466, 0.18002226948738098, 3.4902892112731934, 0.6021570563316345, 0.7604619860649109], "mean": [0.43843966722488403, -0.10096602141857147, 0.1190035417675972, -1.5571669340133667, 0.5850964784622192, 0.07068753242492676, -0.5440403819084167, -0.3172934055328369, 0.1629950851202011, 2.6419856548309326, -0.18100318312644958, -0.18125246465206146], "std": [0.03763196989893913, 0.02188713662326336, 0.013635624200105667, 0.1466107815504074, 0.20075856149196625, 0.19206488132476807, 0.03357589244842529, 0.021049078553915024, 0.009808541275560856, 0.27006107568740845, 0.4170542061328888, 0.44962748885154724], "count": [436]}, "action": {"min": [-0.13969074189662933, -0.10230723768472672, 0.10068724304437637, 0.2055971622467041, -0.4308209717273712, 0.6934065818786621, -0.24915918707847595, 0.10684577375650406, -0.11739937961101532, 0.06463152915239334, -0.16790099442005157, -0.6844601631164551, -0.3580281436443329, -0.6735312938690186], "max": [-0.1098218709230423, -0.06825914978981018, 0.12688793241977692, 0.6155297756195068, -0.1668093204498291, 0.95804762840271, 0.032135386019945145, 0.14012351632118225, -0.08634112775325775, 0.09992966800928116, 0.7329347133636475, 0.7318012714385986, 0.6317771077156067, 0.8942708373069763], "mean": [-0.1271834373474121, -0.08590904623270035, 0.1158362552523613, 0.46816328167915344, -0.29709863662719727, 0.8076831102371216, -0.11629805713891983, 0.1237388476729393, -0.10437459498643875, 0.08649297058582306, 0.21985822916030884, -0.2747877836227417, 0.40579771995544434, 0.741199254989624], "std": [0.009059659205377102, 0.009840903803706169, 0.008296641521155834, 0.08910096436738968, 0.08362677693367004, 0.054400984197854996, 0.09373495727777481, 0.005778965540230274, 0.007299548480659723, 0.006878472864627838, 0.16903939843177795, 0.258284330368042, 0.15105104446411133, 0.20977146923542023], "count": [436]}, "timestamp": {"min": [0.0], "max": [14.5], "mean": [7.25], "std": [4.195400921114559], "count": [436]}, "frame_index": {"min": [0], "max": [435], "mean": [217.5], "std": [125.86202763343677], "count": [436]}, "episode_index": {"min": [312], "max": [312], "mean": [312.0], "std": [0.0], "count": [436]}, "index": {"min": [208112], "max": [208547], "mean": [208329.5], "std": [125.86202763343677], "count": [436]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [436]}}} +{"episode_index": 313, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5259463970588235]], [[0.4923076225490196]], [[0.45413037309368187]]], "std": [[[0.22746188806244458]], [[0.2230585924162917]], [[0.22877310649265176]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5419583387799564]], [[0.5184062064270153]], [[0.48307654411764706]]], "std": [[[0.21158770255909584]], [[0.19594263794833847]], [[0.2113367731746926]]], "count": [100]}, "observation.state": {"min": [0.3668529689311981, -0.15619227290153503, 0.1010172888636589, -1.7261675596237183, 0.20481811463832855, 0.13752515614032745, -0.5795834064483643, -0.33150604367256165, 0.14273320138454437, 1.9096462726593018, -0.2799682021141052, -1.174195408821106], "max": [0.47634589672088623, -0.1015307679772377, 0.1322202831506729, -0.8312109112739563, 0.8027394413948059, 0.5582296252250671, -0.4436323940753937, -0.20843656361103058, 0.18731002509593964, 3.16631817817688, 1.033928394317627, 0.5375735759735107], "mean": [0.428586483001709, -0.11977894604206085, 0.12199424207210541, -1.2002698183059692, 0.535905122756958, 0.3436625301837921, -0.5122034549713135, -0.2739168703556061, 0.16466659307479858, 2.610410451889038, 0.13578800857067108, -0.099410280585289], "std": [0.029939934611320496, 0.011876849457621574, 0.010343048721551895, 0.27166345715522766, 0.1542958766222, 0.12804235517978668, 0.03358491510152817, 0.024751897901296616, 0.011977091431617737, 0.24906529486179352, 0.4324573278427124, 0.38816606998443604], "count": [271]}, "action": {"min": [-0.13892893493175507, -0.09781742095947266, 0.10076113045215607, 0.23568637669086456, -0.5249005556106567, 0.7150989174842834, -0.36641407012939453, 0.11707503348588943, -0.1173238605260849, 0.07998564094305038, -0.5428754091262817, -0.6299896836280823, -0.4065695106983185, -0.5384905934333801], "max": [-0.12065646052360535, -0.07272867113351822, 0.1287686973810196, 0.5297985672950745, -0.3174293041229248, 0.806872546672821, -0.021547861397266388, 0.14084266126155853, -0.08646450936794281, 0.10945490002632141, 0.7749488949775696, 0.6603605151176453, 0.6139994263648987, 0.8362375497817993], "mean": [-0.1282787322998047, -0.089532770216465, 0.11843623220920563, 0.427492618560791, -0.41034677624702454, 0.7579697966575623, -0.22765348851680756, 0.12538118660449982, -0.10306455940008163, 0.09237537533044815, 0.11302225291728973, -0.2646011412143707, 0.2987772226333618, 0.5877583622932434], "std": [0.00407066335901618, 0.008312776684761047, 0.008365167304873466, 0.07579383254051208, 0.06795263290405273, 0.029158324003219604, 0.10634347051382065, 0.0047560143284499645, 0.008086585439741611, 0.00767559977248311, 0.29477542638778687, 0.3754074275493622, 0.2899680733680725, 0.41301244497299194], "count": [271]}, "timestamp": {"min": [0.0], "max": [9.0], "mean": [4.5], "std": [2.6076809620810595], "count": [271]}, "frame_index": {"min": [0], "max": [270], "mean": [135.0], "std": [78.23042886243178], "count": [271]}, "episode_index": {"min": [313], "max": [313], "mean": [313.0], "std": [0.0], "count": [271]}, "index": {"min": [208548], "max": [208818], "mean": [208683.0], "std": [78.23042886243178], "count": [271]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [271]}}} +{"episode_index": 314, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5391148692810457]], [[0.5035059395424837]], [[0.4647999673202614]]], "std": [[[0.22488457674895634]], [[0.22043727525410556]], [[0.22525064985502827]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.55359371459695]], [[0.5280128622004358]], [[0.491843984204793]]], "std": [[[0.20765221575052933]], [[0.19250291147525933]], [[0.20774347663289883]]], "count": [100]}, "observation.state": {"min": [0.4084630608558655, -0.12452907115221024, 0.0988524779677391, -1.345160961151123, 0.4689364731311798, 0.34306517243385315, -0.627356231212616, -0.3324173092842102, 0.140128955245018, 1.986602544784546, -0.7591524124145508, -1.194903016090393], "max": [0.49528974294662476, -0.08355996757745743, 0.13151510059833527, -0.5254830121994019, 0.7545067667961121, 0.6182206273078918, -0.4356934130191803, -0.21267634630203247, 0.1816309690475464, 4.236365795135498, 0.8888204097747803, 0.5043472647666931], "mean": [0.43901607394218445, -0.10206091403961182, 0.1168624758720398, -0.9115033149719238, 0.6767606139183044, 0.46021541953086853, -0.5271866917610168, -0.27718886733055115, 0.1627015620470047, 2.7657909393310547, 0.07020595669746399, -0.11638493090867996], "std": [0.03156634047627449, 0.0108449412509799, 0.010714720003306866, 0.3215051591396332, 0.06763295829296112, 0.08608688414096832, 0.05059235170483589, 0.03164699673652649, 0.012943930923938751, 0.4631717801094055, 0.473439484834671, 0.3536638915538788], "count": [266]}, "action": {"min": [-0.13405396044254303, -0.0931948721408844, 0.10140205174684525, 0.4020462930202484, -0.497209370136261, 0.6374810338020325, -0.48759880661964417, 0.11515461653470993, -0.11238161474466324, 0.07189609855413437, -0.5600183010101318, -0.62935471534729, -0.38821840286254883, -0.5578241348266602], "max": [-0.11936259269714355, -0.06950730830430984, 0.12415903061628342, 0.5206338167190552, -0.3626644015312195, 0.7468829154968262, -0.16623671352863312, 0.14198561012744904, -0.08371952921152115, 0.10668110102415085, 0.7446602582931519, 0.6417862176895142, 0.8645126819610596, 0.8280581831932068], "mean": [-0.12894219160079956, -0.08216625452041626, 0.11631746590137482, 0.4747171700000763, -0.38771796226501465, 0.698607325553894, -0.33940762281417847, 0.12427589297294617, -0.10109520703554153, 0.08999929577112198, 0.048488177359104156, -0.21454954147338867, 0.32492101192474365, 0.5031489133834839], "std": [0.0036276711616665125, 0.007971479557454586, 0.008245060220360756, 0.041022930294275284, 0.0272018201649189, 0.04081474244594574, 0.1303071528673172, 0.006008869037032127, 0.008132148534059525, 0.009969963692128658, 0.30718672275543213, 0.3933311998844147, 0.3382057845592499, 0.47898706793785095], "count": [266]}, "timestamp": {"min": [0.0], "max": [8.833333333333334], "mean": [4.416666666666666], "std": [2.5595681059289843], "count": [266]}, "frame_index": {"min": [0], "max": [265], "mean": [132.5], "std": [76.78704317786953], "count": [266]}, "episode_index": {"min": [314], "max": [314], "mean": [314.0], "std": [0.0], "count": [266]}, "index": {"min": [208819], "max": [209084], "mean": [208951.5], "std": [76.78704317786953], "count": [266]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [266]}}} +{"episode_index": 315, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5226722788965437]], [[0.49084514109697935]], [[0.45360758000647705]]], "std": [[[0.2332035606682347]], [[0.2291563386502477]], [[0.2346823720363269]]], "count": [148]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5371843019490078]], [[0.5162421483983983]], [[0.4817149244833069]]], "std": [[[0.21897795728172992]], [[0.2040158695992946]], [[0.2192769243889231]]], "count": [148]}, "observation.state": {"min": [0.3383483588695526, -0.1849440038204193, 0.09865673631429672, -2.507262706756592, 0.17639772593975067, -0.3790695071220398, -0.6389634609222412, -0.3728921711444855, 0.14213819801807404, 1.8213669061660767, -0.9601446986198425, -0.8216840028762817], "max": [0.5304436087608337, -0.06618382036685944, 0.13706710934638977, -0.43930041790008545, 1.0217677354812622, 0.8685240149497986, -0.4304496943950653, -0.21435989439487457, 0.18486003577709198, 3.3734917640686035, 1.140641450881958, 0.7412194609642029], "mean": [0.4340144991874695, -0.11416129022836685, 0.12508916854858398, -1.3212066888809204, 0.5301838517189026, 0.2869308888912201, -0.5134565234184265, -0.28156235814094543, 0.16817286610603333, 2.386126756668091, 0.18792890012264252, -0.22974352538585663], "std": [0.03946417197585106, 0.022242821753025055, 0.008503898978233337, 0.6403281688690186, 0.17507624626159668, 0.3463093936443329, 0.03961491957306862, 0.031182579696178436, 0.010162482969462872, 0.29061347246170044, 0.3892531394958496, 0.3804062604904175], "count": [783]}, "action": {"min": [-0.14365893602371216, -0.0997530147433281, 0.09905880689620972, -0.34620991349220276, -0.6093890070915222, -0.6101530194282532, -0.5058034062385559, 0.11188352108001709, -0.11671621352434158, 0.07009664177894592, -0.5602968335151672, -0.5927131175994873, -0.3387306034564972, -0.5738528370857239], "max": [-0.11006319522857666, -0.0724295824766159, 0.13553151488304138, 0.6698575615882874, 0.6348856687545776, 0.8922627568244934, 0.3707934617996216, 0.1349286437034607, -0.08294595777988434, 0.10844752937555313, 0.6729049682617188, 0.6834417581558228, 0.6162018775939941, 0.8417657017707825], "mean": [-0.12657234072685242, -0.09066087752580643, 0.12067210674285889, 0.43786656856536865, -0.33222007751464844, 0.7035259008407593, -0.16609527170658112, 0.1232733428478241, -0.10621781647205353, 0.09316965192556381, 0.29395827651023865, -0.3710508644580841, 0.31109917163848877, 0.6674636602401733], "std": [0.0068657128140330315, 0.00613074516877532, 0.008999094367027283, 0.15756136178970337, 0.19590014219284058, 0.22774937748908997, 0.24554845690727234, 0.004277125000953674, 0.0069068302400410175, 0.008375986479222775, 0.29364222288131714, 0.24231286346912384, 0.161637544631958, 0.25010308623313904], "count": [783]}, "timestamp": {"min": [0.0], "max": [26.066666666666666], "mean": [13.033333333333333], "std": [7.53441486828323], "count": [783]}, "frame_index": {"min": [0], "max": [782], "mean": [391.0], "std": [226.0324460484969], "count": [783]}, "episode_index": {"min": [315], "max": [315], "mean": [315.0], "std": [0.0], "count": [783]}, "index": {"min": [209085], "max": [209867], "mean": [209476.0], "std": [226.0324460484969], "count": [783]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [783]}}} +{"episode_index": 316, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5372607461873639]], [[0.504599104030501]], [[0.46666841230936823]]], "std": [[[0.2266159717548249]], [[0.22365916230979044]], [[0.2286885929371304]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5478003349673203]], [[0.5268334694989106]], [[0.4924028104575163]]], "std": [[[0.21094491377009503]], [[0.19703757759356624]], [[0.21135947414130038]]], "count": [100]}, "observation.state": {"min": [0.3532455265522003, -0.14919547736644745, 0.09413658082485199, -1.1671342849731445, -0.04112758859992027, 0.2591864764690399, -0.6532042026519775, -0.37333235144615173, 0.14922890067100525, 2.1317079067230225, -0.9989494681358337, -1.1521437168121338], "max": [0.46893978118896484, -0.06540381908416748, 0.1289549320936203, -0.291469007730484, 0.57182377576828, 0.9489675760269165, -0.44879889488220215, -0.24378350377082825, 0.1838061362504959, 3.7586922645568848, 0.7806043028831482, 0.5125341415405273], "mean": [0.43181711435317993, -0.09837064146995544, 0.11739540845155716, -0.6043596267700195, 0.276132732629776, 0.6889573335647583, -0.5624151825904846, -0.31769582629203796, 0.1663428395986557, 2.655766487121582, -0.09840432554483414, -0.024502282962203026], "std": [0.02425292693078518, 0.01677708886563778, 0.012492900714278221, 0.19773338735103607, 0.15777553617954254, 0.14366237819194794, 0.0576130710542202, 0.03512324020266533, 0.01006588526070118, 0.2939606010913849, 0.467090904712677, 0.4179927706718445], "count": [405]}, "action": {"min": [-0.1440766304731369, -0.09662312269210815, 0.10227611660957336, -0.4350579082965851, -0.6046464443206787, -0.5450044274330139, -0.5314027070999146, 0.11038164794445038, -0.11648745834827423, 0.0698404386639595, -0.4174514710903168, -0.6192060708999634, -0.30363330245018005, -0.6158034205436707], "max": [-0.12191466242074966, -0.06907720118761063, 0.12855392694473267, 0.46442511677742004, 0.5488249063491821, 0.8057038187980652, 0.5358896255493164, 0.12919750809669495, -0.08795809745788574, 0.10570068657398224, 0.687374472618103, 0.6255874037742615, 0.6923880577087402, 0.8641948699951172], "mean": [-0.1317228525876999, -0.08467647433280945, 0.1189269945025444, 0.29527774453163147, -0.495722234249115, 0.6047611832618713, -0.39104121923446655, 0.11957378685474396, -0.10589661449193954, 0.08658482879400253, 0.06266063451766968, -0.25948089361190796, 0.34159135818481445, 0.6089400053024292], "std": [0.005855038296431303, 0.008710709400475025, 0.009116929024457932, 0.1575094312429428, 0.19828008115291595, 0.22309701144695282, 0.18580782413482666, 0.004927657078951597, 0.00695939501747489, 0.009729278273880482, 0.2842845618724823, 0.34046226739883423, 0.23978279531002045, 0.4324609637260437], "count": [405]}, "timestamp": {"min": [0.0], "max": [13.466666666666667], "mean": [6.733333333333333], "std": [3.8971024373766987], "count": [405]}, "frame_index": {"min": [0], "max": [404], "mean": [202.0], "std": [116.91307312130097], "count": [405]}, "episode_index": {"min": [316], "max": [316], "mean": [316.0], "std": [0.0], "count": [405]}, "index": {"min": [209868], "max": [210272], "mean": [210070.0], "std": [116.91307312130097], "count": [405]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [405]}}} +{"episode_index": 317, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5183738289760348]], [[0.48383458605664487]], [[0.44557870915032677]]], "std": [[[0.23495243850867106]], [[0.2299953007549424]], [[0.23597572380941662]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5368056290849673]], [[0.5125509940087145]], [[0.4766151225490196]]], "std": [[[0.22027148633372337]], [[0.20378905284655066]], [[0.22030979890163374]]], "count": [100]}, "observation.state": {"min": [0.3105233609676361, -0.16091085970401764, 0.09694823622703552, -2.2287943363189697, 0.028557030484080315, -0.49187663197517395, -0.5983882546424866, -0.3155740201473236, 0.1285828948020935, 2.044267177581787, -0.4649740159511566, -0.8989583849906921], "max": [0.5344362854957581, 0.001498210127465427, 0.1324121356010437, -0.6382961869239807, 1.2112826108932495, 0.6400309205055237, -0.40728920698165894, -0.20969536900520325, 0.1829778105020523, 2.816135883331299, 0.953312873840332, 0.08696512132883072], "mean": [0.44321200251579285, -0.11476659774780273, 0.12449060380458832, -1.6865198612213135, 0.5486409068107605, 0.1015666052699089, -0.5103030204772949, -0.27825871109962463, 0.15318754315376282, 2.3438220024108887, -0.1060149297118187, -0.43933218717575073], "std": [0.05332465097308159, 0.036283206194639206, 0.009122094139456749, 0.36514773964881897, 0.30025187134742737, 0.25038570165634155, 0.054733678698539734, 0.02305527590215206, 0.014304216019809246, 0.19460412859916687, 0.3387725055217743, 0.2079102098941803], "count": [409]}, "action": {"min": [-0.15057797729969025, -0.10078097879886627, 0.10529650747776031, 0.23406000435352325, -0.5564684271812439, 0.6116465330123901, -0.49997326731681824, 0.1184668019413948, -0.11177296191453934, 0.07475941628217697, -0.5432583689689636, -0.5453602075576782, -0.4995684325695038, -0.5018600821495056], "max": [-0.10899750888347626, -0.0638217031955719, 0.1279432326555252, 0.6952511072158813, -0.04085654392838478, 0.9410646557807922, 0.2314027100801468, 0.15605168044567108, -0.08543942123651505, 0.10821980237960815, 0.6422134637832642, 0.6063779592514038, 0.4481049180030823, 0.8473190069198608], "mean": [-0.12485795468091965, -0.09111447632312775, 0.11790063232183456, 0.4709973931312561, -0.3130418062210083, 0.7858063578605652, -0.04181784763932228, 0.13189281523227692, -0.09560131281614304, 0.0867651030421257, 0.3678874671459198, -0.18087711930274963, 0.3258110284805298, 0.7135838270187378], "std": [0.009937544353306293, 0.00867798738181591, 0.005583897233009338, 0.13003401458263397, 0.10027028620243073, 0.08386934548616409, 0.16410014033317566, 0.011472958140075207, 0.007258142344653606, 0.008203918114304543, 0.22217130661010742, 0.22177688777446747, 0.19405578076839447, 0.28352177143096924], "count": [409]}, "timestamp": {"min": [0.0], "max": [13.6], "mean": [6.8], "std": [3.935592571505451], "count": [409]}, "frame_index": {"min": [0], "max": [408], "mean": [204.0], "std": [118.06777714516353], "count": [409]}, "episode_index": {"min": [317], "max": [317], "mean": [317.0], "std": [0.0], "count": [409]}, "index": {"min": [210273], "max": [210681], "mean": [210477.0], "std": [118.06777714516353], "count": [409]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [409]}}} +{"episode_index": 318, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.54096776416122]], [[0.5044408877995643]], [[0.4649626606753813]]], "std": [[[0.2209787473471247]], [[0.21744291425743234]], [[0.22274027465943966]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5533489814814815]], [[0.5274252505446623]], [[0.4913329112200436]]], "std": [[[0.20595017281849087]], [[0.19116104864925404]], [[0.20643218614924302]]], "count": [100]}, "observation.state": {"min": [0.38681623339653015, -0.12913182377815247, 0.0981602594256401, -1.4269400835037231, -0.28379401564598083, 0.16359983384609222, -0.659019410610199, -0.3361319601535797, 0.1437559723854065, 1.8781927824020386, -0.4440686106681824, -0.9845333099365234], "max": [0.4667465388774872, -0.05457654967904091, 0.131878063082695, -0.3776516020298004, 0.709826648235321, 0.8568426966667175, -0.4592786431312561, -0.21035179495811462, 0.18250596523284912, 4.5041399002075195, 0.786616325378418, 0.4984128475189209], "mean": [0.44114989042282104, -0.08139312267303467, 0.11644166707992554, -0.6945067048072815, 0.3129999339580536, 0.6072272062301636, -0.5460391044616699, -0.28896665573120117, 0.16160519421100616, 3.1380715370178223, -0.029825663194060326, -0.14114254713058472], "std": [0.01595262438058853, 0.01974281296133995, 0.011461245827376842, 0.24578949809074402, 0.2945427894592285, 0.15100373327732086, 0.04122671112418175, 0.028155583888292313, 0.00986873172223568, 0.7331704497337341, 0.2583978474140167, 0.397074431180954], "count": [295]}, "action": {"min": [-0.137546107172966, -0.09627025574445724, 0.10713417083024979, -0.25511541962623596, -0.6168331503868103, -0.6144384741783142, -0.5448275804519653, 0.1103542149066925, -0.11077428609132767, 0.07370147854089737, -0.4538244605064392, -0.5689669251441956, -0.4483523666858673, -0.5640784502029419], "max": [-0.11999114602804184, -0.06548741459846497, 0.12759019434452057, 0.5125547647476196, 0.6548199653625488, 0.8449375033378601, 0.4386659264564514, 0.14015331864356995, -0.08248669654130936, 0.10827194154262543, 0.6531649827957153, 0.6023232936859131, 0.9531153440475464, 0.8485666513442993], "mean": [-0.13033995032310486, -0.08150167763233185, 0.11856936663389206, 0.2483215034008026, -0.2690899670124054, 0.4614821672439575, -0.24635115265846252, 0.12295471131801605, -0.1011611670255661, 0.08805898576974869, 0.034069985151290894, -0.2938002049922943, 0.5271757245063782, 0.5377447009086609], "std": [0.0052688331343233585, 0.010183876380324364, 0.007041779346764088, 0.2588811218738556, 0.43103256821632385, 0.4809904992580414, 0.3288038671016693, 0.006241294089704752, 0.006251100450754166, 0.007718413136899471, 0.2494623064994812, 0.24984510242938995, 0.3261711597442627, 0.3382246494293213], "count": [295]}, "timestamp": {"min": [0.0], "max": [9.8], "mean": [4.9], "std": [2.838622514139169], "count": [295]}, "frame_index": {"min": [0], "max": [294], "mean": [147.0], "std": [85.15867542417507], "count": [295]}, "episode_index": {"min": [318], "max": [318], "mean": [318.0], "std": [0.0], "count": [295]}, "index": {"min": [210682], "max": [210976], "mean": [210829.0], "std": [85.15867542417507], "count": [295]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [295]}}} +{"episode_index": 319, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5946065896129693]], [[0.5559143798859413]], [[0.5227145128476227]]], "std": [[[0.24532718870116318]], [[0.23534428721748318]], [[0.24187543702532277]]], "count": [136]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6172741713924131]], [[0.5874392521305908]], [[0.5591343213347431]]], "std": [[[0.24229428498288286]], [[0.21411359888709902]], [[0.22999477741866273]]], "count": [136]}, "observation.state": {"min": [0.3631306290626526, -0.13411298394203186, 0.0998428463935852, -2.305331230163574, -0.41100257635116577, -0.1301615983247757, -0.7011005878448486, -0.38154932856559753, 0.14561614394187927, 1.7559435367584229, -0.7278626561164856, -1.4036972522735596], "max": [0.4958457946777344, -0.01737614907324314, 0.1336747258901596, 1.022448182106018, 0.9508534073829651, 0.7953526973724365, -0.4680207669734955, -0.23617662489414215, 0.18813446164131165, 4.547336101531982, 0.8716042041778564, 0.6272624135017395], "mean": [0.43319380283355713, -0.0730694830417633, 0.11945932358503342, -1.5178030729293823, 0.4693756103515625, 0.2293882966041565, -0.5797646641731262, -0.328874796628952, 0.16733740270137787, 3.4934277534484863, -0.06787849217653275, -0.5397971272468567], "std": [0.03417209908366203, 0.03241441771388054, 0.011532360687851906, 0.6417015194892883, 0.24309255182743073, 0.24256277084350586, 0.051822733134031296, 0.03742095082998276, 0.009730903431773186, 0.9409435987472534, 0.451015830039978, 0.41192859411239624], "count": [700]}, "action": {"min": [-0.14259715378284454, -0.09897597134113312, 0.10343984514474869, 0.0048413462936878204, -0.5702707171440125, -0.5483971834182739, -0.6277511119842529, 0.10446171462535858, -0.12058736383914948, 0.0633019432425499, -0.4737188518047333, -0.588291585445404, -0.4855539798736572, -0.5891495943069458], "max": [-0.11483051627874374, -0.06550116837024689, 0.13031207025051117, 0.6745249032974243, 0.5521516799926758, 0.8752686977386475, 0.9082679748535156, 0.136180117726326, -0.09332320839166641, 0.10726363211870193, 0.6772644519805908, 0.6486015915870667, 0.9923004508018494, 0.8504781126976013], "mean": [-0.1284984052181244, -0.08340883255004883, 0.11955378949642181, 0.43867433071136475, -0.31039533019065857, 0.7424448132514954, 0.0004420129698701203, 0.11748970299959183, -0.1075776219367981, 0.08455561846494675, 0.007204188499599695, -0.08630207926034927, 0.6034671068191528, 0.37562644481658936], "std": [0.006934707518666983, 0.010677609592676163, 0.006962284911423922, 0.11461085826158524, 0.19240061938762665, 0.2221173644065857, 0.24597856402397156, 0.004838291089981794, 0.006906797178089619, 0.008968138135969639, 0.3022138476371765, 0.27621740102767944, 0.41768527030944824, 0.3809751570224762], "count": [700]}, "timestamp": {"min": [0.0], "max": [23.3], "mean": [11.65], "std": [6.735746267324637], "count": [700]}, "frame_index": {"min": [0], "max": [699], "mean": [349.5], "std": [202.0723880197391], "count": [700]}, "episode_index": {"min": [319], "max": [319], "mean": [319.0], "std": [0.0], "count": [700]}, "index": {"min": [210977], "max": [211676], "mean": [211326.5], "std": [202.0723880197391], "count": [700]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [700]}}} +{"episode_index": 320, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6034037130790386]], [[0.5632305461802207]], [[0.5302254098360656]]], "std": [[[0.24401597337125183]], [[0.23506952176746193]], [[0.24104929114043536]]], "count": [122]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6257630026965249]], [[0.5939098249044609]], [[0.5655144960534304]]], "std": [[[0.2402969411446514]], [[0.21317603816376474]], [[0.22893395605012182]]], "count": [122]}, "observation.state": {"min": [0.32983019948005676, -0.11355505883693695, 0.09240733087062836, -2.3017663955688477, 0.3941963016986847, -0.06109553948044777, -0.6818169355392456, -0.42790889739990234, 0.13950413465499878, 1.973811388015747, -1.159633994102478, -1.2198827266693115], "max": [0.4781530201435089, -0.014256159774959087, 0.1349230408668518, -1.014270305633545, 0.9119120240211487, 0.6952146291732788, -0.37947192788124084, -0.2483939826488495, 0.18401095271110535, 4.543561935424805, 0.9926641583442688, 0.6389817595481873], "mean": [0.4103449285030365, -0.0726788192987442, 0.11911162734031677, -1.579544186592102, 0.6135078072547913, 0.2040589302778244, -0.5474580526351929, -0.32089608907699585, 0.1663307547569275, 3.505647897720337, -0.1312088668346405, -0.4063822627067566], "std": [0.03311307728290558, 0.025819530710577965, 0.012544550932943821, 0.3524153530597687, 0.14073504507541656, 0.23547497391700745, 0.05617160350084305, 0.052984967827796936, 0.01142027135938406, 0.9491292238235474, 0.49564698338508606, 0.4570871591567993], "count": [607]}, "action": {"min": [-0.14878985285758972, -0.09583475440740585, 0.10491369664669037, 0.38726022839546204, -0.5426827669143677, 0.657359778881073, -0.2452935129404068, 0.10766386240720749, -0.11912117153406143, 0.06193853169679642, -0.5402835011482239, -0.6223163604736328, -0.39727744460105896, -0.6329629421234131], "max": [-0.11601359397172928, -0.06203806772828102, 0.13147032260894775, 0.6828153729438782, -0.2141198366880417, 0.8570575714111328, 0.1475081592798233, 0.14576391875743866, -0.09095686674118042, 0.10468081384897232, 0.6672273874282837, 0.659666895866394, 0.9992672801017761, 0.7771181464195251], "mean": [-0.1310035139322281, -0.08339979499578476, 0.12000497430562973, 0.4870491921901703, -0.34169334173202515, 0.7784656882286072, -0.08254718035459518, 0.12079766392707825, -0.10653344541788101, 0.08655501902103424, -0.044437479227781296, -0.12214545160531998, 0.5733013153076172, 0.34599199891090393], "std": [0.008689554408192635, 0.009607239626348019, 0.006913095712661743, 0.07195796817541122, 0.0973072499036789, 0.05171896144747734, 0.12603028118610382, 0.008287730626761913, 0.0070325760170817375, 0.010324399918317795, 0.3457280397415161, 0.30257269740104675, 0.40072101354599, 0.4038131833076477], "count": [607]}, "timestamp": {"min": [0.0], "max": [20.2], "mean": [10.1], "std": [5.840852297015869], "count": [607]}, "frame_index": {"min": [0], "max": [606], "mean": [303.0], "std": [175.22556891047608], "count": [607]}, "episode_index": {"min": [320], "max": [320], "mean": [320.0], "std": [0.0], "count": [607]}, "index": {"min": [211677], "max": [212283], "mean": [211980.0], "std": [175.22556891047608], "count": [607]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [607]}}} +{"episode_index": 321, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6016244446997548]], [[0.5624247940495644]], [[0.529365817333878]]], "std": [[[0.23850359840002305]], [[0.23042762486019888]], [[0.23679915282652916]]], "count": [128]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6249300491898149]], [[0.5932781820193355]], [[0.5647611081324891]]], "std": [[[0.23247706761618434]], [[0.20636607213120509]], [[0.22259049442220533]]], "count": [128]}, "observation.state": {"min": [0.3203621208667755, -0.1600150316953659, 0.10135432332754135, -2.2298429012298584, -0.004645640030503273, -0.12172386050224304, -0.7375132441520691, -0.3834800124168396, 0.15219871699810028, 1.516058325767517, -0.5179889798164368, -1.3079257011413574], "max": [0.47741934657096863, -0.012997359968721867, 0.13273750245571136, -0.32963258028030396, 0.8012364506721497, 0.6580393314361572, -0.4369136095046997, -0.2325005978345871, 0.18484057486057281, 4.541883945465088, 0.9475741386413574, 0.6036264300346375], "mean": [0.4108474552631378, -0.07124003767967224, 0.1181757003068924, -0.99893718957901, 0.48659834265708923, 0.4318077862262726, -0.5429202318191528, -0.2956041991710663, 0.16832520067691803, 2.8866610527038574, 0.04357275739312172, -0.0983911007642746], "std": [0.03473414108157158, 0.041333604604005814, 0.009051340632140636, 0.48505541682243347, 0.1955452412366867, 0.2040882259607315, 0.059417758136987686, 0.033203329890966415, 0.007849999703466892, 0.8246012330055237, 0.34226194024086, 0.5677210092544556], "count": [651]}, "action": {"min": [-0.14646968245506287, -0.09924181550741196, 0.10972043126821518, 0.20512482523918152, -0.6224305629730225, 0.6410950422286987, -0.5717335939407349, 0.10491535812616348, -0.12130793929100037, 0.07222670316696167, -0.5647413730621338, -0.6095883250236511, -0.45803362131118774, -0.5566912293434143], "max": [-0.12060749530792236, -0.06517861783504486, 0.14170996844768524, 0.5658519268035889, -0.21747010946273804, 0.8629961609840393, 0.17680864036083221, 0.13089630007743835, -0.08950094878673553, 0.1067691296339035, 0.8502479791641235, 0.5891619920730591, 0.9993789196014404, 0.8361241817474365], "mean": [-0.1328922063112259, -0.08141868561506271, 0.12160389870405197, 0.4025168716907501, -0.4016129672527313, 0.7315820455551147, -0.2967396080493927, 0.12014839798212051, -0.10647137463092804, 0.09068648517131805, 0.07788654416799545, -0.3497086763381958, 0.4198811948299408, 0.5644204616546631], "std": [0.007293890230357647, 0.01090976782143116, 0.005304343067109585, 0.09169639647006989, 0.08814916759729385, 0.049422748386859894, 0.18654648959636688, 0.005959232337772846, 0.007536251097917557, 0.007540906313806772, 0.3366936445236206, 0.24739743769168854, 0.315314382314682, 0.32058608531951904], "count": [651]}, "timestamp": {"min": [0.0], "max": [21.666666666666668], "mean": [10.833333333333334], "std": [6.264243030146638], "count": [651]}, "frame_index": {"min": [0], "max": [650], "mean": [325.0], "std": [187.92729090439914], "count": [651]}, "episode_index": {"min": [321], "max": [321], "mean": [321.0], "std": [0.0], "count": [651]}, "index": {"min": [212284], "max": [212934], "mean": [212609.0], "std": [187.92729090439914], "count": [651]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [651]}}} +{"episode_index": 322, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6048490910635406]], [[0.5652249455337691]], [[0.5318328786152585]]], "std": [[[0.2354309823403064]], [[0.22698245041722495]], [[0.23278161176092066]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6252771256820772]], [[0.5936615623313546]], [[0.5653060227658852]]], "std": [[[0.23279430711009158]], [[0.20603672687671518]], [[0.22103374963552436]]], "count": [109]}, "observation.state": {"min": [0.3667603135108948, -0.11160121113061905, 0.09355714172124863, -1.4141489267349243, 0.49503403902053833, 0.3042875826358795, -0.6814385056495667, -0.3954657018184662, 0.14500689506530762, 1.6823424100875854, -0.8441402912139893, -1.3279777765274048], "max": [0.4747781753540039, -0.0034597800113260746, 0.1336163878440857, -0.4256705939769745, 0.9418354034423828, 0.9760857224464417, -0.4411688446998596, -0.2027989625930786, 0.1903601884841919, 4.543981075286865, 1.1179598569869995, 0.5870482921600342], "mean": [0.4102746546268463, -0.05767330154776573, 0.11698765307664871, -1.0472147464752197, 0.6845355033874512, 0.6070954203605652, -0.5534625053405762, -0.29362133145332336, 0.17064793407917023, 3.224271535873413, 0.11799898743629456, -0.2829051613807678], "std": [0.02911153994500637, 0.03841542825102806, 0.012441418133676052, 0.29875314235687256, 0.14051687717437744, 0.16892267763614655, 0.0613972544670105, 0.04888787865638733, 0.012954674661159515, 0.7748878598213196, 0.5035602450370789, 0.4470297396183014], "count": [527]}, "action": {"min": [-0.1424066573381424, -0.09307938814163208, 0.10677774995565414, 0.40062013268470764, -0.547406792640686, 0.5706688165664673, -0.4098208248615265, 0.1019040122628212, -0.12145330011844635, 0.06678559631109238, -0.5628051161766052, -0.587388277053833, -0.39026615023612976, -0.574832558631897], "max": [-0.11703085899353027, -0.05707896873354912, 0.12825854122638702, 0.6225605607032776, -0.29142242670059204, 0.7935323715209961, -0.05551040545105934, 0.13605132699012756, -0.09007258713245392, 0.11020249128341675, 0.8243610858917236, 0.7071244120597839, 0.9753977656364441, 0.8594294786453247], "mean": [-0.1324617862701416, -0.07774360477924347, 0.12116323411464691, 0.5041355490684509, -0.42360562086105347, 0.6982249021530151, -0.23193462193012238, 0.11752637475728989, -0.10709264129400253, 0.09065241366624832, -0.0801817923784256, -0.11353545635938644, 0.45506250858306885, 0.31230589747428894], "std": [0.006797064561396837, 0.01258765161037445, 0.0069426605477929115, 0.06595084816217422, 0.06964559108018875, 0.059425175189971924, 0.11118711531162262, 0.008401577360928059, 0.008285583928227425, 0.010863890871405602, 0.30588558316230774, 0.4185599386692047, 0.4625893831253052, 0.4396776854991913], "count": [527]}, "timestamp": {"min": [0.0], "max": [17.533333333333335], "mean": [8.766666666666666], "std": [5.071050734863097], "count": [527]}, "frame_index": {"min": [0], "max": [526], "mean": [263.0], "std": [152.13152204589292], "count": [527]}, "episode_index": {"min": [322], "max": [322], "mean": [322.0], "std": [0.0], "count": [527]}, "index": {"min": [212935], "max": [213461], "mean": [213198.0], "std": [152.13152204589292], "count": [527]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [527]}}} +{"episode_index": 323, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6122966517415047]], [[0.5738329460572108]], [[0.5408674861358685]]], "std": [[[0.23615851168799715]], [[0.22951141286542923]], [[0.23550279803392676]]], "count": [154]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6342284946807006]], [[0.6034016919899272]], [[0.5752237058965]]], "std": [[[0.23011062510989982]], [[0.20538676218157534]], [[0.22098364498506834]]], "count": [154]}, "observation.state": {"min": [0.3230728209018707, -0.1348157525062561, 0.09390842914581299, -2.434500217437744, -0.04017113149166107, -0.41424310207366943, -0.6871224045753479, -0.4224103093147278, 0.14782242476940155, 1.485653281211853, -0.8863609433174133, -0.8468403816223145], "max": [0.425924152135849, -0.01680467091500759, 0.1381741464138031, -1.4669908285140991, 0.8839015364646912, 0.17882157862186432, -0.41179928183555603, -0.24539755284786224, 0.19225665926933289, 4.546916961669922, 1.1429643630981445, 1.4127626419067383], "mean": [0.3662221133708954, -0.08294380456209183, 0.12266869843006134, -1.9442179203033447, 0.54201340675354, -0.038602862507104874, -0.5183618068695068, -0.3236056864261627, 0.17491094768047333, 3.4468929767608643, 0.00800919346511364, 0.08218216150999069], "std": [0.019867252558469772, 0.029040826484560966, 0.011541205458343029, 0.18940167129039764, 0.1447879523038864, 0.12874673306941986, 0.05915846675634384, 0.04947362840175629, 0.010446914471685886, 0.9614481925964355, 0.6274111270904541, 0.5725173354148865], "count": [832]}, "action": {"min": [-0.14730215072631836, -0.1044379398226738, 0.10405761748552322, 0.2839225232601166, -0.34890782833099365, 0.7582206726074219, -0.16282355785369873, 0.10389487445354462, -0.12545934319496155, 0.06617533415555954, -0.6065634489059448, -0.6745449304580688, -0.6228389739990234, -0.6311174631118774], "max": [-0.12682248651981354, -0.06654719263315201, 0.13563308119773865, 0.570871114730835, -0.005023045931011438, 0.9548822641372681, 0.26734793186187744, 0.1337721347808838, -0.09362081438302994, 0.10829862207174301, 0.6057844758033752, 0.7007402181625366, 0.9864799380302429, 0.7502840161323547], "mean": [-0.13704289495944977, -0.08962054550647736, 0.12412509322166443, 0.4654047191143036, -0.26096871495246887, 0.8312476873397827, 0.051132697612047195, 0.1201615035533905, -0.11411626636981964, 0.09132178872823715, -0.27834179997444153, -0.10587578266859055, 0.36572951078414917, 0.142139732837677], "std": [0.004039099905639887, 0.010444093495607376, 0.007808516267687082, 0.04693637043237686, 0.06936495006084442, 0.024779874831438065, 0.11864976584911346, 0.0053425985388457775, 0.007347577251493931, 0.010286431759595871, 0.2657841444015503, 0.4837498962879181, 0.48892876505851746, 0.4622200131416321], "count": [832]}, "timestamp": {"min": [0.0], "max": [27.7], "mean": [13.850000000000001], "std": [8.005917950005621], "count": [832]}, "frame_index": {"min": [0], "max": [831], "mean": [415.5], "std": [240.17753850016865], "count": [832]}, "episode_index": {"min": [323], "max": [323], "mean": [323.0], "std": [0.0], "count": [832]}, "index": {"min": [213462], "max": [214293], "mean": [213877.5], "std": [240.17753850016865], "count": [832]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [832]}}} +{"episode_index": 324, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5863108332911114]], [[0.5457886393575517]], [[0.5116867832835116]]], "std": [[[0.2475278270541396]], [[0.23636655332371942]], [[0.24227432583878078]]], "count": [129]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6165066647244599]], [[0.5839485146341051]], [[0.5539995482258364]]], "std": [[[0.24282749036686713]], [[0.2134809922176217]], [[0.2299162893379888]]], "count": [129]}, "observation.state": {"min": [0.36936286091804504, -0.16179125010967255, 0.07936406135559082, -2.4535820484161377, 0.24895170331001282, -0.27146753668785095, -0.5915536284446716, -0.43512967228889465, 0.14540615677833557, 2.0264437198638916, -0.8925096392631531, -0.7434902191162109], "max": [0.5154924392700195, -0.05869276821613312, 0.131830096244812, -0.4799802899360657, 1.1448771953582764, 0.7769717574119568, -0.42784711718559265, -0.19238871335983276, 0.18905870616436005, 4.5448198318481445, 0.9825530648231506, 0.4620179235935211], "mean": [0.45375484228134155, -0.0953720211982727, 0.1154552474617958, -1.6422299146652222, 0.6329591274261475, 0.12156365066766739, -0.5330588221549988, -0.3185358941555023, 0.16643935441970825, 3.1236958503723145, -0.10204540938138962, -0.13948598504066467], "std": [0.04099440947175026, 0.02042674645781517, 0.013188710436224937, 0.47698652744293213, 0.16871397197246552, 0.2912159562110901, 0.04764537140727043, 0.062418509274721146, 0.011283441446721554, 0.49454689025878906, 0.4635646939277649, 0.2200690060853958], "count": [658]}, "action": {"min": [-0.14265987277030945, -0.09369365125894547, 0.08318846672773361, 0.34975284337997437, -0.5428774356842041, 0.5704830288887024, -0.47066012024879456, 0.10714417695999146, -0.11720124632120132, 0.06596753746271133, -0.5427355170249939, -0.584186315536499, -0.5098022818565369, -0.5827379822731018], "max": [-0.1156841516494751, -0.06267277151346207, 0.12774056196212769, 0.6541867852210999, -0.15258949995040894, 0.9058811664581299, 0.23511721193790436, 0.14240559935569763, -0.09437091648578644, 0.11138738691806793, 0.6299855709075928, 0.7083640098571777, 0.9491745233535767, 0.8010817170143127], "mean": [-0.12689964473247528, -0.08271099627017975, 0.11279354989528656, 0.5207654237747192, -0.3011971116065979, 0.7644112706184387, -0.07513289898633957, 0.12322070449590683, -0.1069583147764206, 0.08861614018678665, 0.010174872353672981, -0.19061850011348724, 0.47677797079086304, 0.504637598991394], "std": [0.008164181374013424, 0.008119123056530952, 0.01063212938606739, 0.07796399295330048, 0.10293274372816086, 0.06150200590491295, 0.16630475223064423, 0.006020840723067522, 0.006092758849263191, 0.012210833840072155, 0.2254984974861145, 0.3492506444454193, 0.36847400665283203, 0.4159155786037445], "count": [658]}, "timestamp": {"min": [0.0], "max": [21.9], "mean": [10.950000000000001], "std": [6.331600640175174], "count": [658]}, "frame_index": {"min": [0], "max": [657], "mean": [328.5], "std": [189.9480192052552], "count": [658]}, "episode_index": {"min": [324], "max": [324], "mean": [324.0], "std": [0.0], "count": [658]}, "index": {"min": [214294], "max": [214951], "mean": [214622.5], "std": [189.9480192052552], "count": [658]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [658]}}} +{"episode_index": 325, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5862004326351753]], [[0.5451158010868489]], [[0.509938971516637]]], "std": [[[0.25800859121355757]], [[0.24642285383350865]], [[0.2530873984342529]]], "count": [176]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6160747363339275]], [[0.5831011478139235]], [[0.5521391349153298]]], "std": [[[0.2534348802351352]], [[0.22398875958606126]], [[0.2408709396457176]]], "count": [176]}, "observation.state": {"min": [0.3750081956386566, -0.15321901440620422, 0.09425195306539536, -2.4714057445526123, 0.12324611842632294, -0.6363705396652222, -0.6405852437019348, -0.4680284857749939, 0.13712285459041595, 2.1195459365844727, -1.0434929132461548, -1.2382421493530273], "max": [0.5261883735656738, -0.02212562970817089, 0.1361130326986313, -0.5527427196502686, 1.1421444416046143, 0.7511096000671387, -0.3135506808757782, -0.261792927980423, 0.18684075772762299, 4.542093753814697, 0.9953969120979309, 0.7358521223068237], "mean": [0.4504289925098419, -0.09190623462200165, 0.12481573969125748, -1.4400227069854736, 0.4632973074913025, 0.16411787271499634, -0.5038993954658508, -0.3307090997695923, 0.16884931921958923, 3.804408311843872, -0.26338040828704834, -0.36965835094451904], "std": [0.0306685958057642, 0.01943240687251091, 0.006604228168725967, 0.5122779607772827, 0.23867058753967285, 0.3143368363380432, 0.061289429664611816, 0.04622947797179222, 0.0112219313159585, 0.7989535927772522, 0.5054963231086731, 0.5284218788146973], "count": [990]}, "action": {"min": [-0.13816560804843903, -0.09676400572061539, 0.10315030068159103, 0.19245244562625885, -0.49737200140953064, 0.6060351729393005, -0.4860367178916931, 0.10824216902256012, -0.12139855325222015, 0.06584113091230392, -0.42528608441352844, -0.6746875047683716, -0.12838062644004822, -0.1372818797826767], "max": [-0.11052931845188141, -0.06610265374183655, 0.13185355067253113, 0.6946263909339905, 0.020949658006429672, 0.9178805351257324, 0.22845302522182465, 0.16042806208133698, -0.09579287469387054, 0.1084592267870903, 0.28632640838623047, 0.13780298829078674, 0.9996763467788696, 0.9184880256652832], "mean": [-0.12402882426977158, -0.08757708221673965, 0.12138449400663376, 0.43056660890579224, -0.32806864380836487, 0.7831811904907227, -0.14222384989261627, 0.12465568631887436, -0.11001186072826385, 0.08979738503694534, -0.134160578250885, -0.18091444671154022, 0.7170321941375732, 0.4627656042575836], "std": [0.005975659471005201, 0.004956966266036034, 0.0058671338483691216, 0.12647470831871033, 0.1277378648519516, 0.08174905180931091, 0.1854408234357834, 0.009028107859194279, 0.006710356567054987, 0.009521571919322014, 0.1871899515390396, 0.1914324164390564, 0.2910236120223999, 0.25416994094848633], "count": [990]}, "timestamp": {"min": [0.0], "max": [32.96666666666667], "mean": [16.483333333333334], "std": [9.526274581776836], "count": [990]}, "frame_index": {"min": [0], "max": [989], "mean": [494.5], "std": [285.78823745330504], "count": [990]}, "episode_index": {"min": [325], "max": [325], "mean": [325.0], "std": [0.0], "count": [990]}, "index": {"min": [214952], "max": [215941], "mean": [215446.5], "std": [285.78823745330504], "count": [990]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [990]}}} +{"episode_index": 326, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5812272836912542]], [[0.5391840024898849]], [[0.5027763869436664]]], "std": [[[0.24345355987154452]], [[0.2325772337985929]], [[0.23906373317253599]]], "count": [140]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6093840997510116]], [[0.5751431625427949]], [[0.5428721307967631]]], "std": [[[0.2395121814171229]], [[0.2099168245926199]], [[0.22729556259699216]]], "count": [140]}, "observation.state": {"min": [0.3344174921512604, -0.14802934229373932, 0.0985063686966896, -2.654674768447876, -0.1508467048406601, -0.37900620698928833, -0.6149071455001831, -0.3118671178817749, 0.1538112908601761, 1.8553366661071777, -0.914644718170166, -0.9525232315063477], "max": [0.5119863152503967, -0.0009730643359944224, 0.13663934171199799, -0.022227130830287933, 0.8796657919883728, 0.7982452511787415, -0.4229122996330261, -0.16420847177505493, 0.18772093951702118, 3.3638460636138916, 1.1672855615615845, 0.8094232678413391], "mean": [0.4500694274902344, -0.08018550276756287, 0.12558244168758392, -1.3788777589797974, 0.39409878849983215, 0.2000828981399536, -0.4919402003288269, -0.2524198889732361, 0.17095278203487396, 2.7092676162719727, 0.22485032677650452, -0.02426622249186039], "std": [0.03809269145131111, 0.04032468423247337, 0.011162619106471539, 0.6406267285346985, 0.23786455392837524, 0.27167147397994995, 0.03412648290395737, 0.034250300377607346, 0.00810349453240633, 0.3718228340148926, 0.5359868407249451, 0.4516349136829376], "count": [727]}, "action": {"min": [-0.14363789558410645, -0.10108952969312668, 0.10608913749456406, -0.2544606626033783, -0.6188082098960876, -0.6171084642410278, -0.6131672859191895, 0.11170163750648499, -0.11605251580476761, 0.0807940736413002, -0.5701206922531128, -0.6754698753356934, -0.5501822233200073, -0.675240159034729], "max": [-0.11267343908548355, -0.06027157977223396, 0.1356288641691208, 0.5934103727340698, 0.6210644245147705, 0.9245116114616394, 0.6857978701591492, 0.13657832145690918, -0.08868860453367233, 0.11357416212558746, 0.6895343065261841, 0.739255964756012, 0.6013402342796326, 0.8511528372764587], "mean": [-0.12424103915691376, -0.08653060346841812, 0.12342562526464462, 0.38062548637390137, -0.29558223485946655, 0.7338296175003052, -0.12909063696861267, 0.12436595559120178, -0.10516436398029327, 0.09888316690921783, 0.009095624089241028, -0.1830364167690277, 0.27747440338134766, 0.4136107861995697], "std": [0.007077505346387625, 0.011251305229961872, 0.008122545666992664, 0.15667006373405457, 0.21241158246994019, 0.2570159435272217, 0.2772427499294281, 0.004119297489523888, 0.005837937816977501, 0.006694470532238483, 0.3388192653656006, 0.4711577594280243, 0.336499959230423, 0.5180042386054993], "count": [727]}, "timestamp": {"min": [0.0], "max": [24.2], "mean": [12.099999999999998], "std": [6.995554143724268], "count": [727]}, "frame_index": {"min": [0], "max": [726], "mean": [363.0], "std": [209.86662431172803], "count": [727]}, "episode_index": {"min": [326], "max": [326], "mean": [326.0], "std": [0.0], "count": [727]}, "index": {"min": [215942], "max": [216668], "mean": [216305.0], "std": [209.86662431172803], "count": [727]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [727]}}} +{"episode_index": 327, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.589567355664488]], [[0.5469946868191721]], [[0.5104539188453159]]], "std": [[[0.24052864954725914]], [[0.2302024603290289]], [[0.23640747770712173]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6135831917211328]], [[0.5789367783224401]], [[0.5469946868191721]]], "std": [[[0.23790562686756903]], [[0.2086191968818416]], [[0.22523638829559156]]], "count": [100]}, "observation.state": {"min": [0.40259379148483276, -0.13007399439811707, 0.09450343251228333, -1.6062250137329102, -0.09783173352479935, 0.18663418292999268, -0.6200041770935059, -0.3425340950489044, 0.1412709802389145, 2.4141602516174316, -0.8035592436790466, -1.3816235065460205], "max": [0.4739518463611603, -0.026921449229121208, 0.1329202800989151, -0.5003201961517334, 0.9008444547653198, 0.6424713134765625, -0.4658893048763275, -0.1649344116449356, 0.19156703352928162, 3.197981357574463, 0.7397500276565552, 0.7504128217697144], "mean": [0.43744441866874695, -0.0673908144235611, 0.12192046642303467, -1.1498943567276, 0.505351185798645, 0.3379756510257721, -0.540695071220398, -0.2698252201080322, 0.16844643652439117, 2.836134195327759, -0.0018369322642683983, -0.024317389354109764], "std": [0.01760888285934925, 0.02263537421822548, 0.012446648441255093, 0.38262373208999634, 0.29406946897506714, 0.12230626493692398, 0.03954028710722923, 0.04378454387187958, 0.01208451110869646, 0.22178193926811218, 0.5145851373672485, 0.6156530976295471], "count": [381]}, "action": {"min": [-0.1416180282831192, -0.09705276042222977, 0.10616238415241241, 0.1044936254620552, -0.5584228038787842, 0.6425657272338867, -0.4962092936038971, 0.1092255488038063, -0.1197320893406868, 0.07301276177167892, -0.40308237075805664, -0.6610935926437378, 0.10744227468967438, 0.4837588667869568], "max": [-0.11687226593494415, -0.060699399560689926, 0.12962357699871063, 0.5528253316879272, -0.2640887498855591, 0.8029293417930603, 0.010738642886281013, 0.13212540745735168, -0.08591242134571075, 0.11117050796747208, 0.5384743213653564, 0.06979591399431229, 0.7270832657814026, 0.8439666032791138], "mean": [-0.12667453289031982, -0.08231452107429504, 0.12233049422502518, 0.41709432005882263, -0.38563865423202515, 0.7502793669700623, -0.24453584849834442, 0.1201786920428276, -0.10320660471916199, 0.09378693252801895, 0.11884714663028717, -0.3927517831325531, 0.47358956933021545, 0.6705660820007324], "std": [0.007927321828901768, 0.009649752639234066, 0.007397881709039211, 0.14415332674980164, 0.0889512151479721, 0.052679162472486496, 0.15209142863750458, 0.0048602307215332985, 0.009497766382992268, 0.00947012659162283, 0.2895478308200836, 0.17035841941833496, 0.17842555046081543, 0.11392952501773834], "count": [381]}, "timestamp": {"min": [0.0], "max": [12.666666666666666], "mean": [6.333333333333333], "std": [3.666161581373732], "count": [381]}, "frame_index": {"min": [0], "max": [380], "mean": [190.0], "std": [109.98484744121194], "count": [381]}, "episode_index": {"min": [327], "max": [327], "mean": [327.0], "std": [0.0], "count": [381]}, "index": {"min": [216669], "max": [217049], "mean": [216859.0], "std": [109.98484744121194], "count": [381]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [381]}}} +{"episode_index": 328, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6075337363834422]], [[0.5647379166666667]], [[0.5291154520697168]]], "std": [[[0.23661617750025785]], [[0.22845690294909918]], [[0.2345386243650111]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6307773638344226]], [[0.595143118191721]], [[0.5642163725490197]]], "std": [[[0.23313638142224766]], [[0.20622472795798272]], [[0.22243748860773613]]], "count": [100]}, "observation.state": {"min": [0.3259302079677582, -0.11523090302944183, 0.09296473115682602, -1.3445318937301636, -0.2071409374475479, -0.2852920889854431, -0.6225835680961609, -0.32705000042915344, 0.14065395295619965, 2.566185474395752, -0.8826717734336853, -1.2596793174743652], "max": [0.46969661116600037, -0.00015445465396624058, 0.13004380464553833, -0.33948802947998047, 0.6077591776847839, 0.7293021082878113, -0.4479725658893585, -0.16830924153327942, 0.18285337090492249, 3.543130874633789, 0.9885650873184204, 0.6116331815719604], "mean": [0.4229234457015991, -0.05660312622785568, 0.11820833384990692, -0.779106855392456, 0.4248541295528412, 0.5682912468910217, -0.5268046259880066, -0.27193883061408997, 0.16665266454219818, 2.8610424995422363, 0.01910175010561943, -0.05014986917376518], "std": [0.029723387211561203, 0.0272055733948946, 0.014453889802098274, 0.24276812374591827, 0.18817172944545746, 0.2071915566921234, 0.04515158012509346, 0.05129009485244751, 0.010977229103446007, 0.18255287408828735, 0.5265721082687378, 0.5707650184631348], "count": [405]}, "action": {"min": [-0.14476053416728973, -0.09110284596681595, 0.10641399025917053, -0.1531103402376175, -0.5172303915023804, 0.6240187287330627, -0.5587465167045593, 0.1101241335272789, -0.11627603322267532, 0.07537218928337097, -0.4720357358455658, -0.6419216990470886, -0.5541638731956482, -0.5347232818603516], "max": [-0.11834653466939926, -0.060539811849594116, 0.1392657309770584, 0.48053109645843506, -0.27297139167785645, 0.8165305256843567, -0.1147557720541954, 0.13542316854000092, -0.0894530788064003, 0.11199282854795456, 0.5627049803733826, 0.6262664198875427, 0.66373610496521, 0.8390151262283325], "mean": [-0.13147397339344025, -0.0790080726146698, 0.12294312566518784, 0.3742063045501709, -0.45575276017189026, 0.6972184777259827, -0.36215540766716003, 0.12297293543815613, -0.10278163850307465, 0.0933951586484909, -0.025666577741503716, -0.17621441185474396, 0.29800349473953247, 0.48190051317214966], "std": [0.007876605726778507, 0.010802431032061577, 0.009868767112493515, 0.1403762251138687, 0.05282978713512421, 0.043018586933612823, 0.10315854102373123, 0.00441437354311347, 0.007359807845205069, 0.009943891316652298, 0.31266704201698303, 0.4131029546260834, 0.39787301421165466, 0.46961477398872375], "count": [405]}, "timestamp": {"min": [0.0], "max": [13.466666666666667], "mean": [6.733333333333333], "std": [3.8971024373766987], "count": [405]}, "frame_index": {"min": [0], "max": [404], "mean": [202.0], "std": [116.91307312130097], "count": [405]}, "episode_index": {"min": [328], "max": [328], "mean": [328.0], "std": [0.0], "count": [405]}, "index": {"min": [217050], "max": [217454], "mean": [217252.0], "std": [116.91307312130097], "count": [405]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [405]}}} +{"episode_index": 329, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5749773720043573]], [[0.5406094199346405]], [[0.5042044798474945]]], "std": [[[0.22524320567185133]], [[0.22221037359505094]], [[0.22626721068005745]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5904650245098039]], [[0.5650994389978214]], [[0.5328585920479303]]], "std": [[[0.208346425299816]], [[0.19407278114841095]], [[0.2082134258388985]]], "count": [100]}, "observation.state": {"min": [0.3525427579879761, -0.08382254093885422, 0.09388121217489243, -1.723022222518921, 0.4038974940776825, 0.3562294840812683, -0.5988593101501465, -0.4408908188343048, 0.15444646775722504, 2.282474994659424, -0.8358054757118225, -0.3994881510734558], "max": [0.4240475296974182, 0.02185533009469509, 0.1270403116941452, -0.40784692764282227, 0.9813233613967896, 0.9855021834373474, -0.44416525959968567, -0.22903308272361755, 0.1893516629934311, 4.53873872756958, 0.8707844018936157, 1.4068371057510376], "mean": [0.3899359703063965, -0.026925913989543915, 0.11823424696922302, -1.2975717782974243, 0.7647596001625061, 0.5108321309089661, -0.5009320974349976, -0.3093731701374054, 0.17189805209636688, 3.2836902141571045, 0.0031634438782930374, 0.40407904982566833], "std": [0.012782311998307705, 0.029840096831321716, 0.011268621310591698, 0.36055058240890503, 0.13347291946411133, 0.14275404810905457, 0.03579407185316086, 0.0424690768122673, 0.008667504414916039, 0.9259300231933594, 0.4591367542743683, 0.5782601237297058], "count": [341]}, "action": {"min": [-0.14259347319602966, -0.0877845510840416, 0.10769673436880112, 0.4232179522514343, -0.5274598598480225, 0.5832942128181458, -0.46373966336250305, 0.11137182265520096, -0.12264297902584076, 0.0750739723443985, -0.5051115155220032, -0.7042772769927979, -0.41052499413490295, -0.7031658887863159], "max": [-0.1271260678768158, -0.055643923580646515, 0.1374863088130951, 0.607967734336853, -0.28739866614341736, 0.741693913936615, 0.020776662975549698, 0.13607920706272125, -0.09709537774324417, 0.10420961678028107, 0.21276505291461945, 0.7307052612304688, 0.8974953889846802, 0.8716057538986206], "mean": [-0.13401930034160614, -0.07550869882106781, 0.12455910444259644, 0.5410215854644775, -0.39623159170150757, 0.7098930478096008, -0.14099733531475067, 0.12304776906967163, -0.11202104389667511, 0.09241341054439545, -0.12990209460258484, -0.2986380159854889, 0.41547274589538574, 0.40248075127601624], "std": [0.004568152129650116, 0.010057075880467892, 0.008093907497823238, 0.049479611217975616, 0.05571320652961731, 0.02633289061486721, 0.14220410585403442, 0.005734025500714779, 0.007974009960889816, 0.0060046459548175335, 0.20037753880023956, 0.40703973174095154, 0.3562912046909332, 0.4759795367717743], "count": [341]}, "timestamp": {"min": [0.0], "max": [11.333333333333334], "mean": [5.666666666666667], "std": [3.2812599206199238], "count": [341]}, "frame_index": {"min": [0], "max": [340], "mean": [170.0], "std": [98.4377976185977], "count": [341]}, "episode_index": {"min": [329], "max": [329], "mean": [329.0], "std": [0.0], "count": [341]}, "index": {"min": [217455], "max": [217795], "mean": [217625.0], "std": [98.4377976185977], "count": [341]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [341]}}} +{"episode_index": 330, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5477510232248239]], [[0.5125929495314847]], [[0.4743410643653362]]], "std": [[[0.24406873819197383]], [[0.2374906388321831]], [[0.2422955647665156]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5684936967235654]], [[0.5427268201239503]], [[0.5079485373437401]]], "std": [[[0.23106902955429873]], [[0.21139628154042847]], [[0.226633015955576]]], "count": [103]}, "observation.state": {"min": [0.3738420605659485, -0.13883928954601288, 0.09291288256645203, -2.612736701965332, 0.004235730040818453, -0.18025614321231842, -0.6048290133476257, -0.4112586975097656, 0.14576521515846252, 2.313509225845337, -1.0806580781936646, -0.6217201352119446], "max": [0.4882620573043823, -0.0041316598653793335, 0.13866673409938812, -0.5261120796203613, 0.8475562334060669, 0.6835897564888, -0.4829256534576416, -0.2953713536262512, 0.18273411691188812, 3.6253294944763184, 0.05315160006284714, 0.9270881414413452], "mean": [0.4431498944759369, -0.08313168585300446, 0.12561695277690887, -1.514971375465393, 0.48058226704597473, 0.24640756845474243, -0.543860912322998, -0.34136834740638733, 0.1677025705575943, 2.781437397003174, -0.41985195875167847, 0.14256928861141205], "std": [0.027059657499194145, 0.029241101816296577, 0.011788167990744114, 0.6317118406295776, 0.2216644287109375, 0.26837095618247986, 0.02959246188402176, 0.026526344940066338, 0.009090624749660492, 0.29094061255455017, 0.28805258870124817, 0.32795438170433044], "count": [484]}, "action": {"min": [-0.14495986700057983, -0.09790020436048508, 0.10545221716165543, 0.18917620182037354, -0.572883129119873, 0.6178565621376038, -0.46507352590560913, 0.11266124993562698, -0.11745651811361313, 0.07535112649202347, -0.28651636838912964, -0.4568807780742645, 0.31485411524772644, 0.6477904319763184], "max": [-0.11493832617998123, -0.05994640663266182, 0.13239683210849762, 0.61406409740448, -0.15149058401584625, 0.9402244687080383, 0.30898305773735046, 0.13755583763122559, -0.09228920191526413, 0.10019027441740036, 0.22758813202381134, -0.01840757578611374, 0.7236987352371216, 0.8826305866241455], "mean": [-0.12469493597745895, -0.08762737363576889, 0.1227768138051033, 0.44460421800613403, -0.3638787567615509, 0.7536578178405762, -0.09606467932462692, 0.12238584458827972, -0.10894767194986343, 0.08786991983652115, 0.0063229394145309925, -0.30724218487739563, 0.470009982585907, 0.801069438457489], "std": [0.008091562427580357, 0.009903676807880402, 0.005748385097831488, 0.12230662256479263, 0.1237812414765358, 0.0623910129070282, 0.2419033944606781, 0.005823551211506128, 0.006288864649832249, 0.007340519223362207, 0.1375468373298645, 0.09931604564189911, 0.10606879740953445, 0.053910885006189346], "count": [484]}, "timestamp": {"min": [0.0], "max": [16.1], "mean": [8.049999999999999], "std": [4.657282230848565], "count": [484]}, "frame_index": {"min": [0], "max": [483], "mean": [241.5], "std": [139.7184669254569], "count": [484]}, "episode_index": {"min": [330], "max": [330], "mean": [330.0], "std": [0.0], "count": [484]}, "index": {"min": [217796], "max": [218279], "mean": [218037.5], "std": [139.7184669254569], "count": [484]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [484]}}} +{"episode_index": 331, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5537361301742919]], [[0.5208625027233115]], [[0.4851829248366013]]], "std": [[[0.2374517876603747]], [[0.23273944364513421]], [[0.23693230691110653]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5752889025054466]], [[0.5516218273420479]], [[0.5194547766884532]]], "std": [[[0.2217346495009877]], [[0.20449395098343506]], [[0.21913817872474303]]], "count": [100]}, "observation.state": {"min": [0.3161841332912445, -0.13998998701572418, 0.07171853631734848, -2.4722445011138916, 0.020495470613241196, -0.1294047236442566, -0.5824021697044373, -0.3389430344104767, 0.13929542899131775, 2.128143310546875, -0.7478115558624268, -0.9806028604507446], "max": [0.4692409634590149, -0.020534750074148178, 0.13537415862083435, -0.6370380520820618, 1.1597706079483032, 0.5508772730827332, -0.3787537217140198, -0.19051210582256317, 0.18655945360660553, 3.3604910373687744, 0.9871987104415894, 0.5705564022064209], "mean": [0.4271349012851715, -0.08842983096837997, 0.11764290928840637, -1.6045650243759155, 0.5694162845611572, 0.12427311390638351, -0.5095549821853638, -0.27920836210250854, 0.16792051494121552, 2.789916515350342, 0.12757746875286102, -0.07432593405246735], "std": [0.03324089199304581, 0.03598784655332565, 0.016317306086421013, 0.4887574315071106, 0.30040693283081055, 0.20389583706855774, 0.05301583558320999, 0.04607667028903961, 0.013906748034060001, 0.28050175309181213, 0.505801796913147, 0.4101981520652771], "count": [443]}, "action": {"min": [-0.15814493596553802, -0.10154904425144196, 0.08898668736219406, 0.3190361559391022, -0.4429064691066742, 0.6928503513336182, -0.4665856957435608, 0.1103045716881752, -0.1269702911376953, 0.07916056364774704, -0.5127398371696472, -0.6035634279251099, -0.5861280560493469, -0.5346114635467529], "max": [-0.12014999240636826, -0.051026102155447006, 0.13637898862361908, 0.6190646290779114, -0.15895237028598785, 0.9174533486366272, 0.32839104533195496, 0.14390462636947632, -0.08990343660116196, 0.11112630367279053, 0.6630417108535767, 0.6538661122322083, 0.6311870217323303, 0.8127461671829224], "mean": [-0.12972873449325562, -0.08360611647367477, 0.11699623614549637, 0.4740748107433319, -0.27917659282684326, 0.7879431843757629, -0.07650238275527954, 0.12473640590906143, -0.10568614304065704, 0.09369167685508728, 0.02448546700179577, -0.22903698682785034, 0.3344877362251282, 0.46911272406578064], "std": [0.00845696683973074, 0.013614976778626442, 0.010864543728530407, 0.08761138468980789, 0.09019206464290619, 0.05945078283548355, 0.22640961408615112, 0.0080467713996768, 0.010541366413235664, 0.01003573089838028, 0.3301529884338379, 0.40593820810317993, 0.3546033203601837, 0.46418026089668274], "count": [443]}, "timestamp": {"min": [0.0], "max": [14.733333333333333], "mean": [7.366666666666667], "std": [4.262758626888357], "count": [443]}, "frame_index": {"min": [0], "max": [442], "mean": [221.0], "std": [127.88275880665071], "count": [443]}, "episode_index": {"min": [331], "max": [331], "mean": [331.0], "std": [0.0], "count": [443]}, "index": {"min": [218280], "max": [218722], "mean": [218501.0], "std": [127.88275880665071], "count": [443]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [443]}}} +{"episode_index": 332, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5618183970169265]], [[0.5290465555346071]], [[0.4935303073152338]]], "std": [[[0.23978356385381086]], [[0.23563234844683517]], [[0.2403588193271645]]], "count": [104]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5818223562929445]], [[0.5580499099212335]], [[0.5260999167295124]]], "std": [[[0.2230857867524789]], [[0.20710474675630064]], [[0.22200333587677865]]], "count": [104]}, "observation.state": {"min": [0.312616229057312, -0.13377317786216736, 0.07472334057092667, -2.2847816944122314, 0.24157333374023438, -1.0109951496124268, -0.5532256960868835, -0.27767857909202576, 0.14580799639225006, 1.4028257131576538, 0.10725965350866318, -1.3544179201126099], "max": [0.4771413207054138, 0.025160659104585648, 0.12928418815135956, -1.4267303943634033, 1.0432196855545044, 0.05558326840400696, -0.3864532709121704, -0.2058880627155304, 0.19126500189304352, 3.344764232635498, 1.3990211486816406, 1.1911810636520386], "mean": [0.4052278995513916, -0.09389552474021912, 0.11586833745241165, -1.8669519424438477, 0.578018844127655, -0.23695509135723114, -0.45257070660591125, -0.24658051133155823, 0.1747010350227356, 2.406529426574707, 0.9266178011894226, -0.08239933848381042], "std": [0.04114866256713867, 0.04070847108960152, 0.01566074602305889, 0.29197484254837036, 0.21361294388771057, 0.27464085817337036, 0.03454284742474556, 0.019505474716424942, 0.013688363134860992, 0.6292741894721985, 0.35391733050346375, 0.7400212287902832], "count": [491]}, "action": {"min": [-0.1590786576271057, -0.09541992098093033, 0.08378283679485321, 0.3478853404521942, -0.3114168643951416, 0.7444774508476257, -0.2218731939792633, 0.11637712270021439, -0.12138814479112625, 0.08488845825195312, -0.5953308343887329, -0.6746996641159058, -0.4717126488685608, -0.6754143834114075], "max": [-0.12159097194671631, -0.0625821202993393, 0.1337401568889618, 0.6305454969406128, 0.025802001357078552, 0.9110792875289917, 0.17515063285827637, 0.14293168485164642, -0.09326489269733429, 0.11192800104618073, 0.8021983504295349, 0.830949604511261, 0.34726905822753906, 0.6900981068611145], "mean": [-0.13348223268985748, -0.08551628887653351, 0.1155368834733963, 0.4854791760444641, -0.18249447643756866, 0.8322288990020752, -0.052467428147792816, 0.12709085643291473, -0.10815712809562683, 0.09989237040281296, -0.1884908527135849, 0.5911605358123779, -0.13443979620933533, -0.3646218478679657], "std": [0.009315305389463902, 0.010373900644481182, 0.012385229580104351, 0.08031565696001053, 0.09606538712978363, 0.039473313838243484, 0.13568653166294098, 0.007466938346624374, 0.007706434931606054, 0.007953540422022343, 0.3671770393848419, 0.4072764217853546, 0.200181782245636, 0.35101401805877686], "count": [491]}, "timestamp": {"min": [0.0], "max": [16.333333333333332], "mean": [8.166666666666668], "std": [4.724639903973871], "count": [491]}, "frame_index": {"min": [0], "max": [490], "mean": [245.0], "std": [141.7391971192161], "count": [491]}, "episode_index": {"min": [332], "max": [332], "mean": [332.0], "std": [0.0], "count": [491]}, "index": {"min": [218723], "max": [219213], "mean": [218968.0], "std": [141.7391971192161], "count": [491]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [491]}}} +{"episode_index": 333, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5600057489106753]], [[0.5264562336601307]], [[0.4901861519607843]]], "std": [[[0.23556665766169543]], [[0.23098698319819017]], [[0.23485164073103756]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5778028976034858]], [[0.5536873583877996]], [[0.521017440087146]]], "std": [[[0.21966992566055463]], [[0.20299337236870157]], [[0.21703598844780456]]], "count": [100]}, "observation.state": {"min": [0.39188235998153687, -0.13182705640792847, 0.08160275220870972, -1.6703901290893555, 0.25045469403266907, 0.2210298329591751, -0.5905573964118958, -0.3134271204471588, 0.15457479655742645, 2.002119541168213, -0.39364975690841675, -1.3466520309448242], "max": [0.4666384160518646, 0.06565094739198685, 0.1340610235929489, -0.7420927286148071, 0.8975651860237122, 0.6257911920547485, -0.4298859238624573, -0.203602135181427, 0.1940973848104477, 3.1667375564575195, 1.0464988946914673, 0.6096919178962708], "mean": [0.4199659824371338, -0.07749650627374649, 0.11566255241632462, -1.2025636434555054, 0.5611779689788818, 0.4362947344779968, -0.5364425778388977, -0.2636256814002991, 0.171402245759964, 2.797499418258667, 0.0620647668838501, -0.00945218838751316], "std": [0.023454032838344574, 0.05439572408795357, 0.01590384729206562, 0.3278222382068634, 0.1693688929080963, 0.09812182933092117, 0.041135095059871674, 0.026499293744564056, 0.0118950754404068, 0.3373125195503235, 0.3740449845790863, 0.5473564267158508], "count": [331]}, "action": {"min": [-0.14689768850803375, -0.0962042585015297, 0.10015971213579178, 0.3076721429824829, -0.5428979992866516, 0.6818425059318542, -0.38405919075012207, 0.10086684674024582, -0.12269402295351028, 0.0865803137421608, -0.5895378589630127, -0.5993158221244812, -0.4431338310241699, -0.45534998178482056], "max": [-0.11930384486913681, -0.0444345586001873, 0.12765756249427795, 0.5628236532211304, -0.24295401573181152, 0.7983300685882568, 0.021620316430926323, 0.13709266483783722, -0.09527169913053513, 0.11146405339241028, 0.7813827395439148, 0.631338894367218, 0.5785406231880188, 0.8134292960166931], "mean": [-0.13180869817733765, -0.08103065937757492, 0.1175253614783287, 0.4460847079753876, -0.4147515296936035, 0.7454546093940735, -0.20055818557739258, 0.1185474544763565, -0.10507061332464218, 0.09632150828838348, 0.05408186838030815, -0.35855674743652344, 0.39468711614608765, 0.586246907711029], "std": [0.007322391029447317, 0.016148323193192482, 0.008258795365691185, 0.06681913882493973, 0.08123452216386795, 0.03652632236480713, 0.14375564455986023, 0.008007830008864403, 0.007589295972138643, 0.007711381651461124, 0.3231982886791229, 0.3146951198577881, 0.24979542195796967, 0.32118627429008484], "count": [331]}, "timestamp": {"min": [0.0], "max": [11.0], "mean": [5.5], "std": [3.1850344494910012], "count": [331]}, "frame_index": {"min": [0], "max": [330], "mean": [165.0], "std": [95.55103348473003], "count": [331]}, "episode_index": {"min": [333], "max": [333], "mean": [333.0], "std": [0.0], "count": [331]}, "index": {"min": [219214], "max": [219544], "mean": [219379.0], "std": [95.55103348473003], "count": [331]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [331]}}} +{"episode_index": 334, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5643684290739741]], [[0.5304154349303432]], [[0.49409088365213566]]], "std": [[[0.2358352284992369]], [[0.23174302438445263]], [[0.23627660536040185]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.583690242049929]], [[0.5591652775279327]], [[0.526425226359657]]], "std": [[[0.21911509680842595]], [[0.20354556594032341]], [[0.21846824885968685]]], "count": [109]}, "observation.state": {"min": [0.3642967641353607, -0.1100180521607399, 0.09000659734010696, -2.2797491550445557, -0.4457082748413086, 0.054711490869522095, -0.6356427073478699, -0.3036578595638275, 0.14348503947257996, 2.0069425106048584, -0.272726446390152, -0.8473654389381409], "max": [0.5019930601119995, -0.0007413823623210192, 0.1307334452867508, -0.33214887976646423, 0.9291282296180725, 1.2868229150772095, -0.4404892325401306, -0.19688335061073303, 0.19417516887187958, 4.005077838897705, 1.5083303451538086, 1.626444935798645], "mean": [0.42154181003570557, -0.06869539618492126, 0.11716338247060776, -1.333461880683899, 0.42261114716529846, 0.5193436741828918, -0.5317639112472534, -0.2365572601556778, 0.172124981880188, 3.0558278560638428, 0.6354157328605652, 0.10182573646306992], "std": [0.03373909369111061, 0.017016218975186348, 0.009224282577633858, 0.6110451221466064, 0.4053022265434265, 0.38624149560928345, 0.06003224849700928, 0.020193615928292274, 0.016309034079313278, 0.3507630527019501, 0.5598421692848206, 0.3059728741645813], "count": [527]}, "action": {"min": [-0.14049015939235687, -0.09178680181503296, 0.09538212418556213, -0.47886255383491516, -0.5850681066513062, -0.6079631447792053, -0.4330214262008667, 0.11215431988239288, -0.1208089292049408, 0.07855472713708878, -0.5565858483314514, -0.596108615398407, -0.5928665399551392, -0.5889589190483093], "max": [-0.12083607167005539, -0.06475391983985901, 0.12982982397079468, 0.6430803537368774, 0.8206207752227783, 0.8022691011428833, 0.481118768453598, 0.13622264564037323, -0.0821426510810852, 0.11508587002754211, 0.3591107726097107, 0.8984845876693726, 0.6957272291183472, 0.6470081806182861], "mean": [-0.13167159259319305, -0.08227431774139404, 0.11890047043561935, 0.34450024366378784, -0.15347950160503387, 0.51650470495224, 0.056709758937358856, 0.11989562213420868, -0.10400490462779999, 0.09584047645330429, -0.25620728731155396, 0.3120465874671936, -0.002646186389029026, -0.09618629515171051], "std": [0.004608685150742531, 0.006114911753684282, 0.007515065371990204, 0.29642611742019653, 0.4787445664405823, 0.4553232192993164, 0.25176677107810974, 0.004637762438505888, 0.012567661702632904, 0.011292766779661179, 0.15564917027950287, 0.5707445740699768, 0.47606369853019714, 0.501112163066864], "count": [527]}, "timestamp": {"min": [0.0], "max": [17.533333333333335], "mean": [8.766666666666666], "std": [5.071050734863097], "count": [527]}, "frame_index": {"min": [0], "max": [526], "mean": [263.0], "std": [152.13152204589292], "count": [527]}, "episode_index": {"min": [334], "max": [334], "mean": [334.0], "std": [0.0], "count": [527]}, "index": {"min": [219545], "max": [220071], "mean": [219808.0], "std": [152.13152204589292], "count": [527]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [527]}}} +{"episode_index": 335, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5585014705882353]], [[0.523952843137255]], [[0.4864014950980392]]], "std": [[[0.2315655052350468]], [[0.22767019799906676]], [[0.23163920232824137]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5755799046840959]], [[0.5501264624183007]], [[0.5162286492374727]]], "std": [[[0.2160835792090825]], [[0.20035760729188637]], [[0.21458744092042517]]], "count": [100]}, "observation.state": {"min": [0.30138736963272095, -0.12096889317035675, 0.0860879197716713, -1.4296660423278809, 0.1235193982720375, 0.24687260389328003, -0.6542699337005615, -0.2864207327365875, 0.14651966094970703, 1.7578308582305908, -0.47945746779441833, -1.3680167198181152], "max": [0.4704457223415375, -0.00240177009254694, 0.13281269371509552, -0.6561198234558105, 0.8992047905921936, 0.5722411274909973, -0.4264029562473297, -0.2072395384311676, 0.19334164261817932, 3.148913860321045, 1.202947735786438, 0.3660655617713928], "mean": [0.39170682430267334, -0.07910773903131485, 0.11428435891866684, -1.0902855396270752, 0.4588262438774109, 0.3621245324611664, -0.5578857064247131, -0.24465401470661163, 0.16949275135993958, 2.7684507369995117, 0.12900510430335999, -0.13997341692447662], "std": [0.049098122864961624, 0.03929198905825615, 0.015338929370045662, 0.28509122133255005, 0.26446768641471863, 0.08939558267593384, 0.04033246636390686, 0.017983054742217064, 0.01364856492727995, 0.30694735050201416, 0.30310964584350586, 0.37139520049095154], "count": [317]}, "action": {"min": [-0.15729404985904694, -0.09345003217458725, 0.10549455136060715, 0.24263858795166016, -0.5578688383102417, 0.673488974571228, -0.42883628606796265, 0.10014060884714127, -0.11615302413702011, 0.08123871684074402, -0.6158343553543091, -0.6145656108856201, -0.3480249345302582, -0.393393337726593], "max": [-0.11961453408002853, -0.05592261254787445, 0.12829089164733887, 0.4869215786457062, -0.2043886035680771, 0.8531548976898193, -0.11764417588710785, 0.13098421692848206, -0.08213900774717331, 0.11053019762039185, 0.7889211773872375, 0.6917190551757812, 0.6266329288482666, 0.8400925993919373], "mean": [-0.13653983175754547, -0.0813220888376236, 0.1185012236237526, 0.36806899309158325, -0.39457857608795166, 0.7756660580635071, -0.2618098556995392, 0.11605308204889297, -0.10121189802885056, 0.09535768628120422, 0.15351387858390808, -0.3978198170661926, 0.4522648751735687, 0.6491700410842896], "std": [0.011778765358030796, 0.013431601226329803, 0.006836830172687769, 0.09137923270463943, 0.102442666888237, 0.05447838455438614, 0.12968522310256958, 0.007889765314757824, 0.009455247782170773, 0.008265184238553047, 0.23037411272525787, 0.23760567605495453, 0.17725437879562378, 0.22640696167945862], "count": [317]}, "timestamp": {"min": [0.0], "max": [10.533333333333333], "mean": [5.266666666666667], "std": [3.050318744728892], "count": [317]}, "frame_index": {"min": [0], "max": [316], "mean": [158.0], "std": [91.50956234186677], "count": [317]}, "episode_index": {"min": [335], "max": [335], "mean": [335.0], "std": [0.0], "count": [317]}, "index": {"min": [220072], "max": [220388], "mean": [220230.0], "std": [91.50956234186677], "count": [317]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [317]}}} +{"episode_index": 336, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5482172303657169]], [[0.5154057734204792]], [[0.47941998223237514]]], "std": [[[0.2423374895409054]], [[0.2371631238758715]], [[0.24199027278465157]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5692771723036572]], [[0.545605849567443]], [[0.5128352105675065]]], "std": [[[0.22731675168016155]], [[0.20955510866826646]], [[0.22485202749797611]]], "count": [103]}, "observation.state": {"min": [0.2876640856266022, -0.14057691395282745, 0.07809498906135559, -2.435758352279663, -0.1448346972465515, -0.3379576802253723, -0.6246764063835144, -0.3327030539512634, 0.15423646569252014, 1.9404706954956055, -0.6107651591300964, -0.8691683411598206], "max": [0.48776009678840637, 0.014086260460317135, 0.13548563420772552, 0.5873415470123291, 1.3774325847625732, 0.9257172346115112, -0.46080002188682556, -0.2152557373046875, 0.18611612915992737, 3.1136860847473145, 0.9303579330444336, 0.4270211458206177], "mean": [0.42031750082969666, -0.09698418527841568, 0.12443026900291443, -1.6126796007156372, 0.3885744512081146, 0.19235721230506897, -0.5216174125671387, -0.2687302827835083, 0.16974051296710968, 2.62778902053833, 0.23186981678009033, -0.2797899842262268], "std": [0.0466427356004715, 0.03738564997911453, 0.014833290129899979, 0.8368478417396545, 0.3350098133087158, 0.25700122117996216, 0.05154329165816307, 0.0352795347571373, 0.010411758907139301, 0.3211500346660614, 0.5587591528892517, 0.39190492033958435], "count": [484]}, "action": {"min": [-0.1595388501882553, -0.10028564929962158, 0.09635470807552338, -0.3671606481075287, -0.5319601893424988, -0.6164200901985168, -0.6300188899040222, 0.10704410821199417, -0.11507179588079453, 0.08092644810676575, -0.5428574085235596, -0.5409244298934937, -0.4896693527698517, -0.5223514437675476], "max": [-0.11825496703386307, -0.04900713264942169, 0.13215050101280212, 0.6719411015510559, 0.5614575147628784, 0.8969736099243164, 0.843303918838501, 0.13411585986614227, -0.09011846780776978, 0.1076764166355133, 0.6847729086875916, 0.6285222768783569, 0.5921959280967712, 0.8211500644683838], "mean": [-0.12913043797016144, -0.08955724537372589, 0.12237890064716339, 0.36972272396087646, -0.22147129476070404, 0.7057185173034668, 0.07984025031328201, 0.12135326117277145, -0.10497520118951797, 0.09434803575277328, -0.027490686625242233, -0.07955276221036911, 0.16029781103134155, 0.31930315494537354], "std": [0.010503794997930527, 0.013617664575576782, 0.008016089908778667, 0.20036819577217102, 0.22881142795085907, 0.3111476004123688, 0.34717079997062683, 0.0044023422524333, 0.0069514308124780655, 0.008512330241501331, 0.40420085191726685, 0.455417275428772, 0.42564406991004944, 0.5597406625747681], "count": [484]}, "timestamp": {"min": [0.0], "max": [16.1], "mean": [8.049999999999999], "std": [4.657282230848565], "count": [484]}, "frame_index": {"min": [0], "max": [483], "mean": [241.5], "std": [139.7184669254569], "count": [484]}, "episode_index": {"min": [336], "max": [336], "mean": [336.0], "std": [0.0], "count": [484]}, "index": {"min": [220389], "max": [220872], "mean": [220630.5], "std": [139.7184669254569], "count": [484]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [484]}}} +{"episode_index": 337, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5582123447712418]], [[0.5242554793028322]], [[0.48790327069716777]]], "std": [[[0.24096032635605483]], [[0.2355444983986743]], [[0.2402629466659773]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.580140552832244]], [[0.5557408551198257]], [[0.5235358442265795]]], "std": [[[0.22512491075221636]], [[0.20735041790041456]], [[0.2221191361274501]]], "count": [100]}, "observation.state": {"min": [0.35865142941474915, -0.11570198088884354, 0.09965748339891434, -2.2311010360717773, -0.5857606530189514, -0.06135905906558037, -0.6443462371826172, -0.43464311957359314, 0.1345847249031067, -3.585068941116333, -1.1946128606796265, -1.449070692062378], "max": [0.4885246455669403, -0.022782059386372566, 0.13751822710037231, -0.05284186825156212, 0.9884284138679504, 1.4043257236480713, -0.4235764443874359, -0.21819809079170227, 0.1890639066696167, 2.55591082572937, 1.5165284872055054, 1.9941186904907227], "mean": [0.43500158190727234, -0.07908934354782104, 0.12031381577253342, -0.9940947890281677, 0.14578060805797577, 0.686061680316925, -0.5392632484436035, -0.30358830094337463, 0.16992326080799103, -2.3713831901550293, 0.11613233387470245, 0.04451030120253563], "std": [0.026482749730348587, 0.028609123080968857, 0.012314235791563988, 0.8376779556274414, 0.5274993777275085, 0.5186731219291687, 0.06738031655550003, 0.04196430370211601, 0.013115721754729748, 1.8107807636260986, 0.6676796078681946, 0.4812633991241455], "count": [440]}, "action": {"min": [-0.1381843537092209, -0.09952405840158463, 0.1027868315577507, -0.5073984861373901, -0.5125317573547363, -0.5235793590545654, -0.4938327372074127, 0.10498037934303284, -0.12157247215509415, 0.059352993965148926, -0.5172154903411865, -0.6352623701095581, -0.6426986455917358, -0.6404933333396912], "max": [-0.1187453418970108, -0.07348420470952988, 0.13191884756088257, 0.6327783465385437, 0.8190844655036926, 0.8478862047195435, 0.6010691523551941, 0.13456392288208008, -0.08389393240213394, 0.10933209955692291, 0.3591931164264679, 0.9033641219139099, 0.9090832471847534, 0.7919459342956543], "mean": [-0.12959736585617065, -0.08599556982517242, 0.11960919946432114, 0.2167021632194519, 0.0707206204533577, 0.3780297040939331, 0.1786559373140335, 0.12071485817432404, -0.1069939061999321, 0.09092610329389572, -0.09317512810230255, -0.16698956489562988, 0.3893037736415863, 0.4134453237056732], "std": [0.0060313488356769085, 0.008452055975794792, 0.008550189435482025, 0.32826948165893555, 0.5641538500785828, 0.47452810406684875, 0.3492954671382904, 0.00845443457365036, 0.009215744212269783, 0.011706434190273285, 0.2063588798046112, 0.49239352345466614, 0.32701438665390015, 0.49896374344825745], "count": [440]}, "timestamp": {"min": [0.0], "max": [14.633333333333333], "mean": [7.3166666666666655], "std": [4.233891039378946], "count": [440]}, "frame_index": {"min": [0], "max": [439], "mean": [219.5], "std": [127.01673118136839], "count": [440]}, "episode_index": {"min": [337], "max": [337], "mean": [337.0], "std": [0.0], "count": [440]}, "index": {"min": [220873], "max": [221312], "mean": [221092.5], "std": [127.01673118136839], "count": [440]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [440]}}} +{"episode_index": 338, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5529769162742756]], [[0.5223957776957856]], [[0.48707145325274676]]], "std": [[[0.23827942827758544]], [[0.23465295746015294]], [[0.23961778376128462]]], "count": [186]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5712894279874434]], [[0.5494758430552628]], [[0.5176582361140394]]], "std": [[[0.22257110739335054]], [[0.20714232297938526]], [[0.22196210579521294]]], "count": [186]}, "observation.state": {"min": [0.19568632543087006, -0.1547558456659317, 0.08419792354106903, -2.022878885269165, -0.2675342559814453, -0.1613580286502838, -0.6272403597831726, -0.36013421416282654, 0.14764483273029327, -4.0602264404296875, -0.8990681767463684, -0.5340498089790344], "max": [0.47001326084136963, -0.0077459001913666725, 0.1398048847913742, 0.15328334271907806, 0.904670238494873, 1.4074985980987549, -0.3484651446342468, -0.24117322266101837, 0.18755501508712769, -2.1254172325134277, 0.7475382685661316, 0.6401583552360535], "mean": [0.40014123916625977, -0.11256254464387894, 0.12085329741239548, -0.878218412399292, 0.4737551808357239, 0.563341498374939, -0.4761975109577179, -0.2813216745853424, 0.17618314921855927, -3.530766487121582, 0.247371643781662, -0.04565183445811272], "std": [0.051383621990680695, 0.03241845965385437, 0.013426614925265312, 0.587110698223114, 0.3214408755302429, 0.4858890175819397, 0.04528545215725899, 0.028655044734477997, 0.006930748000741005, 0.6442548036575317, 0.3043997287750244, 0.2834751307964325], "count": [1064]}, "action": {"min": [-0.17487290501594543, -0.1044195294380188, 0.10545032471418381, -0.47722557187080383, -0.5500954389572144, -0.5501421093940735, -0.5928643345832825, 0.11127635091543198, -0.12298591434955597, 0.07677462697029114, -0.29370877146720886, -0.6896547079086304, -0.5899849534034729, -0.6918674111366272], "max": [-0.11875607818365097, -0.06474967300891876, 0.1331942081451416, 0.5951054692268372, 0.783356785774231, 0.9336731433868408, 0.6719828844070435, 0.14318203926086426, -0.0915580540895462, 0.11202048510313034, 0.5042296051979065, 0.7516656517982483, 0.8533757925033569, 0.893405556678772], "mean": [-0.1333819031715393, -0.08859971910715103, 0.1202155277132988, 0.24518178403377533, -0.10409323871135712, 0.47653529047966003, -0.05852867290377617, 0.12433253973722458, -0.11336354911327362, 0.09966407716274261, 0.22018185257911682, -0.450762003660202, 0.3920200765132904, 0.6220417618751526], "std": [0.011623304337263107, 0.00852800440043211, 0.007318870164453983, 0.3610557019710541, 0.43779194355010986, 0.4807823896408081, 0.38126689195632935, 0.00470543559640646, 0.005730343982577324, 0.0075519694946706295, 0.23696976900100708, 0.19611741602420807, 0.23607252538204193, 0.2395227700471878], "count": [1064]}, "timestamp": {"min": [0.0], "max": [35.43333333333333], "mean": [17.716666666666665], "std": [10.238340251774753], "count": [1064]}, "frame_index": {"min": [0], "max": [1063], "mean": [531.5], "std": [307.1502075532426], "count": [1064]}, "episode_index": {"min": [338], "max": [338], "mean": [338.0], "std": [0.0], "count": [1064]}, "index": {"min": [221313], "max": [222376], "mean": [221844.5], "std": [307.1502075532426], "count": [1064]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [1064]}}} +{"episode_index": 339, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5564487881263617]], [[0.5234144580610022]], [[0.48697024782135073]]], "std": [[[0.23650919043061344]], [[0.23165436261106945]], [[0.23610581468072134]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5750720234204794]], [[0.5511983905228758]], [[0.5185903758169934]]], "std": [[[0.22151050340738945]], [[0.20456278330509514]], [[0.21912197483433993]]], "count": [100]}, "observation.state": {"min": [0.32518109679222107, -0.14771270751953125, 0.08577681332826614, -2.5676534175872803, -0.012843829579651356, -0.7090983986854553, -0.6123355031013489, -0.38103193044662476, 0.14950372278690338, -4.542722702026367, -0.4590986371040344, -0.9929553270339966], "max": [0.47271621227264404, -0.0036683001089841127, 0.1331484317779541, -0.6198434829711914, 0.8109376430511475, 0.6349267959594727, -0.3869706988334656, -0.2216578871011734, 0.18689779937267303, -3.2099337577819824, 0.8949690461158752, 0.8702582120895386], "mean": [0.4091937243938446, -0.07081491500139236, 0.11810269206762314, -2.028083562850952, 0.4567098617553711, -0.3131183087825775, -0.4897927939891815, -0.2798585593700409, 0.17108982801437378, -3.6994075775146484, 0.3883562684059143, -0.02983134426176548], "std": [0.04448257014155388, 0.050195079296827316, 0.015496916137635708, 0.48504453897476196, 0.23064635694026947, 0.33570846915245056, 0.04901076853275299, 0.042527660727500916, 0.01009924616664648, 0.36291325092315674, 0.4316138029098511, 0.5044795870780945], "count": [364]}, "action": {"min": [-0.1524050533771515, -0.09881033003330231, 0.10102323442697525, 0.21555806696414948, -0.5854719281196594, 0.6531080007553101, -0.42919379472732544, 0.10789091885089874, -0.11932972818613052, 0.07561546564102173, -0.564429521560669, -0.668940544128418, -0.5293331742286682, -0.6692382097244263], "max": [-0.11968309432268143, -0.06248073652386665, 0.13277195394039154, 0.6147376298904419, 0.04151353985071182, 0.9471979141235352, 0.2912713587284088, 0.14451979100704193, -0.09848387539386749, 0.10692191869020462, 0.6910697817802429, 0.7227716445922852, 0.4646061658859253, 0.8484207987785339], "mean": [-0.13272948563098907, -0.08450085669755936, 0.11941275000572205, 0.4796401560306549, -0.1187674030661583, 0.8256576061248779, 0.02626321092247963, 0.12457762658596039, -0.10883290320634842, 0.09497913718223572, -0.06349514424800873, -0.0054815057665109634, 0.04113592207431793, 0.17618092894554138], "std": [0.010321615263819695, 0.01235541608184576, 0.009309693239629269, 0.0921776220202446, 0.15707585215568542, 0.06188346445560455, 0.1908932775259018, 0.00939688365906477, 0.004219433758407831, 0.008126928471028805, 0.3512539267539978, 0.5587033033370972, 0.36646202206611633, 0.6272030472755432], "count": [364]}, "timestamp": {"min": [0.0], "max": [12.1], "mean": [6.05], "std": [3.5025784153328465], "count": [364]}, "frame_index": {"min": [0], "max": [363], "mean": [181.5], "std": [105.0773524599854], "count": [364]}, "episode_index": {"min": [339], "max": [339], "mean": [339.0], "std": [0.0], "count": [364]}, "index": {"min": [222377], "max": [222740], "mean": [222558.5], "std": [105.0773524599854], "count": [364]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [364]}}} +{"episode_index": 340, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6754311437908497]], [[0.6067679656862746]], [[0.5280017456427015]]], "std": [[[0.2387451141311571]], [[0.23646138805855746]], [[0.29152683212142605]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6754311437908497]], [[0.6067679656862746]], [[0.5280017456427015]]], "std": [[[0.2387451141311571]], [[0.23646138805855746]], [[0.29152683212142605]]], "count": [100]}, "observation.state": {"min": [0.5327372550964355, 0.25947609543800354, 0.12387994676828384, -0.5133209824562073, 0.23665441572666168, 0.5192627906799316, -0.2883668541908264, -0.1916782259941101, 0.1426994949579239, 3.979705333709717, -0.8404511213302612, 0.42263516783714294], "max": [0.5327527523040771, 0.25948381423950195, 0.1238812506198883, -0.5129016041755676, 0.23665441572666168, 0.5192627906799316, -0.20207302272319794, -0.05089281126856804, 0.16403253376483917, 4.53810977935791, -0.21820849180221558, 1.2729007005691528], "mean": [0.5327394008636475, 0.25947749614715576, 0.12388085573911667, -0.5130956768989563, 0.23665501177310944, 0.5192636847496033, -0.2621539831161499, -0.11139582842588425, 0.15564650297164917, 4.243736267089844, -0.5348919034004211, 0.8738723397254944], "std": [3.4112165394617477e-06, 3.2454220217914553e-06, 7.01871670116816e-07, 0.00020765970111824572, 5.960464477539062e-07, 8.940696716308594e-07, 0.02991718053817749, 0.03844405710697174, 0.007464898284524679, 0.23286817967891693, 0.23920832574367523, 0.3299841284751892], "count": [217]}, "action": {"min": [-0.11690643429756165, -0.030566763132810593, 0.14270417392253876, 0.3806711733341217, -0.3512918949127197, 0.6850761771202087, -0.5122132301330566, 0.15085344016551971, -0.09020667523145676, 0.10040436685085297, -0.5195138454437256, -0.6265283823013306, -0.6294171214103699, -0.25526270270347595], "max": [-0.1169033870100975, -0.030564740300178528, 0.1427072286605835, 0.3806951642036438, -0.35126838088035583, 0.6851932406425476, -0.5120373368263245, 0.17032070457935333, -0.07278463244438171, 0.12090711295604706, 0.3900890350341797, 0.7809467315673828, 0.7639650702476501, 0.23078635334968567], "mean": [-0.11690554022789001, -0.03056616522371769, 0.14270617067813873, 0.38068056106567383, -0.35127997398376465, 0.6851321458816528, -0.5121328234672546, 0.1578427106142044, -0.08302704989910126, 0.11443839222192764, -0.06353455036878586, 0.1552104651927948, 0.05317461118102074, -0.06266070902347565], "std": [6.518892519125075e-07, 6.210889296198729e-07, 6.677025226053956e-07, 9.226910151483025e-06, 9.015348041430116e-06, 5.535331729333848e-05, 8.689241076353937e-05, 0.006913378834724426, 0.004646454472094774, 0.006108921021223068, 0.4152466654777527, 0.5854367017745972, 0.6453129649162292, 0.18309693038463593], "count": [217]}, "timestamp": {"min": [0.0], "max": [7.2], "mean": [3.6], "std": [2.08806130178211], "count": [217]}, "frame_index": {"min": [0], "max": [216], "mean": [108.0], "std": [62.6418390534633], "count": [217]}, "episode_index": {"min": [340], "max": [340], "mean": [340.0], "std": [0.0], "count": [217]}, "index": {"min": [222741], "max": [222957], "mean": [222849.0], "std": [62.6418390534633], "count": [217]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [217]}}} +{"episode_index": 341, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6623615550108933]], [[0.597073107298475]], [[0.5199496541394335]]], "std": [[[0.24513950744302002]], [[0.2405078303983718]], [[0.2913553463104865]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6623615550108933]], [[0.597073107298475]], [[0.5199496541394335]]], "std": [[[0.24513950744302002]], [[0.2405078303983718]], [[0.2913553463104865]]], "count": [100]}, "observation.state": {"min": [0.5220798850059509, 0.2911315858364105, 0.12840141355991364, -0.6141818165779114, -0.03156302869319916, 0.6767987608909607, -0.29195019602775574, -0.1856699436903, 0.14098061621189117, 4.10530948638916, -0.7442589998245239, 0.6471393704414368], "max": [0.5220953822135925, 0.29113930463790894, 0.12840141355991364, -0.6137624382972717, -0.03156302869319916, 0.6767987608909607, -0.22882458567619324, -0.08216215670108795, 0.1661040037870407, 4.516931056976318, -0.30210331082344055, 1.2736963033676147], "mean": [0.5220891833305359, 0.2911313474178314, 0.12840132415294647, -0.6138663291931152, -0.03156297281384468, 0.6767975687980652, -0.27130311727523804, -0.11190702021121979, 0.15723054111003876, 4.31325626373291, -0.5480725765228271, 0.9105157256126404], "std": [6.786431640648516e-06, 1.3432688774628332e-06, 8.940696716308594e-08, 0.00017991586355492473, 5.587935447692871e-08, 1.1920928955078125e-06, 0.023148806765675545, 0.033139411360025406, 0.008174463175237179, 0.14484012126922607, 0.15225297212600708, 0.2141723334789276], "count": [181]}, "action": {"min": [-0.11761217564344406, -0.029032470658421516, 0.14897415041923523, 0.3134443759918213, -0.47260767221450806, 0.689338743686676, -0.4507733881473541, 0.14960062503814697, -0.09175413846969604, 0.10055945068597794, -0.4812729060649872, -0.6331291794776917, -0.6371212005615234, -0.19394057989120483], "max": [-0.11760976910591125, -0.029030561447143555, 0.14897559583187103, 0.31346869468688965, -0.47259920835494995, 0.6894605159759521, -0.450599730014801, 0.16740132868289948, -0.07665981352329254, 0.12291793525218964, 0.40147149562835693, 0.7710684537887573, 0.7282341122627258, 0.1514970362186432], "mean": [-0.11761065572500229, -0.029032031074166298, 0.14897461235523224, 0.31346097588539124, -0.4726046025753021, 0.6893699169158936, -0.4507293999195099, 0.15587404370307922, -0.08380350470542908, 0.11534999310970306, -0.08901092410087585, 0.03893432393670082, 0.11336527019739151, -0.027171174064278603], "std": [9.722610911921947e-07, 3.3220914019693737e-07, 4.9111173439087e-07, 7.538861609646119e-06, 1.814476604522497e-06, 5.0593203923199326e-05, 7.405311043839902e-05, 0.0061296261847019196, 0.004364962223917246, 0.006615319289267063, 0.41017642617225647, 0.6148818135261536, 0.6418959498405457, 0.1364419162273407], "count": [181]}, "timestamp": {"min": [0.0], "max": [6.0], "mean": [3.0], "std": [1.7416467303484175], "count": [181]}, "frame_index": {"min": [0], "max": [180], "mean": [90.0], "std": [52.24940191045253], "count": [181]}, "episode_index": {"min": [341], "max": [341], "mean": [341.0], "std": [0.0], "count": [181]}, "index": {"min": [222958], "max": [223138], "mean": [223048.0], "std": [52.24940191045253], "count": [181]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [181]}}} +{"episode_index": 342, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6563294362745098]], [[0.5902993627450981]], [[0.5113474945533769]]], "std": [[[0.23882361098159324]], [[0.23546777318023537]], [[0.28753961165622915]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6563294362745098]], [[0.5902993627450981]], [[0.5113474945533769]]], "std": [[[0.23882361098159324]], [[0.23546777318023537]], [[0.28753961165622915]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.25570741295814514, 0.12494421005249023, -0.5590333938598633, -0.062442880123853683, 0.48832982778549194, -0.3095811903476715, -0.15494118630886078, 0.13316528499126434, 4.1933794021606445, -0.7166584134101868, 0.6241235733032227], "max": [0.5215238928794861, 0.25572285056114197, 0.12494421005249023, -0.5586140155792236, -0.06216961145401001, 0.4886343479156494, -0.16793854534626007, -0.06490185111761093, 0.1678682565689087, 4.537899971008301, -0.3481498062610626, 1.336146354675293], "mean": [0.5215213298797607, 0.2557118237018585, 0.1249445229768753, -0.5587590336799622, -0.062337812036275864, 0.48850977420806885, -0.2658074200153351, -0.09962436556816101, 0.15428629517555237, 4.426734924316406, -0.5448645353317261, 0.9405475854873657], "std": [3.340314151500934e-06, 7.117806944734184e-06, 3.129243850708008e-07, 0.00019684764265548438, 0.0001325548073509708, 0.00012792606139555573, 0.0425540916621685, 0.027802588418126106, 0.011271537281572819, 0.11911091953516006, 0.11355768889188766, 0.26591214537620544], "count": [186]}, "action": {"min": [-0.1186336800456047, -0.03444338217377663, 0.1443289816379547, 0.24889753758907318, -0.43034449219703674, 0.7112300992012024, -0.4970288872718811, 0.14745409786701202, -0.08809874951839447, 0.09888114780187607, -0.48525843024253845, -0.6464364528656006, -0.6481775641441345, -0.12538811564445496], "max": [-0.11863111704587936, -0.03443830460309982, 0.1443304866552353, 0.24898245930671692, -0.43015262484550476, 0.7114211320877075, -0.49681413173675537, 0.174923837184906, -0.0692937970161438, 0.12463075667619705, 0.40699389576911926, 0.7710505127906799, 0.7362562417984009, 0.07364549487829208], "mean": [-0.11863220483064651, -0.03444146737456322, 0.14432932436466217, 0.248935267329216, -0.4302656054496765, 0.7113001942634583, -0.4969441294670105, 0.15699352324008942, -0.08102106302976608, 0.11397957801818848, -0.03254785016179085, 0.119212307035923, 0.046942491084337234, -0.011468016542494297], "std": [6.93415699970501e-07, 1.5605955923092552e-06, 4.361100138794427e-07, 2.6679810616769828e-05, 8.185170008800924e-05, 6.71779052936472e-05, 7.975954213179648e-05, 0.009024151600897312, 0.005423108581453562, 0.008170581422746181, 0.41078048944473267, 0.6214302182197571, 0.6496808528900146, 0.07343505322933197], "count": [186]}, "timestamp": {"min": [0.0], "max": [6.166666666666667], "mean": [3.0833333333333335], "std": [1.7897599673533713], "count": [186]}, "frame_index": {"min": [0], "max": [185], "mean": [92.5], "std": [53.692799020601136], "count": [186]}, "episode_index": {"min": [342], "max": [342], "mean": [342.0], "std": [0.0], "count": [186]}, "index": {"min": [223139], "max": [223324], "mean": [223231.5], "std": [53.692799020601136], "count": [186]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [186]}}} +{"episode_index": 343, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6439805605070311]], [[0.5840972667855021]], [[0.5079932313329372]]], "std": [[[0.2536759599371612]], [[0.24666285238761954]], [[0.2949247725021308]]], "count": [55]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6439805605070311]], [[0.5840972667855021]], [[0.5079932313329372]]], "std": [[[0.2536759599371612]], [[0.24666285238761954]], [[0.2949247725021308]]], "count": [55]}, "observation.state": {"min": [0.53922438621521, 0.3116509020328522, 0.1320180594921112, -0.6823310852050781, 0.09591881930828094, 0.5191829204559326, -0.3039744794368744, -0.08023147284984589, 0.15794126689434052, 4.537899971008301, -0.6464272737503052, 0.647963285446167], "max": [0.5392398238182068, 0.3116509020328522, 0.1320180594921112, -0.6819117069244385, 0.09591881930828094, 0.5191829204559326, -0.3011479675769806, -0.04953360930085182, 0.1657617837190628, 4.5383195877075195, -0.5899963974952698, 0.6679390668869019], "mean": [0.5392369627952576, 0.3116510510444641, 0.1320180743932724, -0.6821098923683167, 0.09591880440711975, 0.5191826820373535, -0.3032972514629364, -0.07105221599340439, 0.16189882159233093, 4.538027286529541, -0.6231667399406433, 0.6622770428657532], "std": [5.606155809800839e-06, 1.4901161193847656e-07, 1.4901161193847656e-08, 0.0002093769726343453, 1.4901161193847656e-08, 2.384185791015625e-07, 0.0003891603264492005, 0.010306783951818943, 0.002233757870271802, 0.00018594998982734978, 0.017792263999581337, 0.004420835990458727], "count": [55]}, "action": {"min": [-0.11348201334476471, -0.024391403421759605, 0.15163564682006836, 0.3409139811992645, -0.3741019368171692, 0.7382297515869141, -0.4459124505519867, 0.14826779067516327, -0.08448739349842072, 0.1190679669380188, -0.4577721357345581, -0.5270149111747742, 0.7242771983146667, 0.05769985169172287], "max": [-0.11347951740026474, -0.024390587583184242, 0.1516369879245758, 0.34092065691947937, -0.3740994930267334, 0.7383423447608948, -0.4457327127456665, 0.15057234466075897, -0.07622133195400238, 0.1228329986333847, -0.4323020279407501, -0.5033279061317444, 0.7328877449035645, 0.062469322234392166], "mean": [-0.11348007619380951, -0.02439078874886036, 0.15163592994213104, 0.3409190773963928, -0.37410104274749756, 0.7382815480232239, -0.4458277225494385, 0.14920751750469208, -0.08106766641139984, 0.12038902938365936, -0.4473508596420288, -0.5159206986427307, 0.7279369831085205, 0.06067167967557907], "std": [8.431877631664975e-07, 2.3928890868774033e-07, 4.482433553221199e-07, 2.3575742034154246e-06, 6.834361556684598e-07, 5.392820457927883e-05, 8.95311968633905e-05, 0.0005467747687362134, 0.0024962567258626223, 0.0012006493052467704, 0.008172212168574333, 0.0074632177129387856, 0.0024530321825295687, 0.0010335755068808794], "count": [55]}, "timestamp": {"min": [0.0], "max": [1.8], "mean": [0.8999999999999999], "std": [0.5291502622129182], "count": [55]}, "frame_index": {"min": [0], "max": [54], "mean": [27.0], "std": [15.874507866387544], "count": [55]}, "episode_index": {"min": [343], "max": [343], "mean": [343.0], "std": [0.0], "count": [55]}, "index": {"min": [223325], "max": [223379], "mean": [223352.0], "std": [15.874507866387544], "count": [55]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [55]}}} +{"episode_index": 344, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6565244444444445]], [[0.5907033905228759]], [[0.5118463071895424]]], "std": [[[0.24320919018976941]], [[0.23874280435659118]], [[0.290599830903099]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6565244444444445]], [[0.5907033905228759]], [[0.5118463071895424]]], "std": [[[0.24320919018976941]], [[0.23874280435659118]], [[0.290599830903099]]], "count": [100]}, "observation.state": {"min": [0.5315325260162354, 0.28805795311927795, 0.12225180864334106, -0.40407252311706543, -0.18801182508468628, 0.42472949624061584, -0.31016039848327637, -0.1688266545534134, 0.1478716880083084, 4.317725658416748, -0.8673685193061829, 0.6134299039840698], "max": [0.5315479636192322, 0.28805795311927795, 0.12225180864334106, -0.4036531448364258, -0.18801182508468628, 0.4249745309352875, -0.24399201571941376, -0.023616120219230652, 0.16587327420711517, 4.537899971008301, -0.17694427073001862, 1.281945824623108], "mean": [0.5315442681312561, 0.28805842995643616, 0.12225162982940674, -0.40367591381073, -0.18801149725914001, 0.424777626991272, -0.2827400267124176, -0.09414336085319519, 0.15681859850883484, 4.442691326141357, -0.5425615310668945, 0.8786805868148804], "std": [6.037846560502658e-06, 4.76837158203125e-07, 1.7881393432617188e-07, 9.125316864810884e-05, 3.2782554626464844e-07, 6.498151924461126e-05, 0.019507985562086105, 0.040359534323215485, 0.006185024045407772, 0.09443549066781998, 0.23314136266708374, 0.2548504173755646], "count": [214]}, "action": {"min": [-0.11948921531438828, -0.029485207051038742, 0.14260868728160858, 0.19150269031524658, -0.436509907245636, 0.6753824949264526, -0.5627097487449646, 0.14708542823791504, -0.089226134121418, 0.10529062896966934, -0.5447854399681091, -0.6447461247444153, -0.6474263668060303, -0.10722596198320389], "max": [-0.11948647350072861, -0.02948448434472084, 0.14261013269424438, 0.19157783687114716, -0.4364109933376312, 0.6755766868591309, -0.5625374913215637, 0.16485469043254852, -0.0702793225646019, 0.12201229482889175, 0.39316821098327637, 0.8092093467712402, 0.7495540976524353, 0.11853649467229843], "mean": [-0.11948686093091965, -0.029484739527106285, 0.1426088958978653, 0.1915215253829956, -0.4364416301250458, 0.6754336357116699, -0.5626950263977051, 0.15433341264724731, -0.08163809031248093, 0.11558715999126434, -0.16186438500881195, 0.01350188348442316, 0.18081623315811157, 0.00013332514208741486], "std": [8.55915970987553e-07, 2.438005139993038e-07, 4.309362680032791e-07, 1.7859721992863342e-05, 2.1924155589658767e-05, 3.3282300137216225e-05, 3.4622215025592595e-05, 0.0055562411434948444, 0.0057959649711847305, 0.004860240034759045, 0.3902154266834259, 0.6165158152580261, 0.6338867545127869, 0.08216357976198196], "count": [214]}, "timestamp": {"min": [0.0], "max": [7.1], "mean": [3.5500000000000003], "std": [2.0591934774998144], "count": [214]}, "frame_index": {"min": [0], "max": [213], "mean": [106.5], "std": [61.775804324994425], "count": [214]}, "episode_index": {"min": [344], "max": [344], "mean": [344.0], "std": [0.0], "count": [214]}, "index": {"min": [223380], "max": [223593], "mean": [223486.5], "std": [61.775804324994425], "count": [214]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [214]}}} +{"episode_index": 345, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6536818191721132]], [[0.5918462527233116]], [[0.5169188589324618]]], "std": [[[0.2502206435406546]], [[0.24420988265768334]], [[0.2928667510911445]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6536818191721132]], [[0.5918462527233116]], [[0.5169188589324618]]], "std": [[[0.2502206435406546]], [[0.24420988265768334]], [[0.2928667510911445]]], "count": [100]}, "observation.state": {"min": [0.5109823346138, 0.3223854899406433, 0.13347768783569336, -0.40784692764282227, -0.3911902904510498, 0.7293656468391418, -0.33273395895957947, -0.131919726729393, 0.1467789262533188, 3.8979263305664062, -0.8035592436790466, 0.6361698508262634], "max": [0.5109977722167969, 0.32240092754364014, 0.13347768783569336, -0.4074275493621826, -0.390917032957077, 0.729588508605957, -0.24380667507648468, -0.01289695966988802, 0.16785269975662231, 4.537690162658691, 0.37998610734939575, 1.404076099395752], "mean": [0.5109828114509583, 0.3223995864391327, 0.13347798585891724, -0.40778234601020813, -0.390999972820282, 0.7294312715530396, -0.29337278008461, -0.08958423882722855, 0.15870708227157593, 4.268017768859863, -0.2908228933811188, 1.0182678699493408], "std": [3.725774604390608e-06, 2.498707772247144e-06, 2.980232238769531e-07, 0.0001508814748376608, 0.00012482769670896232, 0.00010181336256209761, 0.024058734998106956, 0.02414114959537983, 0.007184868678450584, 0.28241997957229614, 0.49301883578300476, 0.2954257130622864], "count": [158]}, "action": {"min": [-0.11856507509946823, -0.028056595474481583, 0.15477022528648376, 0.1928180754184723, -0.5733729004859924, 0.5947904586791992, -0.5295299291610718, 0.14593982696533203, -0.08871225267648697, 0.1066327691078186, -0.5243493914604187, -0.6302527785301208, -0.6301924586296082, -0.34659460186958313], "max": [-0.11856042593717575, -0.02805357426404953, 0.15477237105369568, 0.19291438162326813, -0.5732323527336121, 0.5949422717094421, -0.5293580293655396, 0.16906391084194183, -0.07177837193012238, 0.12259126454591751, 0.4117228090763092, 0.8554494380950928, 0.7276976704597473, 0.05893629789352417], "mean": [-0.1185641959309578, -0.028054719790816307, 0.1547718495130539, 0.19286133348941803, -0.5732753872871399, 0.5948914885520935, -0.529400110244751, 0.15405146777629852, -0.08313647657632828, 0.116949163377285, -0.17399448156356812, 0.1446758657693863, 0.11127327382564545, -0.12612658739089966], "std": [9.823007758313906e-07, 9.58819100560504e-07, 5.414068482423318e-07, 3.1053394195623696e-05, 6.210219726199284e-05, 5.781127401860431e-05, 5.638237053062767e-05, 0.0076519520953297615, 0.0042472463101148605, 0.0048243398778140545, 0.3383488357067108, 0.667040228843689, 0.5752749443054199, 0.17361213266849518], "count": [158]}, "timestamp": {"min": [0.0], "max": [5.233333333333333], "mean": [2.6166666666666667], "std": [1.5203252575974948], "count": [158]}, "frame_index": {"min": [0], "max": [157], "mean": [78.5], "std": [45.609757727924844], "count": [158]}, "episode_index": {"min": [345], "max": [345], "mean": [345.0], "std": [0.0], "count": [158]}, "index": {"min": [223594], "max": [223751], "mean": [223672.5], "std": [45.609757727924844], "count": [158]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [158]}}} +{"episode_index": 346, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6591104357298475]], [[0.5951753567538126]], [[0.5194660266884532]]], "std": [[[0.24366406124830006]], [[0.23844405363325227]], [[0.288749452545698]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6591104357298475]], [[0.5951753567538126]], [[0.5194660266884532]]], "std": [[[0.24366406124830006]], [[0.23844405363325227]], [[0.288749452545698]]], "count": [100]}, "observation.state": {"min": [0.5246284008026123, 0.2744118571281433, 0.12659698724746704, -0.46299540996551514, 0.04345041140913963, 0.524662435054779, -0.316261351108551, -0.13619038462638855, 0.1436341255903244, 3.9587364196777344, -0.7687169313430786, 0.4704621732234955], "max": [0.5246438384056091, 0.2744195759296417, 0.12659698724746704, -0.4625760316848755, 0.04372368007898331, 0.5250486135482788, -0.239304319024086, -0.026326799765229225, 0.1636410653591156, 4.537899971008301, 0.14579114317893982, 1.329008936882019], "mean": [0.5246320366859436, 0.2744186520576477, 0.12659692764282227, -0.4627530574798584, 0.04357476904988289, 0.5248801112174988, -0.28918153047561646, -0.08896937966346741, 0.1537313163280487, 4.28889799118042, -0.3967730402946472, 0.8510205149650574], "std": [6.440083780034911e-06, 1.7320967344858218e-06, 5.960464477539063e-08, 0.0002059385587926954, 0.00013572469470091164, 0.00010583420225884765, 0.02560928277671337, 0.02619890496134758, 0.0072246575728058815, 0.27464351058006287, 0.33681294322013855, 0.3577507734298706], "count": [190]}, "action": {"min": [-0.11750101298093796, -0.030702367424964905, 0.14647158980369568, 0.3054932653903961, -0.404460608959198, 0.6769056916236877, -0.533782422542572, 0.14777374267578125, -0.08558192104101181, 0.10462308675050735, -0.5088118314743042, -0.658179759979248, -0.6511926054954529, -0.308601051568985], "max": [-0.11749802529811859, -0.030698031187057495, 0.14647310972213745, 0.30562013387680054, -0.40423575043678284, 0.6771141290664673, -0.5335534811019897, 0.168747216463089, -0.07148458808660507, 0.11901478469371796, 0.322426974773407, 0.8230980634689331, 0.7607297897338867, 0.11824847757816315], "mean": [-0.11750006675720215, -0.03069988638162613, 0.1464727818965912, 0.3055451512336731, -0.40435880422592163, 0.6769965887069702, -0.5336782932281494, 0.15528757870197296, -0.0798504501581192, 0.11365625262260437, -0.1561766117811203, 0.08716494590044022, 0.17612023651599884, -0.07457201927900314], "std": [1.1258975973760244e-06, 1.3827653901898884e-06, 4.574297634007962e-07, 4.268758129910566e-05, 6.959216261748224e-05, 6.750372267561033e-05, 8.233306289184839e-05, 0.007670235354453325, 0.004549956414848566, 0.0041557359509170055, 0.3549621105194092, 0.6125672459602356, 0.6284283995628357, 0.18780985474586487], "count": [190]}, "timestamp": {"min": [0.0], "max": [6.3], "mean": [3.15], "std": [1.8282505298782221], "count": [190]}, "frame_index": {"min": [0], "max": [189], "mean": [94.5], "std": [54.847515896346664], "count": [190]}, "episode_index": {"min": [346], "max": [346], "mean": [346.0], "std": [0.0], "count": [190]}, "index": {"min": [223752], "max": [223941], "mean": [223846.5], "std": [54.847515896346664], "count": [190]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [190]}}} +{"episode_index": 347, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6588725381263616]], [[0.5973182380174292]], [[0.5231553921568628]]], "std": [[[0.2502759955682241]], [[0.24325931346560603]], [[0.29270286438712384]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6588725381263616]], [[0.5973182380174292]], [[0.5231553921568628]]], "std": [[[0.2502759955682241]], [[0.24325931346560603]], [[0.29270286438712384]]], "count": [100]}, "observation.state": {"min": [0.5520364046096802, 0.29109296202659607, 0.12518660724163055, -0.5326124429702759, -0.14442478120326996, 0.4659651815891266, -0.3275674283504486, -0.15149685740470886, 0.141237273812294, 3.7708542346954346, -0.8128505349159241, 0.632514476776123], "max": [0.5520440936088562, 0.2911006808280945, 0.12518660724163055, -0.5321930646896362, -0.14442478120326996, 0.4659651815891266, -0.23685622215270996, -0.040737420320510864, 0.16948473453521729, 4.537899971008301, 0.3846317529678345, 1.2502614259719849], "mean": [0.55204176902771, 0.29109734296798706, 0.1251867413520813, -0.5324662923812866, -0.14442458748817444, 0.46596524119377136, -0.29220443964004517, -0.10060145705938339, 0.15672415494918823, 4.171269416809082, -0.2402210682630539, 0.9452438950538635], "std": [3.7032668842584826e-06, 3.836623818642693e-06, 1.341104507446289e-07, 0.00018275655747856945, 1.9371509552001953e-07, 5.960464477539063e-08, 0.0233108252286911, 0.02031536214053631, 0.009954906068742275, 0.3270733654499054, 0.4810715317726135, 0.24918900430202484], "count": [135]}, "action": {"min": [-0.11530031263828278, -0.02822796441614628, 0.14395900070667267, 0.2297034114599228, -0.43582484126091003, 0.7041391134262085, -0.5113517045974731, 0.1467062383890152, -0.08730335533618927, 0.10055526345968246, -0.5209306478500366, -0.6267887353897095, -0.6246803998947144, -0.40992075204849243], "max": [-0.11529860645532608, -0.028226252645254135, 0.14396022260189056, 0.22970864176750183, -0.43580418825149536, 0.7042710185050964, -0.511186420917511, 0.17118500173091888, -0.07503778487443924, 0.12387826293706894, 0.43897855281829834, 0.8220070600509644, 0.7091107964515686, 0.06783081591129303], "mean": [-0.11529938131570816, -0.028226962313055992, 0.14395959675312042, 0.2297065556049347, -0.4358122646808624, 0.7042243480682373, -0.5112441778182983, 0.15506911277770996, -0.08357460051774979, 0.11470001190900803, -0.12921242415905, 0.22281889617443085, 0.014145519584417343, -0.16982989013195038], "std": [5.388787940319162e-07, 6.886879191370099e-07, 3.220653468360979e-07, 1.9444025838311063e-06, 7.4681784099084325e-06, 5.6438151659676805e-05, 7.149726297939196e-05, 0.008185412734746933, 0.0035478854551911354, 0.007457368075847626, 0.33427879214286804, 0.6289827227592468, 0.5956997275352478, 0.20589779317378998], "count": [135]}, "timestamp": {"min": [0.0], "max": [4.466666666666667], "mean": [2.233333333333334], "std": [1.2990024662822652], "count": [135]}, "frame_index": {"min": [0], "max": [134], "mean": [67.0], "std": [38.97007398846795], "count": [135]}, "episode_index": {"min": [347], "max": [347], "mean": [347.0], "std": [0.0], "count": [135]}, "index": {"min": [223942], "max": [224076], "mean": [224009.0], "std": [38.97007398846795], "count": [135]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [135]}}} +{"episode_index": 348, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.674570348583878]], [[0.6075767919389978]], [[0.5299677396514162]]], "std": [[[0.238807398919959]], [[0.23841662095942656]], [[0.29357397482695236]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.674570348583878]], [[0.6075767919389978]], [[0.5299677396514162]]], "std": [[[0.238807398919959]], [[0.23841662095942656]], [[0.29357397482695236]]], "count": [100]}, "observation.state": {"min": [0.4893277883529663, 0.24330469965934753, 0.12128478288650513, -0.6808632612228394, 0.31166785955429077, 0.4804743528366089, -0.3076350688934326, -0.1558988094329834, 0.1456887423992157, 3.9432194232940674, -0.8199556469917297, 0.6900447010993958], "max": [0.4893432557582855, 0.24332013726234436, 0.12128478288650513, -0.6804438829421997, 0.31166785955429077, 0.4804743528366089, -0.2438916265964508, -0.049487270414829254, 0.16489197313785553, 4.538528919219971, 0.16696980595588684, 1.2927627563476562], "mean": [0.48932817578315735, 0.24331431090831757, 0.12128466367721558, -0.6805563569068909, 0.31166812777519226, 0.4804736375808716, -0.2723529040813446, -0.10045851022005081, 0.15611405670642853, 4.261562347412109, -0.37042754888534546, 0.9826815128326416], "std": [2.9039306355116423e-06, 7.382018793578027e-06, 1.1920928955078125e-07, 0.00018528976943343878, 2.682209014892578e-07, 7.152557373046875e-07, 0.017878398299217224, 0.02604091539978981, 0.007192694582045078, 0.26500454545021057, 0.416051983833313, 0.2550070583820343], "count": [139]}, "action": {"min": [-0.12335782498121262, -0.03381579741835594, 0.14234906435012817, 0.38791537284851074, -0.32481321692466736, 0.739559531211853, -0.44393396377563477, 0.14976587891578674, -0.08629588037729263, 0.10427562892436981, -0.5146158933639526, -0.6286270618438721, -0.629848301410675, -0.3165660798549652], "max": [-0.12335535138845444, -0.03381259739398956, 0.1423509120941162, 0.3879389762878418, -0.32478559017181396, 0.7396588325500488, -0.44374746084213257, 0.1679592728614807, -0.07599017024040222, 0.12135373055934906, 0.4362691342830658, 0.8241990208625793, 0.6947643160820007, 0.08496217429637909], "mean": [-0.12335740029811859, -0.033813975751399994, 0.14235028624534607, 0.3879222273826599, -0.3247934579849243, 0.739589512348175, -0.4438832104206085, 0.15735769271850586, -0.08296933025121689, 0.11514423787593842, -0.13791893422603607, 0.15367987751960754, 0.06429461389780045, -0.12252338230609894], "std": [5.978857871014043e-07, 1.1825628689621226e-06, 5.249157766229473e-07, 7.903026926214807e-06, 9.644562851462979e-06, 4.1275696275988594e-05, 8.210869418689981e-05, 0.006439960561692715, 0.002684083767235279, 0.005782414693385363, 0.36056244373321533, 0.6473622918128967, 0.601618766784668, 0.16488386690616608], "count": [139]}, "timestamp": {"min": [0.0], "max": [4.6], "mean": [2.3], "std": [1.3374935098492586], "count": [139]}, "frame_index": {"min": [0], "max": [138], "mean": [69.0], "std": [40.124805295477756], "count": [139]}, "episode_index": {"min": [348], "max": [348], "mean": [348.0], "std": [0.0], "count": [139]}, "index": {"min": [224077], "max": [224215], "mean": [224146.0], "std": [40.124805295477756], "count": [139]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [139]}}} +{"episode_index": 349, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6634402696078431]], [[0.5993775272331154]], [[0.5236290550108933]]], "std": [[[0.24372630732265113]], [[0.2397154046573435]], [[0.29089926584449366]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6634402696078431]], [[0.5993775272331154]], [[0.5236290550108933]]], "std": [[[0.24372630732265113]], [[0.2397154046573435]], [[0.29089926584449366]]], "count": [100]}, "observation.state": {"min": [0.5016301274299622, 0.26177749037742615, 0.1293269544839859, -0.6598942279815674, 0.1810433566570282, 0.424634724855423, -0.304916650056839, -0.20493043959140778, 0.14914076030254364, 4.354211807250977, -0.8168129920959473, 0.5947502851486206], "max": [0.501653254032135, 0.2618006467819214, 0.1293269544839859, -0.6598942279815674, 0.18131664395332336, 0.42485755681991577, -0.20994248986244202, -0.05293932929635048, 0.17057101428508759, 4.537899971008301, -0.2473120540380478, 1.383457899093628], "mean": [0.5016405582427979, 0.2617909610271454, 0.12932713329792023, -0.6598951816558838, 0.18118301033973694, 0.4247433841228485, -0.2698909640312195, -0.11685219407081604, 0.1593378186225891, 4.4493303298950195, -0.529132604598999, 1.0077646970748901], "std": [6.6279094426136e-06, 7.742476554994937e-06, 1.7881393432617188e-07, 9.5367431640625e-07, 0.0001366084034088999, 0.00011138742411276326, 0.03125657141208649, 0.03905399143695831, 0.006662928964942694, 0.07438702136278152, 0.2090047299861908, 0.29947617650032043], "count": [176]}, "action": {"min": [-0.11870312690734863, -0.03310857713222504, 0.1496380865573883, 0.32955431938171387, -0.33334630727767944, 0.7503750920295715, -0.46609148383140564, 0.14702481031417847, -0.09249112010002136, 0.1035793274641037, -0.5292337536811829, -0.635259211063385, -0.634493887424469, -0.07736346125602722], "max": [-0.11870062351226807, -0.033104702830314636, 0.14964021742343903, 0.3296191692352295, -0.3331817090511322, 0.7504027485847473, -0.4660547971725464, 0.16870847344398499, -0.07690226286649704, 0.1250322014093399, 0.42724287509918213, 0.8395058512687683, 0.7159087657928467, 0.07306357473134995], "mean": [-0.11870207637548447, -0.03310628980398178, 0.1496393084526062, 0.3295872211456299, -0.33326101303100586, 0.7503902316093445, -0.4660727381706238, 0.155553936958313, -0.08603549748659134, 0.11619820445775986, -0.024888379499316216, 0.2329106330871582, -0.023537419736385345, -0.006817388813942671], "std": [8.859069566824473e-07, 1.1130526900160476e-06, 5.349793354980648e-07, 2.836474777723197e-05, 7.820123573765159e-05, 1.1503996574901976e-05, 1.763784166541882e-05, 0.007541485130786896, 0.0033013096544891596, 0.006167709827423096, 0.411175936460495, 0.627566933631897, 0.6149968504905701, 0.05835781991481781], "count": [176]}, "timestamp": {"min": [0.0], "max": [5.833333333333333], "mean": [2.916666666666667], "std": [1.6935334527417978], "count": [176]}, "frame_index": {"min": [0], "max": [175], "mean": [87.5], "std": [50.806003582253936], "count": [176]}, "episode_index": {"min": [349], "max": [349], "mean": [349.0], "std": [0.0], "count": [176]}, "index": {"min": [224216], "max": [224391], "mean": [224303.5], "std": [50.806003582253936], "count": [176]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [176]}}} +{"episode_index": 350, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6573982298474946]], [[0.595715348583878]], [[0.5204176062091503]]], "std": [[[0.24838452946213596]], [[0.24499349225711572]], [[0.29557619747641856]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6573982298474946]], [[0.595715348583878]], [[0.5204176062091503]]], "std": [[[0.24838452946213596]], [[0.24499349225711572]], [[0.29557619747641856]]], "count": [100]}, "observation.state": {"min": [0.48942047357559204, 0.27672097086906433, 0.12524494528770447, -0.45418840646743774, -0.015849830582737923, 0.5686666369438171, -0.3352283835411072, -0.15942810475826263, 0.151004821062088, 3.900442600250244, -0.8034226298332214, 0.7148733735084534], "max": [0.48943591117858887, 0.27672868967056274, 0.12524494528770447, -0.4537690281867981, -0.015849830582737923, 0.568993330001831, -0.2717861533164978, -0.0823938399553299, 0.1674625128507614, 4.5383195877075195, 0.259062796831131, 1.3916763067245483], "mean": [0.48942339420318604, 0.27672824263572693, 0.12524500489234924, -0.4540802538394928, -0.015849830582737923, 0.5687984824180603, -0.303589791059494, -0.11457725614309311, 0.15953321754932404, 4.223337650299072, -0.23777858912944794, 1.1007940769195557], "std": [5.221954324952094e-06, 2.379668330831919e-06, 5.960464477539063e-08, 0.00018378427193965763, 0.0, 0.00012295402120798826, 0.01967734470963478, 0.02185763418674469, 0.006085906643420458, 0.2569023370742798, 0.4652840793132782, 0.2975495159626007], "count": [135]}, "action": {"min": [-0.12336603552103043, -0.03199852257966995, 0.14781108498573303, 0.28011763095855713, -0.4306293725967407, 0.6737263798713684, -0.53126060962677, 0.14527036249637604, -0.08974428474903107, 0.10681404918432236, -0.5230938196182251, -0.6172698140144348, -0.6204798221588135, -0.3168524503707886], "max": [-0.12336359173059464, -0.03199667111039162, 0.14781248569488525, 0.2802124321460724, -0.4305078387260437, 0.6738904118537903, -0.5310476422309875, 0.16353406012058258, -0.08233232796192169, 0.12128286808729172, 0.46615099906921387, 0.862049400806427, 0.6835699081420898, 0.05720553174614906], "mean": [-0.1233656257390976, -0.031997278332710266, 0.14781224727630615, 0.2801555395126343, -0.4305590093135834, 0.673828661441803, -0.5311189889907837, 0.15292689204216003, -0.08653078973293304, 0.11542002856731415, -0.08767516165971756, 0.29040971398353577, -0.01001372653990984, -0.14575546979904175], "std": [7.624998943356331e-07, 4.205319328320911e-07, 3.710115379362833e-07, 3.191008363501169e-05, 4.3365485907997936e-05, 4.6252640458988026e-05, 8.413333125645295e-05, 0.00699656642973423, 0.0018431826028972864, 0.005025655962526798, 0.3529452681541443, 0.6586166024208069, 0.551379382610321, 0.15577144920825958], "count": [135]}, "timestamp": {"min": [0.0], "max": [4.466666666666667], "mean": [2.233333333333334], "std": [1.2990024662822652], "count": [135]}, "frame_index": {"min": [0], "max": [134], "mean": [67.0], "std": [38.97007398846795], "count": [135]}, "episode_index": {"min": [350], "max": [350], "mean": [350.0], "std": [0.0], "count": [135]}, "index": {"min": [224392], "max": [224526], "mean": [224459.0], "std": [38.97007398846795], "count": [135]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [135]}}} +{"episode_index": 351, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6486660076252724]], [[0.5899382298474946]], [[0.5174210539215687]]], "std": [[[0.258724172898331]], [[0.24828948142613202]], [[0.2942384237177149]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6486660076252724]], [[0.5899382298474946]], [[0.5174210539215687]]], "std": [[[0.258724172898331]], [[0.24828948142613202]], [[0.2942384237177149]]], "count": [100]}, "observation.state": {"min": [0.5149132013320923, 0.2886989116668701, 0.13620507717132568, -1.061450481414795, 0.4749484658241272, 0.448307067155838, -0.30528736114501953, -0.15728889405727386, 0.1486818641424179, 4.06924295425415, -0.9799569845199585, 0.5664514303207397], "max": [0.5149209499359131, 0.2887066602706909, 0.13620507717132568, -1.0610311031341553, 0.47522175312042236, 0.4486115872859955, -0.25383079051971436, -0.04889262095093727, 0.17215119302272797, 4.540206432342529, -0.11545784026384354, 1.3639434576034546], "mean": [0.5149195790290833, 0.28870466351509094, 0.13620522618293762, -1.0610891580581665, 0.4751831293106079, 0.44833287596702576, -0.2808789610862732, -0.10205661505460739, 0.16115613281726837, 4.3391900062561035, -0.5977442264556885, 0.9363779425621033], "std": [3.219616473870701e-06, 3.5317953006597236e-06, 1.4901161193847656e-07, 0.0001422582718078047, 9.500423038844019e-05, 6.670357834082097e-05, 0.014739611186087132, 0.02046426385641098, 0.008979878388345242, 0.2183282971382141, 0.3260838985443115, 0.3005930483341217], "count": [192]}, "action": {"min": [-0.1123858168721199, -0.027791665866971016, 0.15423141419887543, 0.4769420623779297, -0.2670137584209442, 0.7925490140914917, -0.27037060260772705, 0.14653263986110687, -0.08916143327951431, 0.106927290558815, -0.584904670715332, -0.6191681027412415, -0.6192129254341125, -0.2228107750415802], "max": [-0.11238253116607666, -0.027787059545516968, 0.1542346477508545, 0.4770468473434448, -0.2668278217315674, 0.7926343083381653, -0.2701498568058014, 0.16203849017620087, -0.07437016069889069, 0.12591783702373505, 0.4503421187400818, 0.8130769729614258, 0.7237542867660522, 0.10077618062496185], "mean": [-0.11238392442464828, -0.027787916362285614, 0.15423263609409332, 0.47702765464782715, -0.2668500244617462, 0.7925602793693542, -0.2703387439250946, 0.15333737432956696, -0.08467882871627808, 0.11816363781690598, -0.1785283237695694, 0.04578275606036186, 0.1631474792957306, -0.05347732827067375], "std": [7.016354288680304e-07, 1.0374645853516995e-06, 6.607123737012444e-07, 3.1663308618590236e-05, 4.7361365432152525e-05, 2.0780926206498407e-05, 6.791874329792336e-05, 0.006249044556170702, 0.003956518601626158, 0.005948852282017469, 0.42818689346313477, 0.6179267168045044, 0.5952006578445435, 0.1308189332485199], "count": [192]}, "timestamp": {"min": [0.0], "max": [6.366666666666666], "mean": [3.1833333333333336], "std": [1.847495802631427], "count": [192]}, "frame_index": {"min": [0], "max": [191], "mean": [95.5], "std": [55.42487407894281], "count": [192]}, "episode_index": {"min": [351], "max": [351], "mean": [351.0], "std": [0.0], "count": [192]}, "index": {"min": [224527], "max": [224718], "mean": [224622.5], "std": [55.42487407894281], "count": [192]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [192]}}} +{"episode_index": 352, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6531381835511982]], [[0.5947745234204793]], [[0.5214425490196078]]], "std": [[[0.2519937364289091]], [[0.24648190363454833]], [[0.2952391441606074]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6531381835511982]], [[0.5947745234204793]], [[0.5214425490196078]]], "std": [[[0.2519937364289091]], [[0.24648190363454833]], [[0.2952391441606074]]], "count": [100]}, "observation.state": {"min": [0.4883161187171936, 0.24244748055934906, 0.1254316121339798, -0.4975942373275757, 0.1158677488565445, 0.476392537355423, -0.33224740624427795, -0.14887884259223938, 0.14513391256332397, 3.76456356048584, -0.8793925046920776, 0.9444487690925598], "max": [0.48833927512168884, 0.24245519936084747, 0.1254316121339798, -0.49717485904693604, 0.11614102125167847, 0.47661536931991577, -0.28745555877685547, -0.06445392966270447, 0.16948732733726501, 4.429699897766113, 0.4086797833442688, 1.4086580276489258], "mean": [0.4883281886577606, 0.24245378375053406, 0.12543173134326935, -0.4973796010017395, 0.1160505935549736, 0.4764660596847534, -0.30543214082717896, -0.09538491070270538, 0.1580737680196762, 4.091670036315918, -0.31817224621772766, 1.1855038404464722], "std": [4.420756340550724e-06, 2.7262046842224663e-06, 1.1920928955078125e-07, 0.00019396565039642155, 0.0001285882608499378, 0.00010485378879820928, 0.013443964533507824, 0.018264684826135635, 0.00853195134550333, 0.26887863874435425, 0.5141258239746094, 0.18008659780025482], "count": [139]}, "action": {"min": [-0.12238890677690506, -0.036459412425756454, 0.14641067385673523, 0.30058035254478455, -0.374582976102829, 0.70241779088974, -0.5253497958183289, 0.14507167041301727, -0.0862564742565155, 0.10231082886457443, -0.5723490118980408, -0.6063522100448608, -0.5965622663497925, -0.38513800501823425], "max": [-0.12238502502441406, -0.03645476698875427, 0.1464124470949173, 0.3006534278392792, -0.37440481781959534, 0.702577531337738, -0.5251410603523254, 0.16375873982906342, -0.07611759006977081, 0.12339116632938385, 0.48305127024650574, 0.8620240092277527, 0.6161737442016602, 0.09576211124658585], "mean": [-0.12238696217536926, -0.036456212401390076, 0.14641153812408447, 0.30062490701675415, -0.3744662404060364, 0.7025018334388733, -0.5252532362937927, 0.15259751677513123, -0.08269406855106354, 0.11578672379255295, -0.13689932227134705, 0.16768325865268707, 0.049767084419727325, -0.15992774069309235], "std": [6.801714107496082e-07, 1.2371148159218137e-06, 3.262551615534903e-07, 2.4695313186384737e-05, 7.598094816785306e-05, 5.7533241488272324e-05, 8.117772085824981e-05, 0.006138736382126808, 0.003568282350897789, 0.0061998008750379086, 0.3901955783367157, 0.685547411441803, 0.5139138698577881, 0.19685517251491547], "count": [139]}, "timestamp": {"min": [0.0], "max": [4.6], "mean": [2.3], "std": [1.3374935098492586], "count": [139]}, "frame_index": {"min": [0], "max": [138], "mean": [69.0], "std": [40.124805295477756], "count": [139]}, "episode_index": {"min": [352], "max": [352], "mean": [352.0], "std": [0.0], "count": [139]}, "index": {"min": [224719], "max": [224857], "mean": [224788.0], "std": [40.124805295477756], "count": [139]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [139]}}} +{"episode_index": 353, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6671243763616557]], [[0.6094853267973857]], [[0.5381014869281046]]], "std": [[[0.23771604850105996]], [[0.2380559310660673]], [[0.28803071546420916]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6671243763616557]], [[0.6094853267973857]], [[0.5381014869281046]]], "std": [[[0.23771604850105996]], [[0.2380559310660673]], [[0.28803071546420916]]], "count": [100]}, "observation.state": {"min": [0.48175179958343506, 0.2737168073654175, 0.12522679567337036, -0.707284152507782, 0.043040499091148376, 0.3941251337528229, -0.30483171343803406, -0.1400749236345291, 0.14873242378234863, 3.8310353755950928, -0.858623743057251, 0.7606985569000244], "max": [0.48175951838493347, 0.2737245261669159, 0.12522679567337036, -0.7068647742271423, 0.043040499091148376, 0.3941251337528229, -0.2757556140422821, -0.03496081009507179, 0.16862918436527252, 4.53810977935791, 0.02609756961464882, 1.382171869277954], "mean": [0.4817523956298828, 0.2737200856208801, 0.1252269297838211, -0.707066535949707, 0.043040402233600616, 0.3941259980201721, -0.2921679615974426, -0.07863297313451767, 0.15821503102779388, 4.184747219085693, -0.5529407858848572, 1.0275920629501343], "std": [2.9747770895482972e-06, 3.89622164220782e-06, 1.341104507446289e-07, 0.00019038713071495295, 9.685754776000977e-08, 8.642673492431641e-07, 0.007788413669914007, 0.027387036010622978, 0.00636010617017746, 0.27732834219932556, 0.29704761505126953, 0.1983049511909485], "count": [172]}, "action": {"min": [-0.12419211864471436, -0.03229009360074997, 0.14814503490924835, 0.2599913477897644, -0.35077354311943054, 0.7792860865592957, -0.44952690601348877, 0.14876586198806763, -0.08635881543159485, 0.10775823146104813, -0.5611786842346191, -0.5999726057052612, -0.6195771098136902, -0.31875357031822205], "max": [-0.12419071048498154, -0.032288480550050735, 0.14814598858356476, 0.26000523567199707, -0.35076195001602173, 0.7793932557106018, -0.4493446350097656, 0.16165435314178467, -0.07217954099178314, 0.1245851069688797, 0.46818679571151733, 0.8143101930618286, 0.6798944473266602, 0.15779142081737518], "mean": [-0.12419179081916809, -0.03228936716914177, 0.14814569056034088, 0.25999701023101807, -0.3507673442363739, 0.7793397307395935, -0.44943779706954956, 0.1529712677001953, -0.07973494380712509, 0.11800205707550049, -0.1403849571943283, 0.012997944839298725, 0.13104526698589325, -0.09073026478290558], "std": [4.045237176342198e-07, 6.649105444012093e-07, 2.2578727509880991e-07, 4.3838631427206565e-06, 3.61753723154834e-06, 4.75852721137926e-05, 8.236121357185766e-05, 0.004389868583530188, 0.005431473720818758, 0.004151917528361082, 0.43769392371177673, 0.6218277812004089, 0.585457444190979, 0.1836085170507431], "count": [172]}, "timestamp": {"min": [0.0], "max": [5.7], "mean": [2.85], "std": [1.655042799043779], "count": [172]}, "frame_index": {"min": [0], "max": [171], "mean": [85.5], "std": [49.65128397131337], "count": [172]}, "episode_index": {"min": [353], "max": [353], "mean": [353.0], "std": [0.0], "count": [172]}, "index": {"min": [224858], "max": [225029], "mean": [224943.5], "std": [49.65128397131337], "count": [172]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [172]}}} +{"episode_index": 354, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6580950871459695]], [[0.6041609967320262]], [[0.5363780310457517]]], "std": [[[0.2521675238842752]], [[0.24557143777411952]], [[0.28992379655583084]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6580950871459695]], [[0.6041609967320262]], [[0.5363780310457517]]], "std": [[[0.2521675238842752]], [[0.24557143777411952]], [[0.28992379655583084]]], "count": [100]}, "observation.state": {"min": [0.5295864343643188, 0.29243671894073486, 0.1332923173904419, -0.6827504634857178, 0.019539019092917442, 0.5167759656906128, -0.31774410605430603, -0.15612277388572693, 0.14701613783836365, 3.99857759475708, -0.750817596912384, 0.9048054218292236], "max": [0.5296018719673157, 0.2924521565437317, 0.1332923173904419, -0.6823310852050781, 0.019539019092917442, 0.5167759656906128, -0.27869024872779846, -0.03577942028641701, 0.169042706489563, 4.488203525543213, -0.27696219086647034, 1.39327073097229], "mean": [0.5296004414558411, 0.2924520969390869, 0.13329242169857025, -0.6823514103889465, 0.019539043307304382, 0.516776442527771, -0.2961689233779907, -0.09047121554613113, 0.15878792107105255, 4.2033162117004395, -0.54817795753479, 1.1458513736724854], "std": [3.375342203071341e-06, 2.471081643307116e-06, 1.043081283569336e-07, 8.968538168119267e-05, 2.421438694000244e-08, 4.76837158203125e-07, 0.013005200773477554, 0.025851992890238762, 0.007212281227111816, 0.1887473315000534, 0.19570311903953552, 0.2071736752986908], "count": [155]}, "action": {"min": [-0.11401744186878204, -0.028880372643470764, 0.15267911553382874, 0.3009518086910248, -0.40155404806137085, 0.7413371205329895, -0.4456462860107422, 0.14632931351661682, -0.0855909138917923, 0.10519025474786758, -0.5170907378196716, -0.5939311981201172, -0.606092631816864, -0.21030226349830627], "max": [-0.11401477456092834, -0.028877755627036095, 0.15268097817897797, 0.3009583055973053, -0.4015406668186188, 0.7414514422416687, -0.4454682469367981, 0.15993145108222961, -0.07465924322605133, 0.12443933635950089, 0.4959831237792969, 0.7826930284500122, 0.650249719619751, 0.12000767886638641], "mean": [-0.11401556432247162, -0.028877872973680496, 0.15267980098724365, 0.3009573519229889, -0.4015465974807739, 0.7413457632064819, -0.44563740491867065, 0.15212059020996094, -0.0812557190656662, 0.11766204982995987, -0.05905803665518761, 0.07953596860170364, 0.07315171509981155, -0.06636671721935272], "std": [5.294206175676663e-07, 4.289550474823045e-07, 3.122942757727287e-07, 1.4985675989009906e-06, 1.7473594198236242e-06, 2.3714501367066987e-05, 3.8044418033678085e-05, 0.0050962395034730434, 0.002998024458065629, 0.005733166355639696, 0.45219793915748596, 0.6599636673927307, 0.5680438876152039, 0.13312263786792755], "count": [155]}, "timestamp": {"min": [0.0], "max": [5.133333333333334], "mean": [2.5666666666666664], "std": [1.491457154746473], "count": [155]}, "frame_index": {"min": [0], "max": [154], "mean": [77.0], "std": [44.74371464239419], "count": [155]}, "episode_index": {"min": [354], "max": [354], "mean": [354.0], "std": [0.0], "count": [155]}, "index": {"min": [225030], "max": [225184], "mean": [225107.0], "std": [44.74371464239419], "count": [155]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [155]}}} +{"episode_index": 355, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6579520397603486]], [[0.6029103349673203]], [[0.5338570424836601]]], "std": [[[0.23829101935303693]], [[0.23552242521601147]], [[0.28185567743975914]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6579520397603486]], [[0.6029103349673203]], [[0.5338570424836601]]], "std": [[[0.23829101935303693]], [[0.23552242521601147]], [[0.28185567743975914]]], "count": [100]}, "observation.state": {"min": [0.5406607985496521, 0.289309024810791, 0.12863993644714355, -0.5995035767555237, 0.12529566884040833, 0.586136519908905, -0.3506197929382324, -0.15864810347557068, 0.14581966400146484, 4.048064231872559, -0.663643479347229, 0.7574512958526611], "max": [0.5406762361526489, 0.28931674361228943, 0.12863993644714355, -0.599084198474884, 0.12529566884040833, 0.586463212966919, -0.29182663559913635, -0.020017320290207863, 0.16571253538131714, 4.53810977935791, 0.11696083843708038, 1.374779462814331], "mean": [0.5406628251075745, 0.2893090546131134, 0.1286400705575943, -0.5993967652320862, 0.12529565393924713, 0.5862807035446167, -0.3226024806499481, -0.08246952295303345, 0.1557139903306961, 4.32457971572876, -0.3408670127391815, 1.0306769609451294], "std": [4.957383225701051e-06, 9.541613508190494e-07, 1.341104507446289e-07, 0.00016703669098205864, 1.4901161193847656e-08, 0.00014532952627632767, 0.020289532840251923, 0.033269111067056656, 0.006362861953675747, 0.20925992727279663, 0.3107188940048218, 0.22632455825805664], "count": [130]}, "action": {"min": [-0.11430931091308594, -0.027257144451141357, 0.14764347672462463, 0.3644162118434906, -0.3991803526878357, 0.6996518969535828, -0.4672778844833374, 0.1422203779220581, -0.08631938695907593, 0.10283596813678741, -0.48198890686035156, -0.6307876706123352, -0.626876175403595, -0.24074608087539673], "max": [-0.1143067479133606, -0.02725554071366787, 0.1476449817419052, 0.36449962854385376, -0.3990553915500641, 0.699832558631897, -0.46704158186912537, 0.16040240228176117, -0.0713164210319519, 0.12176519632339478, 0.4314763844013214, 0.8488665223121643, 0.7082009315490723, 0.04790184274315834], "mean": [-0.11430875957012177, -0.027257008478045464, 0.147644504904747, 0.3644518256187439, -0.39911261200904846, 0.6997739672660828, -0.46711963415145874, 0.15040312707424164, -0.07951492816209793, 0.11473140865564346, -0.10102936625480652, 0.13213251531124115, 0.05936499685049057, -0.09416031837463379], "std": [7.318727739402675e-07, 2.707270141399931e-07, 3.915349395811063e-07, 3.4711567423073575e-05, 5.112756844027899e-05, 5.37737287231721e-05, 7.498062041122466e-05, 0.0067297169007360935, 0.0033494974486529827, 0.005564242135733366, 0.3640788495540619, 0.6677881479263306, 0.6059616208076477, 0.11941476911306381], "count": [130]}, "timestamp": {"min": [0.0], "max": [4.3], "mean": [2.15], "std": [1.2508885730640529], "count": [130]}, "frame_index": {"min": [0], "max": [129], "mean": [64.5], "std": [37.526657191921586], "count": [130]}, "episode_index": {"min": [355], "max": [355], "mean": [355.0], "std": [0.0], "count": [130]}, "index": {"min": [225185], "max": [225314], "mean": [225249.5], "std": [37.526657191921586], "count": [130]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [130]}}} +{"episode_index": 356, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6529962854030501]], [[0.5962847331154685]], [[0.5248296486928105]]], "std": [[[0.24659593839546698]], [[0.24141086504729925]], [[0.28792437333302273]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6529962854030501]], [[0.5962847331154685]], [[0.5248296486928105]]], "std": [[[0.24659593839546698]], [[0.24141086504729925]], [[0.28792437333302273]]], "count": [100]}, "observation.state": {"min": [0.5159866809844971, 0.2928074300289154, 0.1294488161802292, -0.45691439509391785, -0.18828509747982025, 0.41613101959228516, -0.3435457646846771, -0.19932374358177185, 0.15376980602741241, 4.220219612121582, -0.7329182028770447, 0.43481162190437317], "max": [0.5159944295883179, 0.2928151488304138, 0.12945011258125305, -0.4564950168132782, -0.18828509747982025, 0.41613101959228516, -0.27133822441101074, -0.010201729834079742, 0.1670619696378708, 4.537899971008301, -0.089496910572052, 1.1383169889450073], "mean": [0.515986442565918, 0.29281044006347656, 0.12944865226745605, -0.4568273425102234, -0.1882854551076889, 0.4161302447319031, -0.31122803688049316, -0.12173528224229813, 0.15883594751358032, 4.415836811065674, -0.4506259560585022, 0.7541825771331787], "std": [2.3169268388301134e-06, 3.699748049257323e-06, 5.337720381248801e-07, 0.0001696827675914392, 3.5762786865234375e-07, 7.748603820800781e-07, 0.025327693670988083, 0.043927520513534546, 0.004515191074460745, 0.14063042402267456, 0.23950538039207458, 0.2747865915298462], "count": [204]}, "action": {"min": [-0.11843372881412506, -0.030534371733665466, 0.15016694366931915, 0.18409833312034607, -0.42663997411727905, 0.6983707547187805, -0.5443935990333557, 0.14391016960144043, -0.09475307911634445, 0.10617701709270477, -0.49878934025764465, -0.651691198348999, -0.6529434323310852, -0.1723870038986206], "max": [-0.1184312105178833, -0.03053242154419422, 0.15016897022724152, 0.18410423398017883, -0.4266185760498047, 0.6985077261924744, -0.5442326664924622, 0.16039885580539703, -0.07108625024557114, 0.12235242873430252, 0.3556491434574127, 0.7824527621269226, 0.7750582098960876, 0.12389276176691055], "mean": [-0.11843332648277283, -0.03053358569741249, 0.15016759932041168, 0.18409986793994904, -0.42662397027015686, 0.6984801292419434, -0.5442672967910767, 0.15046203136444092, -0.08589649945497513, 0.11387527734041214, -0.17585352063179016, 0.007915903814136982, 0.210787832736969, -0.007709152530878782], "std": [4.144212368828448e-07, 6.523240472233738e-07, 4.5149391780796577e-07, 1.4970945585446316e-06, 7.030512733763317e-06, 5.4461917898152024e-05, 6.466278864536434e-05, 0.006356917787343264, 0.005947429686784744, 0.004287708550691605, 0.34996411204338074, 0.5983526110649109, 0.6542313694953918, 0.12650077044963837], "count": [204]}, "timestamp": {"min": [0.0], "max": [6.766666666666667], "mean": [3.3833333333333337], "std": [1.9629673305332263], "count": [204]}, "frame_index": {"min": [0], "max": [203], "mean": [101.5], "std": [58.88901991599679], "count": [204]}, "episode_index": {"min": [356], "max": [356], "mean": [356.0], "std": [0.0], "count": [204]}, "index": {"min": [225315], "max": [225518], "mean": [225416.5], "std": [58.88901991599679], "count": [204]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [204]}}} +{"episode_index": 357, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6514818355119826]], [[0.5977996650326798]], [[0.5281756998910676]]], "std": [[[0.2536762892794008]], [[0.24606965188323143]], [[0.291072913860873]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6514818355119826]], [[0.5977996650326798]], [[0.5281756998910676]]], "std": [[[0.2536762892794008]], [[0.24606965188323143]], [[0.291072913860873]]], "count": [100]}, "observation.state": {"min": [0.5220026969909668, 0.2915022671222687, 0.13015270233154297, -0.4732702076435089, -0.1702490746974945, 0.3658936023712158, -0.3351588845252991, -0.16610054671764374, 0.14623576402664185, 4.005077838897705, -0.6406885385513306, 0.5701850652694702], "max": [0.5220181345939636, 0.2915177345275879, 0.13015270233154297, -0.4732702076435089, -0.1702490746974945, 0.3658936023712158, -0.2691604197025299, -0.017314370721578598, 0.16559845209121704, 4.537899971008301, 0.09619209915399551, 1.1287442445755005], "mean": [0.5220136046409607, 0.2915028929710388, 0.1301528960466385, -0.47326987981796265, -0.17024937272071838, 0.365894079208374, -0.31032422184944153, -0.09884907305240631, 0.15543995797634125, 4.329575538635254, -0.392897367477417, 0.7833368182182312], "std": [6.6778211476048455e-06, 1.661668420638307e-06, 1.9371509552001953e-07, 3.2782554626464844e-07, 2.980232238769531e-07, 4.76837158203125e-07, 0.024133797734975815, 0.028516337275505066, 0.006790969520807266, 0.23553398251533508, 0.25380071997642517, 0.2100246548652649], "count": [156]}, "action": {"min": [-0.11715961992740631, -0.030463865026831627, 0.15033051371574402, 0.18004193902015686, -0.4047008454799652, 0.7131021618843079, -0.5434033870697021, 0.14461968839168549, -0.08774221688508987, 0.10381047427654266, -0.46146702766418457, -0.6443284749984741, -0.6504126787185669, -0.2946740686893463], "max": [-0.1171569973230362, -0.030461300164461136, 0.15033234655857086, 0.1800500750541687, -0.4046914875507355, 0.7131066918373108, -0.5434014201164246, 0.16379757225513458, -0.0708533227443695, 0.11958133429288864, 0.32801976799964905, 0.7818613052368164, 0.7620352506637573, 0.13536395132541656], "mean": [-0.11715766787528992, -0.030463380739092827, 0.15033075213432312, 0.18004624545574188, -0.40470001101493835, 0.7131032347679138, -0.5434015393257141, 0.1518334299325943, -0.08153117448091507, 0.11355773359537125, -0.15304253995418549, 0.003121419111266732, 0.16423866152763367, -0.06678648293018341], "std": [9.7894167083723e-07, 3.5777566154138185e-07, 5.133461513651127e-07, 2.7119760943605797e-06, 1.5328913605117123e-06, 1.4418178579944652e-06, 2.0812443324302876e-07, 0.006874797400087118, 0.005019392818212509, 0.0039885989390313625, 0.34151187539100647, 0.5986435413360596, 0.6643190383911133, 0.16973242163658142], "count": [156]}, "timestamp": {"min": [0.0], "max": [5.166666666666667], "mean": [2.5833333333333335], "std": [1.5010798582156581], "count": [156]}, "frame_index": {"min": [0], "max": [155], "mean": [77.5], "std": [45.032395746469746], "count": [156]}, "episode_index": {"min": [357], "max": [357], "mean": [357.0], "std": [0.0], "count": [156]}, "index": {"min": [225519], "max": [225674], "mean": [225596.5], "std": [45.032395746469746], "count": [156]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [156]}}} +{"episode_index": 358, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6663548529411765]], [[0.6102402968409587]], [[0.5415417510893246]]], "std": [[[0.24742693954722467]], [[0.2409745951676599]], [[0.2868169324201716]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6663548529411765]], [[0.6102402968409587]], [[0.5415417510893246]]], "std": [[[0.24742693954722467]], [[0.2409745951676599]], [[0.2868169324201716]]], "count": [100]}, "observation.state": {"min": [0.5399580597877502, 0.2800649106502533, 0.12975344061851501, -0.48417407274246216, -0.16806289553642273, 0.35455450415611267, -0.3103843629360199, -0.19152377545833588, 0.14179986715316772, 4.300740718841553, -0.618963360786438, 0.6876834630966187], "max": [0.5399734973907471, 0.2800803482532501, 0.12975344061851501, -0.48417407274246216, -0.16806289553642273, 0.35471785068511963, -0.23046952486038208, -0.057364460080862045, 0.16487900912761688, 4.538528919219971, -0.190744549036026, 1.2436250448226929], "mean": [0.5399721264839172, 0.28006643056869507, 0.12975329160690308, -0.48417383432388306, -0.1680627316236496, 0.3546255826950073, -0.28671643137931824, -0.10440970212221146, 0.15523666143417358, 4.441758155822754, -0.4063655138015747, 0.8964251279830933], "std": [2.9829752747900784e-06, 4.255502972227987e-06, 1.4901161193847656e-07, 2.384185791015625e-07, 1.6391277313232422e-07, 8.046003495110199e-05, 0.024381905794143677, 0.03585077449679375, 0.0073706223629415035, 0.09399174153804779, 0.1516122817993164, 0.19784285128116608], "count": [144]}, "action": {"min": [-0.11448455601930618, -0.031512726098299026, 0.14814189076423645, 0.18277186155319214, -0.40769848227500916, 0.7140847444534302, -0.5389427542686462, 0.1484401524066925, -0.08978579193353653, 0.0992259755730629, -0.4429474472999573, -0.6604416370391846, -0.6711369156837463, -0.12966744601726532], "max": [-0.1144823282957077, -0.03150951489806175, 0.1481432169675827, 0.1828240156173706, -0.4076322615146637, 0.7141213417053223, -0.5389257669448853, 0.16797660291194916, -0.07529916614294052, 0.122065968811512, 0.3439980149269104, 0.800504207611084, 0.7276164293289185, 0.07746581733226776], "mean": [-0.11448245495557785, -0.03151183947920799, 0.1481420397758484, 0.18279717862606049, -0.4076642394065857, 0.7141039967536926, -0.5389339923858643, 0.15495815873146057, -0.0825190544128418, 0.1140250638127327, -0.07592007517814636, 0.06896773725748062, 0.07161436229944229, -0.024184295907616615], "std": [4.58795881286278e-07, 7.014372158664628e-07, 3.164450674830732e-07, 2.1750311134383082e-05, 2.9177588658058085e-05, 1.6556476111873053e-05, 7.46912610338768e-06, 0.006405895575881004, 0.004058593884110451, 0.006311425473541021, 0.3500737249851227, 0.6404921412467957, 0.6665838956832886, 0.08154843002557755], "count": [144]}, "timestamp": {"min": [0.0], "max": [4.766666666666667], "mean": [2.3833333333333333], "std": [1.3856072341783612], "count": [144]}, "frame_index": {"min": [0], "max": [143], "mean": [71.5], "std": [41.56821702535083], "count": [144]}, "episode_index": {"min": [358], "max": [358], "mean": [358.0], "std": [0.0], "count": [144]}, "index": {"min": [225675], "max": [225818], "mean": [225746.5], "std": [41.56821702535083], "count": [144]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [144]}}} +{"episode_index": 359, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6505430364923747]], [[0.5970978976034857]], [[0.5288238071895425]]], "std": [[[0.2529767001516989]], [[0.24490574655140518]], [[0.2882496947885563]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6505430364923747]], [[0.5970978976034857]], [[0.5288238071895425]]], "std": [[[0.2529767001516989]], [[0.24490574655140518]], [[0.2882496947885563]]], "count": [100]}, "observation.state": {"min": [0.5286828279495239, 0.3086467385292053, 0.13595618307590485, -0.2950337529182434, -0.41113921999931335, 0.4995940923690796, -0.34970077872276306, -0.1699773520231247, 0.14481115341186523, 3.990818977355957, -0.5771525502204895, 0.7710576057434082], "max": [0.5286905765533447, 0.30865445733070374, 0.13595618307590485, -0.29461437463760376, -0.41113921999931335, 0.4995940923690796, -0.30151093006134033, -0.052970219403505325, 0.1622125506401062, 4.53810977935791, 0.36358973383903503, 1.2844064235687256], "mean": [0.528684675693512, 0.3086479604244232, 0.1359560340642929, -0.2948700189590454, -0.41113945841789246, 0.49959468841552734, -0.3270881772041321, -0.08806473016738892, 0.15353846549987793, 4.287160873413086, -0.1803404539823532, 0.9790735840797424], "std": [3.3662493024166906e-06, 2.5066383386729285e-06, 1.4901161193847656e-07, 0.0002037180820479989, 2.384185791015625e-07, 5.960464477539062e-07, 0.014679094776511192, 0.03008720837533474, 0.006843606475740671, 0.22676467895507812, 0.3365153670310974, 0.18829043209552765], "count": [119]}, "action": {"min": [-0.1141197681427002, -0.030207514762878418, 0.1547396332025528, 0.13102339208126068, -0.5216684341430664, 0.609597384929657, -0.5823080539703369, 0.1447284072637558, -0.08760449290275574, 0.10077620297670364, -0.43770894408226013, -0.6515207290649414, -0.6464455127716064, -0.2876288890838623], "max": [-0.1141170933842659, -0.030205806717276573, 0.1547413170337677, 0.13104557991027832, -0.5216443538665771, 0.6097538471221924, -0.5821664929389954, 0.16195017099380493, -0.07334300875663757, 0.11926040053367615, 0.35162684321403503, 0.8521597385406494, 0.7089970111846924, 0.09870247542858124], "mean": [-0.11411880701780319, -0.030207255855202675, 0.15474064648151398, 0.13103105127811432, -0.5216550230979919, 0.6096926927566528, -0.5822218656539917, 0.1515689343214035, -0.07976570725440979, 0.11263890564441681, -0.09685460478067398, 0.1591523438692093, 0.017381293699145317, -0.12019261717796326], "std": [8.175784387276508e-07, 4.7826648597038e-07, 4.5815585281161475e-07, 8.374300705327187e-06, 9.611891982785892e-06, 7.48346938053146e-05, 6.796557136112824e-05, 0.006244812160730362, 0.004045167937874794, 0.005573168396949768, 0.29985713958740234, 0.6700227856636047, 0.6246770620346069, 0.1465439796447754], "count": [119]}, "timestamp": {"min": [0.0], "max": [3.933333333333333], "mean": [1.9666666666666668], "std": [1.1450376024878448], "count": [119]}, "frame_index": {"min": [0], "max": [118], "mean": [59.0], "std": [34.351128074635334], "count": [119]}, "episode_index": {"min": [359], "max": [359], "mean": [359.0], "std": [0.0], "count": [119]}, "index": {"min": [225819], "max": [225937], "mean": [225878.0], "std": [34.351128074635334], "count": [119]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [119]}}} +{"episode_index": 360, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6879213834422658]], [[0.6276233278867103]], [[0.5581206508714598]]], "std": [[[0.22777931927903639]], [[0.22803535039323464]], [[0.27908059096068033]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6879213834422658]], [[0.6276233278867103]], [[0.5581206508714598]]], "std": [[[0.22777931927903639]], [[0.22803535039323464]], [[0.27908059096068033]]], "count": [100]}, "observation.state": {"min": [0.536953866481781, 0.23150436580181122, 0.12085700780153275, -0.3835228979587555, 0.11696083843708038, 0.5461830496788025, -0.34355348348617554, -0.15795305371284485, 0.13943542540073395, 4.0375800132751465, -0.13062448799610138, 0.6608579158782959], "max": [0.5369616150856018, 0.23151980340480804, 0.12085700780153275, -0.38310351967811584, 0.11709748208522797, 0.5462944507598877, -0.29727888107299805, -0.019507620483636856, 0.15990903973579407, 4.505817413330078, 0.19142773747444153, 0.9899178147315979], "mean": [0.5369576215744019, 0.23151925206184387, 0.12085720151662827, -0.38320720195770264, 0.11696210503578186, 0.5462938547134399, -0.3228990435600281, -0.06756341457366943, 0.15380708873271942, 4.264806747436523, 0.0015637987526133657, 0.8213269114494324], "std": [3.8492171370307915e-06, 2.82288988273649e-06, 1.9371509552001953e-07, 0.00018064308096654713, 1.3910190318711102e-05, 1.1354049092915375e-05, 0.012286301702260971, 0.03609046712517738, 0.007147961761802435, 0.1659577339887619, 0.10987018793821335, 0.07876471430063248], "count": [191]}, "action": {"min": [-0.1175776943564415, -0.035205159336328506, 0.138652041554451, 0.3319704234600067, -0.40602749586105347, 0.6415192484855652, -0.559841513633728, 0.1495511680841446, -0.08444671332836151, 0.0981762483716011, -0.24588924646377563, -0.698728084564209, -0.6974682807922363, -0.11277790367603302], "max": [-0.11757610738277435, -0.03520121052861214, 0.13865342736244202, 0.3319978415966034, -0.4059256315231323, 0.6416484713554382, -0.5596553683280945, 0.15889902412891388, -0.07185380905866623, 0.12274370342493057, 0.11617537587881088, 0.7535830140113831, 0.7619556188583374, 0.29578545689582825], "mean": [-0.11757715791463852, -0.035202838480472565, 0.1386529952287674, 0.3319793939590454, -0.40600988268852234, 0.6415535807609558, -0.5597806572914124, 0.1535259634256363, -0.07798942178487778, 0.11579379439353943, -0.14669384062290192, -0.40035146474838257, 0.48507463932037354, 0.16156573593616486], "std": [5.474218482959259e-07, 4.933251034344721e-07, 3.312141529931978e-07, 7.5112393460585736e-06, 1.1477836778794881e-05, 5.3978616051608697e-05, 7.175547943916172e-05, 0.002786201424896717, 0.0037182311061769724, 0.007973709143698215, 0.1149827316403389, 0.5095351338386536, 0.5176123976707458, 0.12660636007785797], "count": [191]}, "timestamp": {"min": [0.0], "max": [6.333333333333333], "mean": [3.166666666666667], "std": [1.837873166945363], "count": [191]}, "frame_index": {"min": [0], "max": [190], "mean": [95.0], "std": [55.136195008360886], "count": [191]}, "episode_index": {"min": [360], "max": [360], "mean": [360.0], "std": [0.0], "count": [191]}, "index": {"min": [225938], "max": [226128], "mean": [226033.0], "std": [55.136195008360886], "count": [191]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [191]}}} +{"episode_index": 361, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6688383251633987]], [[0.6126890604575164]], [[0.5429955718954249]]], "std": [[[0.24017684873008965]], [[0.23709898155039977]], [[0.285166933789146]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6688383251633987]], [[0.6126890604575164]], [[0.5429955718954249]]], "std": [[[0.24017684873008965]], [[0.23709898155039977]], [[0.285166933789146]]], "count": [100]}, "observation.state": {"min": [0.5117005705833435, 0.2983137369155884, 0.13016436994075775, -0.3518597185611725, -0.14633768796920776, 0.5487954020500183, -0.31566670536994934, -0.19128437340259552, 0.1375480443239212, 4.322129249572754, -0.704634428024292, 0.7644699215888977], "max": [0.5117160081863403, 0.2983291745185852, 0.13016436994075775, -0.35165002942085266, -0.14633768796920776, 0.5487954020500183, -0.23920392990112305, -0.05205893889069557, 0.16780215501785278, 4.53810977935791, -0.22504031658172607, 1.3007992506027222], "mean": [0.5117143988609314, 0.2983185350894928, 0.1301642805337906, -0.35185518860816956, -0.1463375687599182, 0.5487950444221497, -0.28650233149528503, -0.10998119413852692, 0.15656927227973938, 4.4467010498046875, -0.4529033899307251, 1.0170748233795166], "std": [3.415183527977206e-06, 7.223439297376899e-06, 8.940696716308594e-08, 3.125142757198773e-05, 1.1920928955078125e-07, 3.5762786865234375e-07, 0.02778562158346176, 0.040042538195848465, 0.009256493300199509, 0.08568192273378372, 0.18699106574058533, 0.19119752943515778], "count": [132]}, "action": {"min": [-0.11860910803079605, -0.029580162838101387, 0.15134680271148682, 0.2381792813539505, -0.4575642943382263, 0.6375626921653748, -0.5722056031227112, 0.1457156240940094, -0.09203121811151505, 0.09597906470298767, -0.48758503794670105, -0.6300445795059204, -0.6419756412506104, -0.10285568982362747], "max": [-0.11860685795545578, -0.029576962813735008, 0.1513480544090271, 0.23819221556186676, -0.4575565755367279, 0.637635350227356, -0.5721263885498047, 0.16740837693214417, -0.07714200019836426, 0.12503091990947723, 0.4135684072971344, 0.8143438100814819, 0.7034499049186707, 0.03803412243723869], "mean": [-0.11860726028680801, -0.02957875467836857, 0.15134721994400024, 0.23818624019622803, -0.45756182074546814, 0.6376310586929321, -0.5721292495727539, 0.15430176258087158, -0.08356523513793945, 0.11439364403486252, -0.04829353094100952, 0.1545274555683136, -0.003746447153389454, -0.03142712265253067], "std": [5.260903321868682e-07, 1.2113316643080907e-06, 4.0864119910111185e-07, 2.46286822402908e-06, 2.9386467303993413e-06, 1.036369394569192e-05, 1.1734950021491386e-05, 0.007643359247595072, 0.0035192605573683977, 0.008303815498948097, 0.3817157447338104, 0.6598319411277771, 0.6235475540161133, 0.05376463010907173], "count": [132]}, "timestamp": {"min": [0.0], "max": [4.366666666666666], "mean": [2.1833333333333336], "std": [1.2701341428135615], "count": [132]}, "frame_index": {"min": [0], "max": [131], "mean": [65.5], "std": [38.10402428440685], "count": [132]}, "episode_index": {"min": [361], "max": [361], "mean": [361.0], "std": [0.0], "count": [132]}, "index": {"min": [226129], "max": [226260], "mean": [226194.5], "std": [38.10402428440685], "count": [132]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [132]}}} +{"episode_index": 362, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6597133769063181]], [[0.6055472086056645]], [[0.5379115958605665]]], "std": [[[0.2502657320341242]], [[0.24243332755114252]], [[0.2859145076102349]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6597133769063181]], [[0.6055472086056645]], [[0.5379115958605665]]], "std": [[[0.2502657320341242]], [[0.24243332755114252]], [[0.2859145076102349]]], "count": [100]}, "observation.state": {"min": [0.5315943360328674, 0.30541864037513733, 0.13621415197849274, -0.484383761882782, -0.2471754252910614, 0.6326775550842285, -0.3373444080352783, -0.16791537404060364, 0.1414213478565216, 4.014304161071777, -0.6398687362670898, 0.6858388185501099], "max": [0.5316097736358643, 0.30542635917663574, 0.13621674478054047, -0.48396438360214233, -0.24690215289592743, 0.6330043077468872, -0.21351811289787292, -0.04116988927125931, 0.16853713989257812, 4.5383195877075195, 0.09660200774669647, 1.2495659589767456], "mean": [0.5316060185432434, 0.30542317032814026, 0.13621442019939423, -0.4840892553329468, -0.24709157645702362, 0.6328896284103394, -0.29171159863471985, -0.08661078661680222, 0.1554354578256607, 4.266010761260986, -0.2790173292160034, 0.9274451732635498], "std": [3.94241124013206e-06, 3.855273916997248e-06, 1.0463706985319732e-06, 0.00019141120719723403, 0.0001261770521523431, 7.726193143753335e-05, 0.03472509980201721, 0.03560773655772209, 0.00743086077272892, 0.21842579543590546, 0.2682124376296997, 0.1884816288948059], "count": [172]}, "action": {"min": [-0.11345646530389786, -0.029298055917024612, 0.1553768515586853, 0.225972980260849, -0.5132286548614502, 0.6517481207847595, -0.5106650590896606, 0.14390034973621368, -0.08749106526374817, 0.10137511044740677, -0.45700377225875854, -0.6500298976898193, -0.6511023044586182, -0.2910654544830322], "max": [-0.1134517714381218, -0.02929416112601757, 0.1553807109594345, 0.22613833844661713, -0.5130626559257507, 0.6518983840942383, -0.5104693174362183, 0.1723373681306839, -0.07361776381731033, 0.12356837838888168, 0.3929605484008789, 0.8159683346748352, 0.7237061262130737, 0.2909108102321625], "mean": [-0.11345425248146057, -0.02929646708071232, 0.155378058552742, 0.22602209448814392, -0.5131822824478149, 0.651808500289917, -0.5105907320976257, 0.15515512228012085, -0.08079206943511963, 0.11565931141376495, -0.09487302601337433, 0.06699143350124359, 0.06636163592338562, -0.04860733449459076], "std": [1.1294702062514261e-06, 1.1994939086434897e-06, 1.1088618521171156e-06, 5.388734643929638e-05, 4.638545215129852e-05, 6.03931475779973e-05, 7.455389277311042e-05, 0.008735954761505127, 0.004527909215539694, 0.005480654537677765, 0.3175686001777649, 0.6522082090377808, 0.6451905369758606, 0.19299887120723724], "count": [172]}, "timestamp": {"min": [0.0], "max": [5.7], "mean": [2.85], "std": [1.655042799043779], "count": [172]}, "frame_index": {"min": [0], "max": [171], "mean": [85.5], "std": [49.65128397131337], "count": [172]}, "episode_index": {"min": [362], "max": [362], "mean": [362.0], "std": [0.0], "count": [172]}, "index": {"min": [226261], "max": [226432], "mean": [226346.5], "std": [49.65128397131337], "count": [172]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [172]}}} +{"episode_index": 363, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6788575871459694]], [[0.620974591503268]], [[0.552701364379085]]], "std": [[[0.237855063178835]], [[0.23613369238308973]], [[0.28451984490014764]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6788575871459694]], [[0.620974591503268]], [[0.552701364379085]]], "std": [[[0.237855063178835]], [[0.23613369238308973]], [[0.28451984490014764]]], "count": [100]}, "observation.state": {"min": [0.5254161357879639, 0.2873319983482361, 0.13246527314186096, -0.6674430966377258, 0.07419361919164658, 0.6512486338615417, -0.29311633110046387, -0.16090314090251923, 0.14755798876285553, 4.3735032081604, -0.709826648235321, 0.7162349224090576], "max": [0.5254315733909607, 0.2873397171497345, 0.13246527314186096, -0.6674430966377258, 0.07419361919164658, 0.6514119505882263, -0.21374979615211487, -0.031331129372119904, 0.16725510358810425, 4.5389485359191895, -0.3735641837120056, 1.2603548765182495], "mean": [0.5254300832748413, 0.2873319089412689, 0.13246534764766693, -0.6674425005912781, 0.07419366389513016, 0.6513774991035461, -0.2647629976272583, -0.08884304761886597, 0.1568821221590042, 4.473363399505615, -0.5660112500190735, 0.9388498663902283], "std": [3.61212778443587e-06, 6.65900188323576e-07, 7.450580596923828e-08, 5.960464477539062e-07, 4.470348358154297e-08, 6.701520760543644e-05, 0.02547481469810009, 0.02798318862915039, 0.006892580538988113, 0.06410915404558182, 0.11999226361513138, 0.19182012975215912], "count": [140]}, "action": {"min": [-0.11469960957765579, -0.029330158606171608, 0.15198950469493866, 0.35071948170661926, -0.43725335597991943, 0.708745002746582, -0.42834994196891785, 0.14903272688388824, -0.08590015023946762, 0.1060946136713028, -0.4794483780860901, -0.6318677663803101, -0.641068696975708, -0.06885487586259842], "max": [-0.11469734460115433, -0.029328199103474617, 0.1519906371831894, 0.3507591784000397, -0.43719470500946045, 0.7087827324867249, -0.4283212125301361, 0.1672816127538681, -0.07365380227565765, 0.12442263960838318, 0.4274815320968628, 0.7723256945610046, 0.7068523168563843, 0.04788526892662048], "mean": [-0.11469760537147522, -0.029329566285014153, 0.15198969841003418, 0.3507494628429413, -0.4372404217720032, 0.7087533473968506, -0.4283277690410614, 0.15649211406707764, -0.08134151995182037, 0.11684097349643707, -0.05422687157988548, 0.08151411265134811, 0.04502912610769272, -0.006386437453329563], "std": [5.316973101798794e-07, 1.9205295131996536e-07, 2.8005803187625133e-07, 1.4197609743860085e-05, 2.369754292885773e-05, 1.4526590348395985e-05, 1.1750238627428189e-05, 0.006150459870696068, 0.0030590607784688473, 0.005475406069308519, 0.4140219986438751, 0.6243380308151245, 0.6519227027893066, 0.046165816485881805], "count": [140]}, "timestamp": {"min": [0.0], "max": [4.633333333333334], "mean": [2.3166666666666664], "std": [1.3471162615833208], "count": [140]}, "frame_index": {"min": [0], "max": [139], "mean": [69.5], "std": [40.413487847499624], "count": [140]}, "episode_index": {"min": [363], "max": [363], "mean": [363.0], "std": [0.0], "count": [140]}, "index": {"min": [226433], "max": [226572], "mean": [226502.5], "std": [40.413487847499624], "count": [140]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [140]}}} +{"episode_index": 364, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6645151960784315]], [[0.6098158033769063]], [[0.5405588289760348]]], "std": [[[0.24685300720213826]], [[0.24292546689016295]], [[0.28972428393814137]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6645151960784315]], [[0.6098158033769063]], [[0.5405588289760348]]], "std": [[[0.24685300720213826]], [[0.24292546689016295]], [[0.28972428393814137]]], "count": [100]}, "observation.state": {"min": [0.517662525177002, 0.30387407541275024, 0.130133256316185, -0.5751795172691345, -0.17393825948238373, 0.4657950699329376, -0.31346574425697327, -0.1653900444507599, 0.1515064835548401, 4.33953332901001, -0.7724061012268066, 0.7232383489608765], "max": [0.5176779627799988, 0.30388182401657104, 0.130133256316185, -0.574550449848175, -0.17366498708724976, 0.46618127822875977, -0.25152167677879333, -0.024766800925135612, 0.1684606671333313, 4.53873872756958, -0.32861077785491943, 1.3072060346603394], "mean": [0.5176628828048706, 0.30387914180755615, 0.130133256316185, -0.5746636986732483, -0.17379382252693176, 0.4659339487552643, -0.29021117091178894, -0.08283580094575882, 0.16024883091449738, 4.470883846282959, -0.6037923693656921, 0.9332083463668823], "std": [2.475920837241574e-06, 3.840812041744357e-06, 0.0, 0.0001197993551613763, 0.0001359576272079721, 0.00015602758503518999, 0.021751349791884422, 0.0327882245182991, 0.005777251906692982, 0.07929118722677231, 0.14992842078208923, 0.1954723298549652], "count": [154]}, "action": {"min": [-0.11824905127286911, -0.02857102081179619, 0.1512668877840042, 0.20556923747062683, -0.43124738335609436, 0.7254800200462341, -0.49553871154785156, 0.14544786512851715, -0.09010610729455948, 0.10896610468626022, -0.508187472820282, -0.6233155727386475, -0.6409216523170471, -0.07334389537572861], "max": [-0.11824660748243332, -0.028567293658852577, 0.15126897394657135, 0.2056368738412857, -0.43101266026496887, 0.725696325302124, -0.4952881336212158, 0.16141381859779358, -0.07286645472049713, 0.12431629747152328, 0.44524815678596497, 0.7918553352355957, 0.6991856098175049, 0.04508165642619133], "mean": [-0.11824814975261688, -0.028569098562002182, 0.1512681245803833, 0.20561183989048004, -0.4311213791370392, 0.7255079746246338, -0.4954754710197449, 0.15178196132183075, -0.08173292875289917, 0.11874707043170929, -0.1359316110610962, -0.01845412142574787, 0.15311244130134583, -0.007491933181881905], "std": [6.720517262692738e-07, 1.2628844388018479e-06, 2.8931324891345866e-07, 2.5533097868901677e-05, 8.807238918961957e-05, 2.687216328922659e-05, 6.361377018038183e-05, 0.005567178595811129, 0.00443302234634757, 0.004378200508654118, 0.4258248507976532, 0.616804838180542, 0.6275461912155151, 0.0457518994808197], "count": [154]}, "timestamp": {"min": [0.0], "max": [5.1], "mean": [2.55], "std": [1.4818344486930155], "count": [154]}, "frame_index": {"min": [0], "max": [153], "mean": [76.5], "std": [44.45503346079047], "count": [154]}, "episode_index": {"min": [364], "max": [364], "mean": [364.0], "std": [0.0], "count": [154]}, "index": {"min": [226573], "max": [226726], "mean": [226649.5], "std": [44.45503346079047], "count": [154]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [154]}}} +{"episode_index": 365, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6590179847494554]], [[0.6060827369281045]], [[0.5384439542483661]]], "std": [[[0.2542261547364379]], [[0.24654108662061477]], [[0.29087542871161803]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6590179847494554]], [[0.6060827369281045]], [[0.5384439542483661]]], "std": [[[0.2542261547364379]], [[0.24654108662061477]], [[0.29087542871161803]]], "count": [100]}, "observation.state": {"min": [0.523354172706604, 0.29671511054039, 0.13547785580158234, -0.5072399973869324, -0.21848176419734955, 0.5841227769851685, -0.3254128098487854, -0.16375282406806946, 0.1460970640182495, 4.16318416595459, -0.6606374979019165, 0.8212772011756897], "max": [0.5233696103096008, 0.29673057794570923, 0.13548044860363007, -0.5068206191062927, -0.21820849180221558, 0.5844272971153259, -0.22479331493377686, -0.02317591942846775, 0.16902196407318115, 4.53936767578125, -0.04932577908039093, 1.348357915878296], "mean": [0.5233668684959412, 0.29672399163246155, 0.13547861576080322, -0.5071679949760437, -0.21846520900726318, 0.5843421816825867, -0.2957589328289032, -0.07620572298765182, 0.15713363885879517, 4.343752384185791, -0.47290918231010437, 1.036756157875061], "std": [3.646990080596879e-06, 7.132392056519166e-06, 1.23169706967019e-06, 0.0001564829290146008, 4.698257544077933e-05, 2.3880196749814786e-05, 0.02481379732489586, 0.03429880738258362, 0.006407415959984064, 0.1686442345380783, 0.19004856050014496, 0.175723597407341], "count": [151]}, "action": {"min": [-0.11475655436515808, -0.030785085633397102, 0.15502148866653442, 0.2190263271331787, -0.4908924400806427, 0.6735628843307495, -0.507315993309021, 0.14479878544807434, -0.0874888077378273, 0.10530321300029755, -0.47283118963241577, -0.6210620403289795, -0.6239573359489441, -0.18515141308307648], "max": [-0.11475192755460739, -0.030781492590904236, 0.15502481162548065, 0.2191014587879181, -0.4907204806804657, 0.6737661957740784, -0.5071461796760559, 0.1687430739402771, -0.07173614948987961, 0.12452788650989532, 0.4623560309410095, 0.8291270732879639, 0.6872037649154663, 0.04563932120800018], "mean": [-0.11475397646427155, -0.03078267350792885, 0.1550227552652359, 0.21903984248638153, -0.4908633828163147, 0.6736768484115601, -0.5071833729743958, 0.15281058847904205, -0.07941780239343643, 0.1173732802271843, -0.008072576485574245, 0.13771840929985046, -0.023767810314893723, -0.07582800090312958], "std": [9.886585985441343e-07, 1.3292838048073463e-06, 9.27951987250708e-07, 1.6620761016383767e-05, 1.9029350369237363e-05, 5.103695730213076e-05, 5.973109000478871e-05, 0.0063298651948571205, 0.0051485346630215645, 0.004710424225777388, 0.40890738368034363, 0.6429312229156494, 0.6215566396713257, 0.08806314319372177], "count": [151]}, "timestamp": {"min": [0.0], "max": [5.0], "mean": [2.4999999999999996], "std": [1.4529663145135578], "count": [151]}, "frame_index": {"min": [0], "max": [150], "mean": [75.0], "std": [43.58898943540674], "count": [151]}, "episode_index": {"min": [365], "max": [365], "mean": [365.0], "std": [0.0], "count": [151]}, "index": {"min": [226727], "max": [226877], "mean": [226802.0], "std": [43.58898943540674], "count": [151]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [151]}}} +{"episode_index": 366, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6626070642701526]], [[0.6077981889978213]], [[0.5388336791938998]]], "std": [[[0.24727687082932814]], [[0.24077659771117868]], [[0.28564636583923525]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6626070642701526]], [[0.6077981889978213]], [[0.5388336791938998]]], "std": [[[0.24727687082932814]], [[0.24077659771117868]], [[0.28564636583923525]]], "count": [100]}, "observation.state": {"min": [0.5247056484222412, 0.3087702989578247, 0.13578897714614868, -0.4783027470111847, -0.38873085379600525, 0.37843725085258484, -0.3162536323070526, -0.165073424577713, 0.1424454152584076, 4.056451797485352, -0.6969828009605408, 0.8443976640701294], "max": [0.5282272100448608, 0.3140372037887573, 0.13855266571044922, -0.2719678580760956, -0.17885717749595642, 0.42689377069473267, -0.22934971749782562, -0.03492220118641853, 0.1682026982307434, 4.53873872756958, 0.2576964497566223, 1.377897024154663], "mean": [0.5277279019355774, 0.3117176592350006, 0.13616198301315308, -0.45150741934776306, -0.2047867774963379, 0.3888617157936096, -0.2893024981021881, -0.07769361138343811, 0.1563277542591095, 4.3120293617248535, -0.277988076210022, 1.0989023447036743], "std": [0.0010764155304059386, 0.0006973616546019912, 0.0009149754187092185, 0.0660259947180748, 0.06624789535999298, 0.013226915150880814, 0.024834806099534035, 0.036535877734422684, 0.007964652962982655, 0.2006695419549942, 0.364205539226532, 0.17384640872478485], "count": [195]}, "action": {"min": [-0.11411179602146149, -0.030109716579318047, 0.15566928684711456, 0.11864425241947174, -0.49159982800483704, 0.6225822567939758, -0.5972535014152527, 0.14566056430339813, -0.08718626201152802, 0.10141704231500626, -0.48480531573295593, -0.6122190356254578, -0.6211608648300171, -0.24651986360549927], "max": [-0.11315425485372543, -0.027759481221437454, 0.15759262442588806, 0.1887849122285843, -0.406198114156723, 0.7111966609954834, -0.5418137311935425, 0.17152437567710876, -0.07283979654312134, 0.1254836916923523, 0.47161516547203064, 0.863405168056488, 0.6741058826446533, 0.01636929251253605], "mean": [-0.11401033401489258, -0.028028951957821846, 0.15593092143535614, 0.17989155650138855, -0.4166296422481537, 0.7000314593315125, -0.5492677092552185, 0.1553201526403427, -0.08023204654455185, 0.1169482171535492, -0.07124876976013184, 0.2147219181060791, -0.05000049248337746, -0.1230923980474472], "std": [0.00023952455376274884, 0.0006684929830953479, 0.000627993606030941, 0.02229536697268486, 0.026755385100841522, 0.028002101927995682, 0.017996110022068024, 0.008228179067373276, 0.004070781636983156, 0.0067139421589672565, 0.3443118631839752, 0.6730629205703735, 0.5891108512878418, 0.11202862113714218], "count": [195]}, "timestamp": {"min": [0.0], "max": [6.466666666666667], "mean": [3.2333333333333334], "std": [1.8763637016156385], "count": [195]}, "frame_index": {"min": [0], "max": [194], "mean": [97.0], "std": [56.290911048469155], "count": [195]}, "episode_index": {"min": [366], "max": [366], "mean": [366.0], "std": [0.0], "count": [195]}, "index": {"min": [226878], "max": [227072], "mean": [226975.0], "std": [56.290911048469155], "count": [195]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [195]}}} +{"episode_index": 367, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6473538671023965]], [[0.5945215223311546]], [[0.5238586356209151]]], "std": [[[0.2548657523495512]], [[0.2469837235543577]], [[0.291334631842129]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6473538671023965]], [[0.5945215223311546]], [[0.5238586356209151]]], "std": [[[0.2548657523495512]], [[0.2469837235543577]], [[0.291334631842129]]], "count": [100]}, "observation.state": {"min": [0.5156236886978149, 0.31796035170555115, 0.1321139931678772, -0.4248318374156952, -0.326834499835968, 0.5995158553123474, -0.3539791703224182, -0.16274887323379517, 0.1518188863992691, 4.000464916229248, -0.6244288086891174, 0.5515729784965515], "max": [0.5156314373016357, 0.31796807050704956, 0.13211527466773987, -0.4242027699947357, -0.326834499835968, 0.5996792316436768, -0.2911624610424042, -0.019916929304599762, 0.16890788078308105, 4.53810977935791, 0.28078800439834595, 1.2208412885665894], "mean": [0.5156288146972656, 0.3179621994495392, 0.1321142315864563, -0.42443904280662537, -0.3268347680568695, 0.5995721817016602, -0.32734549045562744, -0.09783907979726791, 0.16148114204406738, 4.329282283782959, -0.32399851083755493, 0.8436823487281799], "std": [3.878057668771362e-06, 3.562700157999643e-06, 4.693851280990202e-07, 9.866759501164779e-05, 2.682209014892578e-07, 7.737534906482324e-05, 0.018800463527441025, 0.03150523081421852, 0.005402536131441593, 0.24042510986328125, 0.30788031220436096, 0.263335645198822], "count": [164]}, "action": {"min": [-0.11823605000972748, -0.027909889817237854, 0.15328457951545715, 0.1841300129890442, -0.5181164741516113, 0.6401762962341309, -0.536527693271637, 0.14175190031528473, -0.09379920363426208, 0.1106407567858696, -0.46440136432647705, -0.6553946733474731, -0.6656453609466553, -0.28354716300964355], "max": [-0.11823386698961258, -0.0279079619795084, 0.1532868593931198, 0.1842019408941269, -0.5180479884147644, 0.64039146900177, -0.5363012552261353, 0.159280464053154, -0.07339610159397125, 0.12286791205406189, 0.31627988815307617, 0.8243424892425537, 0.755476176738739, 0.08553248643875122], "mean": [-0.11823500692844391, -0.027909040451049805, 0.15328511595726013, 0.18416905403137207, -0.5180799961090088, 0.6402423977851868, -0.53643798828125, 0.1480576992034912, -0.08473989367485046, 0.11757933348417282, -0.1532544642686844, 0.04308075085282326, 0.16503214836120605, -0.07025586068630219], "std": [5.559706437452405e-07, 6.761545137123903e-07, 5.659906037180917e-07, 2.253180355182849e-05, 2.574515383457765e-05, 4.2536630644463e-05, 3.476552228676155e-05, 0.006347605958580971, 0.0055243815295398235, 0.00309511786326766, 0.33071520924568176, 0.6285660862922668, 0.6415583491325378, 0.16254384815692902], "count": [164]}, "timestamp": {"min": [0.0], "max": [5.433333333333334], "mean": [2.7166666666666663], "std": [1.5780613986083616], "count": [164]}, "frame_index": {"min": [0], "max": [163], "mean": [81.5], "std": [47.341841958250846], "count": [164]}, "episode_index": {"min": [367], "max": [367], "mean": [367.0], "std": [0.0], "count": [164]}, "index": {"min": [227073], "max": [227236], "mean": [227154.5], "std": [47.341841958250846], "count": [164]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [164]}}} +{"episode_index": 368, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6642317401960784]], [[0.6052840795206971]], [[0.5331093954248366]]], "std": [[[0.24470055642320326]], [[0.2401895675335794]], [[0.2883171568409254]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6642317401960784]], [[0.6052840795206971]], [[0.5331093954248366]]], "std": [[[0.24470055642320326]], [[0.2401895675335794]], [[0.2883171568409254]]], "count": [100]}, "observation.state": {"min": [0.5304513573646545, 0.3105156421661377, 0.1302213966846466, -0.3661186397075653, -0.28748318552970886, 0.36755961179733276, -0.3082992136478424, -0.17654167115688324, 0.14578984677791595, 4.305144309997559, -0.6700654029846191, 0.6534654498100281], "max": [0.5304591059684753, 0.3105233609676361, 0.1302213966846466, -0.36569926142692566, -0.28748318552970886, 0.3677229583263397, -0.2419300526380539, -0.03537784144282341, 0.1667119711637497, 4.53810977935791, -0.2928120195865631, 1.3181535005569458], "mean": [0.5304552912712097, 0.3105214238166809, 0.13022151589393616, -0.36597779393196106, -0.28748318552970886, 0.3676339387893677, -0.28027206659317017, -0.10662449151277542, 0.15587443113327026, 4.437889575958252, -0.5008949637413025, 0.9428285956382751], "std": [3.874760295730084e-06, 3.5515936360752676e-06, 1.1920928955078125e-07, 0.00019743418670259416, 0.0, 8.105453161988407e-05, 0.025493783876299858, 0.031099729239940643, 0.007537390571087599, 0.10469397157430649, 0.15336169302463531, 0.2635958790779114], "count": [144]}, "action": {"min": [-0.11653205752372742, -0.02797265537083149, 0.15028119087219238, 0.14107748866081238, -0.43914613127708435, 0.6738897562026978, -0.5771661996841431, 0.14731264114379883, -0.08632349967956543, 0.10281359404325485, -0.4670681655406952, -0.6447652578353882, -0.6492549777030945, -0.1003645583987236], "max": [-0.11652981489896774, -0.02797093614935875, 0.15028265118598938, 0.14113035798072815, -0.4390615224838257, 0.6740724444389343, -0.5770035982131958, 0.1643722504377365, -0.07409568876028061, 0.12243804335594177, 0.3932975232601166, 0.7987765669822693, 0.7267166376113892, 0.06331012398004532], "mean": [-0.11653126776218414, -0.027971522882580757, 0.15028201043605804, 0.14110198616981506, -0.43909674882888794, 0.674006462097168, -0.5770615935325623, 0.15507760643959045, -0.08279955387115479, 0.11426229029893875, -0.07548124343156815, 0.09260905534029007, 0.09081634879112244, -0.014254982583224773], "std": [6.99369479661982e-07, 6.767502327420516e-07, 3.699038018112333e-07, 2.3499351300415583e-05, 2.4656885216245428e-05, 6.249007856240496e-05, 7.318416464840993e-05, 0.006643611937761307, 0.0028192701283842325, 0.0062368037179112434, 0.3927529454231262, 0.6396470069885254, 0.639319896697998, 0.07171043008565903], "count": [144]}, "timestamp": {"min": [0.0], "max": [4.766666666666667], "mean": [2.3833333333333333], "std": [1.3856072341783612], "count": [144]}, "frame_index": {"min": [0], "max": [143], "mean": [71.5], "std": [41.56821702535083], "count": [144]}, "episode_index": {"min": [368], "max": [368], "mean": [368.0], "std": [0.0], "count": [144]}, "index": {"min": [227237], "max": [227380], "mean": [227308.5], "std": [41.56821702535083], "count": [144]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [144]}}} +{"episode_index": 369, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6620079221132898]], [[0.6038326334422658]], [[0.5319955582788671]]], "std": [[[0.24720029615937905]], [[0.24144986223484896]], [[0.28831747883643105]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6620079221132898]], [[0.6038326334422658]], [[0.5319955582788671]]], "std": [[[0.24720029615937905]], [[0.24144986223484896]], [[0.28831747883643105]]], "count": [100]}, "observation.state": {"min": [0.528451144695282, 0.31256216764450073, 0.1288291960954666, -0.41057291626930237, -0.2649381756782532, 0.3581603169441223, -0.2925911843776703, -0.2161361128091812, 0.14088208973407745, 4.178491592407227, -0.846463143825531, 0.6945458054542542], "max": [0.5284665822982788, 0.31257760524749756, 0.1288291960954666, -0.41057291626930237, -0.2648015320301056, 0.35840535163879395, -0.2626964747905731, -0.05683930963277817, 0.16869011521339417, 4.537690162658691, -0.22886614501476288, 1.384171485900879], "mean": [0.5284639000892639, 0.3125625550746918, 0.1288292557001114, -0.4105723202228546, -0.264885276556015, 0.35826948285102844, -0.2770206928253174, -0.10242702811956406, 0.15664774179458618, 4.364603519439697, -0.5780026912689209, 0.9744256138801575], "std": [3.5370676414459012e-06, 2.237367425550474e-06, 5.960464477539063e-08, 5.960464477539062e-07, 6.660283543169498e-05, 9.140033216681331e-05, 0.006950153037905693, 0.03987327590584755, 0.008926047012209892, 0.15365661680698395, 0.22787636518478394, 0.2469673752784729], "count": [157]}, "action": {"min": [-0.11757256835699081, -0.027314618229866028, 0.14942841231822968, 0.14703595638275146, -0.4254245460033417, 0.6925032138824463, -0.5637679696083069, 0.14898478984832764, -0.08812128752470016, 0.09528349339962006, -0.5309634208679199, -0.6216352581977844, -0.6345866322517395, -0.15125876665115356], "max": [-0.11756996065378189, -0.027311431244015694, 0.14942951500415802, 0.14713631570339203, -0.42533349990844727, 0.6925584673881531, -0.563747763633728, 0.16327641904354095, -0.07613346725702286, 0.12440606206655502, 0.44069406390190125, 0.8316600918769836, 0.6882067918777466, 0.10162270814180374], "mean": [-0.11757047474384308, -0.027313515543937683, 0.14942896366119385, 0.14709320664405823, -0.42536109685897827, 0.6925353407859802, -0.5637619495391846, 0.15515083074569702, -0.08218303322792053, 0.11517638713121414, -0.05057298392057419, 0.14764103293418884, 0.012367628514766693, -0.05148249864578247], "std": [5.3914556019663e-07, 6.709285003125842e-07, 3.859855723931105e-07, 4.0971961425384507e-05, 3.328946331748739e-05, 1.9204897398594767e-05, 7.528597961936612e-06, 0.004591525997966528, 0.0038956787902861834, 0.008138785138726234, 0.4392130374908447, 0.6181873083114624, 0.6239975690841675, 0.09167614579200745], "count": [157]}, "timestamp": {"min": [0.0], "max": [5.2], "mean": [2.6], "std": [1.5107025591499545], "count": [157]}, "frame_index": {"min": [0], "max": [156], "mean": [78.0], "std": [45.32107677449864], "count": [157]}, "episode_index": {"min": [369], "max": [369], "mean": [369.0], "std": [0.0], "count": [157]}, "index": {"min": [227381], "max": [227537], "mean": [227459.0], "std": [45.32107677449864], "count": [157]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [157]}}} +{"episode_index": 370, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6498201062091503]], [[0.594496424291939]], [[0.5230961928104576]]], "std": [[[0.25125760592368773]], [[0.244293541504735]], [[0.2903095303262948]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6498201062091503]], [[0.594496424291939]], [[0.5230961928104576]]], "std": [[[0.25125760592368773]], [[0.244293541504735]], [[0.2903095303262948]]], "count": [100]}, "observation.state": {"min": [0.5283353328704834, 0.29944896697998047, 0.12791401147842407, -0.44013920426368713, -0.3407714366912842, 0.519972026348114, -0.3430051803588867, -0.12781895697116852, 0.14607113599777222, 3.827260732650757, -0.5880835056304932, 0.8532355427742004], "max": [0.5283430218696594, 0.2994644045829773, 0.12791401147842407, -0.4397197961807251, -0.3407714366912842, 0.5202170610427856, -0.2834551930427551, -0.06146522983908653, 0.16619345545768738, 4.421731948852539, 0.44611817598342896, 1.2627885341644287], "mean": [0.5283409357070923, 0.2994498610496521, 0.1279142051935196, -0.43977174162864685, -0.34077104926109314, 0.5200862884521484, -0.31303200125694275, -0.08828870952129364, 0.1559411585330963, 4.095667839050293, -0.11735248565673828, 1.0752533674240112], "std": [3.4959746244567214e-06, 1.933482963067945e-06, 1.9371509552001953e-07, 0.00013661812408827245, 3.8743019104003906e-07, 7.1958769694902e-05, 0.016020603477954865, 0.016170872375369072, 0.00741524389013648, 0.2590697109699249, 0.3942395746707916, 0.16381897032260895], "count": [134]}, "action": {"min": [-0.11801236867904663, -0.029933275654911995, 0.14788039028644562, 0.15679189562797546, -0.5050011277198792, 0.6597759127616882, -0.5339338183403015, 0.1450040638446808, -0.08594168722629547, 0.10577856004238129, -0.43798694014549255, -0.6328628063201904, -0.636130154132843, -0.37820515036582947], "max": [-0.11800999939441681, -0.029930206015706062, 0.14788194000720978, 0.15686048567295074, -0.5049188137054443, 0.659961998462677, -0.533775269985199, 0.16165688633918762, -0.0750109925866127, 0.12128037214279175, 0.39635932445526123, 0.8333021402359009, 0.6735715270042419, 0.12294604629278183], "mean": [-0.11801040172576904, -0.029932964593172073, 0.1478806585073471, 0.15682274103164673, -0.5049548149108887, 0.6598266363143921, -0.5339061617851257, 0.1531619131565094, -0.0817282646894455, 0.11498023569583893, -0.07443875074386597, 0.22369913756847382, -0.02009737491607666, -0.1691111922264099], "std": [6.20593539224501e-07, 3.623239024364011e-07, 3.4727278830359865e-07, 2.0718869564007036e-05, 2.5894149075611494e-05, 5.267362575978041e-05, 4.8740381316747516e-05, 0.006071887910366058, 0.003577037714421749, 0.005128525197505951, 0.30166786909103394, 0.6771847605705261, 0.5665073394775391, 0.21190029382705688], "count": [134]}, "timestamp": {"min": [0.0], "max": [4.433333333333334], "mean": [2.216666666666667], "std": [1.2893796958227626], "count": [134]}, "frame_index": {"min": [0], "max": [133], "mean": [66.5], "std": [38.68139087468288], "count": [134]}, "episode_index": {"min": [370], "max": [370], "mean": [370.0], "std": [0.0], "count": [134]}, "index": {"min": [227538], "max": [227671], "mean": [227604.5], "std": [38.68139087468288], "count": [134]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [134]}}} +{"episode_index": 371, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6651618137254902]], [[0.6075027614379085]], [[0.5356048366013071]]], "std": [[[0.24455943246231146]], [[0.23974577606500982]], [[0.2879193105881584]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6651618137254902]], [[0.6075027614379085]], [[0.5356048366013071]]], "std": [[[0.24455943246231146]], [[0.23974577606500982]], [[0.2879193105881584]]], "count": [100]}, "observation.state": {"min": [0.5278255939483643, 0.307758629322052, 0.13168232142925262, -0.37345778942108154, -0.3335297107696533, 0.3957960605621338, -0.3064689338207245, -0.16806210577487946, 0.14640559256076813, 4.05812931060791, -0.698485791683197, 0.859363317489624], "max": [0.5278410911560059, 0.30777406692504883, 0.13168232142925262, -0.37345778942108154, -0.3335297107696533, 0.3957960605621338, -0.25995489954948425, -0.054144080728292465, 0.1644512414932251, 4.424038410186768, 0.006285279989242554, 1.3807744979858398], "mean": [0.5278279781341553, 0.3077642023563385, 0.13168227672576904, -0.37345796823501587, -0.33353012800216675, 0.39579662680625916, -0.2866459786891937, -0.09402372688055038, 0.15534494817256927, 4.233478546142578, -0.39257797598838806, 1.0903828144073486], "std": [3.9238802855834365e-06, 7.4638005571614485e-06, 4.470348358154297e-08, 1.7881393432617188e-07, 4.172325134277344e-07, 5.662441253662109e-07, 0.01068155188113451, 0.028616171330213547, 0.006744809448719025, 0.13165707886219025, 0.271940678358078, 0.20357723534107208], "count": [136]}, "action": {"min": [-0.11628620326519012, -0.029128840193152428, 0.15147773921489716, 0.12911953032016754, -0.4620112180709839, 0.6685141324996948, -0.5682993531227112, 0.1487749069929123, -0.08754020184278488, 0.10376866161823273, -0.47934454679489136, -0.6313704252243042, -0.6248582601547241, -0.22546027600765228], "max": [-0.11628355830907822, -0.029125932604074478, 0.151479572057724, 0.12912669777870178, -0.4620019197463989, 0.6685186624526978, -0.5682965517044067, 0.1618805080652237, -0.07648870348930359, 0.12169616669416428, 0.42361629009246826, 0.8415190577507019, 0.6782721281051636, 0.11303489655256271], "mean": [-0.11628560721874237, -0.029127730056643486, 0.15147894620895386, 0.1291223019361496, -0.46200641989707947, 0.6685176491737366, -0.5682981610298157, 0.15539084374904633, -0.08100422471761703, 0.11528735607862473, -0.060291122645139694, 0.16202032566070557, 0.019066201522946358, -0.0671895295381546], "std": [5.903052056055458e-07, 1.2683049135375768e-06, 4.359498007033835e-07, 2.5710278350743465e-06, 2.9710242870351067e-06, 1.1136943385281484e-06, 1.1513610616020742e-06, 0.00443104887381196, 0.00337117537856102, 0.005951228551566601, 0.3798653483390808, 0.6679480075836182, 0.5946910977363586, 0.14535030722618103], "count": [136]}, "timestamp": {"min": [0.0], "max": [4.5], "mean": [2.25], "std": [1.3086252328302401], "count": [136]}, "frame_index": {"min": [0], "max": [135], "mean": [67.5], "std": [39.2587569849072], "count": [136]}, "episode_index": {"min": [371], "max": [371], "mean": [371.0], "std": [0.0], "count": [136]}, "index": {"min": [227672], "max": [227807], "mean": [227739.5], "std": [39.2587569849072], "count": [136]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [136]}}} +{"episode_index": 372, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6356106263616558]], [[0.5833153431372549]], [[0.5135416884531591]]], "std": [[[0.2610419710942306]], [[0.2515297145534379]], [[0.2944010782607772]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6356106263616558]], [[0.5833153431372549]], [[0.5135416884531591]]], "std": [[[0.2610419710942306]], [[0.2515297145534379]], [[0.2944010782607772]]], "count": [100]}, "observation.state": {"min": [0.538011908531189, 0.3147013485431671, 0.1341426819562912, -0.5351287126541138, -0.3924200236797333, 0.5497545003890991, -0.34840336441993713, -0.14904874563217163, 0.14019764959812164, 3.868779420852661, -0.6385023593902588, 0.813372790813446], "max": [0.5380273461341858, 0.3147090971469879, 0.1341426819562912, -0.5347093343734741, -0.3924200236797333, 0.5497545003890991, -0.2903129756450653, -0.04238235950469971, 0.16517716646194458, 4.5389485359191895, 0.3832653760910034, 1.3566226959228516], "mean": [0.5380169153213501, 0.3147035539150238, 0.13414260745048523, -0.5349863767623901, -0.3924207389354706, 0.5497539639472961, -0.3292306065559387, -0.08645681291818619, 0.15418004989624023, 4.233745574951172, -0.20538330078125, 1.0689313411712646], "std": [4.673205694416538e-06, 3.6110870951233665e-06, 7.450580596923828e-08, 0.0001977637584786862, 7.152557373046875e-07, 5.364418029785156e-07, 0.011521115899085999, 0.022350644692778587, 0.010053695179522038, 0.2978473901748657, 0.3849499821662903, 0.20705504715442657], "count": [155]}, "action": {"min": [-0.11443712562322617, -0.02824196219444275, 0.1532595157623291, 0.1462763100862503, -0.5186547040939331, 0.6806522607803345, -0.49629321694374084, 0.1439913511276245, -0.08413532376289368, 0.09734954684972763, -0.4698672592639923, -0.6258098483085632, -0.6374228000640869, -0.3358526825904846], "max": [-0.11443458497524261, -0.028239602223038673, 0.1532611846923828, 0.14630447328090668, -0.5186218023300171, 0.6807931065559387, -0.49613794684410095, 0.15961144864559174, -0.07133349776268005, 0.12142381817102432, 0.4290987551212311, 0.8642478585243225, 0.6778203248977661, 0.053724635392427444], "mean": [-0.11443593353033066, -0.028241058811545372, 0.15326036512851715, 0.1462869793176651, -0.5186341404914856, 0.680745005607605, -0.49619102478027344, 0.15087687969207764, -0.07987501472234726, 0.1129356250166893, -0.10818479210138321, 0.13057781755924225, 0.07118251174688339, -0.1445140540599823], "std": [8.354618330486119e-07, 6.908595082677493e-07, 4.819634114028304e-07, 1.0805222700582817e-05, 1.3453764040605165e-05, 6.515411951113492e-05, 7.227874448290095e-05, 0.006355565506964922, 0.004509092774242163, 0.0075629400089383125, 0.32417482137680054, 0.6944115161895752, 0.5749561190605164, 0.165599063038826], "count": [155]}, "timestamp": {"min": [0.0], "max": [5.133333333333334], "mean": [2.5666666666666664], "std": [1.491457154746473], "count": [155]}, "frame_index": {"min": [0], "max": [154], "mean": [77.0], "std": [44.74371464239419], "count": [155]}, "episode_index": {"min": [372], "max": [372], "mean": [372.0], "std": [0.0], "count": [155]}, "index": {"min": [227808], "max": [227962], "mean": [227885.0], "std": [44.74371464239419], "count": [155]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [155]}}} +{"episode_index": 373, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6719225816993464]], [[0.6128003376906318]], [[0.5422407080610022]]], "std": [[[0.24066224784441623]], [[0.23681474967584312]], [[0.28449055622832764]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6719225816993464]], [[0.6128003376906318]], [[0.5422407080610022]]], "std": [[[0.24066224784441623]], [[0.23681474967584312]], [[0.28449055622832764]]], "count": [100]}, "observation.state": {"min": [0.5371701121330261, 0.3010089695453644, 0.13570989668369293, -0.5823089480400085, -0.2570132613182068, 0.4415149688720703, -0.3176668882369995, -0.15184436738491058, 0.1443302184343338, 4.015352725982666, -0.2960912883281708, 0.9137224555015564], "max": [0.5371778607368469, 0.3010166883468628, 0.13570989668369293, -0.5823089480400085, -0.2568766176700592, 0.4417080581188202, -0.27767086029052734, -0.024581460282206535, 0.16163310408592224, 4.1499738693237305, 0.11176866292953491, 1.236831545829773], "mean": [0.5371751189231873, 0.30101603269577026, 0.13570979237556458, -0.5823084115982056, -0.257002592086792, 0.4415951669216156, -0.3027880787849426, -0.0658034235239029, 0.15443453192710876, 4.055985450744629, -0.12218475341796875, 1.0412790775299072], "std": [3.7529709970840486e-06, 2.2838908080302645e-06, 1.043081283569336e-07, 5.364418029785156e-07, 3.651890074252151e-05, 6.988288805587217e-05, 0.01022171601653099, 0.03390166535973549, 0.0066905817948281765, 0.031065139919519424, 0.11917947232723236, 0.09791877865791321], "count": [155]}, "action": {"min": [-0.11297480762004852, -0.02975602075457573, 0.1544097363948822, 0.17195433378219604, -0.4482478201389313, 0.7269120812416077, -0.4910328984260559, 0.150186225771904, -0.0865623876452446, 0.10338477790355682, -0.32346034049987793, -0.6449657678604126, -0.6405071020126343, -0.27814722061157227], "max": [-0.11297308653593063, -0.02975328266620636, 0.1544109284877777, 0.1720501035451889, -0.4481390714645386, 0.7269605994224548, -0.4910087287425995, 0.15973900258541107, -0.07347337901592255, 0.12493616342544556, 0.30216842889785767, 0.8139537572860718, 0.6738883852958679, 0.27334320545196533], "mean": [-0.11297393590211868, -0.029754530638456345, 0.1544102281332016, 0.17197464406490326, -0.44820162653923035, 0.7269381284713745, -0.4910203516483307, 0.15520702302455902, -0.07793744653463364, 0.11719097197055817, -0.03311225026845932, 0.0769316554069519, 0.02268732152879238, -0.0021111329551786184], "std": [5.455524956232694e-07, 5.322290235199034e-07, 2.8614687153094565e-07, 2.495607259334065e-05, 2.5514973458484747e-05, 1.552905268908944e-05, 5.977537057333393e-06, 0.0032299861777573824, 0.003673221915960312, 0.007288687396794558, 0.2657562494277954, 0.6911813020706177, 0.613290548324585, 0.2607346475124359], "count": [155]}, "timestamp": {"min": [0.0], "max": [5.133333333333334], "mean": [2.5666666666666664], "std": [1.491457154746473], "count": [155]}, "frame_index": {"min": [0], "max": [154], "mean": [77.0], "std": [44.74371464239419], "count": [155]}, "episode_index": {"min": [373], "max": [373], "mean": [373.0], "std": [0.0], "count": [155]}, "index": {"min": [227963], "max": [228117], "mean": [228040.0], "std": [44.74371464239419], "count": [155]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [155]}}} +{"episode_index": 374, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6580050844226579]], [[0.6008167919389978]], [[0.529713262527233]]], "std": [[[0.2459445233814087]], [[0.23915571976043964]], [[0.2856153447730107]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6580050844226579]], [[0.6008167919389978]], [[0.529713262527233]]], "std": [[[0.2459445233814087]], [[0.23915571976043964]], [[0.2856153447730107]]], "count": [100]}, "observation.state": {"min": [0.5506076812744141, 0.2997964918613434, 0.13310176134109497, -0.4590112864971161, -0.4308148920536041, 0.455686092376709, -0.3128710687160492, -0.1649884730577469, 0.1492859423160553, 4.29277229309082, -0.624975323677063, 0.8924734592437744], "max": [0.5506231188774109, 0.2998042106628418, 0.13310176134109497, -0.45859190821647644, -0.4308148920536041, 0.455686092376709, -0.2639630138874054, -0.017901290208101273, 0.16745473444461823, 4.499946117401123, -0.18664546310901642, 1.3664023876190186], "mean": [0.550620436668396, 0.29979702830314636, 0.1331016719341278, -0.45869725942611694, -0.43081551790237427, 0.45568567514419556, -0.28779101371765137, -0.08666384965181351, 0.15764808654785156, 4.394766807556152, -0.4087825417518616, 1.1061638593673706], "std": [6.031523753335932e-06, 1.5296112678697682e-06, 8.940696716308594e-08, 0.0001811097317840904, 6.258487701416016e-07, 4.172325134277344e-07, 0.01515177357941866, 0.03738860785961151, 0.0059861717745661736, 0.05399484559893608, 0.15998759865760803, 0.1675807535648346], "count": [125]}, "action": {"min": [-0.11264484375715256, -0.0304106455296278, 0.15045057237148285, 0.11121492832899094, -0.5103912949562073, 0.6725514531135559, -0.5242181420326233, 0.14745047688484192, -0.08776964247226715, 0.10559872537851334, -0.45909997820854187, -0.6344042420387268, -0.6354475021362305, -0.08794160932302475], "max": [-0.11264239251613617, -0.030408376827836037, 0.150452122092247, 0.11123507469892502, -0.5103543996810913, 0.6726965308189392, -0.5240678787231445, 0.16070684790611267, -0.07055947184562683, 0.1256272941827774, 0.43074920773506165, 0.826154351234436, 0.6826599836349487, 0.0744442418217659], "mean": [-0.11264321953058243, -0.030409974977374077, 0.15045097470283508, 0.11122812330722809, -0.510381817817688, 0.6725887656211853, -0.5241785645484924, 0.15418380498886108, -0.08149474859237671, 0.11754196137189865, -0.030263766646385193, 0.14146149158477783, 0.0029577158857136965, -0.018869340419769287], "std": [9.220773335982813e-07, 4.148278662796656e-07, 5.150699848854856e-07, 6.306432624114677e-06, 1.4472986549662892e-05, 6.180789205245674e-05, 6.403077713912353e-05, 0.004798287060111761, 0.003918007481843233, 0.006146138068288565, 0.3685590922832489, 0.6852522492408752, 0.6076906323432922, 0.06335294991731644], "count": [125]}, "timestamp": {"min": [0.0], "max": [4.133333333333334], "mean": [2.0666666666666664], "std": [1.2027745701779144], "count": [125]}, "frame_index": {"min": [0], "max": [124], "mean": [62.0], "std": [36.08323710533743], "count": [125]}, "episode_index": {"min": [374], "max": [374], "mean": [374.0], "std": [0.0], "count": [125]}, "index": {"min": [228118], "max": [228242], "mean": [228180.0], "std": [36.08323710533743], "count": [125]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [125]}}} +{"episode_index": 375, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6629634940087146]], [[0.6044670424836601]], [[0.531887012527233]]], "std": [[[0.24250280285023168]], [[0.23686327459629433]], [[0.28520815198751404]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6629634940087146]], [[0.6044670424836601]], [[0.531887012527233]]], "std": [[[0.24250280285023168]], [[0.23686327459629433]], [[0.28520815198751404]]], "count": [100]}, "observation.state": {"min": [0.5383439660072327, 0.29789671301841736, 0.1312856674194336, -0.5183535218238831, -0.5123868584632874, 0.44438493251800537, -0.2968386709690094, -0.12120828777551651, 0.14533226191997528, 4.277045726776123, -0.5358883738517761, 0.9941117167472839], "max": [0.5383517146110535, 0.29789671301841736, 0.1312856674194336, -0.5179341435432434, -0.5121135711669922, 0.4445260763168335, -0.2698863446712494, -0.013383500277996063, 0.1708315759897232, 4.421941757202148, -0.32533150911331177, 1.3827730417251587], "mean": [0.5383516550064087, 0.2978971004486084, 0.1312859058380127, -0.5183287262916565, -0.512340247631073, 0.4444670081138611, -0.2839395999908447, -0.07502398639917374, 0.15888816118240356, 4.368105888366699, -0.3897770941257477, 1.1690160036087036], "std": [2.4612434117443627e-06, 3.8743019104003906e-07, 2.384185791015625e-07, 9.978492016671225e-05, 0.00010251197090838104, 3.458374703768641e-05, 0.009931103326380253, 0.024972502142190933, 0.008808503858745098, 0.029754485934972763, 0.04290923848748207, 0.1458529233932495], "count": [166]}, "action": {"min": [-0.11582645028829575, -0.03150547668337822, 0.14954257011413574, 0.0660097524523735, -0.5197566151618958, 0.6915618181228638, -0.49722734093666077, 0.14942197501659393, -0.08563878387212753, 0.10604054480791092, -0.42691755294799805, -0.6406648755073547, -0.6530494689941406, -0.11312609910964966], "max": [-0.11582379043102264, -0.031502801924943924, 0.14954516291618347, 0.06613444536924362, -0.5195996165275574, 0.6917601823806763, -0.49707648158073425, 0.16014091670513153, -0.07345300912857056, 0.13010628521442413, 0.3952796757221222, 0.7953183054924011, 0.6643982529640198, 0.11531627923250198], "mean": [-0.11582516878843307, -0.03150438517332077, 0.14954373240470886, 0.06603943556547165, -0.5196847319602966, 0.6917133927345276, -0.49709126353263855, 0.1544153094291687, -0.08084122091531754, 0.11997565627098083, 0.331725537776947, 0.6755670309066772, -0.5542263984680176, -0.05702856183052063], "std": [6.526144602503337e-07, 7.343324455177935e-07, 5.120010655446094e-07, 4.388561501400545e-05, 3.207852932973765e-05, 3.944824493373744e-05, 3.494643897283822e-05, 0.00403427192941308, 0.0027663996443152428, 0.008312402293086052, 0.1330702155828476, 0.2350943386554718, 0.220647394657135, 0.0385468564927578], "count": [166]}, "timestamp": {"min": [0.0], "max": [5.5], "mean": [2.749999999999999], "std": [1.597306761047761], "count": [166]}, "frame_index": {"min": [0], "max": [165], "mean": [82.5], "std": [47.91920283143283], "count": [166]}, "episode_index": {"min": [375], "max": [375], "mean": [375.0], "std": [0.0], "count": [166]}, "index": {"min": [228243], "max": [228408], "mean": [228325.5], "std": [47.91920283143283], "count": [166]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [166]}}} +{"episode_index": 376, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6604811519607844]], [[0.6042471377995643]], [[0.5356956944444445]]], "std": [[[0.24914897554377596]], [[0.24231650299698818]], [[0.287028385595997]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6604811519607844]], [[0.6042471377995643]], [[0.5356956944444445]]], "std": [[[0.24914897554377596]], [[0.24231650299698818]], [[0.287028385595997]]], "count": [100]}, "observation.state": {"min": [0.5420200228691101, 0.28904643654823303, 0.1359432339668274, -0.5292574167251587, -0.16287070512771606, 0.5329542756080627, -0.36418864130973816, -0.10628025233745575, 0.14303264021873474, 4.183943271636963, -0.40048158168792725, 1.019446611404419], "max": [0.5420354604721069, 0.28905415534973145, 0.1359432339668274, -0.528838038444519, -0.16287070512771606, 0.5331993103027344, -0.31688690185546875, -0.0023168199695646763, 0.16589012742042542, 4.322968006134033, 0.25332406163215637, 1.3285083770751953], "mean": [0.5420317053794861, 0.2890545129776001, 0.13594312965869904, -0.5289577841758728, -0.16287052631378174, 0.5330792665481567, -0.329079806804657, -0.055254388600587845, 0.1561470925807953, 4.247663974761963, 0.024630026891827583, 1.145412564277649], "std": [6.430443136196118e-06, 7.347980499616824e-07, 1.043081283569336e-07, 0.0001640734262764454, 1.7881393432617188e-07, 7.273182563949376e-05, 0.013274717144668102, 0.027922658249735832, 0.007619654294103384, 0.043547481298446655, 0.1715395450592041, 0.10144975036382675], "count": [158]}, "action": {"min": [-0.11138567328453064, -0.030893616378307343, 0.15374977886676788, 0.234490767121315, -0.4637341797351837, 0.689671516418457, -0.5042840242385864, 0.1485229879617691, -0.0819314569234848, 0.10249348729848862, -0.383158415555954, -0.6495823264122009, -0.6551089286804199, -0.19710813462734222], "max": [-0.1113828718662262, -0.03089221380650997, 0.15375150740146637, 0.23456598818302155, -0.4636349678039551, 0.6898621320724487, -0.5041007399559021, 0.1567319929599762, -0.07050056010484695, 0.1272980272769928, 0.34198683500289917, 0.838952362537384, 0.662484347820282, 0.13031195104122162], "mean": [-0.11138361692428589, -0.030892519280314445, 0.15375041961669922, 0.23453205823898315, -0.46368858218193054, 0.6897374987602234, -0.5042318105697632, 0.15205885469913483, -0.07771091908216476, 0.11829796433448792, 0.18708157539367676, 0.7282615900039673, -0.5683661103248596, -0.16499224305152893], "std": [9.690667184258928e-07, 3.063114206725004e-07, 5.09236087964382e-07, 1.8262306184624322e-05, 2.5290302801295184e-05, 5.3268144256435335e-05, 6.478975410573184e-05, 0.0026468925643712282, 0.0026758797466754913, 0.008326109498739243, 0.10668255388736725, 0.19865421950817108, 0.17838925123214722, 0.04129927605390549], "count": [158]}, "timestamp": {"min": [0.0], "max": [5.233333333333333], "mean": [2.6166666666666667], "std": [1.5203252575974948], "count": [158]}, "frame_index": {"min": [0], "max": [157], "mean": [78.5], "std": [45.609757727924844], "count": [158]}, "episode_index": {"min": [376], "max": [376], "mean": [376.0], "std": [0.0], "count": [158]}, "index": {"min": [228409], "max": [228566], "mean": [228487.5], "std": [45.609757727924844], "count": [158]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [158]}}} +{"episode_index": 377, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6694363289760349]], [[0.6110282407407408]], [[0.5387336955337692]]], "std": [[[0.2270555550969537]], [[0.23111789944203034]], [[0.28169952782976654]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6694363289760349]], [[0.6110282407407408]], [[0.5387336955337692]]], "std": [[[0.2270555550969537]], [[0.23111789944203034]], [[0.28169952782976654]]], "count": [100]}, "observation.state": {"min": [0.4627075493335724, 0.2991245985031128, 0.13194158673286438, -0.534919023513794, -0.22340068221092224, 0.4615912437438965, -0.3539791703224182, -0.1729505956172943, 0.15176573395729065, 4.247269630432129, -0.404580682516098, 0.8679258823394775], "max": [0.4627229869365692, 0.299140065908432, 0.13194158673286438, -0.534919023513794, -0.22340068221092224, 0.4615912437438965, -0.3126085102558136, 0.023948190733790398, 0.167146235704422, 4.469960689544678, 0.19484364986419678, 1.0869667530059814], "mean": [0.46271103620529175, 0.2991401255130768, 0.1319415271282196, -0.5349195599555969, -0.22340045869350433, 0.46159106492996216, -0.33215364813804626, -0.0813833624124527, 0.15996120870113373, 4.353748798370361, -0.02078949101269245, 0.9721496105194092], "std": [5.181291271583177e-06, 2.31359581448487e-06, 5.960464477539063e-08, 5.364418029785156e-07, 2.2351741790771484e-07, 1.7881393432617188e-07, 0.012434881180524826, 0.05417145788669586, 0.0044146208092570305, 0.07431773841381073, 0.15486758947372437, 0.06174791231751442], "count": [158]}, "action": {"min": [-0.12561161816120148, -0.032230570912361145, 0.1562461256980896, 0.16007006168365479, -0.4369044005870819, 0.7236054539680481, -0.5097922086715698, 0.1443025916814804, -0.09201526641845703, 0.10494758188724518, -0.38615405559539795, -0.6768261790275574, -0.6722472906112671, -0.16576753556728363], "max": [-0.12560927867889404, -0.03222739323973656, 0.1562473177909851, 0.1600801646709442, -0.4368966519832611, 0.7236087322235107, -0.5097903609275818, 0.1567966341972351, -0.0677499771118164, 0.12724441289901733, 0.25605177879333496, 0.7891385555267334, 0.7145216464996338, 0.17663739621639252], "mean": [-0.1256110668182373, -0.03222792223095894, 0.15624715387821198, 0.16007502377033234, -0.43689772486686707, 0.7236089706420898, -0.5097914338111877, 0.15007060766220093, -0.08262047171592712, 0.11880496889352798, -0.058993708342313766, 0.06474088877439499, 0.008894240483641624, 0.023092718794941902], "std": [7.829353876331879e-07, 4.332185028488311e-07, 3.502685785861104e-07, 2.2768356302549364e-06, 1.305607611357118e-06, 1.4241865073927329e-06, 7.387920959445182e-07, 0.0041043623350560665, 0.0062668886967003345, 0.006954972632229328, 0.20708362758159637, 0.7021152377128601, 0.6623422503471375, 0.13103297352790833], "count": [158]}, "timestamp": {"min": [0.0], "max": [5.233333333333333], "mean": [2.6166666666666667], "std": [1.5203252575974948], "count": [158]}, "frame_index": {"min": [0], "max": [157], "mean": [78.5], "std": [45.609757727924844], "count": [158]}, "episode_index": {"min": [377], "max": [377], "mean": [377.0], "std": [0.0], "count": [158]}, "index": {"min": [228567], "max": [228724], "mean": [228645.5], "std": [45.609757727924844], "count": [158]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [158]}}} +{"episode_index": 378, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6561915441176471]], [[0.6014754302832244]], [[0.5322522657952069]]], "std": [[[0.24274321978233993]], [[0.2375037095048057]], [[0.2818413047628293]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6561915441176471]], [[0.6014754302832244]], [[0.5322522657952069]]], "std": [[[0.24274321978233993]], [[0.2375037095048057]], [[0.2818413047628293]]], "count": [100]}, "observation.state": {"min": [0.536027193069458, 0.30819109082221985, 0.13485045731067657, -0.37786129117012024, -0.41318878531455994, 0.4319201111793518, -0.3441867530345917, -0.19135388731956482, 0.14890094101428986, 4.281659126281738, -0.36058372259140015, 0.7785501480102539], "max": [0.5360426306724548, 0.30820655822753906, 0.1348530501127243, -0.3774419128894806, -0.41318878531455994, 0.43208345770835876, -0.3162381947040558, -0.041834041476249695, 0.16414013504981995, 4.348130702972412, 0.10288728028535843, 1.0794533491134644], "mean": [0.5360410213470459, 0.3081951141357422, 0.1348520964384079, -0.37780866026878357, -0.4131889045238495, 0.43194741010665894, -0.32924097776412964, -0.09509193897247314, 0.1558786928653717, 4.315486907958984, -0.177618607878685, 0.9127582311630249], "std": [3.417163725316641e-06, 5.795803190267179e-06, 1.227249413204845e-06, 0.0001305306504946202, 1.1920928955078125e-07, 6.065776324248873e-05, 0.00646390812471509, 0.043381065130233765, 0.005131612066179514, 0.015555394813418388, 0.1586662083864212, 0.10217953473329544], "count": [140]}, "action": {"min": [-0.11381977051496506, -0.029798874631524086, 0.15335829555988312, 0.11080954968929291, -0.4977858364582062, 0.6550248861312866, -0.5575545430183411, 0.14710792899131775, -0.08992008119821548, 0.10062766075134277, -0.3524833023548126, -0.6553038954734802, -0.6777740120887756, -0.1597456932067871], "max": [-0.11381451040506363, -0.029795534908771515, 0.1533622443675995, 0.11087515205144882, -0.4977039098739624, 0.6552141904830933, -0.5573997497558594, 0.15459193289279938, -0.07485859841108322, 0.12369674444198608, 0.3282727301120758, 0.7887324094772339, 0.7225797176361084, 0.16544736921787262], "mean": [-0.11381635814905167, -0.0297977514564991, 0.1533607393503189, 0.11082285642623901, -0.4977191984653473, 0.6551873087882996, -0.5574257373809814, 0.15065066516399384, -0.08153971284627914, 0.11449068784713745, -0.04099292680621147, 0.11962458491325378, -0.02085903100669384, -0.010284824296832085], "std": [1.061879856933956e-06, 1.0164403647650033e-06, 1.0013171731770854e-06, 1.805369720386807e-05, 2.0204868633300066e-05, 4.8374458856415004e-05, 4.514488318818621e-05, 0.002944844774901867, 0.003954979591071606, 0.007060809526592493, 0.27488797903060913, 0.6604634523391724, 0.671370267868042, 0.1447596251964569], "count": [140]}, "timestamp": {"min": [0.0], "max": [4.633333333333334], "mean": [2.3166666666666664], "std": [1.3471162615833208], "count": [140]}, "frame_index": {"min": [0], "max": [139], "mean": [69.5], "std": [40.413487847499624], "count": [140]}, "episode_index": {"min": [378], "max": [378], "mean": [378.0], "std": [0.0], "count": [140]}, "index": {"min": [228725], "max": [228864], "mean": [228794.5], "std": [40.413487847499624], "count": [140]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [140]}}} +{"episode_index": 379, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.636802096949891]], [[0.5908299673202615]], [[0.5261232761437908]]], "std": [[[0.25587245766700384]], [[0.24482403388996704]], [[0.28271264353035336]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.636802096949891]], [[0.5908299673202615]], [[0.5261232761437908]]], "std": [[[0.25587245766700384]], [[0.24482403388996704]], [[0.28271264353035336]]], "count": [100]}, "observation.state": {"min": [0.5527005791664124, 0.30152636766433716, 0.13237065076828003, -0.5120628476142883, -0.13991577923297882, 0.618948221206665, -0.35211026668548584, -0.18309055268764496, 0.1439879983663559, 4.135085582733154, -0.5121135711669922, 0.8062146902084351], "max": [0.5527160167694092, 0.30154183506965637, 0.13237065076828003, -0.5120628476142883, -0.13991577923297882, 0.6191115975379944, -0.3240535855293274, -0.060051970183849335, 0.16457179188728333, 4.537899971008301, -0.060256700962781906, 1.2578918933868408], "mean": [0.5527061223983765, 0.3015327751636505, 0.132370725274086, -0.5120623111724854, -0.13991564512252808, 0.6190557479858398, -0.34198489785194397, -0.09807978570461273, 0.1551462560892105, 4.32841682434082, -0.3363647162914276, 0.9762594103813171], "std": [5.069745384389535e-06, 4.733809419121826e-06, 7.450580596923828e-08, 5.364418029785156e-07, 1.341104507446289e-07, 7.73160281823948e-05, 0.008516435511410236, 0.03385820612311363, 0.007871716283261776, 0.16630274057388306, 0.16721700131893158, 0.159247487783432], "count": [127]}, "action": {"min": [-0.11183550208806992, -0.027558233588933945, 0.1504991501569748, 0.2733026444911957, -0.48323962092399597, 0.6637890934944153, -0.5011664032936096, 0.1427101194858551, -0.08610616624355316, 0.09781474620103836, -0.4205411374568939, -0.6365944147109985, -0.6377028822898865, -0.1974865198135376], "max": [-0.11183327436447144, -0.027554955333471298, 0.1505003422498703, 0.2733516991138458, -0.4831790626049042, 0.6638323664665222, -0.5011425614356995, 0.1543678194284439, -0.07352730631828308, 0.12060119211673737, 0.4056631624698639, 0.8113638162612915, 0.6982897520065308, 0.10929067432880402], "mean": [-0.11183473467826843, -0.027556905522942543, 0.15049980580806732, 0.27333348989486694, -0.48321834206581116, 0.6638045310974121, -0.501151442527771, 0.14793361723423004, -0.0805693045258522, 0.11263526231050491, -0.047867465764284134, 0.08719935268163681, 0.04238566756248474, -0.0686950758099556], "std": [6.567834134330042e-07, 9.631012289901264e-07, 2.868825959012611e-07, 1.8126625946024433e-05, 2.6455545594217256e-05, 1.8547561921877787e-05, 1.0741819096438121e-05, 0.004531415645033121, 0.00356807978823781, 0.007268898654729128, 0.3577828109264374, 0.6630674004554749, 0.634198009967804, 0.11711224168539047], "count": [127]}, "timestamp": {"min": [0.0], "max": [4.2], "mean": [2.1], "std": [1.2220201853215575], "count": [127]}, "frame_index": {"min": [0], "max": [126], "mean": [63.0], "std": [36.66060555964672], "count": [127]}, "episode_index": {"min": [379], "max": [379], "mean": [379.0], "std": [0.0], "count": [127]}, "index": {"min": [228865], "max": [228991], "mean": [228928.0], "std": [36.66060555964672], "count": [127]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [127]}}} +{"episode_index": 380, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6687913316993463]], [[0.614418287037037]], [[0.548593401416122]]], "std": [[[0.23795585854318127]], [[0.23206294092287577]], [[0.2745592045465616]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6687913316993463]], [[0.614418287037037]], [[0.548593401416122]]], "std": [[[0.23795585854318127]], [[0.23206294092287577]], [[0.2745592045465616]]], "count": [100]}, "observation.state": {"min": [0.5731271505355835, 0.2828296422958374, 0.1283806711435318, -0.5412097573280334, -0.4105926752090454, 0.49759653210639954, -0.32037755846977234, -0.16456371545791626, 0.14576521515846252, 4.090841293334961, -0.47522175312042236, 0.8040730357170105], "max": [0.5731426477432251, 0.28284507989883423, 0.1283806711435318, -0.5407903790473938, -0.4105926752090454, 0.49759653210639954, -0.28631260991096497, -0.04666075110435486, 0.1637927144765854, 4.2992730140686035, -0.05069214105606079, 1.229722261428833], "mean": [0.5731314420700073, 0.28283652663230896, 0.12838053703308105, -0.5410778522491455, -0.4105919599533081, 0.4975966811180115, -0.3039098083972931, -0.094249427318573, 0.15546754002571106, 4.205735683441162, -0.2095777839422226, 0.9803553819656372], "std": [6.047178430890199e-06, 7.620578799105715e-06, 1.341104507446289e-07, 0.00019445321231614798, 7.152557373046875e-07, 1.4901161193847656e-07, 0.013834044337272644, 0.030326802283525467, 0.005588787142187357, 0.04951808601617813, 0.08473208546638489, 0.13436159491539001], "count": [163]}, "action": {"min": [-0.11157684773206711, -0.031267255544662476, 0.14413273334503174, 0.13276423513889313, -0.5235089063644409, 0.684605598449707, -0.48951494693756104, 0.1491001397371292, -0.08703301101922989, 0.10263783484697342, -0.39875197410583496, -0.6468561291694641, -0.6638317108154297, -0.1857687085866928], "max": [-0.11157308518886566, -0.031263671815395355, 0.144135519862175, 0.13278983533382416, -0.5234653949737549, 0.6847490072250366, -0.4893587827682495, 0.16059806942939758, -0.0741213783621788, 0.12240859866142273, 0.33553430438041687, 0.8021577000617981, 0.7047023177146912, 0.2556377947330475], "mean": [-0.11157558858394623, -0.03126562759280205, 0.14413443207740784, 0.13277247548103333, -0.5234794020652771, 0.6847034096717834, -0.48940810561180115, 0.1540541797876358, -0.08162848651409149, 0.11542781442403793, 0.014617056585848331, 0.14850296080112457, -0.05220223590731621, -0.00548129016533494], "std": [9.685401209935662e-07, 1.4110266874922672e-06, 5.687393809239438e-07, 8.282336239062715e-06, 1.6267269529635087e-05, 6.432791269617155e-05, 7.080913928803056e-05, 0.004019890911877155, 0.0031643107067793608, 0.005733870901167393, 0.2849612236022949, 0.6664975881576538, 0.6422032117843628, 0.19269441068172455], "count": [163]}, "timestamp": {"min": [0.0], "max": [5.4], "mean": [2.6999999999999993], "std": [1.5684387141358123], "count": [163]}, "frame_index": {"min": [0], "max": [162], "mean": [81.0], "std": [47.05316142407437], "count": [163]}, "episode_index": {"min": [380], "max": [380], "mean": [380.0], "std": [0.0], "count": [163]}, "index": {"min": [228992], "max": [229154], "mean": [229073.0], "std": [47.05316142407437], "count": [163]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [163]}}} +{"episode_index": 381, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6546671759259259]], [[0.5981987282135076]], [[0.5283386683006536]]], "std": [[[0.2524751941645259]], [[0.24363655527371708]], [[0.2899801305204196]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6546671759259259]], [[0.5981987282135076]], [[0.5283386683006536]]], "std": [[[0.2524751941645259]], [[0.24363655527371708]], [[0.2899801305204196]]], "count": [100]}, "observation.state": {"min": [0.5380505323410034, 0.29311633110046387, 0.12642456591129303, -0.1079903170466423, -0.4114125072956085, 0.44190672039985657, -0.3292509913444519, -0.17331357300281525, 0.14361727237701416, 3.936509370803833, -0.6501164436340332, 0.5836596488952637], "max": [0.5380659699440002, 0.2931240499019623, 0.12642456591129303, -0.10757093876600266, -0.4114125072956085, 0.4420700669288635, -0.2541396915912628, -0.08600807934999466, 0.16278551518917084, 4.537690162658691, 0.007651640102267265, 1.17292058467865], "mean": [0.5380553007125854, 0.2931164801120758, 0.12642472982406616, -0.10761615633964539, -0.41141223907470703, 0.4420314431190491, -0.29662254452705383, -0.11718134582042694, 0.15360145270824432, 4.269438743591309, -0.37113431096076965, 0.8524511456489563], "std": [6.476051567005925e-06, 1.3620384606838343e-06, 1.6391277313232422e-07, 0.00012880854774266481, 2.682209014892578e-07, 6.897492858115584e-05, 0.026547759771347046, 0.02294660545885563, 0.006562324706465006, 0.2742561101913452, 0.26675525307655334, 0.24253758788108826], "count": [125]}, "action": {"min": [-0.1164146363735199, -0.030882351100444794, 0.14477795362472534, -0.11785133183002472, 0.5201340913772583, -0.5500117540359497, 0.6426981687545776, 0.14537769556045532, -0.08718355745077133, 0.10185249894857407, -0.4602842628955841, -0.6340934038162231, -0.6436346173286438, -0.3142983019351959], "max": [-0.11641113460063934, -0.03088022582232952, 0.14477980136871338, -0.11778192967176437, 0.5201966166496277, -0.5498009920120239, 0.6428379416465759, 0.1650870144367218, -0.07939179241657257, 0.11682741343975067, 0.35532721877098083, 0.778489887714386, 0.7562453150749207, 0.16360460221767426], "mean": [-0.11641277372837067, -0.03088189847767353, 0.14477890729904175, -0.11783159524202347, 0.5201812386512756, -0.549831211566925, 0.6428161859512329, 0.15451182425022125, -0.08298338949680328, 0.11127577722072601, -0.137709841132164, 0.04238727316260338, 0.15067018568515778, -0.08868090063333511], "std": [9.966337302103057e-07, 3.8180405681487173e-07, 5.226481221143331e-07, 2.306414353370201e-05, 1.9941098798881285e-05, 5.371111910790205e-05, 3.973171260440722e-05, 0.007280402351170778, 0.0024379489477723837, 0.004663120489567518, 0.339400976896286, 0.6257381439208984, 0.6371960043907166, 0.18950863182544708], "count": [125]}, "timestamp": {"min": [0.0], "max": [4.133333333333334], "mean": [2.0666666666666664], "std": [1.2027745701779144], "count": [125]}, "frame_index": {"min": [0], "max": [124], "mean": [62.0], "std": [36.08323710533743], "count": [125]}, "episode_index": {"min": [381], "max": [381], "mean": [381.0], "std": [0.0], "count": [125]}, "index": {"min": [229155], "max": [229279], "mean": [229217.0], "std": [36.08323710533743], "count": [125]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [125]}}} +{"episode_index": 382, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6605983741830065]], [[0.6030226661220044]], [[0.5329770152505446]]], "std": [[[0.24713972546027005]], [[0.23992543475288833]], [[0.2869972768938202]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6605983741830065]], [[0.6030226661220044]], [[0.5329770152505446]]], "std": [[[0.24713972546027005]], [[0.23992543475288833]], [[0.2869972768938202]]], "count": [100]}, "observation.state": {"min": [0.5121484994888306, 0.3031249940395355, 0.1313699185848236, -0.0790531113743782, -0.3436408042907715, 0.14903996884822845, -0.3064071536064148, -0.21844522655010223, 0.14654557406902313, 4.010739326477051, -0.8086147904396057, 0.6536340117454529], "max": [0.5121561884880066, 0.30313271284103394, 0.1313699185848236, -0.07863373309373856, -0.3436408042907715, 0.14903996884822845, -0.2491430938243866, -0.06558916717767715, 0.16514475643634796, 4.5383195877075195, -0.1886950135231018, 1.2886631488800049], "mean": [0.5121493339538574, 0.303129106760025, 0.13136985898017883, -0.07884028553962708, -0.34364059567451477, 0.149040088057518, -0.278673380613327, -0.13123363256454468, 0.15666264295578003, 4.285635471343994, -0.5297530293464661, 0.9369534850120544], "std": [2.0186728306725854e-06, 3.839929377136286e-06, 5.960464477539063e-08, 0.00020889998995698988, 2.086162567138672e-07, 1.1920928955078125e-07, 0.021864375099539757, 0.04152185842394829, 0.006796679459512234, 0.21283076703548431, 0.24874809384346008, 0.26334771513938904], "count": [137]}, "action": {"min": [-0.11784997582435608, -0.030561525374650955, 0.15165677666664124, -0.038140106946229935, 0.40344589948654175, -0.6162611842155457, 0.6752756237983704, 0.1473633348941803, -0.09258954226970673, 0.10016647726297379, -0.5099166631698608, -0.6200021505355835, -0.6282609105110168, -0.24119319021701813], "max": [-0.11784771084785461, -0.030559701845049858, 0.15165789425373077, -0.038121920078992844, 0.4034798741340637, -0.6160982847213745, 0.6754064559936523, 0.16440045833587646, -0.07717800885438919, 0.119285948574543, 0.4237130880355835, 0.8029342889785767, 0.7169807553291321, 0.15223261713981628], "mean": [-0.11784917116165161, -0.03056066669523716, 0.1516573578119278, -0.03812982514500618, 0.40346336364746094, -0.6161788702011108, 0.6753425598144531, 0.15536148846149445, -0.08571664243936539, 0.11282713711261749, -0.10856667160987854, 0.08627189695835114, 0.11243848502635956, -0.062126271426677704], "std": [6.405203407666704e-07, 6.646606038884784e-07, 3.6054137808605446e-07, 6.717070391459856e-06, 1.5680177966714837e-05, 8.043918205657974e-05, 6.44263782305643e-05, 0.006010217126458883, 0.003345208941027522, 0.00670321099460125, 0.411094069480896, 0.6287113428115845, 0.6138318777084351, 0.1523234099149704], "count": [137]}, "timestamp": {"min": [0.0], "max": [4.533333333333333], "mean": [2.2666666666666666], "std": [1.3182479955523458], "count": [137]}, "frame_index": {"min": [0], "max": [136], "mean": [68.0], "std": [39.54743986657038], "count": [137]}, "episode_index": {"min": [382], "max": [382], "mean": [382.0], "std": [0.0], "count": [137]}, "index": {"min": [229280], "max": [229416], "mean": [229348.0], "std": [39.54743986657038], "count": [137]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [137]}}} +{"episode_index": 383, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6712610212418301]], [[0.6126221350762527]], [[0.5439083959694989]]], "std": [[[0.24600642293551178]], [[0.23964874896046415]], [[0.2868813788787234]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6712610212418301]], [[0.6126221350762527]], [[0.5439083959694989]]], "std": [[[0.24600642293551178]], [[0.23964874896046415]], [[0.2868813788787234]]], "count": [100]}, "observation.state": {"min": [0.5190834999084473, 0.283354789018631, 0.13026677072048187, -0.38037756085395813, -0.26603126525878906, 0.4760972857475281, -0.2941280007362366, -0.20909298956394196, 0.15011556446552277, 3.933993101119995, -0.6741644740104675, 0.82296222448349], "max": [0.5190989375114441, 0.2833702266216278, 0.13026677072048187, -0.3799581825733185, -0.26603126525878906, 0.4763423502445221, -0.24283361434936523, -0.07573684304952621, 0.16662640869617462, 4.256495952606201, 0.004235730040818453, 1.3704745769500732], "mean": [0.5190979242324829, 0.2833695113658905, 0.13026680052280426, -0.38029322028160095, -0.2660309374332428, 0.4761560559272766, -0.2710093855857849, -0.11507365107536316, 0.1588049679994583, 4.099205493927002, -0.4244687855243683, 1.0555338859558105], "std": [3.2939503853413044e-06, 3.956604814447928e-06, 2.9802322387695312e-08, 0.00016749797214288265, 3.2782554626464844e-07, 7.927060505608097e-05, 0.015025122091174126, 0.03559393808245659, 0.005632599350064993, 0.10098668932914734, 0.25388312339782715, 0.19368253648281097], "count": [146]}, "action": {"min": [-0.11746882647275925, -0.032778333872556686, 0.14993789792060852, 0.16868825256824493, -0.47660866379737854, 0.6547250747680664, -0.5618759989738464, 0.1513180285692215, -0.09376741200685501, 0.10282905399799347, -0.4727776348590851, -0.6106526851654053, -0.6084514856338501, -0.2832868695259094], "max": [-0.11746570467948914, -0.03277577459812164, 0.14993974566459656, 0.16876932978630066, -0.4765109717845917, 0.6549296975135803, -0.5617207288742065, 0.16432945430278778, -0.07901880145072937, 0.12399962544441223, 0.4428631365299225, 0.8435236811637878, 0.6951605081558228, 0.22205232083797455], "mean": [-0.11746659874916077, -0.03277606517076492, 0.14993852376937866, 0.16871121525764465, -0.4765359163284302, 0.6548845767974854, -0.5617625713348389, 0.15676631033420563, -0.0852508395910263, 0.11705717444419861, -0.10919966548681259, 0.05674323812127113, 0.11870137602090836, -0.02132439613342285], "std": [6.061034696358547e-07, 6.512471486530558e-07, 3.5852193036589597e-07, 2.3852582671679556e-05, 3.040100091311615e-05, 7.136204658308998e-05, 5.668242010870017e-05, 0.004323997534811497, 0.0034991831053048372, 0.006426107604056597, 0.3749244809150696, 0.6595093011856079, 0.5881616473197937, 0.22103393077850342], "count": [146]}, "timestamp": {"min": [0.0], "max": [4.833333333333333], "mean": [2.4166666666666665], "std": [1.4048527008591012], "count": [146]}, "frame_index": {"min": [0], "max": [145], "mean": [72.5], "std": [42.14558102577303], "count": [146]}, "episode_index": {"min": [383], "max": [383], "mean": [383.0], "std": [0.0], "count": [146]}, "index": {"min": [229417], "max": [229562], "mean": [229489.5], "std": [42.14558102577303], "count": [146]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [146]}}} +{"episode_index": 384, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6614686410675381]], [[0.6048653159041394]], [[0.5363949863834423]]], "std": [[[0.2524291254345827]], [[0.2415963082442684]], [[0.286636087898791]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6614686410675381]], [[0.6048653159041394]], [[0.5363949863834423]]], "std": [[[0.2524291254345827]], [[0.2415963082442684]], [[0.286636087898791]]], "count": [100]}, "observation.state": {"min": [0.5400970578193665, 0.28563299775123596, 0.1332223266363144, -0.35060158371925354, -0.37629690766334534, 0.2751535475254059, -0.2867450714111328, -0.1956399828195572, 0.14583911001682281, 4.2508344650268555, -0.683455765247345, 0.7929681539535522], "max": [0.5401047468185425, 0.2856407165527344, 0.1332223266363144, -0.3501822054386139, -0.37629690766334534, 0.2754802703857422, -0.25375357270240784, -0.07234656065702438, 0.1667599231004715, 4.398665904998779, -0.3201393187046051, 1.1719812154769897], "mean": [0.5401043891906738, 0.2856343984603882, 0.13322243094444275, -0.3503519892692566, -0.3762969672679901, 0.27536261081695557, -0.26925721764564514, -0.10058137029409409, 0.15818090736865997, 4.345397472381592, -0.5395930409431458, 0.9279212355613708], "std": [2.202101995862904e-06, 2.940427748399088e-06, 1.043081283569336e-07, 0.0001854311558417976, 5.960464477539063e-08, 0.0001323248870903626, 0.010518122464418411, 0.03215550258755684, 0.007685044314712286, 0.042452987283468246, 0.12443896383047104, 0.13018810749053955], "count": [159]}, "action": {"min": [-0.11325673758983612, -0.032902635633945465, 0.15063975751399994, 0.07708629965782166, -0.44667255878448486, 0.681672215461731, -0.5743391513824463, 0.1505497694015503, -0.08830010890960693, 0.10072959959506989, -0.46443694829940796, -0.636176347732544, -0.6444975137710571, -0.09761958569288254], "max": [-0.11325439810752869, -0.03290088474750519, 0.1506410539150238, 0.07718866318464279, -0.4465216398239136, 0.6818928122520447, -0.574179470539093, 0.16301019489765167, -0.07821749895811081, 0.12473682314157486, 0.3995842933654785, 0.7679575085639954, 0.6947601437568665, 0.1578787863254547], "mean": [-0.11325505375862122, -0.03290204703807831, 0.15064024925231934, 0.07715077698230743, -0.44661659002304077, 0.6817578673362732, -0.5742709040641785, 0.15597271919250488, -0.08301828801631927, 0.1173047125339508, -0.12949267029762268, -0.048299964517354965, 0.16492486000061035, 0.03874042257666588], "std": [5.949510182290396e-07, 5.170614372218552e-07, 3.700201887113508e-07, 3.827162436209619e-05, 4.6893477701814845e-05, 6.955865683266893e-05, 6.491177919087932e-05, 0.00397573783993721, 0.002852789591997862, 0.0076206522062420845, 0.38900917768478394, 0.619480550289154, 0.6370866894721985, 0.10598966479301453], "count": [159]}, "timestamp": {"min": [0.0], "max": [5.266666666666667], "mean": [2.6333333333333333], "std": [1.5299479536052005], "count": [159]}, "frame_index": {"min": [0], "max": [158], "mean": [79.0], "std": [45.89843860815601], "count": [159]}, "episode_index": {"min": [384], "max": [384], "mean": [384.0], "std": [0.0], "count": [159]}, "index": {"min": [229563], "max": [229721], "mean": [229642.0], "std": [45.89843860815601], "count": [159]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [159]}}} +{"episode_index": 385, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.655296358932462]], [[0.5997169961873638]], [[0.5308740631808279]]], "std": [[[0.2501130758401918]], [[0.2414636462581261]], [[0.28693040432932265]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.655296358932462]], [[0.5997169961873638]], [[0.5308740631808279]]], "std": [[[0.2501130758401918]], [[0.2414636462581261]], [[0.28693040432932265]]], "count": [100]}, "observation.state": {"min": [0.5213925838470459, 0.28771814703941345, 0.1358071267604828, -0.4837546944618225, -0.1994892954826355, 0.5174528360366821, -0.3169332444667816, -0.19272080063819885, 0.15072223544120789, 4.386923313140869, -0.6589978337287903, 0.7458429336547852], "max": [0.5214080214500427, 0.2877335846424103, 0.1358071267604828, -0.4837546944618225, -0.19921602308750153, 0.5176681280136108, -0.24861794710159302, -0.04538650065660477, 0.1701354682445526, 4.523850917816162, -0.24403278529644012, 1.3101897239685059], "mean": [0.5213987827301025, 0.2877216935157776, 0.13580705225467682, -0.48375460505485535, -0.1994580775499344, 0.5175080895423889, -0.2874293923377991, -0.09621330350637436, 0.15975873172283173, 4.459959506988525, -0.4889388084411621, 0.9951969981193542], "std": [7.4220934038748965e-06, 6.2483509282174055e-06, 7.450580596923828e-08, 8.940696716308594e-08, 8.648137736599892e-05, 3.949251549784094e-05, 0.024289477616548538, 0.03893810883164406, 0.005899021867662668, 0.03787798434495926, 0.1560029685497284, 0.18380680680274963], "count": [161]}, "action": {"min": [-0.11456597596406937, -0.03231785446405411, 0.15502583980560303, 0.20732927322387695, -0.46697330474853516, 0.6823449730873108, -0.5228422284126282, 0.1447439193725586, -0.09219864010810852, 0.10492021590471268, -0.46904513239860535, -0.6380917429924011, -0.6362566947937012, -0.05008414387702942], "max": [-0.11456236243247986, -0.032314546406269073, 0.15502774715423584, 0.2074967324733734, -0.46684902906417847, 0.6823953986167908, -0.5228175520896912, 0.16207896173000336, -0.07549715787172318, 0.1261919140815735, 0.40780940651893616, 0.8178676962852478, 0.7177073359489441, 0.10707629472017288], "mean": [-0.11456461995840073, -0.032316774129867554, 0.1550268977880478, 0.207352414727211, -0.46691784262657166, 0.6823774576187134, -0.5228328108787537, 0.1530582457780838, -0.08358750492334366, 0.11790789663791656, -0.0937986746430397, 0.05344013124704361, 0.08656178414821625, 0.009839545004069805], "std": [1.1502019106046646e-06, 1.32368256799964e-06, 5.370328040044114e-07, 3.780610131798312e-05, 2.6637395421857946e-05, 9.648422746977303e-06, 5.002319085178897e-06, 0.0061528864316642284, 0.004053712356835604, 0.005837787874042988, 0.3849106729030609, 0.6579814553260803, 0.6302921175956726, 0.04891073331236839], "count": [161]}, "timestamp": {"min": [0.0], "max": [5.333333333333333], "mean": [2.666666666666666], "std": [1.5491933384829668], "count": [161]}, "frame_index": {"min": [0], "max": [160], "mean": [80.0], "std": [46.475800154489], "count": [161]}, "episode_index": {"min": [385], "max": [385], "mean": [385.0], "std": [0.0], "count": [161]}, "index": {"min": [229722], "max": [229882], "mean": [229802.0], "std": [46.475800154489], "count": [161]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [161]}}} +{"episode_index": 386, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6693848720043573]], [[0.6124813180827886]], [[0.5434421623093681]]], "std": [[[0.24758387050091593]], [[0.2407119320576084]], [[0.2881334521517207]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6693848720043573]], [[0.6124813180827886]], [[0.5434421623093681]]], "std": [[[0.24758387050091593]], [[0.2407119320576084]], [[0.2881334521517207]]], "count": [100]}, "observation.state": {"min": [0.5250300168991089, 0.30865445733070374, 0.13424378633499146, -0.5571461915969849, -0.16519352793693542, 0.4494941234588623, -0.29835233092308044, -0.202389657497406, 0.15219351649284363, 4.264464378356934, -0.8333460092544556, 0.8722515106201172], "max": [0.5250377058982849, 0.30866217613220215, 0.13424378633499146, -0.5571461915969849, -0.16519352793693542, 0.44965746998786926, -0.2644340991973877, -0.06582857668399811, 0.16873158514499664, 4.5383195877075195, -0.23515142500400543, 1.3954697847366333], "mean": [0.525030255317688, 0.3086603879928589, 0.134243905544281, -0.5571470260620117, -0.16519354283809662, 0.44953489303588867, -0.2798415422439575, -0.11012651026248932, 0.16038623452186584, 4.4056549072265625, -0.5631754994392395, 1.1319280862808228], "std": [2.679443014130811e-06, 3.378059091119212e-06, 1.1920928955078125e-07, 8.344650268554688e-07, 1.4901161193847656e-08, 4.2302333895349875e-05, 0.011548697017133236, 0.039890680462121964, 0.00610836036503315, 0.11515076458454132, 0.23365017771720886, 0.21991558372974396], "count": [109]}, "action": {"min": [-0.11528608202934265, -0.02802148275077343, 0.15451227128505707, 0.20944131910800934, -0.4228738844394684, 0.7227449417114258, -0.5049254298210144, 0.1471957117319107, -0.09308163821697235, 0.10429216176271439, -0.5275834798812866, -0.6017270684242249, -0.6029271483421326, -0.08480492979288101], "max": [-0.1152847409248352, -0.02801983803510666, 0.1545131802558899, 0.20948749780654907, -0.4228135645389557, 0.7227811813354492, -0.5049082636833191, 0.1597946733236313, -0.08146670460700989, 0.12452708929777145, 0.5049306154251099, 0.8328405618667603, 0.6439108848571777, 0.004610027186572552], "mean": [-0.11528581380844116, -0.028020458295941353, 0.15451298654079437, 0.20945335924625397, -0.4228295385837555, 0.7227717638015747, -0.5049207210540771, 0.153792142868042, -0.08537271618843079, 0.11722126603126526, -0.02380293235182762, 0.1957065761089325, -0.017860885709524155, -0.04162454605102539], "std": [3.890920936555631e-07, 5.96436166233616e-07, 2.317681264685234e-07, 1.0977794772770721e-05, 1.4950454897189047e-05, 8.879981578502338e-06, 4.338276994531043e-06, 0.004675268195569515, 0.0031787895131856203, 0.006407283246517181, 0.43754708766937256, 0.6621171832084656, 0.5725184082984924, 0.03816734254360199], "count": [109]}, "timestamp": {"min": [0.0], "max": [3.6], "mean": [1.7999999999999998], "std": [1.0488088481701514], "count": [109]}, "frame_index": {"min": [0], "max": [108], "mean": [54.0], "std": [31.464265445104548], "count": [109]}, "episode_index": {"min": [386], "max": [386], "mean": [386.0], "std": [0.0], "count": [109]}, "index": {"min": [229883], "max": [229991], "mean": [229937.0], "std": [31.464265445104548], "count": [109]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [109]}}} +{"episode_index": 387, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6695854956427015]], [[0.6110541530501089]], [[0.541936100217865]]], "std": [[[0.24707327978932855]], [[0.23935902959904112]], [[0.2859450837703109]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6695854956427015]], [[0.6110541530501089]], [[0.541936100217865]]], "std": [[[0.24707327978932855]], [[0.23935902959904112]], [[0.2859450837703109]]], "count": [100]}, "observation.state": {"min": [0.5282426476478577, 0.29781946539878845, 0.13235251605510712, -0.4380422830581665, -0.2014022022485733, 0.4952739179134369, -0.2919424772262573, -0.20317737758159637, 0.14345264434814453, 3.9547524452209473, -0.8952423334121704, 1.0408161878585815], "max": [0.5282503962516785, 0.29783493280410767, 0.13235251605510712, -0.43762290477752686, -0.2014022022485733, 0.4952739179134369, -0.23436950147151947, -0.04582669958472252, 0.16943936049938202, 4.311854362487793, -0.08143535256385803, 1.4076064825057983], "mean": [0.5282452702522278, 0.2978226840496063, 0.13235266506671906, -0.43784382939338684, -0.20140253007411957, 0.49527397751808167, -0.2677990794181824, -0.11325602978467941, 0.15871798992156982, 4.160325050354004, -0.5506017208099365, 1.2438167333602905], "std": [3.4294926081201993e-06, 6.140694949863246e-06, 1.4901161193847656e-07, 0.00019804027397185564, 3.2782554626464844e-07, 5.960464477539063e-08, 0.01622879132628441, 0.03760409727692604, 0.008874635212123394, 0.12618429958820343, 0.32469701766967773, 0.14174984395503998], "count": [143]}, "action": {"min": [-0.11539522558450699, -0.02977682277560234, 0.15198516845703125, 0.20663976669311523, -0.4584362804889679, 0.6720982789993286, -0.5435243248939514, 0.1510322093963623, -0.09118334949016571, 0.09829328209161758, -0.5615779757499695, -0.5843256711959839, -0.5838332176208496, -0.2527955174446106], "max": [-0.11539305746555328, -0.029773762449622154, 0.15198685228824615, 0.20665232837200165, -0.4584161341190338, 0.6722393035888672, -0.5433647036552429, 0.16248488426208496, -0.07714653760194778, 0.1253911256790161, 0.5615809559822083, 0.8405536413192749, 0.6222871541976929, 0.06939924508333206], "mean": [-0.11539430171251297, -0.029776159673929214, 0.1519859880208969, 0.2066439986228943, -0.4584274888038635, 0.672173023223877, -0.5434396266937256, 0.15662477910518646, -0.0843651071190834, 0.11672153323888779, 0.06822790950536728, 0.3003808856010437, -0.13048101961612701, -0.09432519227266312], "std": [6.546609938595793e-07, 1.0238680943075451e-06, 4.626094778359402e-07, 3.428194077059743e-06, 6.568522167071933e-06, 6.515283894259483e-05, 7.439987530233338e-05, 0.003619851777330041, 0.0036471914499998093, 0.008689179085195065, 0.45245781540870667, 0.6274116635322571, 0.5161902904510498, 0.11990772187709808], "count": [143]}, "timestamp": {"min": [0.0], "max": [4.733333333333333], "mean": [2.3666666666666667], "std": [1.3759844960366863], "count": [143]}, "frame_index": {"min": [0], "max": [142], "mean": [71.0], "std": [41.27953488110059], "count": [143]}, "episode_index": {"min": [387], "max": [387], "mean": [387.0], "std": [0.0], "count": [143]}, "index": {"min": [229992], "max": [230134], "mean": [230063.0], "std": [41.27953488110059], "count": [143]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [143]}}} +{"episode_index": 388, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6565670206971678]], [[0.6006237009803921]], [[0.5318897766884532]]], "std": [[[0.25061446156963707]], [[0.24140760499133634]], [[0.28618054561998624]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6565670206971678]], [[0.6006237009803921]], [[0.5318897766884532]]], "std": [[[0.25061446156963707]], [[0.24140760499133634]], [[0.28618054561998624]]], "count": [100]}, "observation.state": {"min": [0.5308529138565063, 0.29761096835136414, 0.13204658031463623, -0.4319612681865692, -0.22449377179145813, 0.5133089423179626, -0.3123922646045685, -0.13049101829528809, 0.14905908703804016, 3.819711923599243, -0.811484158039093, 0.9500508308410645], "max": [0.5308683514595032, 0.29761868715286255, 0.13204917311668396, -0.43154188990592957, -0.22422049939632416, 0.513472318649292, -0.27013346552848816, -0.05703238025307655, 0.1674703061580658, 4.441023349761963, 0.3123510479927063, 1.4077309370040894], "mean": [0.5308676362037659, 0.29761216044425964, 0.13204699754714966, -0.4316660761833191, -0.22435858845710754, 0.5134394764900208, -0.29207590222358704, -0.09031958878040314, 0.1597362607717514, 4.146947860717773, -0.38459834456443787, 1.160053014755249], "std": [2.5619488042138983e-06, 2.5950387225748273e-06, 8.898070973373251e-07, 0.00019010098185390234, 0.0001361835456918925, 5.1539660489652306e-05, 0.01152628194540739, 0.013721351511776447, 0.00675946706905961, 0.25966671109199524, 0.453553706407547, 0.1963236778974533], "count": [155]}, "action": {"min": [-0.11521334201097488, -0.029847541823983192, 0.1514653116464615, 0.20333169400691986, -0.4718914031982422, 0.6642952561378479, -0.5428730249404907, 0.14742369949817657, -0.08741415292024612, 0.10863042622804642, -0.535793125629425, -0.6086872220039368, -0.6063368320465088, -0.35846927762031555], "max": [-0.11520983278751373, -0.02984309382736683, 0.15146811306476593, 0.20346155762672424, -0.4717504382133484, 0.6644816398620605, -0.5426899790763855, 0.16193599998950958, -0.07791759818792343, 0.12310028076171875, 0.492239773273468, 0.845608651638031, 0.6267566680908203, 0.08965996652841568], "mean": [-0.11521089822053909, -0.029845573008060455, 0.15146632492542267, 0.20339195430278778, -0.4718451201915741, 0.6643463969230652, -0.5428068041801453, 0.15350672602653503, -0.08302710205316544, 0.11813882738351822, -0.15676967799663544, 0.07448450475931168, 0.11625170707702637, -0.12283668667078018], "std": [7.50089668599685e-07, 1.2846369372709887e-06, 7.362586416093109e-07, 5.431762838270515e-05, 4.662805804400705e-05, 6.69043292873539e-05, 7.023335638223216e-05, 0.005460590124130249, 0.0027914841193705797, 0.004603520035743713, 0.38908571004867554, 0.6880603432655334, 0.5292416214942932, 0.1906847357749939], "count": [155]}, "timestamp": {"min": [0.0], "max": [5.133333333333334], "mean": [2.5666666666666664], "std": [1.491457154746473], "count": [155]}, "frame_index": {"min": [0], "max": [154], "mean": [77.0], "std": [44.74371464239419], "count": [155]}, "episode_index": {"min": [388], "max": [388], "mean": [388.0], "std": [0.0], "count": [155]}, "index": {"min": [230135], "max": [230289], "mean": [230212.0], "std": [44.74371464239419], "count": [155]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [155]}}} +{"episode_index": 389, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4815542979612803]], [[0.4535704474201605]], [[0.42382505933719467]]], "std": [[[0.2228205008528217]], [[0.217729354012359]], [[0.2218935127696077]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49208451564907807]], [[0.4756605381086491]], [[0.4487483903678906]]], "std": [[[0.2161126119525908]], [[0.197631042687307]], [[0.21131055410178218]]], "count": [123]}, "observation.state": {"min": [0.3825610280036926, -0.10553114116191864, 0.1313517689704895, -1.205297827720642, -0.5192186832427979, 0.3088866174221039, -0.5511173605918884, -0.28493794798851013, 0.1730041652917862, 1.0111249685287476, -0.5063748955726624, -0.3588888347148895], "max": [0.45411986112594604, 0.007552830036729574, 0.14043357968330383, -0.4432845413684845, 0.5895864963531494, 1.354577660560608, -0.4947260022163391, -0.221387580037117, 0.19197146594524384, 2.0444769859313965, -0.0847146287560463, 0.37179967761039734], "mean": [0.42065200209617615, -0.05992644652724266, 0.1375679224729538, -0.7505794167518616, 0.13637100160121918, 0.896773636341095, -0.5352115035057068, -0.2605951130390167, 0.1830357164144516, 1.7569624185562134, -0.40917491912841797, -0.09521092474460602], "std": [0.01664421521127224, 0.03593007102608681, 0.0028571959119290113, 0.22671957314014435, 0.3591035306453705, 0.3369138836860657, 0.010674748569726944, 0.015983618795871735, 0.004150899592787027, 0.25242355465888977, 0.08639750629663467, 0.21329569816589355], "count": [614]}, "action": {"min": [-0.1309557855129242, -0.10204234719276428, 0.1320289820432663, -0.3808201253414154, -0.626620888710022, -0.6251694560050964, -0.3552056550979614, 0.11206208914518356, -0.11924594640731812, 0.09937980026006699, 0.24455781280994415, -0.1646541953086853, -0.2683568596839905, 0.8581933975219727], "max": [-0.11941365897655487, -0.07666696608066559, 0.14282692968845367, 0.42585185170173645, 0.8464442491531372, 0.7991447448730469, 0.4406583905220032, 0.12533137202262878, -0.10590391606092453, 0.11197172105312347, 0.44885745644569397, -0.010731094516813755, 0.26008814573287964, 0.9678582549095154], "mean": [-0.12501497566699982, -0.0912969708442688, 0.13717606663703918, 0.028909996151924133, 0.20294800400733948, 0.07001511752605438, 0.0884714275598526, 0.11625174432992935, -0.11257882416248322, 0.10586434602737427, 0.3620776832103729, -0.0929572731256485, 0.12129393965005875, 0.9069375991821289], "std": [0.00282468949444592, 0.007984989322721958, 0.0032328420784324408, 0.3346560597419739, 0.6053752899169922, 0.5930847525596619, 0.3391511142253876, 0.0028180619701743126, 0.003260283963754773, 0.0024719927459955215, 0.07228628545999527, 0.03213360160589218, 0.12431522458791733, 0.03604364022612572], "count": [614]}, "timestamp": {"min": [0.0], "max": [20.433333333333334], "mean": [10.216666666666665], "std": [5.908209918786268], "count": [614]}, "frame_index": {"min": [0], "max": [613], "mean": [306.5], "std": [177.24629756358806], "count": [614]}, "episode_index": {"min": [389], "max": [389], "mean": [389.0], "std": [0.0], "count": [614]}, "index": {"min": [230290], "max": [230903], "mean": [230596.5], "std": [177.24629756358806], "count": [614]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [614]}}} +{"episode_index": 390, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4817392864923747]], [[0.45399105392156863]], [[0.4234473039215686]]], "std": [[[0.22038656526377137]], [[0.21578698184672224]], [[0.22007469335633348]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4931608142701525]], [[0.4763676770152505]], [[0.4490983387799565]]], "std": [[[0.2130355817457518]], [[0.19556676334510142]], [[0.2093284164072898]]], "count": [100]}, "observation.state": {"min": [0.3873105049133301, -0.12358689308166504, 0.12631049752235413, -1.228153944015503, -0.13608995079994202, 0.2855297327041626, -0.5786412358283997, -0.2869921922683716, 0.17004603147506714, 1.046981930732727, -0.4769980311393738, -0.33126044273376465], "max": [0.4643988311290741, -0.0008572233491577208, 0.13795895874500275, -0.7368504405021667, 0.5230445265769958, 1.2424677610397339, -0.5120094418525696, -0.20628191530704498, 0.19159166514873505, 1.867079257965088, -0.31166785955429077, 0.1500891000032425], "mean": [0.42907971143722534, -0.06373190879821777, 0.1326632797718048, -0.9303452968597412, 0.20856444537639618, 0.7476724982261658, -0.5416614413261414, -0.256656676530838, 0.17971614003181458, 1.7150806188583374, -0.40903395414352417, -0.1649174839258194], "std": [0.02255595661699772, 0.03851896896958351, 0.0036870744079351425, 0.1343243271112442, 0.2014082968235016, 0.28175845742225647, 0.02106601931154728, 0.02291586622595787, 0.004659669008105993, 0.17822949588298798, 0.04271743819117546, 0.11138680577278137], "count": [434]}, "action": {"min": [-0.13231179118156433, -0.09814398735761642, 0.12490524351596832, -0.32704511284828186, -0.6487196087837219, -0.6504285931587219, -0.3393874168395996, 0.11117570102214813, -0.11930990219116211, 0.09873631596565247, 0.314904123544693, -0.12506388127803802, -0.1998828798532486, 0.8625648617744446], "max": [-0.11916811019182205, -0.07589229941368103, 0.138172447681427, 0.4041719138622284, 0.811413049697876, 0.8070838451385498, 0.3446602523326874, 0.12502801418304443, -0.10152911394834518, 0.11331749707460403, 0.4736134111881256, -0.017904721200466156, 0.17024517059326172, 0.944361686706543], "mean": [-0.12525351345539093, -0.08872406929731369, 0.13290433585643768, 0.08844228088855743, 0.019447796046733856, 0.18382853269577026, -0.029034113511443138, 0.11697392910718918, -0.10983861982822418, 0.10378239303827286, 0.40612170100212097, -0.09253241121768951, 0.10635620355606079, 0.8969058990478516], "std": [0.003962798975408077, 0.007272634655237198, 0.0036894786171615124, 0.31540390849113464, 0.5966234803199768, 0.6502082347869873, 0.2809874415397644, 0.004044678993523121, 0.004355664364993572, 0.00355891278013587, 0.05320056900382042, 0.025434957817196846, 0.08194909244775772, 0.02363174967467785], "count": [434]}, "timestamp": {"min": [0.0], "max": [14.433333333333334], "mean": [7.216666666666668], "std": [4.176155861288917], "count": [434]}, "frame_index": {"min": [0], "max": [433], "mean": [216.5], "std": [125.28467583866751], "count": [434]}, "episode_index": {"min": [390], "max": [390], "mean": [390.0], "std": [0.0], "count": [434]}, "index": {"min": [230904], "max": [231337], "mean": [231120.5], "std": [125.28467583866751], "count": [434]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [434]}}} +{"episode_index": 391, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47778041666666665]], [[0.45087795479302833]], [[0.4202139460784314]]], "std": [[[0.21877973191812528]], [[0.21450390402341596]], [[0.21930747789824157]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4898457679738562]], [[0.47406575980392157]], [[0.4467522766884532]]], "std": [[[0.21169271554388597]], [[0.1946535150060043]], [[0.20882770283694277]]], "count": [100]}, "observation.state": {"min": [0.39691758155822754, -0.12102294713258743, 0.1257919818162918, -1.3703237771987915, -0.04713958874344826, -0.06583704799413681, -0.572246789932251, -0.3024917244911194, 0.16079051792621613, 1.2835121154785156, -0.45964518189430237, -0.32043221592903137], "max": [0.49008461833000183, 0.004811259917914867, 0.13589267432689667, -0.7483834028244019, 0.3428209722042084, 1.0695134401321411, -0.5091366171836853, -0.21564187109470367, 0.191250741481781, 2.2331979274749756, -0.20372502505779266, 0.18553009629249573], "mean": [0.45425406098365784, -0.06466332077980042, 0.1316227912902832, -0.9408093094825745, 0.14681434631347656, 0.5625835061073303, -0.5411392450332642, -0.2625857889652252, 0.17604941129684448, 1.7859553098678589, -0.35995927453041077, -0.09599793702363968], "std": [0.020311305299401283, 0.03687305375933647, 0.003105164971202612, 0.18748067319393158, 0.10674670338630676, 0.3639320433139801, 0.019135942682623863, 0.026586288586258888, 0.00597674073651433, 0.2322104275226593, 0.056494541466236115, 0.1537417471408844], "count": [440]}, "action": {"min": [-0.13014499843120575, -0.09607777744531631, 0.12369778007268906, -0.3165445029735565, -0.647507905960083, -0.6445991396903992, -0.35814300179481506, 0.11375714093446732, -0.11804326623678207, 0.09119296818971634, 0.2513842284679413, -0.16978926956653595, -0.10051847994327545, 0.8592903017997742], "max": [-0.11612193286418915, -0.0779668539762497, 0.14170348644256592, 0.3278408944606781, 0.7540207505226135, 0.8949723839759827, 0.34299036860466003, 0.12947046756744385, -0.09960619360208511, 0.11322522163391113, 0.47104600071907043, -0.04440950229763985, 0.3247561454772949, 0.9564008712768555], "mean": [-0.12209353595972061, -0.08775569498538971, 0.1306561976671219, 0.06290087103843689, -0.012223162688314915, 0.2621963918209076, -0.057101570069789886, 0.11851322650909424, -0.10814840346574783, 0.10096481442451477, 0.3629419803619385, -0.12738725543022156, 0.12826567888259888, 0.9046337604522705], "std": [0.003090432146564126, 0.005389688070863485, 0.0053209178149700165, 0.2784025967121124, 0.5496825575828552, 0.6758019924163818, 0.295836478471756, 0.0035834761802107096, 0.0048097046092152596, 0.004962226375937462, 0.06346261501312256, 0.03394048288464546, 0.10554516315460205, 0.030204826965928078], "count": [440]}, "timestamp": {"min": [0.0], "max": [14.633333333333333], "mean": [7.3166666666666655], "std": [4.233891039378946], "count": [440]}, "frame_index": {"min": [0], "max": [439], "mean": [219.5], "std": [127.01673118136839], "count": [440]}, "episode_index": {"min": [391], "max": [391], "mean": [391.0], "std": [0.0], "count": [440]}, "index": {"min": [231338], "max": [231777], "mean": [231557.5], "std": [127.01673118136839], "count": [440]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [440]}}} +{"episode_index": 392, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.483490931372549]], [[0.45575404684095866]], [[0.4252093572984749]]], "std": [[[0.2195161555153649]], [[0.21581604166015209]], [[0.22027543202595198]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49503254357298476]], [[0.4784274210239651]], [[0.4510076988017429]]], "std": [[[0.21206436313183016]], [[0.1952772812107726]], [[0.20941469844613497]]], "count": [100]}, "observation.state": {"min": [0.37119317054748535, -0.13256843388080597, 0.1277441829442978, -1.5347206592559814, 0.15781515836715698, 0.11786036938428879, -0.5917235016822815, -0.2852623164653778, 0.16432678699493408, 1.449167251586914, -0.47057610750198364, -0.3174819052219391], "max": [0.47225284576416016, -0.004718590062111616, 0.1366795152425766, -0.7943055033683777, 0.4447517991065979, 1.1921392679214478, -0.4796280562877655, -0.22518716752529144, 0.18829649686813354, 2.2778618335723877, 0.0019129100255668163, 0.09607093036174774], "mean": [0.4265344440937042, -0.06856219470500946, 0.13243839144706726, -1.0750749111175537, 0.3467082679271698, 0.6965674161911011, -0.5275923013687134, -0.25431278347969055, 0.1782374083995819, 1.914177417755127, -0.2738165557384491, -0.20313303172588348], "std": [0.02617005631327629, 0.03738256171345711, 0.0028387673664838076, 0.20926113426685333, 0.07835995405912399, 0.3497354984283447, 0.03262510523200035, 0.014528665691614151, 0.0044814711436629295, 0.25183597207069397, 0.12440754473209381, 0.08733074367046356], "count": [410]}, "action": {"min": [-0.13448254764080048, -0.09873927384614944, 0.12569192051887512, -0.40667641162872314, -0.6270665526390076, -0.6274665594100952, -0.2686788737773895, 0.1110231950879097, -0.1176949292421341, 0.09545781463384628, 0.25604602694511414, -0.2495540976524353, -0.08404088020324707, 0.8351238965988159], "max": [-0.11790046095848083, -0.07878626883029938, 0.13859161734580994, 0.43227532505989075, 0.7522069811820984, 0.8768249750137329, 0.25967273116111755, 0.12620361149311066, -0.09790988266468048, 0.11065173894166946, 0.507274866104126, -0.11351288855075836, 0.3408130407333374, 0.9456425309181213], "mean": [-0.12484098225831985, -0.08869069814682007, 0.13218294084072113, 0.24072937667369843, -0.26064178347587585, 0.49565398693084717, -0.12004696577787399, 0.1182854175567627, -0.10872185975313187, 0.10406839102506638, 0.37897396087646484, -0.17426039278507233, 0.17361609637737274, 0.8796946406364441], "std": [0.004490056075155735, 0.005657787434756756, 0.003918689209967852, 0.30083537101745605, 0.48988407850265503, 0.5013626217842102, 0.17938221991062164, 0.004640709608793259, 0.004555349703878164, 0.0032291002571582794, 0.08693119883537292, 0.022576943039894104, 0.11588594317436218, 0.02259625680744648], "count": [410]}, "timestamp": {"min": [0.0], "max": [13.633333333333333], "mean": [6.8166666666666655], "std": [3.9452151046834216], "count": [410]}, "frame_index": {"min": [0], "max": [409], "mean": [204.5], "std": [118.35645314050265], "count": [410]}, "episode_index": {"min": [392], "max": [392], "mean": [392.0], "std": [0.0], "count": [410]}, "index": {"min": [231778], "max": [232187], "mean": [231982.5], "std": [118.35645314050265], "count": [410]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [410]}}} +{"episode_index": 393, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.478431118680994]], [[0.45238551475204014]], [[0.42217040775820686]]], "std": [[[0.22397769237613874]], [[0.2189224397944803]], [[0.22299828434752053]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4885770420220819]], [[0.4741821064584026]], [[0.4473736221889886]]], "std": [[[0.21784994664541069]], [[0.19947925868907126]], [[0.2128850073517301]]], "count": [118]}, "observation.state": {"min": [0.3870556354522705, -0.13429832458496094, 0.12633901834487915, -1.532833456993103, 0.04290385916829109, -0.054292429238557816, -0.6193013787269592, -0.3057970404624939, 0.16502809524536133, 1.7446203231811523, -0.6308507323265076, -0.2544827461242676], "max": [0.48194485902786255, -0.011244299821555614, 0.14204487204551697, -0.7601260542869568, 0.7054542303085327, 1.2160472869873047, -0.5370079278945923, -0.26138362288475037, 0.18854020535945892, 2.2766036987304688, -0.3123510479927063, 0.3179771602153778], "mean": [0.4279303252696991, -0.0744294673204422, 0.13205021619796753, -1.107153058052063, 0.3736804127693176, 0.5779770612716675, -0.5652803778648376, -0.28947901725769043, 0.17950625717639923, 2.1042299270629883, -0.5397655367851257, -0.052380841225385666], "std": [0.02325078472495079, 0.03645477071404457, 0.004698009695857763, 0.21362833678722382, 0.1816117763519287, 0.3871806561946869, 0.016206340864300728, 0.013848393224179745, 0.004060081206262112, 0.17815113067626953, 0.07932918518781662, 0.1454475075006485], "count": [580]}, "action": {"min": [-0.1331295371055603, -0.10062338411808014, 0.12372256815433502, -0.5604790449142456, -0.635375440120697, -0.6360265612602234, -0.3884493410587311, 0.11126861721277237, -0.11919526755809784, 0.08879438042640686, 0.11949288845062256, -0.16930341720581055, 0.0757598951458931, 0.8850884437561035], "max": [-0.11625763028860092, -0.07822701334953308, 0.1373225599527359, 0.5415201187133789, 0.6636508703231812, 0.8901463747024536, 0.34470224380493164, 0.12203215062618256, -0.09986118972301483, 0.10590150952339172, 0.31440839171409607, -0.07600821554660797, 0.3497155010700226, 0.9640411138534546], "mean": [-0.12468509376049042, -0.08923199027776718, 0.13099196553230286, 0.14803063869476318, -0.20339179039001465, 0.48843124508857727, -0.14146092534065247, 0.11483363807201385, -0.11124609410762787, 0.09929851442575455, 0.24880841374397278, -0.11256503313779831, 0.2712637186050415, 0.9177922606468201], "std": [0.004424065351486206, 0.00624938914552331, 0.002897183410823345, 0.3578413724899292, 0.4638604521751404, 0.5489498972892761, 0.183246910572052, 0.002087383298203349, 0.003766997717320919, 0.0029025974217802286, 0.03259078413248062, 0.02445344813168049, 0.08531934022903442, 0.02358335256576538], "count": [580]}, "timestamp": {"min": [0.0], "max": [19.3], "mean": [9.65], "std": [5.58104430689773], "count": [580]}, "frame_index": {"min": [0], "max": [579], "mean": [289.5], "std": [167.43132920693188], "count": [580]}, "episode_index": {"min": [393], "max": [393], "mean": [393.0], "std": [0.0], "count": [580]}, "index": {"min": [232188], "max": [232767], "mean": [232477.5], "std": [167.43132920693188], "count": [580]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [580]}}} +{"episode_index": 394, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4713583903447153]], [[0.44522610103231325]], [[0.4141701789750168]]], "std": [[[0.22055053017591061]], [[0.2156991974481985]], [[0.22017469770617176]]], "count": [107]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48355413027100763]], [[0.4687740440412925]], [[0.4409362566937471]]], "std": [[[0.21395111906891662]], [[0.1961215751547462]], [[0.21019079956846348]]], "count": [107]}, "observation.state": {"min": [0.4128418564796448, -0.12945617735385895, 0.12935158610343933, -1.4791529178619385, 0.04454350098967552, 0.08830463141202927, -0.6003343462944031, -0.3169718384742737, 0.16542604565620422, 1.614822268486023, -0.7330548167228699, -0.2711981534957886], "max": [0.49610835313796997, -0.004085329826921225, 0.13904525339603424, -0.8450504541397095, 0.5921825766563416, 0.9121313095092773, -0.507337212562561, -0.23712651431560516, 0.1901800036430359, 2.092495918273926, -0.3708314597606659, 0.2048489898443222], "mean": [0.46309056878089905, -0.07976991683244705, 0.13320547342300415, -0.9986256957054138, 0.2948068082332611, 0.5953477621078491, -0.5532622337341309, -0.2746914327144623, 0.17613428831100464, 1.7891432046890259, -0.557983934879303, -0.044324345886707306], "std": [0.02014751546084881, 0.03582895174622536, 0.002647742163389921, 0.1593821793794632, 0.15816397964954376, 0.23875531554222107, 0.030041715130209923, 0.027233432978391647, 0.005970703903585672, 0.12443149089813232, 0.11625679582357407, 0.16044111549854279], "count": [512]}, "action": {"min": [-0.12536396086215973, -0.09705863147974014, 0.12284489721059799, -0.3049086928367615, -0.6388729214668274, -0.6431027054786682, -0.297492653131485, 0.11151706427335739, -0.11737071722745895, 0.09021144360303879, 0.21867944300174713, -0.12713129818439484, 0.09713520109653473, 0.8767865896224976], "max": [-0.11272262036800385, -0.0782284364104271, 0.13831543922424316, 0.46288812160491943, 0.7005913257598877, 0.8254947662353516, 0.28856003284454346, 0.12689009308815002, -0.10039564967155457, 0.11199180036783218, 0.4406065344810486, 0.015530645847320557, 0.2786325514316559, 0.9674085378646851], "mean": [-0.11916834115982056, -0.08954112976789474, 0.1293632537126541, 0.27971023321151733, -0.34020084142684937, 0.5475785136222839, -0.1963537335395813, 0.11878033727407455, -0.10877636075019836, 0.09924193471670151, 0.3309970498085022, -0.049225110560655594, 0.15833689272403717, 0.9227399230003357], "std": [0.0035953561309725046, 0.00552181014791131, 0.004100842867046595, 0.22735245525836945, 0.4177384674549103, 0.4542049169540405, 0.187435582280159, 0.004734741523861885, 0.004675234202295542, 0.005351868458092213, 0.08231669664382935, 0.0405108667910099, 0.04608621820807457, 0.030933581292629242], "count": [512]}, "timestamp": {"min": [0.0], "max": [17.033333333333335], "mean": [8.516666666666666], "std": [4.926712900098807], "count": [512]}, "frame_index": {"min": [0], "max": [511], "mean": [255.5], "std": [147.80138700296422], "count": [512]}, "episode_index": {"min": [394], "max": [394], "mean": [394.0], "std": [0.0], "count": [512]}, "index": {"min": [232768], "max": [233279], "mean": [233023.5], "std": [147.80138700296422], "count": [512]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [512]}}} +{"episode_index": 395, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4793829252046164]], [[0.4533023023023023]], [[0.4217578939233351]]], "std": [[[0.21683452506126705]], [[0.21377795287082335]], [[0.2179989490302508]]], "count": [148]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4934053612435966]], [[0.4777622585821115]], [[0.44946813357475124]]], "std": [[[0.20834871708803857]], [[0.19280462465035714]], [[0.20661339658270558]]], "count": [148]}, "observation.state": {"min": [0.4154135286808014, -0.1090141013264656, 0.12073644995689392, -1.5764490365982056, -0.31166785955429077, -0.18632857501506805, -0.6171853542327881, -0.3047081530094147, 0.15466684103012085, 1.5013799667358398, -0.6379558444023132, -0.38888949155807495], "max": [0.5048813819885254, -0.004371069837361574, 0.14099356532096863, -0.4231543242931366, 0.3797128200531006, 1.3930721282958984, -0.502325177192688, -0.2223220318555832, 0.18634428083896637, 2.1317079067230225, -0.1373196840286255, 0.09516458958387375], "mean": [0.4601038992404938, -0.0598420649766922, 0.1313246190547943, -0.8301170468330383, 0.17049656808376312, 0.7846067547798157, -0.5629886388778687, -0.2510322332382202, 0.171955406665802, 1.662282943725586, -0.45418229699134827, -0.08793617784976959], "std": [0.024944141507148743, 0.026038868352770805, 0.0051500978879630566, 0.33390435576438904, 0.18895766139030457, 0.4834638237953186, 0.034683648496866226, 0.023037495091557503, 0.005601984448730946, 0.14878018200397491, 0.10864199697971344, 0.14299243688583374], "count": [789]}, "action": {"min": [-0.12807013094425201, -0.09434632211923599, 0.11998767405748367, -0.43385690450668335, -0.6504433751106262, -0.6501197814941406, -0.4206940829753876, 0.11019625514745712, -0.11512824892997742, 0.08256687223911285, 0.27169036865234375, -0.21946853399276733, 0.012463239021599293, 0.8228588700294495], "max": [-0.1121915653347969, -0.07640301436185837, 0.14123280346393585, 0.3921284079551697, 0.8275067210197449, 0.8974021673202515, 0.4077877998352051, 0.1270633339881897, -0.09585915505886078, 0.11024456471204758, 0.5552204251289368, -0.004483979195356369, 0.2830624580383301, 0.9535455703735352], "mean": [-0.12123493105173111, -0.08655700087547302, 0.1304198056459427, 0.03353094309568405, 0.087436243891716, 0.2138696312904358, 0.015737948939204216, 0.11832603812217712, -0.10342755168676376, 0.09827747941017151, 0.37704768776893616, -0.07974105328321457, 0.0855940580368042, 0.9102404117584229], "std": [0.004032002296298742, 0.0044152261689305305, 0.005593837704509497, 0.34833475947380066, 0.5934609770774841, 0.6056832671165466, 0.32381701469421387, 0.004760092590004206, 0.00430794944986701, 0.005840849597007036, 0.08677506446838379, 0.05183744058012962, 0.06184569001197815, 0.039619337767362595], "count": [789]}, "timestamp": {"min": [0.0], "max": [26.266666666666666], "mean": [13.133333333333335], "std": [7.5921499419295415], "count": [789]}, "frame_index": {"min": [0], "max": [788], "mean": [394.0], "std": [227.76449825788623], "count": [789]}, "episode_index": {"min": [395], "max": [395], "mean": [395.0], "std": [0.0], "count": [789]}, "index": {"min": [233280], "max": [234068], "mean": [233674.0], "std": [227.76449825788623], "count": [789]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [789]}}} +{"episode_index": 396, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4743513779956427]], [[0.44830183551198255]], [[0.41691055827886714]]], "std": [[[0.2194570363639254]], [[0.214501897484725]], [[0.21896445115090007]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48492278594771243]], [[0.4702167020697168]], [[0.442517589869281]]], "std": [[[0.2133585614030685]], [[0.19517845940462877]], [[0.20915404817470798]]], "count": [100]}, "observation.state": {"min": [0.38513270020484924, -0.13894741237163544, 0.12507124245166779, -1.5009605884552002, -0.03443240001797676, -0.1215614303946495, -0.5804637670516968, -0.3154350221157074, 0.16512531042099, 1.726586937904358, -0.47945746779441833, -0.2432946264743805], "max": [0.4718666970729828, -0.012371820397675037, 0.13854748010635376, -0.6852667331695557, 0.6956164240837097, 0.974156379699707, -0.5235317945480347, -0.253328800201416, 0.18805408477783203, 2.0555906295776367, -0.1478406935930252, 0.03922132030129433], "mean": [0.43762585520744324, -0.07910877466201782, 0.13346588611602783, -0.9563939571380615, 0.4219166338443756, 0.5396543741226196, -0.5547415614128113, -0.2760123014450073, 0.17707236111164093, 1.8872566223144531, -0.3570244610309601, -0.08665711432695389], "std": [0.024278981611132622, 0.03547234833240509, 0.004619026556611061, 0.23101378977298737, 0.20794525742530823, 0.30959922075271606, 0.015489918179810047, 0.016832241788506508, 0.005451425444334745, 0.07036880403757095, 0.06836290657520294, 0.09065220504999161], "count": [420]}, "action": {"min": [-0.13277146220207214, -0.10168906301259995, 0.12560626864433289, -0.31996703147888184, -0.6238722801208496, -0.6271371841430664, -0.3867659270763397, 0.11240625381469727, -0.12008331716060638, 0.09056980907917023, 0.2806130647659302, -0.23333753645420074, 0.07108257710933685, 0.8734973669052124], "max": [-0.11719547212123871, -0.07769224047660828, 0.13626810908317566, 0.4632282257080078, 0.7296046018600464, 0.8581106662750244, 0.3411232829093933, 0.12229997664690018, -0.10123858600854874, 0.10814425349235535, 0.4220523238182068, -0.09962337464094162, 0.26379939913749695, 0.9380180835723877], "mean": [-0.1224886104464531, -0.08973490446805954, 0.13097286224365234, 0.3236638307571411, -0.2791564464569092, 0.550889790058136, -0.2181740552186966, 0.11630087345838547, -0.10967797785997391, 0.09927057474851608, 0.3412981629371643, -0.15782710909843445, 0.1692238748073578, 0.9084382653236389], "std": [0.004759748466312885, 0.00711433170363307, 0.0026772550772875547, 0.23297105729579926, 0.40733179450035095, 0.4448285400867462, 0.21946963667869568, 0.0029636071994900703, 0.004231780301779509, 0.003990378230810165, 0.04657618701457977, 0.026637813076376915, 0.03740111365914345, 0.02076326496899128], "count": [420]}, "timestamp": {"min": [0.0], "max": [13.966666666666667], "mean": [6.9833333333333325], "std": [4.041440428948661], "count": [420]}, "frame_index": {"min": [0], "max": [419], "mean": [209.5], "std": [121.24321286845984], "count": [420]}, "episode_index": {"min": [396], "max": [396], "mean": [396.0], "std": [0.0], "count": [420]}, "index": {"min": [234069], "max": [234488], "mean": [234278.5], "std": [121.24321286845984], "count": [420]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [420]}}} +{"episode_index": 397, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47578475540543014]], [[0.4489278711484594]], [[0.4175602835905604]]], "std": [[[0.22107382119585567]], [[0.21635348601052826]], [[0.22072532491278415]]], "count": [119]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4880125684260632]], [[0.47219182411526706]], [[0.4442271310484978]]], "std": [[[0.21419400718145465]], [[0.19666506839030115]], [[0.211030711416652]]], "count": [119]}, "observation.state": {"min": [0.3999371826648712, -0.12689222395420074, 0.12675252556800842, -1.458812952041626, -0.27190664410591125, -0.24605393409729004, -0.5463138222694397, -0.3039744794368744, 0.16192346811294556, 1.6288714408874512, -0.15426261723041534, -0.43893831968307495], "max": [0.4638504981994629, -0.022280080243945122, 0.14214079082012177, -0.40952447056770325, 0.40717676281929016, 1.0737125873565674, -0.47507935762405396, -0.23065486550331116, 0.18798020482063293, 2.111997127532959, 0.16696980595588684, -0.07132416218519211], "mean": [0.4424305260181427, -0.09086578339338303, 0.1373406946659088, -0.9467747807502747, 0.15205997228622437, 0.46426913142204285, -0.5121603012084961, -0.264111191034317, 0.17621134221553802, 1.761061668395996, -0.02626890502870083, -0.22995717823505402], "std": [0.014451608061790466, 0.03378959000110626, 0.004318268038332462, 0.29194167256355286, 0.1676284819841385, 0.4000912010669708, 0.0242884811013937, 0.027032198384404182, 0.004291732329875231, 0.14533022046089172, 0.09929276257753372, 0.13290563225746155], "count": [591]}, "action": {"min": [-0.1306668519973755, -0.10335305333137512, 0.12806372344493866, -0.29153361916542053, -0.642287015914917, -0.6425158977508545, -0.37586885690689087, 0.11345549672842026, -0.11606106162071228, 0.09043782949447632, 0.3268696069717407, -0.3282026946544647, 0.024041777476668358, 0.7644366025924683], "max": [-0.1177087128162384, -0.07966137677431107, 0.1353405863046646, 0.3441009521484375, 0.7689151167869568, 0.9268038868904114, 0.4616892635822296, 0.12883155047893524, -0.09980542212724686, 0.11249387264251709, 0.5578780770301819, -0.22842584550380707, 0.2511725425720215, 0.8963024020195007], "mean": [-0.12149813026189804, -0.09525822103023529, 0.1327805519104004, 0.18583300709724426, -0.21719853579998016, 0.5221245884895325, -0.148625910282135, 0.11989003419876099, -0.10958956182003021, 0.10161636024713516, 0.44027218222618103, -0.26498931646347046, 0.08783064037561417, 0.8454397320747375], "std": [0.0029567431192845106, 0.007376137655228376, 0.0017904796404764056, 0.20373940467834473, 0.4803120493888855, 0.5214481353759766, 0.28190314769744873, 0.004573890008032322, 0.0033759151119738817, 0.004380968865007162, 0.07614836096763611, 0.028700552880764008, 0.06870550662279129, 0.04600043222308159], "count": [591]}, "timestamp": {"min": [0.0], "max": [19.666666666666668], "mean": [9.833333333333334], "std": [5.686892010645247], "count": [591]}, "frame_index": {"min": [0], "max": [590], "mean": [295.0], "std": [170.60676031935742], "count": [591]}, "episode_index": {"min": [397], "max": [397], "mean": [397.0], "std": [0.0], "count": [591]}, "index": {"min": [234489], "max": [235079], "mean": [234784.0], "std": [170.60676031935742], "count": [591]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [591]}}} +{"episode_index": 398, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4777202094288007]], [[0.4516901731452815]], [[0.4198095360951398]]], "std": [[[0.21790792564925235]], [[0.2132283080383161]], [[0.2175445306125242]]], "count": [133]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48956634642160957]], [[0.4744867417727325]], [[0.446343118826478]]], "std": [[[0.2106741959328874]], [[0.19326508292909633]], [[0.20723081388794337]]], "count": [133]}, "observation.state": {"min": [0.38647642731666565, -0.15521149337291718, 0.12340681254863739, -1.2868671417236328, -0.18855836987495422, -0.024472659453749657, -0.5794598460197449, -0.30854636430740356, 0.16572290658950806, 1.1878935098648071, -0.41100257635116577, -0.469085156917572], "max": [0.46542593836784363, -0.022998297587037086, 0.13751304149627686, -0.34703686833381653, 0.5476390719413757, 1.0573686361312866, -0.49541330337524414, -0.2370879054069519, 0.18664371967315674, 2.2971532344818115, 0.1624608039855957, 0.005876120179891586], "mean": [0.429680198431015, -0.08448489755392075, 0.1319112926721573, -0.7437716126441956, 0.228847935795784, 0.6624149084091187, -0.5393792986869812, -0.2740108370780945, 0.1744827926158905, 1.66107177734375, -0.25622662901878357, -0.22512191534042358], "std": [0.020526288077235222, 0.0346643440425396, 0.0037381534930318594, 0.2485014796257019, 0.20554618537425995, 0.3118225038051605, 0.023181423544883728, 0.013701592572033405, 0.0049560340121388435, 0.38090214133262634, 0.12876026332378387, 0.09741449356079102], "count": [680]}, "action": {"min": [-0.13349424302577972, -0.10501806437969208, 0.12318238615989685, -0.41791898012161255, -0.6127079129219055, -0.6119621992111206, -0.5257708430290222, 0.11119099706411362, -0.11696837097406387, 0.09283452481031418, 0.26352742314338684, -0.3067343235015869, -0.2024209350347519, 0.7482369542121887], "max": [-0.11834254860877991, -0.07823807746171951, 0.1368890106678009, 0.45517697930336, 0.7783222794532776, 0.8772827982902527, 0.5276604294776917, 0.12663154304027557, -0.09686215966939926, 0.10783546417951584, 0.6055729389190674, -0.023180218413472176, 0.3453928828239441, 0.9231148958206177], "mean": [-0.1255815327167511, -0.09110280126333237, 0.13045163452625275, 0.07771830260753632, 0.0389125756919384, 0.1695280373096466, 0.0014208180364221334, 0.11888406425714493, -0.10872539132833481, 0.09836744517087936, 0.44328176975250244, -0.15804390609264374, 0.06770894676446915, 0.8542011976242065], "std": [0.004035123158246279, 0.006281781475991011, 0.0035405736416578293, 0.3127274811267853, 0.5568370819091797, 0.639275848865509, 0.3836197555065155, 0.004623167682439089, 0.003615948837250471, 0.0035677114501595497, 0.10522136837244034, 0.06561475992202759, 0.16646116971969604, 0.03456249088048935], "count": [680]}, "timestamp": {"min": [0.0], "max": [22.633333333333333], "mean": [11.316666666666666], "std": [6.543295975440987], "count": [680]}, "frame_index": {"min": [0], "max": [679], "mean": [339.5], "std": [196.29887926322962], "count": [680]}, "episode_index": {"min": [398], "max": [398], "mean": [398.0], "std": [0.0], "count": [680]}, "index": {"min": [235080], "max": [235759], "mean": [235419.5], "std": [196.29887926322962], "count": [680]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [680]}}} +{"episode_index": 399, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40349296642899585]], [[0.38690205238661124]], [[0.35745778124381067]]], "std": [[[0.22528490504215568]], [[0.21886656782732714]], [[0.2236222340513392]]], "count": [110]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41512116755793227]], [[0.4125141092295504]], [[0.3845392726282432]]], "std": [[[0.22652252260520273]], [[0.20587392059123188]], [[0.22096980047398376]]], "count": [110]}, "observation.state": {"min": [0.3667139708995819, -0.13094666600227356, 0.12668512761592865, -1.2419935464859009, -0.05779723823070526, 0.12279266864061356, -0.5534728169441223, -0.25774621963500977, 0.1693810373544693, 1.1786671876907349, -0.16109442710876465, -0.531589686870575], "max": [0.4671095013618469, -0.0008108869660645723, 0.13751563429832458, -0.6399737000465393, 0.7897589802742004, 1.114099144935608, -0.47608330845832825, -0.19512256979942322, 0.189789816737175, 2.1962924003601074, 0.08690080791711807, -0.13726823031902313], "mean": [0.4261976182460785, -0.07488670200109482, 0.13444945216178894, -0.8466395139694214, 0.3576374351978302, 0.5881099104881287, -0.5083023309707642, -0.2348407506942749, 0.17906251549720764, 1.6417676210403442, -0.09570781141519547, -0.3324365019798279], "std": [0.02420409955084324, 0.03883741796016693, 0.0023688466753810644, 0.18281587958335876, 0.2608987092971802, 0.30811432003974915, 0.02278013713657856, 0.012392283417284489, 0.0035041403025388718, 0.2348669469356537, 0.042731333523988724, 0.0950729176402092], "count": [533]}, "action": {"min": [-0.13467763364315033, -0.10016226768493652, 0.1251862347126007, -0.3138604462146759, -0.6234806776046753, -0.6255033612251282, -0.4201698303222656, 0.11086328327655792, -0.11595413833856583, 0.10245718061923981, 0.3695409893989563, -0.29496267437934875, -0.19163824617862701, 0.7694535851478577], "max": [-0.12009032815694809, -0.07459589093923569, 0.1382611244916916, 0.47746527194976807, 0.7600595951080322, 0.8004164695739746, 0.36837634444236755, 0.12480542063713074, -0.10081935673952103, 0.11373743414878845, 0.5989075899124146, -0.15101318061351776, 0.30549243092536926, 0.87184077501297], "mean": [-0.12440507858991623, -0.09028485417366028, 0.13311277329921722, 0.23306310176849365, -0.1493401974439621, 0.4379425346851349, -0.18115800619125366, 0.11906477063894272, -0.10814734548330307, 0.10722199827432632, 0.49021977186203003, -0.21144545078277588, 0.047616276890039444, 0.8341384530067444], "std": [0.0035217651166021824, 0.007416937965899706, 0.003727420000359416, 0.2832548916339874, 0.4965675175189972, 0.5308216214179993, 0.30030423402786255, 0.004285905510187149, 0.002724131103605032, 0.0022388140205293894, 0.05861559882760048, 0.02949298918247223, 0.10946308076381683, 0.025156479328870773], "count": [533]}, "timestamp": {"min": [0.0], "max": [17.733333333333334], "mean": [8.866666666666669], "std": [5.128785864553564], "count": [533]}, "frame_index": {"min": [0], "max": [532], "mean": [266.0], "std": [153.8635759366069], "count": [533]}, "episode_index": {"min": [399], "max": [399], "mean": [399.0], "std": [0.0], "count": [533]}, "index": {"min": [235760], "max": [236292], "mean": [236026.0], "std": [153.8635759366069], "count": [533]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [533]}}} +{"episode_index": 400, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40368611322630454]], [[0.3871055322884278]], [[0.35782550447363415]]], "std": [[[0.224421674689428]], [[0.2174751989425315]], [[0.22215307728934902]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4154755245679717]], [[0.412365801552552]], [[0.38492983903377964]]], "std": [[[0.22540178783330214]], [[0.20444588312041048]], [[0.2193648197288721]]], "count": [103]}, "observation.state": {"min": [0.3445960581302643, -0.10370858013629913, 0.1240731030702591, -1.3044811487197876, -0.2755958139896393, 0.06473217904567719, -0.5355328917503357, -0.2919115722179413, 0.1669064164161682, 1.209072232246399, -0.16218753159046173, -0.37646910548210144], "max": [0.4524054229259491, -0.002880580024793744, 0.13687655329704285, -0.30572792887687683, 0.7110563516616821, 1.206069827079773, -0.47157323360443115, -0.20984981954097748, 0.19049499928951263, 2.2298429012298584, 0.10862602293491364, -0.07493980973958969], "mean": [0.4239315092563629, -0.06560380756855011, 0.13252875208854675, -0.8539044857025146, 0.31716591119766235, 0.5414643883705139, -0.5082175731658936, -0.24869059026241302, 0.17673374712467194, 1.6278339624404907, -0.09018545597791672, -0.21476207673549652], "std": [0.02151242271065712, 0.028341863304376602, 0.002210953738540411, 0.30415603518486023, 0.2803097367286682, 0.34426283836364746, 0.015924986451864243, 0.022297700867056847, 0.005152475088834763, 0.2619326114654541, 0.058298107236623764, 0.07985490560531616], "count": [489]}, "action": {"min": [-0.13879843056201935, -0.09720667451620102, 0.1265697032213211, -0.32666394114494324, -0.6018192768096924, -0.6050497889518738, -0.3991225063800812, 0.11281925439834595, -0.11561997979879379, 0.09377855062484741, 0.3376156687736511, -0.27482280135154724, -0.1899401694536209, 0.7817889451980591], "max": [-0.11949799209833145, -0.07553204149007797, 0.1370038092136383, 0.43816763162612915, 0.7739952802658081, 0.8345473408699036, 0.4961695075035095, 0.12540560960769653, -0.10155297815799713, 0.11467762291431427, 0.5517879128456116, -0.14034880697727203, 0.31314489245414734, 0.8953766226768494], "mean": [-0.1254495084285736, -0.08845556527376175, 0.1325703114271164, 0.24944153428077698, -0.16358564794063568, 0.5089796781539917, -0.14631502330303192, 0.12040987610816956, -0.10836756974458694, 0.10423000901937485, 0.4475051462650299, -0.21347098052501678, 0.030610259622335434, 0.8564291596412659], "std": [0.0032907219137996435, 0.005641802679747343, 0.002714077476412058, 0.25207632780075073, 0.4746142625808716, 0.48306944966316223, 0.3292310833930969, 0.003857466159388423, 0.0029174622613936663, 0.004868687596172094, 0.053541332483291626, 0.03749049827456474, 0.12226364016532898, 0.023280350491404533], "count": [489]}, "timestamp": {"min": [0.0], "max": [16.266666666666666], "mean": [8.133333333333333], "std": [4.7053948549235205], "count": [489]}, "frame_index": {"min": [0], "max": [488], "mean": [244.0], "std": [141.16184564770563], "count": [489]}, "episode_index": {"min": [400], "max": [400], "mean": [400.0], "std": [0.0], "count": [489]}, "index": {"min": [236293], "max": [236781], "mean": [236537.0], "std": [141.16184564770563], "count": [489]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [489]}}} +{"episode_index": 401, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3982699101768768]], [[0.38190997262841103]], [[0.35171437193050475]]], "std": [[[0.22321945703800816]], [[0.216478016097987]], [[0.22129576080774802]]], "count": [236]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4110615503027953]], [[0.4084770630238913]], [[0.3798129234980244]]], "std": [[[0.22429658781456832]], [[0.20366605902999416]], [[0.21880064710214428]]], "count": [236]}, "observation.state": {"min": [0.3744675815105438, -0.1282745897769928, 0.11653517186641693, -1.7119086980819702, -0.2654847204685211, 0.03354264050722122, -0.58749920129776, -0.269229918718338, 0.16513827443122864, 0.9433950781822205, -0.6290744543075562, -0.46282967925071716], "max": [0.4992283284664154, -0.012866069562733173, 0.1449563354253769, -0.6013907790184021, 0.8826717734336853, 1.4011378288269043, -0.4939151108264923, -0.201308473944664, 0.18622760474681854, 2.147434711456299, 0.16410043835639954, 0.13977788388729095], "mean": [0.45038071274757385, -0.06389428675174713, 0.13707534968852997, -0.9199196100234985, 0.29291924834251404, 0.9077984094619751, -0.5311257243156433, -0.2289615124464035, 0.17688021063804626, 1.6804053783416748, -0.39453113079071045, -0.053329575806856155], "std": [0.02244279533624649, 0.03574419394135475, 0.006754045840352774, 0.2803717851638794, 0.2925601303577423, 0.3863811194896698, 0.020094899460673332, 0.016575586050748825, 0.0037469477392733097, 0.3309815526008606, 0.13034382462501526, 0.09475289285182953], "count": [1462]}, "action": {"min": [-0.13402679562568665, -0.10418905317783356, 0.11990199983119965, -0.4303087890148163, -0.6369853019714355, -0.6386035680770874, -0.44696491956710815, 0.10951156914234161, -0.11111126840114594, 0.09500212222337723, 0.22822217643260956, -0.3418342173099518, -0.23098531365394592, 0.7787236571311951], "max": [-0.11190550774335861, -0.0732695534825325, 0.1403212547302246, 0.6122060418128967, 0.8608269691467285, 0.8658449649810791, 0.36642295122146606, 0.12867073714733124, -0.10017941892147064, 0.1143842339515686, 0.5432664752006531, 0.043361347168684006, 0.2713029980659485, 0.9556885361671448], "mean": [-0.11957982182502747, -0.0898246094584465, 0.13430966436862946, 0.07053691148757935, 0.11659261584281921, 0.14635179936885834, 0.017114810645580292, 0.11909099668264389, -0.10499392449855804, 0.10577686131000519, 0.34832000732421875, -0.09417124837636948, 0.0799773633480072, 0.9110912084579468], "std": [0.004521531984210014, 0.008634689263999462, 0.004186649341136217, 0.3948933184146881, 0.6159669756889343, 0.5883318781852722, 0.27969348430633545, 0.004144277889281511, 0.0023951977491378784, 0.0034258475061506033, 0.08669667690992355, 0.06822247803211212, 0.14061914384365082, 0.0370880551636219], "count": [1462]}, "timestamp": {"min": [0.0], "max": [48.7], "mean": [24.349999999999998], "std": [14.068098268383288], "count": [1462]}, "frame_index": {"min": [0], "max": [1461], "mean": [730.5], "std": [422.0429480514987], "count": [1462]}, "episode_index": {"min": [401], "max": [401], "mean": [401.0], "std": [0.0], "count": [1462]}, "index": {"min": [236782], "max": [238243], "mean": [237512.5], "std": [422.0429480514987], "count": [1462]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [1462]}}} +{"episode_index": 402, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4100679783950617]], [[0.3939210829702251]], [[0.3637134667755991]]], "std": [[[0.22535975489236432]], [[0.21840474470020171]], [[0.2227085618894112]]], "count": [120]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42011798747276685]], [[0.4180825413035585]], [[0.38943014478939725]]], "std": [[[0.22733806843760643]], [[0.20616233670135578]], [[0.22099845636674056]]], "count": [120]}, "observation.state": {"min": [0.33736759424209595, -0.099306620657444, 0.12458772957324982, -0.9505245089530945, -0.40635696053504944, 0.2023278772830963, -0.5775986313819885, -0.28447458148002625, 0.1667119711637497, 1.4409892559051514, -0.2770988345146179, -0.360215961933136], "max": [0.46327900886535645, -0.007707289885729551, 0.13783711194992065, -0.324809730052948, 0.4254860579967499, 1.282557725906372, -0.49938279390335083, -0.22282400727272034, 0.19085925817489624, 2.205728530883789, 0.10398037731647491, -0.07436975836753845], "mean": [0.4094069302082062, -0.05707808956503868, 0.134574756026268, -0.5536540150642395, 0.1270972639322281, 0.7977555394172668, -0.5499814748764038, -0.2464512437582016, 0.17962214350700378, 1.902044653892517, -0.1198846772313118, -0.18571406602859497], "std": [0.030506683513522148, 0.027879411354660988, 0.003146503819152713, 0.18394355475902557, 0.24420468509197235, 0.3166642189025879, 0.01805008575320244, 0.009060339070856571, 0.005028946325182915, 0.13577836751937866, 0.05819092318415642, 0.059105284512043], "count": [597]}, "action": {"min": [-0.14288534224033356, -0.09916049242019653, 0.127748042345047, -0.3271437883377075, -0.6134325861930847, -0.612423837184906, -0.5786272287368774, 0.10814323276281357, -0.11711182445287704, 0.09102537482976913, 0.30920282006263733, -0.33985260128974915, -0.07834361493587494, 0.821160078048706], "max": [-0.12138853222131729, -0.07787098735570908, 0.14114531874656677, 0.3252963125705719, 0.8154897689819336, 0.8089727759361267, 0.484467089176178, 0.11956360936164856, -0.1011204645037651, 0.11369095742702484, 0.4595496356487274, -0.14948372542858124, 0.29239341616630554, 0.8897844552993774], "mean": [-0.1282956749200821, -0.0897025391459465, 0.1364850550889969, 0.020180359482765198, 0.1197579950094223, 0.12184543162584305, 0.015002447180449963, 0.11314623057842255, -0.1080688014626503, 0.10348627716302872, 0.38631317019462585, -0.2566320598125458, 0.15209972858428955, 0.869000256061554], "std": [0.005158813204616308, 0.005860030185431242, 0.0037074757274240255, 0.2896246612071991, 0.5811150670051575, 0.5902480483055115, 0.4474479854106903, 0.0032811861019581556, 0.0033034784719347954, 0.004048324190080166, 0.02992117591202259, 0.034215930849313736, 0.06632686406373978, 0.01183723472058773], "count": [597]}, "timestamp": {"min": [0.0], "max": [19.866666666666667], "mean": [9.933333333333334], "std": [5.744627119382139], "count": [597]}, "frame_index": {"min": [0], "max": [596], "mean": [298.0], "std": [172.3388135814642], "count": [597]}, "episode_index": {"min": [402], "max": [402], "mean": [402.0], "std": [0.0], "count": [597]}, "index": {"min": [238244], "max": [238840], "mean": [238542.0], "std": [172.3388135814642], "count": [597]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [597]}}} +{"episode_index": 403, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41424881768425525]], [[0.39894818844430274]], [[0.36917839904706234]]], "std": [[[0.2246994726431112]], [[0.21836164918177334]], [[0.22262027457821254]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42236088527551946]], [[0.420205193775794]], [[0.39281086269196025]]], "std": [[[0.22675681966835676]], [[0.2068581842292639]], [[0.22091885687684606]]], "count": [123]}, "observation.state": {"min": [0.3396921157836914, -0.11842811107635498, 0.12308014184236526, -1.6636799573898315, 0.23569795489311218, 0.06903229653835297, -0.6337429285049438, -0.33512797951698303, 0.16629326343536377, 1.9060815572738647, -0.49284785985946655, -0.06012779101729393], "max": [0.4232984185218811, 0.012503099627792835, 0.13709044456481934, -0.977993905544281, 0.8953790068626404, 1.0366607904434204, -0.5112835168838501, -0.2593061923980713, 0.19427627325057983, 2.1369502544403076, -0.136363223195076, 0.2450920045375824], "mean": [0.3800713121891022, -0.04908514395356178, 0.132015198469162, -1.1748921871185303, 0.6065133213996887, 0.5929588079452515, -0.5766037106513977, -0.2874133288860321, 0.18105100095272064, 1.9951820373535156, -0.29781293869018555, 0.10665099322795868], "std": [0.020540641620755196, 0.03728962689638138, 0.0033079080749303102, 0.1605999618768692, 0.17464177310466766, 0.2816140055656433, 0.03328473120927811, 0.01941344514489174, 0.0058690402656793594, 0.0662020668387413, 0.09854771196842194, 0.08567369729280472], "count": [615]}, "action": {"min": [-0.13967257738113403, -0.09780406951904297, 0.1294987052679062, -0.36812782287597656, -0.6435943245887756, -0.642876148223877, -0.30768004059791565, 0.10257057845592499, -0.12217181921005249, 0.08608528226613998, 0.15228116512298584, -0.34619274735450745, 0.13944746553897858, 0.8870269656181335], "max": [-0.12479198724031448, -0.07268188893795013, 0.1387077122926712, 0.5950461030006409, 0.7001381516456604, 0.849135160446167, 0.2072294056415558, 0.12396839261054993, -0.10258523374795914, 0.10865575820207596, 0.3401511311531067, -0.1446625143289566, 0.2766534686088562, 0.953943133354187], "mean": [-0.13091637194156647, -0.08597546070814133, 0.1352364718914032, 0.37427565455436707, -0.27891358733177185, 0.5608510375022888, -0.133064404129982, 0.11084336787462234, -0.11250566691160202, 0.09835363179445267, 0.23451822996139526, -0.23201118409633636, 0.18386037647724152, 0.9225485920906067], "std": [0.0036681590136140585, 0.00669565424323082, 0.0024396369699388742, 0.28563863039016724, 0.3834415376186371, 0.4492127597332001, 0.13948509097099304, 0.006002061069011688, 0.004379324149340391, 0.004341606050729752, 0.052029941231012344, 0.04541667923331261, 0.03435239568352699, 0.017951305955648422], "count": [615]}, "timestamp": {"min": [0.0], "max": [20.466666666666665], "mean": [10.233333333333333], "std": [5.9178324360141135], "count": [615]}, "frame_index": {"min": [0], "max": [614], "mean": [307.0], "std": [177.5349730804234], "count": [615]}, "episode_index": {"min": [403], "max": [403], "mean": [403.0], "std": [0.0], "count": [615]}, "index": {"min": [238841], "max": [239455], "mean": [239148.0], "std": [177.5349730804234], "count": [615]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [615]}}} +{"episode_index": 404, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41013895122975563]], [[0.3946342756647505]], [[0.36556672277344676]]], "std": [[[0.22404434950630095]], [[0.21780197742889978]], [[0.22201791151894773]]], "count": [166]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41870268984434467]], [[0.41705209071580435]], [[0.3898246433446203]]], "std": [[[0.2264775571963152]], [[0.20632085665584746]], [[0.22092568734462975]]], "count": [166]}, "observation.state": {"min": [0.35338452458381653, -0.08396154642105103, 0.12097626179456711, -1.3019648790359497, -0.8415442109107971, 0.23841579258441925, -0.6202435493469238, -0.36048173904418945, 0.16569307446479797, 1.9893285036087036, -0.4253494143486023, -0.1866971254348755], "max": [0.44523870944976807, -0.00751422019675374, 0.1352211982011795, -0.21493218839168549, 0.5475024580955505, 1.4019418954849243, -0.5191993117332458, -0.2696778178215027, 0.19150739908218384, 2.3596408367156982, 0.004372369963675737, 0.10213325172662735], "mean": [0.4017551839351654, -0.056363508105278015, 0.1303694099187851, -0.6789882183074951, -0.12377481907606125, 0.9942258596420288, -0.5689436793327332, -0.30871930718421936, 0.18076710402965546, 2.1745622158050537, -0.20213459432125092, -0.02013852819800377], "std": [0.020612964406609535, 0.01790766790509224, 0.003152086166664958, 0.2599388360977173, 0.5238209962844849, 0.3601488471031189, 0.018089819699525833, 0.02447986789047718, 0.004273639526218176, 0.06971345096826553, 0.10721059888601303, 0.06285321712493896], "count": [917]}, "action": {"min": [-0.13961823284626007, -0.09714574366807938, 0.12168052047491074, -0.3631582260131836, -0.627153217792511, -0.6270470023155212, -0.3699615001678467, 0.1059015542268753, -0.12653566896915436, 0.08363630622625351, 0.20378492772579193, -0.3975874185562134, 0.21991685032844543, 0.8213092684745789], "max": [-0.12614120543003082, -0.07504063099622726, 0.13832953572273254, 0.3937448263168335, 0.8775429129600525, 0.8271583914756775, 0.534295916557312, 0.1187765896320343, -0.10374372452497482, 0.10695251077413559, 0.4050453305244446, -0.2180452197790146, 0.3722870647907257, 0.9033719897270203], "mean": [-0.13218483328819275, -0.08915424346923828, 0.13230006396770477, 0.10919472575187683, 0.20192202925682068, 0.14643976092338562, 0.09544351696968079, 0.11182858794927597, -0.11528584361076355, 0.09590417146682739, 0.2708532214164734, -0.2906561493873596, 0.2621840536594391, 0.8760591745376587], "std": [0.0031981193460524082, 0.005038455128669739, 0.0038913683965802193, 0.2510971128940582, 0.662601888179779, 0.5244855880737305, 0.3735957145690918, 0.002962340135127306, 0.004149053245782852, 0.004494959954172373, 0.039390385150909424, 0.05292496830224991, 0.030011359602212906, 0.026145469397306442], "count": [917]}, "timestamp": {"min": [0.0], "max": [30.533333333333335], "mean": [15.266666666666666], "std": [8.823831367382311], "count": [917]}, "frame_index": {"min": [0], "max": [916], "mean": [458.0], "std": [264.7149410214694], "count": [917]}, "episode_index": {"min": [404], "max": [404], "mean": [404.0], "std": [0.0], "count": [917]}, "index": {"min": [239456], "max": [240372], "mean": [239914.0], "std": [264.7149410214694], "count": [917]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [917]}}} +{"episode_index": 405, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41944679956427017]], [[0.4033798300653595]], [[0.37410221132897603]]], "std": [[[0.22383817583838672]], [[0.21794240596924577]], [[0.2220093451946911]]], "count": [125]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42931622222222227]], [[0.42638882570806097]], [[0.3992646252723312]]], "std": [[[0.22454420429947317]], [[0.20482629498122298]], [[0.21893042121595785]]], "count": [125]}, "observation.state": {"min": [0.3382865786552429, -0.07311110943555832, 0.11883868277072906, -1.440360188484192, -0.12529566884040833, -0.09813787043094635, -0.5480437278747559, -0.31943538784980774, 0.172768235206604, 4.425506114959717, -0.6039333343505859, -0.12201467901468277], "max": [0.4198154807090759, 0.034597840160131454, 0.13275954127311707, -0.5317736864089966, 0.7374271750450134, 1.1296921968460083, -0.4418407082557678, -0.22844615578651428, 0.19414405524730682, 4.5389485359191895, 0.0058753699995577335, 0.4368439018726349], "mean": [0.377619206905365, -0.024445470422506332, 0.12817779183387756, -0.9070295095443726, 0.3219697177410126, 0.6392480134963989, -0.5110674500465393, -0.2737897038459778, 0.18456389009952545, 4.53479528427124, -0.17547987401485443, 0.09694792330265045], "std": [0.021861828863620758, 0.03162585571408272, 0.004396424628794193, 0.23054860532283783, 0.3081575930118561, 0.3766002357006073, 0.02379777282476425, 0.022187497466802597, 0.004666724242269993, 0.015876231715083122, 0.16588863730430603, 0.13672904670238495], "count": [629]}, "action": {"min": [-0.14233475923538208, -0.09309499710798264, 0.13138964772224426, -0.32576191425323486, -0.6425588130950928, -0.6434414386749268, -0.43858805298805237, 0.10938403755426407, -0.1223042905330658, 0.09484566003084183, -0.4800739884376526, -0.5157549977302551, 0.6930705308914185, 0.10572388023138046], "max": [-0.1287960410118103, -0.0704251080751419, 0.13921968638896942, 0.47037240862846375, 0.762012779712677, 0.840457022190094, 0.4376036524772644, 0.12823399901390076, -0.10376428812742233, 0.11263620108366013, -0.22442889213562012, -0.31907615065574646, 0.9059482216835022, 0.2078983187675476], "mean": [-0.13455738127231598, -0.08181682229042053, 0.1357814520597458, 0.1925855427980423, -0.0379440113902092, 0.33783018589019775, -0.10867547243833542, 0.11487772315740585, -0.11563900113105774, 0.1047649085521698, -0.2996024191379547, -0.42256614565849304, 0.8393617868423462, 0.12687353789806366], "std": [0.003751941956579685, 0.007487588096410036, 0.002245537703856826, 0.29975152015686035, 0.5307688117027283, 0.609122097492218, 0.30485281348228455, 0.004059962462633848, 0.0041263522580266, 0.004000039305537939, 0.07030671089887619, 0.05553007125854492, 0.05130553990602493, 0.019803233444690704], "count": [629]}, "timestamp": {"min": [0.0], "max": [20.933333333333334], "mean": [10.466666666666665], "std": [6.052547672950073], "count": [629]}, "frame_index": {"min": [0], "max": [628], "mean": [314.0], "std": [181.57643018850217], "count": [629]}, "episode_index": {"min": [405], "max": [405], "mean": [405.0], "std": [0.0], "count": [629]}, "index": {"min": [240373], "max": [241001], "mean": [240687.0], "std": [181.57643018850217], "count": [629]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [629]}}} +{"episode_index": 406, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42413312343907755]], [[0.40825660236994527]], [[0.3789353977363303]]], "std": [[[0.2246115006002116]], [[0.21869365637471797]], [[0.22276349158938163]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43396663389836515]], [[0.4310054399808704]], [[0.403878706360593]]], "std": [[[0.22479449891344358]], [[0.20515124815010422]], [[0.21923726101976324]]], "count": [123]}, "observation.state": {"min": [0.30564260482788086, -0.06913390010595322, 0.116212397813797, -1.5764490365982056, -0.37342754006385803, -0.07990243285894394, -0.5469779968261719, -0.32336628437042236, 0.16978676617145538, 4.2877397537231445, -0.7151554226875305, -0.02605173923075199], "max": [0.43835005164146423, 0.041478801518678665, 0.13537675142288208, -0.5382741093635559, 0.5909528732299805, 1.3907147645950317, -0.46395862102508545, -0.23347365856170654, 0.19570478796958923, 4.540206432342529, -0.15781515836715698, 0.4059392213821411], "mean": [0.36634308099746704, -0.0186308640986681, 0.1274629831314087, -0.9166132211685181, 0.24757486581802368, 0.7505705952644348, -0.5076101422309875, -0.26988062262535095, 0.18546967208385468, 4.529982089996338, -0.30133405327796936, 0.14828874170780182], "std": [0.03417590260505676, 0.03223065659403801, 0.0048074680380523205, 0.2625989615917206, 0.3313559293746948, 0.4331747591495514, 0.02363894134759903, 0.02037896402180195, 0.006120658479630947, 0.034309010952711105, 0.13094741106033325, 0.10059453547000885], "count": [618]}, "action": {"min": [-0.14668691158294678, -0.09402985870838165, 0.13214734196662903, -0.33990028500556946, -0.6308110952377319, -0.630293071269989, -0.3196020722389221, 0.10695949196815491, -0.12196360528469086, 0.09357784688472748, -0.522068440914154, -0.5460684895515442, 0.6861156821250916, 0.10252174735069275], "max": [-0.12617388367652893, -0.06826087832450867, 0.1407766342163086, 0.42474043369293213, 0.8411347270011902, 0.9149291515350342, 0.40570759773254395, 0.12621265649795532, -0.10004530102014542, 0.11524245887994766, -0.3018629252910614, -0.3557783365249634, 0.8661724925041199, 0.2661755681037903], "mean": [-0.13678047060966492, -0.0814964547753334, 0.13620662689208984, 0.21357493102550507, -0.0912633016705513, 0.4350206255912781, -0.08185169845819473, 0.11401130259037018, -0.11528243869543076, 0.10561756044626236, -0.3559303879737854, -0.4323824644088745, 0.8118486404418945, 0.14312410354614258], "std": [0.0053966352716088295, 0.007482106331735849, 0.0020803455263376236, 0.2695675194263458, 0.5631429553031921, 0.5255418419837952, 0.2900391221046448, 0.004814842250198126, 0.004204563796520233, 0.005207750480622053, 0.05484350025653839, 0.03906450793147087, 0.04182436317205429, 0.02220466360449791], "count": [618]}, "timestamp": {"min": [0.0], "max": [20.566666666666666], "mean": [10.283333333333333], "std": [5.946699987450244], "count": [618]}, "frame_index": {"min": [0], "max": [617], "mean": [308.5], "std": [178.40099962350735], "count": [618]}, "episode_index": {"min": [406], "max": [406], "mean": [406.0], "std": [0.0], "count": [618]}, "index": {"min": [241002], "max": [241619], "mean": [241310.5], "std": [178.40099962350735], "count": [618]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [618]}}} +{"episode_index": 407, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4208740126004918]], [[0.40566849176317704]], [[0.37617414064391186]]], "std": [[[0.2239421393923011]], [[0.2185279591293793]], [[0.22236505149911634]]], "count": [171]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43083648345628045]], [[0.4285962794149499]], [[0.40080710354317167]]], "std": [[[0.2241327052747993]], [[0.20524329450926143]], [[0.21910815293723296]]], "count": [171]}, "observation.state": {"min": [0.3415146768093109, -0.05206666886806488, 0.11501722037792206, -1.9039846658706665, -0.2734096348285675, -0.3237208425998688, -0.5645703673362732, -0.3130641579627991, 0.16655512154102325, 4.184153079986572, -0.9590516090393066, -0.08937609940767288], "max": [0.43067362904548645, 0.0997159332036972, 0.13770748674869537, -0.39002329111099243, 0.7685803174972534, 1.4079521894454956, -0.42743009328842163, -0.21555691957473755, 0.1995275467634201, 4.53873872756958, -0.12857495248317719, 0.6666004657745361], "mean": [0.38643375039100647, 0.004611729644238949, 0.1298060268163681, -0.8246918320655823, 0.26163148880004883, 0.830021858215332, -0.5187456607818604, -0.24581144750118256, 0.1862037628889084, 4.521195411682129, -0.3222617208957672, 0.1418798416852951], "std": [0.019749723374843597, 0.03484925255179405, 0.0056318603456020355, 0.369586706161499, 0.3219931721687317, 0.5146263241767883, 0.028803013265132904, 0.02602127008140087, 0.0055840108543634415, 0.05612310394644737, 0.15008804202079773, 0.16529175639152527], "count": [955]}, "action": {"min": [-0.14326868951320648, -0.09004301577806473, 0.1309574544429779, -0.55890953540802, -0.6132103800773621, -0.6041576266288757, -0.4501032531261444, 0.10428391396999359, -0.12054260820150375, 0.09211516380310059, -0.6161106824874878, -0.5505101084709167, -0.6118482351303101, -0.23077891767024994], "max": [-0.12462965399026871, -0.059567905962467194, 0.14672836661338806, 0.5633529424667358, 0.8205049633979797, 0.9011528491973877, 0.45690059661865234, 0.1285577416419983, -0.0945025160908699, 0.11639424413442612, 0.6561904549598694, 0.45673975348472595, 0.8877060413360596, 0.212797150015831], "mean": [-0.1329602599143982, -0.07838550955057144, 0.13915352523326874, 0.08832084387540817, 0.11469840258359909, 0.22989898920059204, 0.00915460754185915, 0.11131902784109116, -0.11194580048322678, 0.10800968110561371, -0.35645902156829834, -0.40439000725746155, 0.7982906103134155, 0.1470911204814911], "std": [0.004098848439753056, 0.007941912859678268, 0.0034855492413043976, 0.3719507157802582, 0.5660943984985352, 0.5944066047668457, 0.3376052975654602, 0.006015286315232515, 0.004120300989598036, 0.004566405899822712, 0.11800514906644821, 0.10791618376970291, 0.15204806625843048, 0.04256006330251694], "count": [955]}, "timestamp": {"min": [0.0], "max": [31.8], "mean": [15.9], "std": [9.189486746639698], "count": [955]}, "frame_index": {"min": [0], "max": [954], "mean": [477.0], "std": [275.68460239919096], "count": [955]}, "episode_index": {"min": [407], "max": [407], "mean": [407.0], "std": [0.0], "count": [955]}, "index": {"min": [241620], "max": [242574], "mean": [242097.0], "std": [275.68460239919096], "count": [955]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [955]}}} +{"episode_index": 408, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4208740126004918]], [[0.40566849176317704]], [[0.37617414064391186]]], "std": [[[0.2239421393923011]], [[0.2185279591293793]], [[0.22236505149911634]]], "count": [171]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43083648345628045]], [[0.4285962794149499]], [[0.40080710354317167]]], "std": [[[0.2241327052747993]], [[0.20524329450926143]], [[0.21910815293723296]]], "count": [171]}, "observation.state": {"min": [0.3415146768093109, -0.05206666886806488, 0.11501722037792206, -1.9039846658706665, -0.2734096348285675, -0.3237208425998688, -0.5645703673362732, -0.3130641579627991, 0.16655512154102325, 4.184153079986572, -0.9590516090393066, -0.08937609940767288], "max": [0.43067362904548645, 0.0997159332036972, 0.13770748674869537, -0.39002329111099243, 0.7685803174972534, 1.4079521894454956, -0.42743009328842163, -0.21555691957473755, 0.1995275467634201, 4.53873872756958, -0.12857495248317719, 0.6666004657745361], "mean": [0.38643375039100647, 0.004611729644238949, 0.1298060268163681, -0.8246918320655823, 0.26163148880004883, 0.830021858215332, -0.5187456607818604, -0.24581144750118256, 0.1862037628889084, 4.521195411682129, -0.3222617208957672, 0.1418798416852951], "std": [0.019749723374843597, 0.03484925255179405, 0.0056318603456020355, 0.369586706161499, 0.3219931721687317, 0.5146263241767883, 0.028803013265132904, 0.02602127008140087, 0.0055840108543634415, 0.05612310394644737, 0.15008804202079773, 0.16529175639152527], "count": [955]}, "action": {"min": [-0.14326868951320648, -0.09004301577806473, 0.1309574544429779, -0.55890953540802, -0.6132103800773621, -0.6041576266288757, -0.4501032531261444, 0.10428391396999359, -0.12054260820150375, 0.09211516380310059, -0.6161106824874878, -0.5505101084709167, -0.6118482351303101, -0.23077891767024994], "max": [-0.12462965399026871, -0.059567905962467194, 0.14672836661338806, 0.5633529424667358, 0.8205049633979797, 0.9011528491973877, 0.45690059661865234, 0.1285577416419983, -0.0945025160908699, 0.11639424413442612, 0.6561904549598694, 0.45673975348472595, 0.8877060413360596, 0.212797150015831], "mean": [-0.1329602599143982, -0.07838550955057144, 0.13915352523326874, 0.08832084387540817, 0.11469840258359909, 0.22989898920059204, 0.00915460754185915, 0.11131902784109116, -0.11194580048322678, 0.10800968110561371, -0.35645902156829834, -0.40439000725746155, 0.7982906103134155, 0.1470911204814911], "std": [0.004098848439753056, 0.007941912859678268, 0.0034855492413043976, 0.3719507157802582, 0.5660943984985352, 0.5944066047668457, 0.3376052975654602, 0.006015286315232515, 0.004120300989598036, 0.004566405899822712, 0.11800514906644821, 0.10791618376970291, 0.15204806625843048, 0.04256006330251694], "count": [955]}, "timestamp": {"min": [0.0], "max": [31.8], "mean": [15.9], "std": [9.189486746639698], "count": [955]}, "frame_index": {"min": [0], "max": [954], "mean": [477.0], "std": [275.68460239919096], "count": [955]}, "episode_index": {"min": [408], "max": [408], "mean": [408.0], "std": [0.0], "count": [955]}, "index": {"min": [242575], "max": [243529], "mean": [243052.0], "std": [275.68460239919096], "count": [955]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [955]}}} +{"episode_index": 409, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4180408642950096]], [[0.40162786404643885]], [[0.37146745002997467]]], "std": [[[0.22318123367036566]], [[0.21693352706171198]], [[0.22049316422798862]]], "count": [149]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42827545291047064]], [[0.4252150812972467]], [[0.39635277302569055]]], "std": [[[0.2221936847755818]], [[0.20253584154401783]], [[0.21653764415485013]]], "count": [149]}, "observation.state": {"min": [0.3147708773612976, -0.036605749279260635, 0.11988996714353561, -1.504734992980957, -0.3113945722579956, 0.06230511888861656, -0.5451399683952332, -0.3205706477165222, 0.16835695505142212, 4.195476531982422, -0.5185354948043823, -0.23343968391418457], "max": [0.4148188829421997, 0.09800148010253906, 0.13350750505924225, -0.561759352684021, 0.7997334003448486, 1.2247549295425415, -0.4818599224090576, -0.22135668992996216, 0.1970788538455963, 4.5389485359191895, -0.1147746592760086, 0.3014359474182129], "mean": [0.38622811436653137, 0.019270706921815872, 0.12865716218948364, -0.9446288347244263, 0.33845254778862, 0.6830159425735474, -0.5188285112380981, -0.2641795873641968, 0.18399614095687866, 4.480292320251465, -0.24044355750083923, 0.058300528675317764], "std": [0.02566578797996044, 0.04382462427020073, 0.0033635753206908703, 0.23743942379951477, 0.30870887637138367, 0.3169420659542084, 0.017329521477222443, 0.018382208421826363, 0.005502142943441868, 0.07123205810785294, 0.0767408236861229, 0.11234615743160248], "count": [790]}, "action": {"min": [-0.14303095638751984, -0.08635146170854568, 0.13411220908164978, -0.2918049693107605, -0.6394255757331848, -0.639081597328186, -0.34171247482299805, 0.108920156955719, -0.12203472852706909, 0.09380766749382019, -0.4054880142211914, -0.4965271055698395, 0.7329632639884949, 0.1272975206375122], "max": [-0.127414271235466, -0.059015240520238876, 0.15224994719028473, 0.5394077897071838, 0.7847872376441956, 0.8269999623298645, 0.4098570644855499, 0.12519225478172302, -0.10045687109231949, 0.11717092990875244, -0.2749302387237549, -0.2720769941806793, 0.8770133852958679, 0.2916203439235687], "mean": [-0.13289475440979004, -0.07523228228092194, 0.13914650678634644, 0.2817627489566803, -0.2020948827266693, 0.4850676655769348, -0.146039217710495, 0.11331402510404587, -0.11338529735803604, 0.10497143119573593, -0.3192838132381439, -0.40073418617248535, 0.8377739787101746, 0.17350788414478302], "std": [0.0038826328236609697, 0.008559556677937508, 0.0037143274676054716, 0.2608375549316406, 0.484862357378006, 0.5038121342658997, 0.2572839558124542, 0.003570769913494587, 0.003847200656309724, 0.004783492535352707, 0.025704098865389824, 0.04933108016848564, 0.03207369148731232, 0.03708653524518013], "count": [790]}, "timestamp": {"min": [0.0], "max": [26.3], "mean": [13.15], "std": [7.601772454134919], "count": [790]}, "frame_index": {"min": [0], "max": [789], "mean": [394.5], "std": [228.0531736240476], "count": [790]}, "episode_index": {"min": [409], "max": [409], "mean": [409.0], "std": [0.0], "count": [790]}, "index": {"min": [243530], "max": [244319], "mean": [243924.5], "std": [228.0531736240476], "count": [790]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [790]}}} +{"episode_index": 410, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4121259638386945]], [[0.3960597286300141]], [[0.36581089805203126]]], "std": [[[0.2238387484154826]], [[0.21836432561605315]], [[0.2219205071674008]]], "count": [102]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42201123232517407]], [[0.4204964703746422]], [[0.39091563074031355]]], "std": [[[0.2236873428903271]], [[0.20416713685907567]], [[0.21848585460613082]]], "count": [102]}, "observation.state": {"min": [0.35987934470176697, -0.08513540774583817, 0.11995478719472885, -1.431972622871399, -0.09783173352479935, 0.32276350259780884, -0.5663697719573975, -0.339568555355072, 0.17005768418312073, 4.2980146408081055, -0.45704910159111023, -0.13082528114318848], "max": [0.4344964027404785, 0.06274720281362534, 0.13181324303150177, -0.7888535857200623, 0.6878281235694885, 1.4031444787979126, -0.5020162463188171, -0.22352677583694458, 0.19398072361946106, 4.53873872756958, -0.08772063255310059, 0.2858751118183136], "mean": [0.40235885977745056, -0.008087395690381527, 0.12891513109207153, -0.9820311069488525, 0.36517390608787537, 1.0791223049163818, -0.5279073715209961, -0.26940152049064636, 0.18283793330192566, 4.4526567459106445, -0.17660169303417206, 0.0663721039891243], "std": [0.014972987584769726, 0.04332834109663963, 0.002949001034721732, 0.18873217701911926, 0.23802314698696136, 0.37356746196746826, 0.013634891249239445, 0.02350183017551899, 0.004189103841781616, 0.08017563074827194, 0.06973481178283691, 0.11988692730665207], "count": [479]}, "action": {"min": [-0.13785342872142792, -0.09245656430721283, 0.12950029969215393, -0.5085207223892212, -0.6302690505981445, -0.6274986863136292, -0.27610552310943604, 0.10876386612653732, -0.12082374095916748, 0.08757364004850388, -0.3976566195487976, -0.5185586214065552, 0.7616264224052429, 0.1299496442079544], "max": [-0.12473375350236893, -0.06420540064573288, 0.14112666249275208, 0.5069170594215393, 0.8358389139175415, 0.7958326935768127, 0.2960406243801117, 0.12192174047231674, -0.10212524980306625, 0.11190983653068542, -0.2613821029663086, -0.31385838985443115, 0.895393431186676, 0.23805198073387146], "mean": [-0.13007943332195282, -0.07866056263446808, 0.13631092011928558, -0.12734979391098022, 0.3630940318107605, -0.11315511912107468, 0.08206350356340408, 0.11309750378131866, -0.11320427060127258, 0.1032116487622261, -0.29153719544410706, -0.41399410367012024, 0.8407978415489197, 0.17301060259342194], "std": [0.002423547673970461, 0.008177378214895725, 0.003012000350281596, 0.41786494851112366, 0.5369898080825806, 0.583344578742981, 0.17072349786758423, 0.0028766451869159937, 0.003578150412067771, 0.004189762752503157, 0.02761552855372429, 0.059495169669389725, 0.036512378603219986, 0.03324175626039505], "count": [479]}, "timestamp": {"min": [0.0], "max": [15.933333333333334], "mean": [7.966666666666666], "std": [4.609169604651628], "count": [479]}, "frame_index": {"min": [0], "max": [478], "mean": [239.0], "std": [138.27508813954884], "count": [479]}, "episode_index": {"min": [410], "max": [410], "mean": [410.0], "std": [0.0], "count": [479]}, "index": {"min": [244320], "max": [244798], "mean": [244559.0], "std": [138.27508813954884], "count": [479]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [479]}}} +{"episode_index": 411, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40995786220043573]], [[0.39346446895424836]], [[0.36325550108932464]]], "std": [[[0.22201602787394414]], [[0.2159657758478406]], [[0.2195502637314893]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41956482843137255]], [[0.4177739297385621]], [[0.3882912282135076]]], "std": [[[0.22208362117881822]], [[0.2021863705331809]], [[0.2164544666678456]]], "count": [100]}, "observation.state": {"min": [0.32685694098472595, -0.07559783011674881, 0.12327069789171219, -1.2193470001220703, -0.36645910143852234, 0.34356141090393066, -0.5619601011276245, -0.35771697759628296, 0.1667003035545349, 4.093776702880859, -0.4668869078159332, -0.31073176860809326], "max": [0.42793208360671997, 0.05183497816324234, 0.1322241723537445, -0.3862488865852356, 0.6972560882568359, 1.2705472707748413, -0.5004485249519348, -0.2507648468017578, 0.19530552625656128, 4.538528919219971, -0.028147120028734207, 0.2781183421611786], "mean": [0.39716875553131104, -0.008634433150291443, 0.1275133490562439, -0.7771195769309998, 0.22746267914772034, 0.9275063872337341, -0.5358695387840271, -0.2796802520751953, 0.18338163197040558, 4.421119213104248, -0.15011951327323914, -0.003450470743700862], "std": [0.021174799650907516, 0.034868497401475906, 0.0022733802907168865, 0.1745859980583191, 0.29405665397644043, 0.2505057454109192, 0.016916098073124886, 0.022265594452619553, 0.00515410490334034, 0.06434327363967896, 0.10168434679508209, 0.13345542550086975], "count": [404]}, "action": {"min": [-0.14610275626182556, -0.09182948619127274, 0.1283852905035019, -0.3883384168148041, -0.6229466795921326, -0.6222546696662903, -0.5143837332725525, 0.10874095559120178, -0.12277444452047348, 0.08452796190977097, -0.4041803181171417, -0.5091726779937744, 0.7690414786338806, 0.11523560434579849], "max": [-0.12735624611377716, -0.06880684196949005, 0.1424902230501175, 0.48791274428367615, 0.8339361548423767, 0.7843742370605469, 0.36711299419403076, 0.1225026547908783, -0.10189148783683777, 0.11256536096334457, -0.17395001649856567, -0.2767219841480255, 0.8938844203948975, 0.37248876690864563], "mean": [-0.1324593722820282, -0.07880991697311401, 0.13595418632030487, 0.021417954936623573, 0.18356570601463318, 0.008958052843809128, 0.04954401031136513, 0.11216521263122559, -0.11462154239416122, 0.10179403424263, -0.2684386372566223, -0.39479824900627136, 0.8530938029289246, 0.1888909637928009], "std": [0.0032299980521202087, 0.006539030000567436, 0.0037662198301404715, 0.36769527196884155, 0.5863181352615356, 0.6143231391906738, 0.32702958583831787, 0.002211326966062188, 0.003988319542258978, 0.005377467721700668, 0.05463845282793045, 0.05310925468802452, 0.03580928593873978, 0.039219025522470474], "count": [404]}, "timestamp": {"min": [0.0], "max": [13.433333333333334], "mean": [6.716666666666666], "std": [3.887479903485033], "count": [404]}, "frame_index": {"min": [0], "max": [403], "mean": [201.5], "std": [116.62439710455098], "count": [404]}, "episode_index": {"min": [411], "max": [411], "mean": [411.0], "std": [0.0], "count": [404]}, "index": {"min": [244799], "max": [245202], "mean": [245000.5], "std": [116.62439710455098], "count": [404]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [404]}}} +{"episode_index": 412, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41181365350839305]], [[0.3959743072951158]], [[0.36557369377021487]]], "std": [[[0.22216312834284455]], [[0.21611134938707596]], [[0.21947013340715263]]], "count": [227]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4206837767412398]], [[0.41939473021220236]], [[0.38986002298618905]]], "std": [[[0.22196730430227304]], [[0.20221430950636804]], [[0.2160873157999323]]], "count": [227]}, "observation.state": {"min": [0.12280689924955368, -0.07724276930093765, 0.10791613906621933, -1.3891959190368652, -0.4973568618297577, 0.214226633310318, -0.6370173692703247, -0.3542649447917938, 0.16282179951667786, 3.936509370803833, -0.8696913123130798, -0.4245817959308624], "max": [0.44872939586639404, 0.06375887989997864, 0.13189102709293365, -0.2832911014556885, 0.8515186905860901, 1.3988877534866333, -0.49851012229919434, -0.22222164273262024, 0.19404424726963043, 4.538528919219971, 0.11053892970085144, 0.5623722076416016], "mean": [0.38398832082748413, -0.0031364664901047945, 0.12380319088697433, -0.7737871408462524, 0.43827423453330994, 1.0067754983901978, -0.5474591255187988, -0.2725546061992645, 0.18345749378204346, 4.36895227432251, -0.21702918410301208, 0.0474495068192482], "std": [0.031382836401462555, 0.03171991929411888, 0.004648938775062561, 0.23559188842773438, 0.29109328985214233, 0.24646025896072388, 0.035154204815626144, 0.02329063042998314, 0.005368794780224562, 0.18984635174274445, 0.1455429047346115, 0.18859127163887024], "count": [1391]}, "action": {"min": [-0.17989808320999146, -0.09145203977823257, 0.12028517574071884, -0.5654133558273315, -0.6080607175827026, -0.6067670583724976, -0.55727618932724, 0.0946459025144577, -0.12176065146923065, 0.08346494287252426, -0.5623503923416138, -0.5650712847709656, 0.6251323223114014, 0.11472353339195251], "max": [-0.12212527543306351, -0.06427881866693497, 0.14826028048992157, 0.5833437442779541, 0.8661487102508545, 0.8264683485031128, 0.5375205874443054, 0.12045424431562424, -0.09297797083854675, 0.11452078074216843, -0.03211038559675217, -0.2962072491645813, 0.8922169208526611, 0.4091803729534149], "mean": [-0.13494767248630524, -0.07521480321884155, 0.13385041058063507, 0.04334016144275665, 0.07993274927139282, 0.09113524854183197, 0.014269586652517319, 0.10986407846212387, -0.11279235780239105, 0.1015620082616806, -0.2959270179271698, -0.4064487814903259, 0.8246156573295593, 0.213606059551239], "std": [0.005476887337863445, 0.006270589306950569, 0.004406149964779615, 0.4622865319252014, 0.5735448598861694, 0.5896794199943542, 0.3046952486038208, 0.005853598937392235, 0.004601533059030771, 0.0049956850707530975, 0.08814547210931778, 0.06043073162436485, 0.05896461382508278, 0.0819084420800209], "count": [1391]}, "timestamp": {"min": [0.0], "max": [46.333333333333336], "mean": [23.166666666666664], "std": [13.384900281868205], "count": [1391]}, "frame_index": {"min": [0], "max": [1390], "mean": [695.0], "std": [401.54700845604617], "count": [1391]}, "episode_index": {"min": [412], "max": [412], "mean": [412.0], "std": [0.0], "count": [1391]}, "index": {"min": [245203], "max": [246593], "mean": [245898.0], "std": [401.54700845604617], "count": [1391]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [1391]}}} +{"episode_index": 413, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40174298202614384]], [[0.38468819444444446]], [[0.3538646949891068]]], "std": [[[0.22240221627510598]], [[0.2157188769849756]], [[0.2194071950224164]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4129087554466231]], [[0.41060570533769064]], [[0.3804616693899782]]], "std": [[[0.22267584092906068]], [[0.20200547962984433]], [[0.2165246129458714]]], "count": [100]}, "observation.state": {"min": [0.41342106461524963, -0.08122769743204117, 0.12515421211719513, -1.0604020357131958, -0.45103707909584045, 0.5884051322937012, -0.5300420522689819, -0.33556047081947327, 0.16424772143363953, 4.413344383239746, -0.3115312159061432, -0.08706597238779068], "max": [0.461641788482666, 0.014796759933233261, 0.13590823113918304, -0.5707760453224182, 0.5697742104530334, 1.2547398805618286, -0.4710172116756439, -0.2276584357023239, 0.19190017879009247, 4.539158344268799, 0.02678075060248375, 0.2158997803926468], "mean": [0.43783336877822876, -0.025250324979424477, 0.1327877938747406, -0.773480236530304, 0.07358602434396744, 0.9792917370796204, -0.5116437077522278, -0.2719557583332062, 0.1804913431406021, 4.52079439163208, -0.06368795782327652, 0.0039692469872534275], "std": [0.012399326078593731, 0.027079517021775246, 0.0027399358805269003, 0.1331898421049118, 0.3215784430503845, 0.21069343388080597, 0.014119303785264492, 0.023456325754523277, 0.005395072977989912, 0.029388844966888428, 0.07974651455879211, 0.07834115624427795], "count": [347]}, "action": {"min": [-0.12808649241924286, -0.095447838306427, 0.1309806853532791, -0.3456965982913971, -0.6204258799552917, -0.6298984289169312, -0.3096301853656769, 0.11323071271181107, -0.12120430171489716, 0.0875203087925911, -0.3264966607093811, -0.4816170036792755, 0.8305495381355286, 0.10348057001829147], "max": [-0.11811769008636475, -0.07033928483724594, 0.13965053856372833, 0.48291322588920593, 0.8415377140045166, 0.7194973826408386, 0.39916756749153137, 0.1258087009191513, -0.09977138787508011, 0.11374109238386154, -0.20831529796123505, -0.3340681195259094, 0.89634108543396, 0.2375061810016632], "mean": [-0.12466000020503998, -0.08343902975320816, 0.13604046404361725, -0.039226237684488297, 0.3826823830604553, -0.1616298407316208, 0.15616999566555023, 0.11751630902290344, -0.11322178691625595, 0.10302005708217621, -0.24213460087776184, -0.3935765326023102, 0.875394880771637, 0.12882934510707855], "std": [0.0029258152935653925, 0.00675128074362874, 0.002568212104961276, 0.3280990421772003, 0.5494482517242432, 0.5561974048614502, 0.287409245967865, 0.0022614377085119486, 0.0041352529078722, 0.005378677975386381, 0.028561940416693687, 0.03873708099126816, 0.02166365087032318, 0.027742134407162666], "count": [347]}, "timestamp": {"min": [0.0], "max": [11.533333333333333], "mean": [5.766666666666667], "std": [3.3389951915043077], "count": [347]}, "frame_index": {"min": [0], "max": [346], "mean": [173.0], "std": [100.16985574512923], "count": [347]}, "episode_index": {"min": [413], "max": [413], "mean": [413.0], "std": [0.0], "count": [347]}, "index": {"min": [246594], "max": [246940], "mean": [246767.0], "std": [100.16985574512923], "count": [347]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [347]}}} +{"episode_index": 414, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40569357570806097]], [[0.3895601770152506]], [[0.3592542020697168]]], "std": [[[0.22038765669247098]], [[0.21458274585879095]], [[0.21806136019069544]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41562670206971675]], [[0.4147835239651416]], [[0.38477247821350763]]], "std": [[[0.22017322875160758]], [[0.2004546031267628]], [[0.21474439885726737]]], "count": [100]}, "observation.state": {"min": [0.39941975474357605, -0.053989630192518234, 0.12517495453357697, -1.4028257131576538, -0.33612579107284546, 0.29154759645462036, -0.5571565628051758, -0.3276523947715759, 0.1615242213010788, 4.160667896270752, -0.5091075897216797, 0.0139174098148942], "max": [0.4548921287059784, 0.05314011871814728, 0.13373304903507233, -0.5181438326835632, 0.7055909037590027, 1.112762689590454, -0.4967493414878845, -0.2304926961660385, 0.1936216503381729, 4.5383195877075195, -0.08977018296718597, 0.39335212111473083], "mean": [0.42527687549591064, 0.005682467482984066, 0.13025057315826416, -0.8182504177093506, 0.1784362643957138, 0.8357430100440979, -0.5344350934028625, -0.26303768157958984, 0.18161141872406006, 4.394479751586914, -0.22058506309986115, 0.20800559222698212], "std": [0.012142946943640709, 0.03239697962999344, 0.002286374568939209, 0.21986794471740723, 0.31268617510795593, 0.23603455722332, 0.014384321868419647, 0.01978447660803795, 0.005673042964190245, 0.09656558185815811, 0.08480148017406464, 0.09269025921821594], "count": [333]}, "action": {"min": [-0.13109365105628967, -0.08905738592147827, 0.12818633019924164, -0.34075742959976196, -0.6325074434280396, -0.6341102123260498, -0.38295552134513855, 0.10930384695529938, -0.12019916623830795, 0.08674086630344391, -0.40867510437965393, -0.5483675599098206, 0.7230360507965088, 0.1211828887462616], "max": [-0.12118780612945557, -0.06692415475845337, 0.1424867957830429, 0.515659511089325, 0.7833458185195923, 0.7883375287055969, 0.4361875355243683, 0.12446184456348419, -0.09598220139741898, 0.11266853660345078, -0.26591596007347107, -0.38443517684936523, 0.8690000176429749, 0.32485154271125793], "mean": [-0.12708471715450287, -0.07743517309427261, 0.13752125203609467, 0.08307228982448578, 0.11330098658800125, 0.07469722628593445, 0.04532022774219513, 0.11237554252147675, -0.11103301495313644, 0.1027369424700737, -0.31633302569389343, -0.46715542674064636, 0.800531268119812, 0.18586485087871552], "std": [0.002402614802122116, 0.006179671734571457, 0.0036755993496626616, 0.34410616755485535, 0.5877413153648376, 0.6337912678718567, 0.32724273204803467, 0.0022468750830739737, 0.004724245984107256, 0.005071951076388359, 0.03150803595781326, 0.04024798050522804, 0.03616254776716232, 0.04882200062274933], "count": [333]}, "timestamp": {"min": [0.0], "max": [11.066666666666666], "mean": [5.533333333333333], "std": [3.2042795457649147], "count": [333]}, "frame_index": {"min": [0], "max": [332], "mean": [166.0], "std": [96.12838637294743], "count": [333]}, "episode_index": {"min": [414], "max": [414], "mean": [414.0], "std": [0.0], "count": [333]}, "index": {"min": [246941], "max": [247273], "mean": [247107.0], "std": [96.12838637294743], "count": [333]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [333]}}} +{"episode_index": 415, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4054612863502889]], [[0.3904115160556976]], [[0.36011193994506013]]], "std": [[[0.21990059320463354]], [[0.21578056254855627]], [[0.21919375597858973]]], "count": [115]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4156924907644217]], [[0.41523761485270433]], [[0.38613677417827036]]], "std": [[[0.2191614543991283]], [[0.20173075575077598]], [[0.21558028006802438]]], "count": [115]}, "observation.state": {"min": [0.3634549677371979, -0.08147483319044113, 0.11613202840089798, -1.5640772581100464, -0.24075351655483246, 0.0755283385515213, -0.6046899557113647, -0.3776107430458069, 0.1584533005952835, 3.654266595840454, -0.6323537230491638, -0.17427773773670197], "max": [0.4408136010169983, 0.05701693892478943, 0.12754975259304047, -0.65674889087677, 0.7792379856109619, 1.339382529258728, -0.5080322623252869, -0.23447762429714203, 0.19992680847644806, 4.5389485359191895, 0.16328062117099762, 0.6678611636161804], "mean": [0.40790295600891113, -0.01179001946002245, 0.12206432223320007, -0.908585786819458, 0.32106146216392517, 0.9710502028465271, -0.5480106472969055, -0.27768468856811523, 0.17998787760734558, 4.230182647705078, -0.20648948848247528, 0.2654813528060913], "std": [0.01404503732919693, 0.034491248428821564, 0.0019800758454948664, 0.24827629327774048, 0.23729205131530762, 0.3276155889034271, 0.023482633754611015, 0.028283458203077316, 0.008681494742631912, 0.19553321599960327, 0.14298789203166962, 0.1721266657114029], "count": [564]}, "action": {"min": [-0.1391260325908661, -0.0879507064819336, 0.12570832669734955, -0.4522773027420044, -0.6243526935577393, -0.6237626075744629, -0.2936214208602905, 0.10300245136022568, -0.12791259586811066, 0.0770706981420517, -0.46600860357284546, -0.6312885880470276, 0.563528299331665, 0.08681868761777878], "max": [-0.12532244622707367, -0.06166784465312958, 0.13376714289188385, 0.5278410315513611, 0.8303730487823486, 0.813879132270813, 0.3277788460254669, 0.12472838908433914, -0.09091094881296158, 0.11645116657018661, -0.1473374366760254, -0.31357327103614807, 0.9286777377128601, 0.47318339347839355], "mean": [-0.13220542669296265, -0.07606248557567596, 0.1304921656847, -0.07942693680524826, 0.3004722595214844, -0.1114858016371727, 0.11614867299795151, 0.11191944032907486, -0.11103016138076782, 0.09936355799436569, -0.29655176401138306, -0.496949702501297, 0.7638425230979919, 0.24766689538955688], "std": [0.002754214219748974, 0.006184650585055351, 0.0019877671729773283, 0.407378613948822, 0.5452856421470642, 0.6005188226699829, 0.2314547747373581, 0.003505270928144455, 0.007097118068486452, 0.007848504930734634, 0.05825861543416977, 0.06915559619665146, 0.06744463741779327, 0.08705724775791168], "count": [564]}, "timestamp": {"min": [0.0], "max": [18.766666666666666], "mean": [9.383333333333333], "std": [5.427083999786693], "count": [564]}, "frame_index": {"min": [0], "max": [563], "mean": [281.5], "std": [162.81251999360083], "count": [564]}, "episode_index": {"min": [415], "max": [415], "mean": [415.0], "std": [0.0], "count": [564]}, "index": {"min": [247274], "max": [247837], "mean": [247555.5], "std": [162.81251999360083], "count": [564]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [564]}}} +{"episode_index": 416, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40853308328381854]], [[0.39314771984551394]], [[0.3624374009704892]]], "std": [[[0.21785603679402296]], [[0.21126188935013776]], [[0.21478030442708423]]], "count": [110]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4164929070112894]], [[0.41585284709843534]], [[0.3866217468805704]]], "std": [[[0.21821763362284513]], [[0.19821080533325758]], [[0.21198771768976984]]], "count": [110]}, "observation.state": {"min": [0.33708956837654114, -0.07028459012508392, 0.11626555025577545, -1.838980793952942, -0.35839754343032837, 0.03309807926416397, -0.6390407085418701, -0.37279176712036133, 0.16662901639938354, 4.143682956695557, -0.4118224084377289, -0.17973919212818146], "max": [0.41769173741340637, 0.06623788177967072, 0.1327063888311386, -0.4372035264968872, 0.8304766416549683, 1.2145841121673584, -0.5341042280197144, -0.24203045666217804, 0.19578774273395538, 4.53936767578125, 0.14374159276485443, 0.4387662708759308], "mean": [0.38847506046295166, 0.004777468275278807, 0.1250457763671875, -0.94097501039505, 0.2369624525308609, 0.7894602417945862, -0.5771931409835815, -0.2945355176925659, 0.1811259537935257, 4.413358688354492, -0.0023197054397314787, 0.0046587674878537655], "std": [0.01843239925801754, 0.039847955107688904, 0.003813402960076928, 0.4052259027957916, 0.40250322222709656, 0.37935829162597656, 0.03198052942752838, 0.03475143387913704, 0.006211296189576387, 0.12424502521753311, 0.1537177562713623, 0.1142348125576973], "count": [529]}, "action": {"min": [-0.14777198433876038, -0.092015340924263, 0.12906549870967865, -0.3801690340042114, -0.6265718936920166, -0.629768431186676, -0.4352791905403137, 0.10429864376783371, -0.12108040601015091, 0.07855372875928879, -0.38163042068481445, -0.633831799030304, 0.6863709092140198, 0.09329438954591751], "max": [-0.12826550006866455, -0.06266175955533981, 0.14152826368808746, 0.5772068500518799, 0.7895393967628479, 0.8163316249847412, 0.4569641947746277, 0.11501877009868622, -0.1009543240070343, 0.11092575639486313, -0.15135367214679718, -0.31283536553382874, 0.9130908846855164, 0.27616360783576965], "mean": [-0.13448001444339752, -0.07665833830833435, 0.1346200406551361, 0.10281350463628769, 0.21364539861679077, 0.06309329718351364, 0.12388946861028671, 0.10908929258584976, -0.11364959180355072, 0.0959734097123146, -0.2245248407125473, -0.41558703780174255, 0.8589528203010559, 0.15982399880886078], "std": [0.004626849666237831, 0.007649946957826614, 0.0035738213919103146, 0.3680468797683716, 0.547095000743866, 0.6398595571517944, 0.28330937027931213, 0.0026587392203509808, 0.004295435734093189, 0.009012002497911453, 0.0631694421172142, 0.05832560360431671, 0.05133805796504021, 0.05920536071062088], "count": [529]}, "timestamp": {"min": [0.0], "max": [17.6], "mean": [8.8], "std": [5.090295778352287], "count": [529]}, "frame_index": {"min": [0], "max": [528], "mean": [264.0], "std": [152.7088733505686], "count": [529]}, "episode_index": {"min": [416], "max": [416], "mean": [416.0], "std": [0.0], "count": [529]}, "index": {"min": [247838], "max": [248366], "mean": [248102.0], "std": [152.7088733505686], "count": [529]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [529]}}} +{"episode_index": 417, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.402104741285403]], [[0.3868217892156863]], [[0.35685946623093684]]], "std": [[[0.21960924309787794]], [[0.21404667459178717]], [[0.21765964204810756]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4126144825708061]], [[0.41233892701525054]], [[0.3832819689542484]]], "std": [[[0.21940663210484043]], [[0.2002172646050934]], [[0.21453684936675713]]], "count": [100]}, "observation.state": {"min": [0.3820822238922119, -0.06704877316951752, 0.11818405985832214, -1.2377997636795044, -0.37397411465644836, 0.5772885680198669, -0.5649024844169617, -0.3411903381347656, 0.16153976321220398, 3.957897663116455, -0.556793749332428, -0.22521819174289703], "max": [0.4445900022983551, 0.03791090101003647, 0.1298273354768753, -0.6353605389595032, 0.8166763782501221, 1.3144581317901611, -0.45297691226005554, -0.24365994334220886, 0.1939457207918167, 4.539158344268799, 0.05233177915215492, 0.2868143916130066], "mean": [0.417476624250412, -0.013595337979495525, 0.12420026957988739, -0.8508145213127136, 0.35465240478515625, 1.0131856203079224, -0.5328121185302734, -0.2758178114891052, 0.1817050278186798, 4.421182155609131, -0.16290819644927979, 0.08048272132873535], "std": [0.013926410116255283, 0.03393062204122543, 0.0027621211484074593, 0.17704328894615173, 0.38213327527046204, 0.22635436058044434, 0.022929968312382698, 0.020691988989710808, 0.005944861099123955, 0.17631925642490387, 0.13905532658100128, 0.12823055684566498], "count": [422]}, "action": {"min": [-0.13614436984062195, -0.0886903628706932, 0.12598232924938202, -0.47278857231140137, -0.606940507888794, -0.6054567694664001, -0.2655155062675476, 0.10711994022130966, -0.12263962626457214, 0.08386337757110596, -0.41742679476737976, -0.5126892328262329, 0.7164239287376404, 0.10446400195360184], "max": [-0.1249314621090889, -0.06480032950639725, 0.13535073399543762, 0.5756600499153137, 0.8370118141174316, 0.7076276540756226, 0.350143700838089, 0.12482704967260361, -0.09688486903905869, 0.11287051439285278, -0.19222654402256012, -0.2809918522834778, 0.9189680814743042, 0.4003060460090637], "mean": [-0.12994132936000824, -0.07652690261602402, 0.13110271096229553, 0.057080794125795364, 0.18334713578224182, 0.02409227192401886, 0.08113044500350952, 0.11335708945989609, -0.11299680918455124, 0.1015932708978653, -0.2828134298324585, -0.4201655685901642, 0.8336555361747742, 0.17999476194381714], "std": [0.0025691650807857513, 0.007283862214535475, 0.002752570668235421, 0.4447965919971466, 0.5918700695037842, 0.5849024653434753, 0.25631558895111084, 0.0029791591223329306, 0.005191223695874214, 0.005791460629552603, 0.04558340832591057, 0.053133413195610046, 0.05369148030877113, 0.09118539839982986], "count": [422]}, "timestamp": {"min": [0.0], "max": [14.033333333333333], "mean": [7.016666666666667], "std": [4.060685492212696], "count": [422]}, "frame_index": {"min": [0], "max": [421], "mean": [210.5], "std": [121.82056476638088], "count": [422]}, "episode_index": {"min": [417], "max": [417], "mean": [417.0], "std": [0.0], "count": [422]}, "index": {"min": [248367], "max": [248788], "mean": [248577.5], "std": [121.82056476638088], "count": [422]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [422]}}} +{"episode_index": 418, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40580130341465515]], [[0.39119348184818487]], [[0.36028792143920274]]], "std": [[[0.22259630365384972]], [[0.2171066665761622]], [[0.22060901011795112]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4153561120817964]], [[0.4156201870187019]], [[0.3855833117625488]]], "std": [[[0.22297789445697944]], [[0.20379197308086783]], [[0.21778072850145772]]], "count": [101]}, "observation.state": {"min": [0.3626132011413574, -0.07308021932840347, 0.11706925183534622, -1.3938090801239014, -0.7463085651397705, 0.05927992984652519, -0.5748493671417236, -0.337522029876709, 0.1621503233909607, 4.1365532875061035, -0.41797104477882385, -0.21910928189754486], "max": [0.4478798806667328, 0.07029230892658234, 0.13184824585914612, -0.3677961528301239, 0.6374092698097229, 1.3332005739212036, -0.4773189425468445, -0.2409956008195877, 0.20000718533992767, 4.537899971008301, 0.028557030484080315, 0.3761309087276459], "mean": [0.414212703704834, 0.0015072781825438142, 0.1262950748205185, -0.7280051708221436, 0.07885732501745224, 0.9263795018196106, -0.5491024255752563, -0.27820801734924316, 0.18197567760944366, 4.377540111541748, -0.2095690816640854, 0.10033267736434937], "std": [0.02056032046675682, 0.0420912504196167, 0.0032277978025376797, 0.28089967370033264, 0.3842407464981079, 0.33449238538742065, 0.018706057220697403, 0.02363591641187668, 0.008271670900285244, 0.09286140650510788, 0.11600659787654877, 0.13141325116157532], "count": [476]}, "action": {"min": [-0.14111703634262085, -0.09235787391662598, 0.1251136064529419, -0.37168338894844055, -0.6230482459068298, -0.6263285875320435, -0.46892207860946655, 0.10429096221923828, -0.1258782297372818, 0.08418061584234238, -0.37509283423423767, -0.5715755224227905, 0.7528901696205139, 0.1261756867170334], "max": [-0.1262415200471878, -0.06345508992671967, 0.14103573560714722, 0.4598885774612427, 0.8676074743270874, 0.8378591537475586, 0.4755588173866272, 0.1292964667081833, -0.10007330775260925, 0.11600001156330109, -0.1980341225862503, -0.2923561632633209, 0.916647732257843, 0.2771371603012085], "mean": [-0.13103382289409637, -0.07720261067152023, 0.13445457816123962, 0.01567082479596138, 0.2617754340171814, 0.0041482956148684025, 0.12677009403705597, 0.11050441116094589, -0.11250334233045578, 0.10005838423967361, -0.30434367060661316, -0.4322774410247803, 0.8171863555908203, 0.2079099416732788], "std": [0.003626582445576787, 0.008062499575316906, 0.004337785299867392, 0.3369165062904358, 0.5787991285324097, 0.589898407459259, 0.34444037079811096, 0.0045017399825155735, 0.005397866014391184, 0.006999280769377947, 0.04761110618710518, 0.0642714872956276, 0.03883950784802437, 0.039815351366996765], "count": [476]}, "timestamp": {"min": [0.0], "max": [15.833333333333334], "mean": [7.916666666666666], "std": [4.5803020278870985], "count": [476]}, "frame_index": {"min": [0], "max": [475], "mean": [237.5], "std": [137.40906083661295], "count": [476]}, "episode_index": {"min": [418], "max": [418], "mean": [418.0], "std": [0.0], "count": [476]}, "index": {"min": [248789], "max": [249264], "mean": [249026.5], "std": [137.40906083661295], "count": [476]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [476]}}} +{"episode_index": 419, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5111482100415924]], [[0.4667644129200502]], [[0.43234633095662506]]], "std": [[[0.24936054995184231]], [[0.22505558118056332]], [[0.23110912075569337]]], "count": [132]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5323138348352809]], [[0.49826606753812636]], [[0.4683186047567175]]], "std": [[[0.2643643936792969]], [[0.21862685849281388]], [[0.23489562029466046]]], "count": [132]}, "observation.state": {"min": [0.33735984563827515, -0.08332829177379608, 0.12342365831136703, -1.0952105522155762, -0.40157467126846313, 0.32389190793037415, -0.5678216814994812, -0.3533613681793213, 0.15848182141780853, 3.9555912017822266, -0.6484768390655518, -0.29154688119888306], "max": [0.4881153404712677, 0.06952004134654999, 0.13425804674625397, -0.39987871050834656, 0.6764873266220093, 1.350827932357788, -0.4682370126247406, -0.23192138969898224, 0.19767645001411438, 4.538528919219971, -0.02842039056122303, 0.412191241979599], "mean": [0.43475839495658875, -0.026223141700029373, 0.12822185456752777, -0.6563011407852173, 0.041732944548130035, 0.9669753313064575, -0.5132877230644226, -0.2797917127609253, 0.17718279361724854, 4.249802589416504, -0.38438671827316284, 0.19611939787864685], "std": [0.02977261133491993, 0.0429348386824131, 0.0031730688642710447, 0.1663234382867813, 0.3054192364215851, 0.2611595094203949, 0.024734724313020706, 0.02452859841287136, 0.007088730577379465, 0.21189212799072266, 0.12824302911758423, 0.1968003660440445], "count": [673]}, "action": {"min": [-0.1420510858297348, -0.09145461767911911, 0.12132755666971207, -0.373420387506485, -0.610146701335907, -0.6076993942260742, -0.4979400634765625, 0.10737694799900055, -0.12522351741790771, 0.08229328691959381, -0.4519899785518646, -0.5281086564064026, 0.6941236257553101, 0.15031583607196808], "max": [-0.12190273404121399, -0.06669987738132477, 0.14599619805812836, 0.4760264456272125, 0.837125837802887, 0.7710757851600647, 0.4491257965564728, 0.12882176041603088, -0.09509821981191635, 0.11656726896762848, -0.22355157136917114, -0.2552086114883423, 0.9274718761444092, 0.38747313618659973], "mean": [-0.1273200660943985, -0.0816304162144661, 0.1325802356004715, -0.09842579066753387, 0.4599737823009491, -0.20158137381076813, 0.20229019224643707, 0.11704219877719879, -0.10987599194049835, 0.0995195209980011, -0.35266852378845215, -0.4421430230140686, 0.7636228203773499, 0.27728959918022156], "std": [0.004245206248015165, 0.007317369803786278, 0.006230433005839586, 0.2961307466030121, 0.48252159357070923, 0.5220194458961487, 0.3227306306362152, 0.0050862692296504974, 0.005538663826882839, 0.005786249414086342, 0.05736983194947243, 0.08204817026853561, 0.06121368706226349, 0.07971348613500595], "count": [673]}, "timestamp": {"min": [0.0], "max": [22.4], "mean": [11.200000000000001], "std": [6.475938370443142], "count": [673]}, "frame_index": {"min": [0], "max": [672], "mean": [336.0], "std": [194.27815111329426], "count": [673]}, "episode_index": {"min": [419], "max": [419], "mean": [419.0], "std": [0.0], "count": [673]}, "index": {"min": [249265], "max": [249937], "mean": [249601.0], "std": [194.27815111329426], "count": [673]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [673]}}} +{"episode_index": 420, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5067672209406638]], [[0.4623771599598445]], [[0.4278474865436371]]], "std": [[[0.24511816315984003]], [[0.22165559831098197]], [[0.22728663815794223]]], "count": [102]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5296567612883935]], [[0.49489887436456065]], [[0.465177103357683]]], "std": [[[0.2603827601515203]], [[0.21597198389914152]], [[0.2316470832591276]]], "count": [102]}, "observation.state": {"min": [0.4375237226486206, -0.10029512643814087, 0.12422865629196167, -1.4615389108657837, -0.724446713924408, 0.30153408646583557, -0.5277484059333801, -0.3432059586048126, 0.15653738379478455, 3.900861978530884, -0.7811508774757385, -0.3670463562011719], "max": [0.5058544278144836, 0.020727820694446564, 0.13243158161640167, -0.5707760453224182, 0.8655922412872314, 1.4028550386428833, -0.44981059432029724, -0.2186228334903717, 0.19580459594726562, 4.5383195877075195, 0.3700116276741028, 0.43322721123695374], "mean": [0.46056821942329407, -0.04351230338215828, 0.12832938134670258, -0.8448511958122253, 0.17980611324310303, 1.0182479619979858, -0.4953591525554657, -0.2780287563800812, 0.17415949702262878, 4.382411003112793, -0.2930043637752533, 0.09137384593486786], "std": [0.018116796389222145, 0.03846363723278046, 0.002220925409346819, 0.2637738585472107, 0.4687441289424896, 0.3275500237941742, 0.01877145655453205, 0.032659705728292465, 0.00846857763826847, 0.16924215853214264, 0.21022465825080872, 0.17919060587882996], "count": [478]}, "action": {"min": [-0.1267547309398651, -0.09371659904718399, 0.11815115809440613, -0.45632097125053406, -0.6101112365722656, -0.6071392893791199, -0.21984849870204926, 0.1121966615319252, -0.12263714522123337, 0.08736377954483032, -0.5002383589744568, -0.4896266460418701, 0.6522823572158813, 0.05204613134264946], "max": [-0.11599153280258179, -0.07021206617355347, 0.1332155168056488, 0.6042394042015076, 0.8908103704452515, 0.7288146615028381, 0.38289475440979004, 0.133687824010849, -0.08871065080165863, 0.11815903335809708, -0.04134943708777428, -0.21727865934371948, 0.9735481142997742, 0.42390140891075134], "mean": [-0.1224786788225174, -0.08254924416542053, 0.1285986453294754, -0.048019684851169586, 0.41879531741142273, -0.12431702762842178, 0.17958427965641022, 0.12149594724178314, -0.10898081213235855, 0.09919561445713043, -0.3176219165325165, -0.40915417671203613, 0.8138514757156372, 0.214237242937088], "std": [0.0029504999984055758, 0.007390992250293493, 0.004583707544952631, 0.40394631028175354, 0.5246145725250244, 0.5340214967727661, 0.22589240968227386, 0.0037622209638357162, 0.006600767839699984, 0.00799272395670414, 0.08730742335319519, 0.07027093321084976, 0.06461610645055771, 0.08198407292366028], "count": [478]}, "timestamp": {"min": [0.0], "max": [15.9], "mean": [7.949999999999999], "std": [4.599547079151744], "count": [478]}, "frame_index": {"min": [0], "max": [477], "mean": [238.5], "std": [137.9864123745523], "count": [478]}, "episode_index": {"min": [420], "max": [420], "mean": [420.0], "std": [0.0], "count": [478]}, "index": {"min": [249938], "max": [250415], "mean": [250176.5], "std": [137.9864123745523], "count": [478]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [478]}}} +{"episode_index": 421, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5164874727668846]], [[0.4704100108932462]], [[0.43528074891067536]]], "std": [[[0.2465516750996469]], [[0.22348298379185988]], [[0.22945368582088196]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5383888316993464]], [[0.5020265495642702]], [[0.47212024509803924]]], "std": [[[0.26130053887243954]], [[0.21703131634027925]], [[0.23321304970863424]]], "count": [100]}, "observation.state": {"min": [0.4209429919719696, -0.1098172590136528, 0.12022571265697479, -1.0090279579162598, -0.2344682365655899, 0.5343191623687744, -0.5305440425872803, -0.34202438592910767, 0.16391976177692413, 4.283755779266357, -0.5475024580955505, -0.280327707529068], "max": [0.48390644788742065, 0.04995064064860344, 0.13681821525096893, -0.6078911423683167, 0.6410984396934509, 1.2593059539794922, -0.4518030285835266, -0.2470579445362091, 0.18813316524028778, 4.53936767578125, -0.0817086324095726, -0.01533656008541584], "mean": [0.45203012228012085, -0.036433685570955276, 0.13132774829864502, -0.7727150321006775, 0.2023581564426422, 0.9024585485458374, -0.4966602027416229, -0.29413238167762756, 0.1731966882944107, 4.476330280303955, -0.26747140288352966, -0.13570255041122437], "std": [0.015030637383460999, 0.04149425029754639, 0.0038686522748321295, 0.11245869100093842, 0.23587727546691895, 0.1910998523235321, 0.025031963363289833, 0.027675313875079155, 0.004934862721711397, 0.0824858769774437, 0.12420463562011719, 0.045973461121320724], "count": [444]}, "action": {"min": [-0.130631223320961, -0.09663638472557068, 0.12403902411460876, -0.3666151165962219, -0.6335578560829163, -0.63411545753479, -0.3889995813369751, 0.11462585628032684, -0.11933808028697968, 0.08723606914281845, -0.40274691581726074, -0.3799779415130615, 0.7958125472068787, 0.1294354945421219], "max": [-0.11914640665054321, -0.06262668967247009, 0.13871081173419952, 0.5038613677024841, 0.8252944946289062, 0.7358760237693787, 0.38352471590042114, 0.12992534041404724, -0.09946879744529724, 0.10767495632171631, -0.21929915249347687, -0.26819178462028503, 0.9132713675498962, 0.32714077830314636], "mean": [-0.12241536378860474, -0.08296065777540207, 0.13312731683254242, 0.009995770640671253, 0.1622328907251358, -0.004176538437604904, 0.05412789061665535, 0.12207724899053574, -0.11059540510177612, 0.09650413691997528, -0.29937684535980225, -0.3287121653556824, 0.8676258325576782, 0.20589809119701385], "std": [0.0024416749365627766, 0.008357281796634197, 0.0042677815072238445, 0.36365020275115967, 0.6029890775680542, 0.6089683771133423, 0.3224184513092041, 0.005562725942581892, 0.0046575479209423065, 0.004509055987000465, 0.04752401262521744, 0.01998056471347809, 0.02937493287026882, 0.06027058884501457], "count": [444]}, "timestamp": {"min": [0.0], "max": [14.766666666666667], "mean": [7.383333333333333], "std": [4.272381155835787], "count": [444]}, "frame_index": {"min": [0], "max": [443], "mean": [221.5], "std": [128.17143467507364], "count": [444]}, "episode_index": {"min": [421], "max": [421], "mean": [421.0], "std": [0.0], "count": [444]}, "index": {"min": [250416], "max": [250859], "mean": [250637.5], "std": [128.17143467507364], "count": [444]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [444]}}} +{"episode_index": 422, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5091171223982374]], [[0.4605978915106532]], [[0.42771501698607883]]], "std": [[[0.24592387440419977]], [[0.22427500856809335]], [[0.22818443676239464]]], "count": [177]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5349740193001243]], [[0.4966997033590586]], [[0.4677691170316212]]], "std": [[[0.26247257268899465]], [[0.21848863648043707]], [[0.23319606653007036]]], "count": [177]}, "observation.state": {"min": [0.44442009925842285, -0.14405986666679382, 0.13375119864940643, -1.4619582891464233, -0.27108681201934814, 0.07410549372434616, -0.5337334871292114, -0.3186785578727722, 0.15111370384693146, 3.2833251953125, -0.5782456994056702, -0.9116120934486389], "max": [0.5385679602622986, 0.02369333989918232, 0.1508025974035263, -0.6255050897598267, 0.749314546585083, 1.3581278324127197, -0.3563423454761505, -0.19197168946266174, 0.18384502828121185, 4.547126293182373, 0.90726637840271, 0.3848205506801605], "mean": [0.5028917193412781, -0.06285647302865982, 0.14576001465320587, -0.8183803558349609, 0.19832690060138702, 0.924763560295105, -0.45923715829849243, -0.25600090622901917, 0.16850680112838745, 4.153663158416748, -0.11341390013694763, -0.15759319067001343], "std": [0.016446564346551895, 0.03545668348670006, 0.004038752987980843, 0.20187748968601227, 0.25459936261177063, 0.2844223082065582, 0.032878924161195755, 0.027181141078472137, 0.004971536807715893, 0.5029597878456116, 0.27142906188964844, 0.2890094220638275], "count": [1000]}, "action": {"min": [-0.1198621466755867, -0.10515695065259933, 0.12559939920902252, -0.43812668323516846, -0.6036537885665894, -0.6039197444915771, -0.34080183506011963, 0.12161766737699509, -0.11136709153652191, 0.08564057946205139, -0.32600024342536926, -0.46182411909103394, 0.596399188041687, -0.12918119132518768], "max": [-0.10401429980993271, -0.07060790061950684, 0.14219319820404053, 0.5473400354385376, 0.8470945954322815, 0.7822533249855042, 0.35658228397369385, 0.14654172956943512, -0.09120457619428635, 0.11699178069829941, 0.15271779894828796, 0.044712893664836884, 0.9997999668121338, 0.6491897702217102], "mean": [-0.10756426304578781, -0.0921882838010788, 0.13728547096252441, -0.05888977274298668, 0.32081475853919983, -0.11784063279628754, 0.13648684322834015, 0.1302192509174347, -0.10465032607316971, 0.10134312510490417, -0.1599651426076889, -0.28768500685691833, 0.8448171019554138, 0.30444350838661194], "std": [0.003159371903166175, 0.008220061659812927, 0.003069357480853796, 0.38362887501716614, 0.5669247508049011, 0.5668835043907166, 0.2667635381221771, 0.004845287650823593, 0.0039306324906647205, 0.0048475745134055614, 0.08635642379522324, 0.10140684247016907, 0.13392765820026398, 0.22264210879802704], "count": [1000]}, "timestamp": {"min": [0.0], "max": [33.3], "mean": [16.65], "std": [9.622499675240316], "count": [1000]}, "frame_index": {"min": [0], "max": [999], "mean": [499.5], "std": [288.6749902572095], "count": [1000]}, "episode_index": {"min": [422], "max": [422], "mean": [422.0], "std": [0.0], "count": [1000]}, "index": {"min": [250860], "max": [251859], "mean": [251359.5], "std": [288.6749902572095], "count": [1000]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [1000]}}} +{"episode_index": 423, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4920835916987878]], [[0.44777096717129394]], [[0.41451854412230227]]], "std": [[[0.22855080172782]], [[0.21084165683753428]], [[0.21441623620850553]]], "count": [117]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5196478129713423]], [[0.48561407882241214]], [[0.4564201720574269]]], "std": [[[0.24903133807652544]], [[0.2081489061641672]], [[0.22180719350559439]]], "count": [117]}, "observation.state": {"min": [0.45917823910713196, -0.1515817940235138, 0.1301734447479248, -1.5215102434158325, -0.48232683539390564, -0.2658426761627197, -0.48199892044067383, -0.2943442463874817, 0.14980964362621307, 3.8230669498443604, -0.7709031105041504, -0.566774308681488], "max": [0.5740230083465576, 0.023222260177135468, 0.14486819505691528, -0.6703787446022034, 0.5520114302635193, 1.4070643186569214, -0.37981945276260376, -0.21177278459072113, 0.17888543009757996, 4.5383195877075195, 0.46961966156959534, 0.3826221227645874], "mean": [0.5432374477386475, -0.06679454445838928, 0.14050546288490295, -0.9348841905593872, 0.03962482884526253, 0.7371377348899841, -0.4430091381072998, -0.250064492225647, 0.16128592193126678, 4.402681827545166, -0.39752888679504395, -0.13528460264205933], "std": [0.025397954508662224, 0.050364721566438675, 0.004463585093617439, 0.27977707982063293, 0.3422251045703888, 0.6055467128753662, 0.03293158859014511, 0.02136310189962387, 0.004538593348115683, 0.21551871299743652, 0.27579203248023987, 0.2787443697452545], "count": [577]}, "action": {"min": [-0.12078885734081268, -0.10568194091320038, 0.1205594539642334, -0.37912988662719727, -0.6288900971412659, -0.6283111572265625, -0.42271625995635986, 0.12713047862052917, -0.10933144390583038, 0.08637165278196335, -0.4624803066253662, -0.4465831220149994, 0.6925524473190308, 0.02288522757589817], "max": [-0.09691256284713745, -0.07089773565530777, 0.13907068967819214, 0.4628942310810089, 0.8942055702209473, 0.8510599136352539, 0.33773568272590637, 0.14583322405815125, -0.09179597347974777, 0.11117171496152878, 0.01690901629626751, -0.10591688007116318, 0.9889439344406128, 0.46773651242256165], "mean": [-0.10457086563110352, -0.08952563256025314, 0.12927421927452087, 0.04904698207974434, 0.290717214345932, 0.15949489176273346, 0.01937740668654442, 0.13317656517028809, -0.09858912229537964, 0.09719814360141754, -0.3224327564239502, -0.2770605981349945, 0.847787618637085, 0.2566121816635132], "std": [0.005278921686112881, 0.010631518438458443, 0.0036909696646034718, 0.31892627477645874, 0.5777469277381897, 0.6062018275260925, 0.2903066575527191, 0.004414932336658239, 0.003153919940814376, 0.004050400108098984, 0.10339498519897461, 0.094354547560215, 0.08068767189979553, 0.09261558204889297], "count": [577]}, "timestamp": {"min": [0.0], "max": [19.2], "mean": [9.600000000000001], "std": [5.552176750308537], "count": [577]}, "frame_index": {"min": [0], "max": [576], "mean": [288.0], "std": [166.5653025092561], "count": [577]}, "episode_index": {"min": [423], "max": [423], "mean": [423.0], "std": [0.0], "count": [577]}, "index": {"min": [251860], "max": [252436], "mean": [252148.0], "std": [166.5653025092561], "count": [577]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [577]}}} +{"episode_index": 424, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.512515770222462]], [[0.4679471302792269]], [[0.43341456796785993]]], "std": [[[0.23330912003735974]], [[0.213523598197001]], [[0.21879096904974563]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5371501344166617]], [[0.5021298270072555]], [[0.47231754812016546]]], "std": [[[0.2460419588651961]], [[0.20520336841886083]], [[0.22017771299523078]]], "count": [109]}, "observation.state": {"min": [0.40798425674438477, -0.1346072256565094, 0.12544716894626617, -1.305110216140747, -0.44215571880340576, 0.27006036043167114, -0.5417651534080505, -0.27735424041748047, 0.16270124912261963, 4.394262313842773, -0.7103731632232666, -0.22973163425922394], "max": [0.5387223958969116, 0.0383356511592865, 0.13703730702400208, -0.6542326211929321, 0.5634889006614685, 1.3315452337265015, -0.43383994698524475, -0.1926821917295456, 0.18865297734737396, 4.539158344268799, 0.36536601185798645, 0.11361458897590637], "mean": [0.4739956855773926, -0.02379700541496277, 0.13208432495594025, -0.7985162734985352, 0.1062769666314125, 0.9080230593681335, -0.487805038690567, -0.2267734408378601, 0.1732209324836731, 4.525389194488525, -0.2368841916322708, -0.05576423183083534], "std": [0.03134922310709953, 0.050365764647722244, 0.003570184111595154, 0.17757932841777802, 0.2790399193763733, 0.25977757573127747, 0.027248594909906387, 0.020663702860474586, 0.007156935054808855, 0.027156293392181396, 0.20641827583312988, 0.08233552426099777], "count": [526]}, "action": {"min": [-0.13104823231697083, -0.0990014299750328, 0.11848670989274979, -0.3469841778278351, -0.6254030466079712, -0.6313892602920532, -0.3791251480579376, 0.11176513135433197, -0.11498706042766571, 0.09320440143346786, -0.5071802139282227, -0.41060757637023926, 0.745798647403717, 0.04436544328927994], "max": [-0.11185310035943985, -0.06811944395303726, 0.13819025456905365, 0.461254745721817, 0.878743052482605, 0.8058305978775024, 0.36908823251724243, 0.13181613385677338, -0.09024287015199661, 0.11886151880025864, -0.0268570426851511, -0.2558225989341736, 0.9385498762130737, 0.2786088287830353], "mean": [-0.11909112334251404, -0.0812700018286705, 0.13304410874843597, 0.0029888248536735773, 0.2642642557621002, -0.04950794577598572, 0.0851486548781395, 0.12218732386827469, -0.1029999628663063, 0.1046702191233635, -0.30348145961761475, -0.33172470331192017, 0.8694654703140259, 0.16942301392555237], "std": [0.005088397767394781, 0.00938597321510315, 0.005123479291796684, 0.3413604199886322, 0.5893762707710266, 0.6014567613601685, 0.3079160451889038, 0.005606433376669884, 0.004235212691128254, 0.006422273814678192, 0.09335530549287796, 0.033750977367162704, 0.04067448154091835, 0.0409153550863266], "count": [526]}, "timestamp": {"min": [0.0], "max": [17.5], "mean": [8.75], "std": [5.061428213020071], "count": [526]}, "frame_index": {"min": [0], "max": [525], "mean": [262.5], "std": [151.84284639060215], "count": [526]}, "episode_index": {"min": [424], "max": [424], "mean": [424.0], "std": [0.0], "count": [526]}, "index": {"min": [252437], "max": [252962], "mean": [252699.5], "std": [151.84284639060215], "count": [526]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [526]}}} +{"episode_index": 425, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5130613344226579]], [[0.4673415413943355]], [[0.43286285675381264]]], "std": [[[0.2393597094233111]], [[0.21743330813074693]], [[0.22324996387308246]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5365771377995643]], [[0.50044924291939]], [[0.4706151388888889]]], "std": [[[0.2525564074965827]], [[0.20992268818016574]], [[0.22603545605882996]]], "count": [100]}, "observation.state": {"min": [0.4198077619075775, -0.09367675334215164, 0.12569734454154968, -1.1759412288665771, -0.7042245268821716, 0.22519949078559875, -0.5189676284790039, -0.32611554861068726, 0.16211532056331635, 4.411037445068359, -0.6027035713195801, -0.1809442639350891], "max": [0.5035607814788818, 0.038883961737155914, 0.13921765983104706, -0.22541669011116028, 0.37629690766334534, 1.2960869073867798, -0.4344037175178528, -0.2212485671043396, 0.18944759666919708, 4.538528919219971, -0.09482572972774506, 0.18241137266159058], "mean": [0.46429452300071716, -0.023905228823423386, 0.13323229551315308, -0.7291224002838135, -0.1210821196436882, 0.7469431161880493, -0.4780091941356659, -0.2587927281856537, 0.17654453217983246, 4.492210865020752, -0.35784250497817993, 0.05944926291704178], "std": [0.020901545882225037, 0.04316285625100136, 0.003746016649529338, 0.2589305341243744, 0.3047895133495331, 0.31232547760009766, 0.028825653716921806, 0.023319870233535767, 0.005265743937343359, 0.052092116326093674, 0.12622667849063873, 0.10388901084661484], "count": [376]}, "action": {"min": [-0.1294017881155014, -0.09855420142412186, 0.1239907518029213, -0.21155552566051483, -0.6599367260932922, -0.6608145236968994, -0.41465455293655396, 0.1151851937174797, -0.11931654065847397, 0.08990976959466934, -0.4527733027935028, -0.45702680945396423, 0.7807016372680664, 0.12600240111351013], "max": [-0.11595918238162994, -0.06770822405815125, 0.14029152691364288, 0.3531862199306488, 0.8717175126075745, 0.8324332237243652, 0.5589230060577393, 0.13071288168430328, -0.09814184904098511, 0.11304466426372528, -0.2389800101518631, -0.29114779829978943, 0.9072291851043701, 0.23035334050655365], "mean": [-0.12112968415021896, -0.08377308398485184, 0.13425397872924805, 0.046654656529426575, 0.20134548842906952, 0.08051321655511856, 0.08371925354003906, 0.12187585234642029, -0.10892923921346664, 0.1034279391169548, -0.3534736931324005, -0.38651004433631897, 0.8266420364379883, 0.18588003516197205], "std": [0.003096092725172639, 0.008780517615377903, 0.004563924856483936, 0.21605561673641205, 0.6039400696754456, 0.6271414756774902, 0.37291064858436584, 0.005215945653617382, 0.005126298405230045, 0.0043036011047661304, 0.05820843204855919, 0.04617301747202873, 0.03659087046980858, 0.030313590541481972], "count": [376]}, "timestamp": {"min": [0.0], "max": [12.5], "mean": [6.25], "std": [3.6180488910154014], "count": [376]}, "frame_index": {"min": [0], "max": [375], "mean": [187.5], "std": [108.54146673046205], "count": [376]}, "episode_index": {"min": [425], "max": [425], "mean": [425.0], "std": [0.0], "count": [376]}, "index": {"min": [252963], "max": [253338], "mean": [253150.5], "std": [108.54146673046205], "count": [376]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [376]}}} +{"episode_index": 426, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5010242982845782]], [[0.4556743712587516]], [[0.4212334142394822]]], "std": [[[0.25084691388256947]], [[0.2271100196208065]], [[0.23245588350489155]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5230304693614232]], [[0.48822826109947753]], [[0.45811878926327815]]], "std": [[[0.2674448510415107]], [[0.22221903343394844]], [[0.2381952485236964]]], "count": [103]}, "observation.state": {"min": [0.446119099855423, -0.10390164703130722, 0.12449440360069275, -0.853647768497467, -0.9370531439781189, 0.7803905606269836, -0.5511791706085205, -0.3644048571586609, 0.16304346919059753, 4.319822311401367, -0.6129513382911682, -0.16206912696361542], "max": [0.4908723533153534, 0.00880391988903284, 0.1413630247116089, -0.47012484073638916, 0.6428747177124023, 1.3634625673294067, -0.46213605999946594, -0.22928021848201752, 0.18738779425621033, 4.53873872756958, 0.1742115467786789, 0.16917167603969574], "mean": [0.46273085474967957, -0.05614526942372322, 0.13550959527492523, -0.5872629880905151, -0.29087331891059875, 1.1016149520874023, -0.49534672498703003, -0.2909851372241974, 0.1751822531223297, 4.491487979888916, -0.17946799099445343, -0.02180505357682705], "std": [0.011939303949475288, 0.03186086565256119, 0.003696790197864175, 0.10000132769346237, 0.4368003010749817, 0.1330261528491974, 0.020182456821203232, 0.03596275672316551, 0.004563917871564627, 0.05535382404923439, 0.18804939091205597, 0.07845765352249146], "count": [483]}, "action": {"min": [-0.12784557044506073, -0.09952453523874283, 0.11726441979408264, -0.43712833523750305, -0.5887013077735901, -0.5879883170127869, -0.3398820459842682, 0.1172640398144722, -0.12124701589345932, 0.08474677056074142, -0.4327552020549774, -0.43069949746131897, 0.7791699171066284, 0.08013512939214706], "max": [-0.1162911206483841, -0.07383159548044205, 0.14055369794368744, 0.5319066643714905, 0.8879229426383972, 0.6522052884101868, 0.4436963200569153, 0.12923692166805267, -0.09716278314590454, 0.11424871534109116, -0.1276441365480423, -0.31975802779197693, 0.9277180433273315, 0.2915997803211212], "mean": [-0.1215849369764328, -0.09039806574583054, 0.13239113986492157, -0.05966126546263695, 0.6298684477806091, -0.289162814617157, 0.31466957926750183, 0.12200508266687393, -0.11203567683696747, 0.09834916144609451, -0.27712908387184143, -0.3810083270072937, 0.8612805008888245, 0.1613025665283203], "std": [0.0029109069146215916, 0.006600634194910526, 0.006646675523370504, 0.241804301738739, 0.42329472303390503, 0.3516285717487335, 0.2361861765384674, 0.002611591015011072, 0.005059069488197565, 0.006175261922180653, 0.07488268613815308, 0.023485666140913963, 0.03749403730034828, 0.05141964927315712], "count": [483]}, "timestamp": {"min": [0.0], "max": [16.066666666666666], "mean": [8.033333333333333], "std": [4.647659705781044], "count": [483]}, "frame_index": {"min": [0], "max": [482], "mean": [241.0], "std": [139.4297911734313], "count": [483]}, "episode_index": {"min": [426], "max": [426], "mean": [426.0], "std": [0.0], "count": [483]}, "index": {"min": [253339], "max": [253821], "mean": [253580.0], "std": [139.4297911734313], "count": [483]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [483]}}} +{"episode_index": 427, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5041753527336861]], [[0.45934067589998967]], [[0.42565500311235605]]], "std": [[[0.2334271872511338]], [[0.21316616017374876]], [[0.21757478907594205]]], "count": [105]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5297730703392468]], [[0.4945703262786596]], [[0.4652592748210395]]], "std": [[[0.25112245488277857]], [[0.20900156074837226]], [[0.22374078969979852]]], "count": [105]}, "observation.state": {"min": [0.4627924859523773, -0.08261779695749283, 0.12477050721645355, -1.2535264492034912, -0.4320445954799652, 0.27232491970062256, -0.5039005875587463, -0.3056889474391937, 0.1555781364440918, 4.461363315582275, -0.6206029653549194, -0.345908522605896], "max": [0.5352240204811096, 0.018511390313506126, 0.1408652365207672, -0.40952447056770325, 0.6442410945892334, 1.2262303829193115, -0.3814026117324829, -0.19546237587928772, 0.18937371671199799, 4.539787292480469, 0.2695838212966919, 0.10453315824270248], "mean": [0.5154620409011841, -0.043122436851263046, 0.13689415156841278, -0.7952577471733093, 0.1415737122297287, 0.8017756938934326, -0.4569874405860901, -0.24832305312156677, 0.169416144490242, 4.5342206954956055, -0.18068480491638184, -0.20162254571914673], "std": [0.015871120616793633, 0.029318295419216156, 0.004406120162457228, 0.2191469520330429, 0.3194856643676758, 0.24418821930885315, 0.027501510456204414, 0.022334109991788864, 0.0059152632020413876, 0.01196238212287426, 0.18534839153289795, 0.08788006752729416], "count": [498]}, "action": {"min": [-0.1221611276268959, -0.09489784389734268, 0.12670843303203583, -0.356883704662323, -0.6313053965568542, -0.6333984136581421, -0.35143569111824036, 0.11946741491556168, -0.1154751256108284, 0.09207478165626526, -0.42312362790107727, -0.4155236482620239, 0.8105211853981018, 0.07898599654436111], "max": [-0.10667404532432556, -0.06698226183652878, 0.13632932305335999, 0.5139634013175964, 0.8215777277946472, 0.767753541469574, 0.43745774030685425, 0.1423424482345581, -0.09497810900211334, 0.12029991298913956, -0.06852689385414124, -0.1938186138868332, 0.9714322686195374, 0.24247615039348602], "mean": [-0.10994888842105865, -0.08458099514245987, 0.13162580132484436, 0.22198201715946198, -0.14789271354675293, 0.3561486601829529, -0.08631163835525513, 0.12896348536014557, -0.10467171669006348, 0.10206529498100281, -0.2546537220478058, -0.28101614117622375, 0.9039033651351929, 0.16974247992038727], "std": [0.0027698250487446785, 0.00776555435732007, 0.0030956545379012823, 0.28417155146598816, 0.5971066355705261, 0.5045880675315857, 0.32040825486183167, 0.004896120168268681, 0.004262799862772226, 0.00500574940815568, 0.07757119089365005, 0.03970932215452194, 0.036383386701345444, 0.037546273320913315], "count": [498]}, "timestamp": {"min": [0.0], "max": [16.566666666666666], "mean": [8.283333333333333], "std": [4.791997573115072], "count": [498]}, "frame_index": {"min": [0], "max": [497], "mean": [248.5], "std": [143.75992719345217], "count": [498]}, "episode_index": {"min": [427], "max": [427], "mean": [427.0], "std": [0.0], "count": [498]}, "index": {"min": [253822], "max": [254319], "mean": [254070.5], "std": [143.75992719345217], "count": [498]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [498]}}} +{"episode_index": 428, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.601896014471028]], [[0.5546320731146689]], [[0.5150617267294277]]], "std": [[[0.2828795662700529]], [[0.279283053716291]], [[0.28522228641955866]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6209038870900042]], [[0.581995335392057]], [[0.5466571950390757]]], "std": [[[0.25125772938807733]], [[0.2415771086094202]], [[0.2526749261864793]]], "count": [109]}, "observation.state": {"min": [0.38761940598487854, -0.1435038149356842, 0.12775975465774536, -1.0048341751098633, -0.5033688545227051, 0.4966088831424713, -0.5420895218849182, -0.35615700483322144, 0.16404549777507782, 4.288578510284424, -0.5684078335762024, -0.5018808245658875], "max": [0.48369792103767395, -0.02214108034968376, 0.14021839201450348, -0.42000895738601685, 0.8558910489082336, 1.4001418352127075, -0.4420955777168274, -0.2500775456428528, 0.18721149861812592, 4.539158344268799, 0.2501814365386963, 0.03192107006907463], "mean": [0.43519729375839233, -0.079841248691082, 0.13525260984897614, -0.6234828233718872, 0.14272795617580414, 1.0503547191619873, -0.4983755946159363, -0.2956896126270294, 0.17613421380519867, 4.519164562225342, -0.005603710189461708, -0.2947787642478943], "std": [0.021193524822592735, 0.034865207970142365, 0.003496322548016906, 0.12791916728019714, 0.37501034140586853, 0.22261862456798553, 0.026235587894916534, 0.028506768867373466, 0.003924264572560787, 0.05250418186187744, 0.1905325949192047, 0.13033229112625122], "count": [526]}, "action": {"min": [-0.13345064222812653, -0.10370849817991257, 0.12006428092718124, -0.4212254583835602, -0.5981391072273254, -0.5961295962333679, -0.4500846564769745, 0.11537060141563416, -0.12169218808412552, 0.08776616305112839, -0.3798273801803589, -0.3947239816188812, 0.7849196791648865, 0.08031142503023148], "max": [-0.11679768562316895, -0.0778050497174263, 0.13804584741592407, 0.5587430596351624, 0.8845477104187012, 0.6997894048690796, 0.4411812424659729, 0.1322031170129776, -0.1051497831940651, 0.10856816172599792, -0.09096068143844604, -0.15821179747581482, 0.970182478427887, 0.3164670169353485], "mean": [-0.12415654212236404, -0.09223532676696777, 0.13286927342414856, -0.06846152991056442, 0.404078871011734, -0.1528949737548828, 0.16529132425785065, 0.1224551871418953, -0.11380382627248764, 0.09863056987524033, -0.19096283614635468, -0.26853451132774353, 0.9265016913414001, 0.14137472212314606], "std": [0.004195681773126125, 0.00789109617471695, 0.00430626654997468, 0.35679537057876587, 0.5418552160263062, 0.4966535270214081, 0.33728379011154175, 0.004050739109516144, 0.0037722066044807434, 0.004134757909923792, 0.06639833003282547, 0.0647568479180336, 0.04243006929755211, 0.05126026272773743], "count": [526]}, "timestamp": {"min": [0.0], "max": [17.5], "mean": [8.75], "std": [5.061428213020071], "count": [526]}, "frame_index": {"min": [0], "max": [525], "mean": [262.5], "std": [151.84284639060215], "count": [526]}, "episode_index": {"min": [428], "max": [428], "mean": [428.0], "std": [0.0], "count": [526]}, "index": {"min": [254320], "max": [254845], "mean": [254582.5], "std": [151.84284639060215], "count": [526]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [526]}}} +{"episode_index": 429, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4237411932910419]], [[0.38645477300397285]], [[0.34123771706394973]]], "std": [[[0.22399840525817666]], [[0.2223920178911781]], [[0.22271269650194053]]], "count": [136]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43059638520440857]], [[0.4087432237600923]], [[0.3650011133538383]]], "std": [[[0.2041419251204547]], [[0.196521252874836]], [[0.20453376243853472]]], "count": [136]}, "observation.state": {"min": [0.3646906018257141, -0.11226537078619003, 0.11601276695728302, -1.5957404375076294, -0.5783823132514954, 0.0866166204214096, -0.5698063969612122, -0.363254189491272, 0.16451993584632874, 4.4343132972717285, -0.5222247242927551, -0.49735942482948303], "max": [0.46745702624320984, 0.009352229535579681, 0.14468541741371155, -0.3852004408836365, 0.7468551397323608, 1.3993873596191406, -0.4715423583984375, -0.2430189549922943, 0.18708965182304382, 4.53936767578125, 0.14852388203144073, -0.058731600642204285], "mean": [0.4254636764526367, -0.049372583627700806, 0.13434149324893951, -0.7125368118286133, 0.2662002146244049, 0.9513886570930481, -0.5357324481010437, -0.2859655022621155, 0.177323117852211, 4.533373832702637, 0.003321682335808873, -0.346420556306839], "std": [0.022601576521992683, 0.03099597990512848, 0.006113338749855757, 0.27620863914489746, 0.3560285270214081, 0.2965201139450073, 0.02451186068356037, 0.03217554837465286, 0.003229313064366579, 0.01574922725558281, 0.1205066666007042, 0.10894729942083359], "count": [702]}, "action": {"min": [-0.13719050586223602, -0.09979195147752762, 0.12491469085216522, -0.5804732441902161, -0.5857172012329102, -0.5997085571289062, -0.4219553768634796, 0.10994764417409897, -0.12215673178434372, 0.08477675169706345, -0.4038192629814148, -0.37767139077186584, 0.8265377879142761, 0.10877616703510284], "max": [-0.11463171243667603, -0.07165230065584183, 0.14609356224536896, 0.541027307510376, 0.8816347718238831, 0.8502348065376282, 0.4796511232852936, 0.12450546771287918, -0.10171481966972351, 0.10893608629703522, -0.13319844007492065, -0.16359592974185944, 0.9660573601722717, 0.27929189801216125], "mean": [-0.12516623735427856, -0.08688037842512131, 0.1356687694787979, 0.006546442862600088, 0.23744215071201324, 0.004491343162953854, 0.09774328023195267, 0.1164388507604599, -0.11204469949007034, 0.09787765145301819, -0.2039393037557602, -0.2425573617219925, 0.9330765008926392, 0.14581027626991272], "std": [0.004928890150040388, 0.006961463950574398, 0.005289979744702578, 0.40076664090156555, 0.5690435767173767, 0.5753692984580994, 0.3442821800708771, 0.00401551928371191, 0.003882414661347866, 0.004749546758830547, 0.048809926956892014, 0.06037268042564392, 0.030611585825681686, 0.02681027166545391], "count": [702]}, "timestamp": {"min": [0.0], "max": [23.366666666666667], "mean": [11.683333333333332], "std": [6.754991295879471], "count": [702]}, "frame_index": {"min": [0], "max": [701], "mean": [350.5], "std": [202.6497388763841], "count": [702]}, "episode_index": {"min": [429], "max": [429], "mean": [429.0], "std": [0.0], "count": [702]}, "index": {"min": [254846], "max": [255547], "mean": [255196.5], "std": [202.6497388763841], "count": [702]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [702]}}} +{"episode_index": 430, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41945004530819213]], [[0.38260365212948505]], [[0.3373811816762103]]], "std": [[[0.22579511973814428]], [[0.2245640307123357]], [[0.22506606258973266]]], "count": [113]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4252119869088245]], [[0.4039919264657682]], [[0.3598382377041279]]], "std": [[[0.2048450145086606]], [[0.1983604411347388]], [[0.20636701017850745]]], "count": [113]}, "observation.state": {"min": [0.38424456119537354, -0.09374625235795975, 0.11907072365283966, -1.3430640697479248, -0.46948301792144775, 0.2639983594417572, -0.5811974406242371, -0.3772864043712616, 0.16285420954227448, 4.4796061515808105, -0.3875011205673218, -0.38000190258026123], "max": [0.4654645621776581, 0.0017144499579444528, 0.13643841445446014, -0.7035097479820251, 0.7191178798675537, 1.3615065813064575, -0.47243818640708923, -0.257352352142334, 0.18893945217132568, 4.53873872756958, 0.029650120064616203, -0.06282593309879303], "mean": [0.4226902723312378, -0.04223078116774559, 0.12974558770656586, -0.9633030295372009, 0.33240726590156555, 0.721463143825531, -0.5264583826065063, -0.29708853363990784, 0.1764916628599167, 4.526887893676758, -0.09802931547164917, -0.2743854820728302], "std": [0.020124541595578194, 0.02585592120885849, 0.0036600755993276834, 0.15241938829421997, 0.2776815891265869, 0.2353523075580597, 0.03118688054382801, 0.022807426750659943, 0.003697737120091915, 0.015774551779031754, 0.08252409100532532, 0.07608570903539658], "count": [547]}, "action": {"min": [-0.13253551721572876, -0.0970873311161995, 0.12518846988677979, -0.33267727494239807, -0.6493966579437256, -0.6496663689613342, -0.36907869577407837, 0.10900840908288956, -0.12055458873510361, 0.08363547921180725, -0.3491947054862976, -0.38002800941467285, 0.8557341694831848, 0.12707266211509705], "max": [-0.11747857928276062, -0.07301870733499527, 0.13693192601203918, 0.5355867147445679, 0.8615939021110535, 0.8009325265884399, 0.3405986428260803, 0.1268823891878128, -0.10306302458047867, 0.11108319461345673, -0.17905333638191223, -0.21433739364147186, 0.9404973387718201, 0.25187429785728455], "mean": [-0.1267540156841278, -0.08350697159767151, 0.13278530538082123, 0.314087837934494, -0.28684017062187195, 0.5132962465286255, -0.1696201115846634, 0.11761180311441422, -0.11289495974779129, 0.09645489603281021, -0.24407526850700378, -0.2782934904098511, 0.9122855067253113, 0.1657201498746872], "std": [0.0037627932615578175, 0.006092533469200134, 0.002946531865745783, 0.22681587934494019, 0.4721909761428833, 0.4541143476963043, 0.2149370014667511, 0.0047750030644237995, 0.0034915495198220015, 0.003952999599277973, 0.02868310548365116, 0.04070688784122467, 0.0199507437646389, 0.019328560680150986], "count": [547]}, "timestamp": {"min": [0.0], "max": [18.2], "mean": [9.100000000000001], "std": [5.2635011583967986], "count": [547]}, "frame_index": {"min": [0], "max": [546], "mean": [273.0], "std": [157.90503475190397], "count": [547]}, "episode_index": {"min": [430], "max": [430], "mean": [430.0], "std": [0.0], "count": [547]}, "index": {"min": [255548], "max": [256094], "mean": [255821.0], "std": [157.90503475190397], "count": [547]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [547]}}} +{"episode_index": 431, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4035268736383442]], [[0.36735286492374725]], [[0.3247671977124183]]], "std": [[[0.24330722336250776]], [[0.23786233579950664]], [[0.2364480779545004]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41758370642701526]], [[0.39690721677559915]], [[0.35355025326797385]]], "std": [[[0.2282498644499999]], [[0.21526431503620613]], [[0.22305569520453783]]], "count": [100]}, "observation.state": {"min": [0.4463430643081665, -0.11638931185007095, 0.13393527269363403, -1.2916899919509888, -0.5899963974952698, -0.12531693279743195, -0.5205122232437134, -0.2551359236240387, 0.16799010336399078, 4.438297271728516, -0.3250582218170166, -0.5593962073326111], "max": [0.5483680963516235, -0.00532869016751647, 0.1453983634710312, -0.4013465642929077, 0.6501164436340332, 1.3880536556243896, -0.48821574449539185, -0.20360985398292542, 0.1845579892396927, 4.53936767578125, 0.2712234556674957, -0.5003482699394226], "mean": [0.5037940740585327, -0.06382442265748978, 0.14131496846675873, -0.7507128715515137, 0.14042523503303528, 0.6566276550292969, -0.5120981931686401, -0.25258544087409973, 0.17071747779846191, 4.536456108093262, -0.021658074110746384, -0.5145026445388794], "std": [0.025924932211637497, 0.033212095499038696, 0.0037401674780994654, 0.3258237838745117, 0.45212459564208984, 0.4955289661884308, 0.005238426383584738, 0.007787581533193588, 0.001944066840223968, 0.010231529362499714, 0.05516268312931061, 0.005237927194684744], "count": [462]}, "action": {"min": [-0.12057777494192123, -0.10046904534101486, 0.12070673704147339, -0.3195546269416809, -0.5918459892272949, -0.5908851623535156, -0.4404013454914093, 0.12045928835868835, -0.10885964334011078, 0.09861043840646744, -0.2687526047229767, -0.1502016931772232, 0.9060924649238586, 0.0874861404299736], "max": [-0.10688219219446182, -0.07708245515823364, 0.13845530152320862, 0.45473161339759827, 0.8821613788604736, 0.8238583207130432, 0.4590749442577362, 0.12274497747421265, -0.1011122614145279, 0.11584790050983429, -0.062459927052259445, -0.10841825604438782, 0.988276481628418, 0.29397329688072205], "mean": [-0.10973571240901947, -0.09041831642389297, 0.13305224478244781, 0.1386450082063675, 0.16343478858470917, 0.24685914814472198, 0.0083145871758461, 0.12192794680595398, -0.10474852472543716, 0.09945930540561676, -0.19008883833885193, -0.14708800613880157, 0.9550866484642029, 0.17090243101119995], "std": [0.0033631364349275827, 0.007414492778480053, 0.005313546396791935, 0.3143653869628906, 0.5664960145950317, 0.5689730048179626, 0.38676148653030396, 0.0006414208910427988, 0.0006711999885737896, 0.002365367254242301, 0.020602136850357056, 0.004214509855955839, 0.007327914237976074, 0.018366964533925056], "count": [462]}, "timestamp": {"min": [0.0], "max": [15.366666666666667], "mean": [7.683333333333333], "std": [4.445586658782027], "count": [462]}, "frame_index": {"min": [0], "max": [461], "mean": [230.5], "std": [133.3675997634608], "count": [462]}, "episode_index": {"min": [431], "max": [431], "mean": [431.0], "std": [0.0], "count": [462]}, "index": {"min": [256095], "max": [256556], "mean": [256325.5], "std": [133.3675997634608], "count": [462]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [462]}}} +{"episode_index": 432, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.410189644311831]], [[0.3724438097944492]], [[0.3277480344794923]]], "std": [[[0.23474193810270355]], [[0.2306704463243032]], [[0.22976817608366504]]], "count": [115]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.422376745287487]], [[0.39912996353130625]], [[0.3547385857724732]]], "std": [[[0.21809993431489402]], [[0.2070083113335344]], [[0.21524572244974052]]], "count": [115]}, "observation.state": {"min": [0.42648792266845703, -0.11294496804475784, 0.1294708549976349, -1.2751245498657227, -0.5756495594978333, -0.03565967082977295, -0.4783460795879364, -0.33689650893211365, 0.15950718522071838, 4.036111831665039, -0.6557185649871826, -0.4725815951824188], "max": [0.5164114236831665, 0.002224150113761425, 0.14931705594062805, -0.4950779676437378, 0.6318071484565735, 1.4014753103256226, -0.4177071750164032, -0.20052847266197205, 0.18313206732273102, 4.540416240692139, -0.052878331393003464, 0.03364522010087967], "mean": [0.4902702271938324, -0.054083291441202164, 0.14167805016040802, -0.8489904403686523, 0.240462988615036, 0.6227688193321228, -0.44727540016174316, -0.2592892646789551, 0.17140531539916992, 4.444239616394043, -0.3591693937778473, -0.2915039360523224], "std": [0.02158796414732933, 0.04192954674363136, 0.005430422257632017, 0.24066707491874695, 0.37723788619041443, 0.4881036877632141, 0.015239926055073738, 0.03185819089412689, 0.0047814627178013325, 0.11395910382270813, 0.11942744255065918, 0.07667765021324158], "count": [565]}, "action": {"min": [-0.12566179037094116, -0.10443414747714996, 0.1279268115758896, -0.393746018409729, -0.6123339533805847, -0.6102918386459351, -0.42170029878616333, 0.1213303878903389, -0.11367166042327881, 0.08908405154943466, -0.42897796630859375, -0.36547017097473145, 0.7885870337486267, 0.16019253432750702], "max": [-0.10463552922010422, -0.07478632777929306, 0.1391468644142151, 0.4653136730194092, 0.8800439238548279, 0.809979259967804, 0.40617674589157104, 0.13402515649795532, -0.09855229407548904, 0.11593285948038101, -0.17977918684482574, -0.13958556950092316, 0.957952082157135, 0.43670764565467834], "mean": [-0.11125501990318298, -0.08908423036336899, 0.1354924589395523, 0.13912495970726013, 0.14519087970256805, 0.2661551833152771, -0.038193363696336746, 0.12852843105793, -0.10662870109081268, 0.10237566381692886, -0.290000855922699, -0.2352071851491928, 0.8858374953269958, 0.2618227005004883], "std": [0.004598833154886961, 0.010507139377295971, 0.0025738964322954416, 0.3376975655555725, 0.5417661070823669, 0.5987865328788757, 0.34809619188308716, 0.0031995095778256655, 0.003907433710992336, 0.005847445223480463, 0.04461668059229851, 0.03193255886435509, 0.031223369762301445, 0.05772215873003006], "count": [565]}, "timestamp": {"min": [0.0], "max": [18.8], "mean": [9.4], "std": [5.436706519371611], "count": [565]}, "frame_index": {"min": [0], "max": [564], "mean": [282.0], "std": [163.10119558114832], "count": [565]}, "episode_index": {"min": [432], "max": [432], "mean": [432.0], "std": [0.0], "count": [565]}, "index": {"min": [256557], "max": [257121], "mean": [256839.0], "std": [163.10119558114832], "count": [565]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [565]}}} +{"episode_index": 433, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4061678267973856]], [[0.3703161165577342]], [[0.3279054302832244]]], "std": [[[0.24066077038540057]], [[0.23583637869905658]], [[0.2346598684801956]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4192668137254902]], [[0.39837965686274507]], [[0.35615460784313724]]], "std": [[[0.2259941811688695]], [[0.21325351550047492]], [[0.22149120679318324]]], "count": [100]}, "observation.state": {"min": [0.4570699632167816, -0.09141398966312408, 0.12409903109073639, -1.0855648517608643, -0.515802800655365, 0.06160325929522514, -0.4643138647079468, -0.2614608407020569, 0.16601327061653137, 4.203235149383545, -0.7232170104980469, -0.4214983880519867], "max": [0.5299416780471802, -0.007205309811979532, 0.14213041961193085, -0.4688667058944702, 0.4347773492336273, 1.3232117891311646, -0.4100925624370575, -0.21205079555511475, 0.18066005408763885, 4.463250637054443, -0.2452625185251236, -0.1301814466714859], "mean": [0.505659818649292, -0.05306918919086456, 0.13890524208545685, -0.7920212149620056, 0.07636623084545135, 0.5940942168235779, -0.44643816351890564, -0.2569896876811981, 0.17042702436447144, 4.322442531585693, -0.46520131826400757, -0.2788829505443573], "std": [0.019424760714173317, 0.03036544844508171, 0.004627477377653122, 0.1801171749830246, 0.30301254987716675, 0.45476576685905457, 0.012867397628724575, 0.011375653557479382, 0.0026950817555189133, 0.03077320195734501, 0.07171843200922012, 0.040254488587379456], "count": [201]}, "action": {"min": [-0.12438225746154785, -0.0973915159702301, 0.1287894994020462, -0.2893577814102173, -0.6354862451553345, -0.6313701868057251, -0.46814683079719543, 0.12651629745960236, -0.11033943295478821, 0.09803951531648636, -0.39898258447647095, -0.24770323932170868, 0.7803670167922974, 0.24002580344676971], "max": [-0.10702004283666611, -0.07504070550203323, 0.1387738138437271, 0.32870957255363464, 0.8574129939079285, 0.8306753039360046, 0.4148785471916199, 0.1315293163061142, -0.09895306080579758, 0.11609261482954025, -0.2081892043352127, -0.1685102880001068, 0.9305140376091003, 0.4135575592517853], "mean": [-0.1109294444322586, -0.08784468472003937, 0.1330500692129135, 0.1184210479259491, 0.030433209612965584, 0.34629151225090027, -0.10430741310119629, 0.12844136357307434, -0.10496830940246582, 0.10206606984138489, -0.29831749200820923, -0.22997227311134338, 0.8620685338973999, 0.33577656745910645], "std": [0.004150837194174528, 0.007375510409474373, 0.003069916507229209, 0.2522791624069214, 0.5719002485275269, 0.5808270573616028, 0.3552151322364807, 0.0011776868486776948, 0.0014792593428865075, 0.0038154812064021826, 0.031202703714370728, 0.01460355706512928, 0.021927006542682648, 0.0233222134411335], "count": [201]}, "timestamp": {"min": [0.0], "max": [6.666666666666667], "mean": [3.3333333333333335], "std": [1.9340994650588013], "count": [201]}, "frame_index": {"min": [0], "max": [200], "mean": [100.0], "std": [58.02298395176403], "count": [201]}, "episode_index": {"min": [433], "max": [433], "mean": [433.0], "std": [0.0], "count": [201]}, "index": {"min": [257122], "max": [257322], "mean": [257222.0], "std": [58.02298395176403], "count": [201]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [201]}}} +{"episode_index": 434, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4235097086056645]], [[0.38778287581699344]], [[0.34524355119825706]]], "std": [[[0.24827646628433464]], [[0.24292512915955863]], [[0.24250165796921364]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43257445806100214]], [[0.4120220588235294]], [[0.3694278159041395]]], "std": [[[0.23515622143436798]], [[0.22158984181407962]], [[0.2308817069378288]]], "count": [100]}, "observation.state": {"min": [0.4234220087528229, -0.08902765810489655, 0.12469532340765, -1.474329948425293, -0.22749976813793182, -0.17156052589416504, -0.5150136351585388, -0.30361923575401306, 0.1573268324136734, 3.6106512546539307, -0.9798203110694885, -0.350730836391449], "max": [0.5371392369270325, 0.009190049953758717, 0.14129690825939178, -0.6089395880699158, 0.4625145494937897, 1.3957966566085815, -0.40574467182159424, -0.23684076964855194, 0.1856326162815094, 3.868569850921631, -0.5043253302574158, 0.38313230872154236], "mean": [0.49801105260849, -0.048316966742277145, 0.1334715634584427, -0.9186176657676697, 0.18422293663024902, 0.6146692037582397, -0.46884700655937195, -0.2814597189426422, 0.17112141847610474, 3.809230327606201, -0.7413970232009888, 0.09431532770395279], "std": [0.028409572318196297, 0.03643381595611572, 0.004757669288665056, 0.2900274991989136, 0.2630690336227417, 0.5738993883132935, 0.02274172008037567, 0.01567748747766018, 0.00484912283718586, 0.05406772717833519, 0.08201899379491806, 0.16795234382152557], "count": [380]}, "action": {"min": [-0.12889689207077026, -0.09226222336292267, 0.12297426909208298, -0.3604234457015991, -0.613619863986969, -0.6202195286750793, -0.5032636523246765, 0.1219136193394661, -0.11264867335557938, 0.08849193155765533, -0.4747937023639679, -0.3370758295059204, 0.6153649687767029, 0.5133039355278015], "max": [-0.10847051441669464, -0.07292835414409637, 0.1350068300962448, 0.4107794463634491, 0.8406617045402527, 0.8769904375076294, 0.3279501795768738, 0.13099096715450287, -0.09490706771612167, 0.11734139174222946, -0.14443710446357727, -0.15006671845912933, 0.8164448738098145, 0.5653941035270691], "mean": [-0.11407875269651413, -0.08438406139612198, 0.12987802922725677, 0.10505720227956772, 0.11129693686962128, 0.3226304352283478, -0.0578935481607914, 0.12573477625846863, -0.10421035438776016, 0.09977427870035172, -0.35085657238960266, -0.29318270087242126, 0.7089431881904602, 0.5275998115539551], "std": [0.005356197711080313, 0.007381606847047806, 0.0038838814944028854, 0.3235923647880554, 0.5562276840209961, 0.5970261693000793, 0.3139946162700653, 0.0016416370635852218, 0.0031948566902428865, 0.0059384871274232864, 0.07301788777112961, 0.05006306990981102, 0.04323270916938782, 0.016552451997995377], "count": [380]}, "timestamp": {"min": [0.0], "max": [12.633333333333333], "mean": [6.3166666666666655], "std": [3.6565390436555956], "count": [380]}, "frame_index": {"min": [0], "max": [379], "mean": [189.5], "std": [109.69617130966787], "count": [380]}, "episode_index": {"min": [434], "max": [434], "mean": [434.0], "std": [0.0], "count": [380]}, "index": {"min": [257323], "max": [257702], "mean": [257512.5], "std": [109.69617130966787], "count": [380]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [380]}}} +{"episode_index": 435, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3954362564746281]], [[0.3599717136302644]], [[0.31637505951608014]]], "std": [[[0.24284005465795439]], [[0.2378227280132502]], [[0.23654236656678954]]], "count": [151]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4057469863221227]], [[0.38591942244153]], [[0.3418460932202167]]], "std": [[[0.22675082247564307]], [[0.21521876894556322]], [[0.2229029393539338]]], "count": [151]}, "observation.state": {"min": [0.377409964799881, -0.13695493340492249, 0.1160944402217865, -1.279528021812439, -0.535615086555481, -0.25892969965934753, -0.5205585360527039, -0.35448116064071655, 0.16007496416568756, 4.359873294830322, -0.5968282222747803, -0.44644004106521606], "max": [0.5358340740203857, 0.011321529746055603, 0.1390504390001297, -0.16607443988323212, 0.5414904356002808, 1.367628812789917, -0.44072863459587097, -0.24922031164169312, 0.19030573964118958, 4.5383195877075195, 0.2546904385089874, -0.1749913990497589], "mean": [0.4913364052772522, -0.06959225982427597, 0.13063538074493408, -0.6423572301864624, 0.04750920459628105, 0.6842892169952393, -0.4936102330684662, -0.30256351828575134, 0.16864939033985138, 4.450891017913818, -0.28893810510635376, -0.2739030718803406], "std": [0.031833771616220474, 0.041596561670303345, 0.004792077001184225, 0.2734568417072296, 0.2674832344055176, 0.39331576228141785, 0.018305962905287743, 0.022921595722436905, 0.0066275629214942455, 0.05789421871304512, 0.1609955132007599, 0.05648350343108177], "count": [808]}, "action": {"min": [-0.13794013857841492, -0.10014746338129044, 0.11663128435611725, -0.3198593854904175, -0.6484421491622925, -0.6484416127204895, -0.5340103507041931, 0.11742854863405228, -0.12109627574682236, 0.08363602310419083, -0.39099419116973877, -0.32746490836143494, 0.8244454860687256, 0.06508421152830124], "max": [-0.11054487526416779, -0.07112625241279602, 0.1324489563703537, 0.3755425214767456, 0.854181706905365, 0.8948950171470642, 0.5826836824417114, 0.13474413752555847, -0.10063165426254272, 0.11393466591835022, -0.05889026075601578, -0.18511715531349182, 0.9653354287147522, 0.33457139134407043], "mean": [-0.11743216216564178, -0.0870642140507698, 0.12649676203727722, 0.04788743704557419, 0.1301809847354889, 0.15028101205825806, 0.017269568517804146, 0.12462354451417923, -0.10844400525093079, 0.09314236789941788, -0.28359103202819824, -0.2710336446762085, 0.8829648494720459, 0.240815669298172], "std": [0.005601661279797554, 0.008029964752495289, 0.004745543468743563, 0.26983726024627686, 0.5885626673698425, 0.6022720336914062, 0.4194367527961731, 0.0039140027947723866, 0.0035878242924809456, 0.0065543255768716335, 0.059496574103832245, 0.028260812163352966, 0.03244125843048096, 0.055732354521751404], "count": [808]}, "timestamp": {"min": [0.0], "max": [26.9], "mean": [13.450000000000001], "std": [7.774977670564578], "count": [808]}, "frame_index": {"min": [0], "max": [807], "mean": [403.5], "std": [233.2493301169373], "count": [808]}, "episode_index": {"min": [435], "max": [435], "mean": [435.0], "std": [0.0], "count": [808]}, "index": {"min": [257703], "max": [258510], "mean": [258106.5], "std": [233.2493301169373], "count": [808]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [808]}}} +{"episode_index": 436, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4168755610021786]], [[0.38095870098039214]], [[0.3368817864923747]]], "std": [[[0.23481853382426982]], [[0.23218197566572163]], [[0.23264559267083004]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42592520969498915]], [[0.4051269607843137]], [[0.3617821868191721]]], "std": [[[0.2155705750438906]], [[0.20728569642786432]], [[0.21560524792377872]]], "count": [100]}, "observation.state": {"min": [0.39403700828552246, -0.13617494702339172, 0.1151299998164177, -1.3636137247085571, -0.6356329917907715, -0.03850854933261871, -0.5386683344841003, -0.30353429913520813, 0.1592414528131485, 4.476880073547363, -0.6721149682998657, -0.37377190589904785], "max": [0.5176393389701843, 0.006340359803289175, 0.13505657017230988, -0.3711512088775635, 0.5399874448776245, 1.397727608680725, -0.4908723533153534, -0.2703728675842285, 0.18563002347946167, 4.53936767578125, -0.03238284960389137, -0.20753119885921478], "mean": [0.45857223868370056, -0.05493132770061493, 0.1267492026090622, -0.8845370411872864, 0.15940149128437042, 0.6606079936027527, -0.5249265432357788, -0.2919684648513794, 0.17475663125514984, 4.536044120788574, -0.19469095766544342, -0.29596975445747375], "std": [0.030724026262760162, 0.04770175740122795, 0.006551136262714863, 0.2968890368938446, 0.43652716279029846, 0.4641309976577759, 0.009489646181464195, 0.007825583219528198, 0.0038830472622066736, 0.009808680973947048, 0.09750253707170486, 0.028198009356856346], "count": [287]}, "action": {"min": [-0.1361108273267746, -0.10054557025432587, 0.11603563278913498, -0.33267742395401, -0.6236210465431213, -0.6268007159233093, -0.36062613129615784, 0.1151263490319252, -0.11873718351125717, 0.0856202021241188, -0.4533257782459259, -0.2853673994541168, 0.7936582565307617, 0.14119422435760498], "max": [-0.1168987974524498, -0.06963545083999634, 0.13046914339065552, 0.43338924646377563, 0.8826870322227478, 0.8502333164215088, 0.4514453411102295, 0.1241116002202034, -0.09834372252225876, 0.10594558715820312, -0.20411720871925354, -0.21819688379764557, 0.9317076802253723, 0.31064465641975403], "mean": [-0.12324020266532898, -0.08376611024141312, 0.12616217136383057, 0.21087519824504852, 0.013287900015711784, 0.40925517678260803, -0.0535852275788784, 0.11783873289823532, -0.11086030304431915, 0.09589701145887375, -0.28228747844696045, -0.26081982254981995, 0.901928722858429, 0.18992756307125092], "std": [0.005454558413475752, 0.0109992865473032, 0.003756933147087693, 0.26457536220550537, 0.5768481492996216, 0.5262478590011597, 0.3245041072368622, 0.0012503203470259905, 0.003005296690389514, 0.0034346305765211582, 0.03889128193259239, 0.01248603779822588, 0.021205807104706764, 0.024942761287093163], "count": [287]}, "timestamp": {"min": [0.0], "max": [9.533333333333333], "mean": [4.766666666666667], "std": [2.7616420236277306], "count": [287]}, "frame_index": {"min": [0], "max": [286], "mean": [143.0], "std": [82.84926070883192], "count": [287]}, "episode_index": {"min": [436], "max": [436], "mean": [436.0], "std": [0.0], "count": [287]}, "index": {"min": [258511], "max": [258797], "mean": [258654.0], "std": [82.84926070883192], "count": [287]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [287]}}} +{"episode_index": 437, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3848630459800408]], [[0.3496242137536018]], [[0.3057854206198608]]], "std": [[[0.2471794140517202]], [[0.24210217190216862]], [[0.2404445577922733]]], "count": [124]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38898613087708206]], [[0.37116425521821633]], [[0.3263261956216178]]], "std": [[[0.2285395221772089]], [[0.2177293951949669]], [[0.22483528173753092]]], "count": [124]}, "observation.state": {"min": [0.4271443486213684, -0.13863077759742737, 0.1201077476143837, -1.1568593978881836, -0.9893848896026611, 0.15784837305545807, -0.5379037857055664, -0.3966318368911743, 0.15725941956043243, 4.331355571746826, -0.5569303631782532, -0.390018492937088], "max": [0.5109051465988159, 0.0007645505829714239, 0.1360495239496231, -0.24009498953819275, 0.5495520234107971, 1.4005850553512573, -0.4396551847457886, -0.27363187074661255, 0.1841263324022293, 4.541254997253418, -0.028557030484080315, 0.05278351157903671], "mean": [0.4642758071422577, -0.07681307941675186, 0.1302860975265503, -0.5995487570762634, -0.28858891129493713, 1.065266728401184, -0.4854174256324768, -0.3359798491001129, 0.17020589113235474, 4.469058990478516, -0.38058027625083923, -0.13403241336345673], "std": [0.018116526305675507, 0.030514713376760483, 0.004006753675639629, 0.22504502534866333, 0.5443722605705261, 0.3648616373538971, 0.026027465239167213, 0.029509687796235085, 0.004833629354834557, 0.07531009614467621, 0.1310347616672516, 0.10865610092878342], "count": [619]}, "action": {"min": [-0.13282068073749542, -0.09756872802972794, 0.10997474938631058, -0.3644993305206299, -0.6204982399940491, -0.627494215965271, -0.40837034583091736, 0.11633660644292831, -0.1230509802699089, 0.07601162791252136, -0.4178319275379181, -0.4312492311000824, 0.7816177606582642, 0.1541179120540619], "max": [-0.11695874482393265, -0.07240600138902664, 0.13590458035469055, 0.41391217708587646, 0.9063971042633057, 0.8112744688987732, 0.5124747157096863, 0.1343969702720642, -0.10741488635540009, 0.105052150785923, -0.20456872880458832, -0.21045918762683868, 0.9395356178283691, 0.30698007345199585], "mean": [-0.12342823296785355, -0.09055463969707489, 0.1257360875606537, 0.05822277069091797, 0.39980754256248474, 0.04095360264182091, 0.1696903258562088, 0.12522119283676147, -0.11313994973897934, 0.09025473147630692, -0.33525317907333374, -0.34002313017845154, 0.842693567276001, 0.23031066358089447], "std": [0.0038482616655528545, 0.006147890817373991, 0.006414169445633888, 0.2447327822446823, 0.6261621713638306, 0.47315704822540283, 0.36116674542427063, 0.004349444527179003, 0.0027329681906849146, 0.006078904494643211, 0.06135047227144241, 0.0512525737285614, 0.037683695554733276, 0.031677596271038055], "count": [619]}, "timestamp": {"min": [0.0], "max": [20.6], "mean": [10.299999999999999], "std": [5.956322504513819], "count": [619]}, "frame_index": {"min": [0], "max": [618], "mean": [309.0], "std": [178.68967513541457], "count": [619]}, "episode_index": {"min": [437], "max": [437], "mean": [437.0], "std": [0.0], "count": [619]}, "index": {"min": [258798], "max": [259416], "mean": [259107.0], "std": [178.68967513541457], "count": [619]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [619]}}} +{"episode_index": 438, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4082755361097607]], [[0.3716459177334846]], [[0.3280752151641189]]], "std": [[[0.24283863917053802]], [[0.23855672155229915]], [[0.2380280109881193]]], "count": [121]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41991383757359696]], [[0.3984612074398171]], [[0.3552688493671114]]], "std": [[[0.22622674589065625]], [[0.21540637393156942]], [[0.223910127302122]]], "count": [121]}, "observation.state": {"min": [0.41807785630226135, -0.13276922702789307, 0.11575091630220413, -1.0557888746261597, -0.17352834343910217, -0.05045647174119949, -0.5607321858406067, -0.36242014169692993, 0.159587562084198, 4.457798480987549, -0.7847034335136414, -0.6114175319671631], "max": [0.5352780818939209, -0.014642300084233284, 0.13823765516281128, -0.3535372316837311, 0.6740278601646423, 1.2074304819107056, -0.41376087069511414, -0.22745764255523682, 0.18814094364643097, 4.539158344268799, 0.37534046173095703, -0.2671249210834503], "mean": [0.47870251536369324, -0.07426577806472778, 0.13077391684055328, -0.6361066102981567, 0.23290476202964783, 0.6144919395446777, -0.474284827709198, -0.29880836606025696, 0.16982120275497437, 4.535486221313477, -0.1458677500486374, -0.4606975018978119], "std": [0.030931347981095314, 0.03573589026927948, 0.005876826122403145, 0.15424588322639465, 0.24025391042232513, 0.32530641555786133, 0.05288871005177498, 0.030512245371937752, 0.006466317921876907, 0.010884756222367287, 0.17943242192268372, 0.07080496847629547], "count": [605]}, "action": {"min": [-0.13434602320194244, -0.1000920832157135, 0.12074540555477142, -0.28749144077301025, -0.6011213660240173, -0.6033709049224854, -0.5491247177124023, 0.11433269828557968, -0.11894045025110245, 0.08672310411930084, -0.47234392166137695, -0.2874375581741333, 0.789601743221283, 0.056649986654520035], "max": [-0.10942260921001434, -0.07183831185102463, 0.1319977343082428, 0.3930366635322571, 0.7872484922409058, 0.8122507333755493, 0.43523716926574707, 0.13959625363349915, -0.09635376930236816, 0.11306995898485184, -0.03771907463669777, -0.10784134268760681, 0.9909036159515381, 0.3558707535266876], "mean": [-0.11850695312023163, -0.08695751428604126, 0.127287819981575, 0.16044998168945312, -0.07940024882555008, 0.35218799114227295, -0.18409958481788635, 0.12760622799396515, -0.11015554517507553, 0.09558730572462082, -0.22373656928539276, -0.18888169527053833, 0.9321981072425842, 0.19018304347991943], "std": [0.006145227700471878, 0.008396902121603489, 0.0031671931501477957, 0.27696508169174194, 0.5356787443161011, 0.5401381254196167, 0.3932074308395386, 0.008677002973854542, 0.003633705200627446, 0.006474168039858341, 0.06682950258255005, 0.03955667465925217, 0.029260139912366867, 0.04707690700888634], "count": [605]}, "timestamp": {"min": [0.0], "max": [20.133333333333333], "mean": [10.066666666666666], "std": [5.821607261840248], "count": [605]}, "frame_index": {"min": [0], "max": [604], "mean": [302.0], "std": [174.64821785520743], "count": [605]}, "episode_index": {"min": [438], "max": [438], "mean": [438.0], "std": [0.0], "count": [605]}, "index": {"min": [259417], "max": [260021], "mean": [259719.0], "std": [174.64821785520743], "count": [605]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [605]}}} +{"episode_index": 439, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5931490672657952]], [[0.5663233324579832]], [[0.5356771149431996]]], "std": [[[0.24510753903872134]], [[0.23941063221688771]], [[0.2452931360657741]]], "count": [112]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6125508456854964]], [[0.5952230732570806]], [[0.5690606666277622]]], "std": [[[0.23110345060285684]], [[0.21051953911211205]], [[0.22390605681423015]]], "count": [112]}, "observation.state": {"min": [0.4137917459011078, -0.12552529573440552, 0.1315838098526001, -4.538528919219971, -1.2088230848312378, -1.1681028604507446, -0.5829736590385437, -0.25599315762519836, 0.16321198642253876, 1.9744404554367065, -0.4069035053253174, -0.7196195721626282], "max": [0.47427618503570557, 0.01833377033472061, 0.14248301088809967, -3.1797382831573486, -0.2188916653394699, 0.05538877844810486, -0.4679049253463745, -0.20368708670139313, 0.19379794597625732, 4.542932510375977, 0.8640891909599304, 0.4056973159313202], "mean": [0.4351036548614502, -0.0439281240105629, 0.1385287493467331, -3.9718704223632812, -0.867508053779602, -0.7124403715133667, -0.5368621945381165, -0.23295442759990692, 0.18033915758132935, 3.533926010131836, 0.23475264012813568, -0.19673731923103333], "std": [0.01581430248916149, 0.04111218452453613, 0.0031804367899894714, 0.47247737646102905, 0.2636640965938568, 0.41834983229637146, 0.025595344603061676, 0.014889951795339584, 0.006091474089771509, 1.0877323150634766, 0.28028419613838196, 0.3340233564376831], "count": [545]}, "action": {"min": [-0.12311940640211105, -0.10023496299982071, 0.12906421720981598, 0.14393343031406403, 0.40786728262901306, 0.08948420733213425, 0.3601633906364441, 0.10933350771665573, -0.11870953440666199, 0.09724703431129456, -0.21767589449882507, -0.5053632855415344, 0.0956985279917717, -0.07369613647460938], "max": [-0.11567234992980957, -0.07309199869632721, 0.14376550912857056, 0.604089617729187, 0.7248826622962952, 0.5820946097373962, 0.7376892566680908, 0.12371194362640381, -0.09336896985769272, 0.11870436370372772, 0.3699846565723419, -0.07709694653749466, 0.9881871938705444, 0.8839364051818848], "mean": [-0.11993911117315292, -0.08403072506189346, 0.1367667019367218, 0.378558486700058, 0.6034713983535767, 0.3077995181083679, 0.5864239931106567, 0.11465348303318024, -0.10758300870656967, 0.10555160790681839, 0.05845972150564194, -0.3094593584537506, 0.6489731073379517, 0.4121530055999756], "std": [0.001403456786647439, 0.007171028759330511, 0.004013830330222845, 0.13421697914600372, 0.08197002112865448, 0.14084650576114655, 0.09649433940649033, 0.0026503794360905886, 0.0052382927387952805, 0.004930979106575251, 0.1710692197084427, 0.1430555284023285, 0.36474379897117615, 0.35638996958732605], "count": [545]}, "timestamp": {"min": [0.0], "max": [18.133333333333333], "mean": [9.066666666666668], "std": [5.244256117145903], "count": [545]}, "frame_index": {"min": [0], "max": [544], "mean": [272.0], "std": [157.3276835143771], "count": [545]}, "episode_index": {"min": [439], "max": [439], "mean": [439.0], "std": [0.0], "count": [545]}, "index": {"min": [260022], "max": [260566], "mean": [260294.0], "std": [157.3276835143771], "count": [545]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [545]}}} +{"episode_index": 440, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6012199509803922]], [[0.5724337745098038]], [[0.5419075490196079]]], "std": [[[0.2406466382748272]], [[0.23488324698725963]], [[0.2406498173524757]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6177559204793028]], [[0.5983627832244008]], [[0.5718415468409587]]], "std": [[[0.22805996193525332]], [[0.20781855253667428]], [[0.2217550840651936]]], "count": [100]}, "observation.state": {"min": [0.39704886078834534, -0.11000260710716248, 0.1332521289587021, -4.5383195877075195, -1.2808305025100708, -1.2579703330993652, -0.5845722556114197, -0.2559390962123871, 0.16904398798942566, 2.210131883621216, -0.3414545953273773, -0.7642014622688293], "max": [0.4588925242424011, -0.0037609708961099386, 0.1413591355085373, -3.3929929733276367, -0.11942029744386673, 0.3058561384677887, -0.4587303400039673, -0.1864885538816452, 0.19157351553440094, 4.557191371917725, 0.404580682516098, 0.5383917093276978], "mean": [0.4229584336280823, -0.05182182416319847, 0.13743695616722107, -3.81115460395813, -0.6768394112586975, -0.7140781283378601, -0.5293959975242615, -0.22318428754806519, 0.1820327192544937, 2.7839982509613037, 0.028535328805446625, -0.09284774959087372], "std": [0.015879841521382332, 0.03368084505200386, 0.0017607659101486206, 0.4811569154262543, 0.37784209847450256, 0.5322955250740051, 0.03570999205112457, 0.01622444950044155, 0.004004696384072304, 0.6103178858757019, 0.2545950710773468, 0.3879478871822357], "count": [466]}, "action": {"min": [-0.12630292773246765, -0.09727738052606583, 0.13070806860923767, 0.05091603100299835, 0.34007295966148376, 0.20836696028709412, 0.43598368763923645, 0.10634859651327133, -0.11720940470695496, 0.10141013562679291, -0.28462931513786316, -0.5408015847206116, 0.10787804424762726, 0.03603620454668999], "max": [-0.11972638219594955, -0.0775730162858963, 0.14224551618099213, 0.6509636640548706, 0.7161695957183838, 0.5282267332077026, 0.7215942144393921, 0.1240173876285553, -0.10015859454870224, 0.11521780490875244, 0.3788192868232727, -0.18189893662929535, 0.9436120986938477, 0.8533161282539368], "mean": [-0.12325182557106018, -0.08646738529205322, 0.1369762271642685, 0.418343186378479, 0.5259988307952881, 0.4079929292201996, 0.5592851638793945, 0.11335054785013199, -0.10708723217248917, 0.10819131880998611, 0.16174228489398956, -0.3554551899433136, 0.44415372610092163, 0.71748286485672], "std": [0.0015391296474263072, 0.005928295198827982, 0.003039663890376687, 0.20229138433933258, 0.10589566826820374, 0.09213025122880936, 0.09182846546173096, 0.005434228107333183, 0.003451552940532565, 0.002674270188435912, 0.1296519786119461, 0.13332152366638184, 0.24728721380233765, 0.19925300776958466], "count": [466]}, "timestamp": {"min": [0.0], "max": [15.5], "mean": [7.75], "std": [4.484076766118578], "count": [466]}, "frame_index": {"min": [0], "max": [465], "mean": [232.5], "std": [134.52230298355735], "count": [466]}, "episode_index": {"min": [440], "max": [440], "mean": [440.0], "std": [0.0], "count": [466]}, "index": {"min": [260567], "max": [261032], "mean": [260799.5], "std": [134.52230298355735], "count": [466]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [466]}}} +{"episode_index": 441, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5594280117349971]], [[0.5237411595530468]], [[0.48704957664884135]]], "std": [[[0.22521242393853752]], [[0.22017722343980553]], [[0.22644184792314107]]], "count": [132]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5745679837591602]], [[0.549044460124117]], [[0.517470126097577]]], "std": [[[0.21380120569665148]], [[0.19423774449235845]], [[0.2082914154524057]]], "count": [132]}, "observation.state": {"min": [0.40776029229164124, -0.08584590256214142, 0.12924659252166748, -4.5383195877075195, -1.1171400547027588, -1.0386083126068115, -0.5718529224395752, -0.2663261592388153, 0.16792400181293488, 2.284362316131592, -0.35293206572532654, -0.7204650044441223], "max": [0.4660360515117645, -0.0016217739321291447, 0.1405269056558609, -3.74065899848938, -0.06107651814818382, 0.15555822849273682, -0.48107990622520447, -0.21160288155078888, 0.19445645809173584, 4.547126293182373, 0.6588612198829651, 0.4363352656364441], "mean": [0.425877183675766, -0.040983378887176514, 0.13415303826332092, -4.021974563598633, -0.47767579555511475, -0.8028184175491333, -0.5249466896057129, -0.2358424812555313, 0.18047325313091278, 2.710968017578125, -0.021012745797634125, -0.13182194530963898], "std": [0.012364435009658337, 0.01725931093096733, 0.0031761224381625652, 0.24572578072547913, 0.20813977718353271, 0.3811573088169098, 0.02265920490026474, 0.012487340718507767, 0.005888693034648895, 0.7235849499702454, 0.17504866421222687, 0.29122331738471985], "count": [677]}, "action": {"min": [-0.12836262583732605, -0.09185700118541718, 0.12676385045051575, 0.13483203947544098, 0.3113008737564087, 0.08008003234863281, 0.5309860110282898, 0.11012697219848633, -0.1171918660402298, 0.09634657949209213, -0.3092993497848511, -0.45874926447868347, 0.21082238852977753, -0.01410272903740406], "max": [-0.11921050399541855, -0.07790075242519379, 0.14102008938789368, 0.6935755014419556, 0.6785448789596558, 0.38585686683654785, 0.8048154711723328, 0.12324059754610062, -0.09812487661838531, 0.1181829646229744, 0.5070912837982178, -0.18089398741722107, 0.9707531332969666, 0.870555579662323], "mean": [-0.12386979162693024, -0.08436518907546997, 0.1360662430524826, 0.5252877473831177, 0.4570792019367218, 0.2866666913032532, 0.6301855444908142, 0.11575031280517578, -0.10816019028425217, 0.10680026561021805, 0.21032489836215973, -0.33281034231185913, 0.4372120797634125, 0.7148773670196533], "std": [0.0025527290999889374, 0.00305097084492445, 0.00287378067150712, 0.1564546823501587, 0.06271471828222275, 0.04647946357727051, 0.07258433848619461, 0.002888196613639593, 0.004662149120122194, 0.004697947762906551, 0.18544676899909973, 0.0643523633480072, 0.20618951320648193, 0.24849778413772583], "count": [677]}, "timestamp": {"min": [0.0], "max": [22.533333333333335], "mean": [11.266666666666666], "std": [6.51442843062826], "count": [677]}, "frame_index": {"min": [0], "max": [676], "mean": [338.0], "std": [195.4328529188478], "count": [677]}, "episode_index": {"min": [441], "max": [441], "mean": [441.0], "std": [0.0], "count": [677]}, "index": {"min": [261033], "max": [261709], "mean": [261371.0], "std": [195.4328529188478], "count": [677]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [677]}}} +{"episode_index": 442, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5484041295306001]], [[0.5162473955238661]], [[0.4815606407209348]]], "std": [[[0.22837813237996338]], [[0.22221546627990846]], [[0.2284658899928894]]], "count": [110]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5601804590017825]], [[0.5387876213111507]], [[0.508562230144583]]], "std": [[[0.22167247878556917]], [[0.20050997496173906]], [[0.21452644026741077]]], "count": [110]}, "observation.state": {"min": [0.4041846692562103, -0.16908924281597137, 0.13038213551044464, -4.5383195877075195, -1.2022645473480225, -1.3398834466934204, -0.5997551679611206, -0.33191534876823425, 0.17258156836032867, 2.2921206951141357, -0.6585879325866699, -0.930188775062561], "max": [0.45460638403892517, -0.02453511953353882, 0.14642761647701263, -3.205110788345337, -0.3432309031486511, 0.21258766949176788, -0.4412383437156677, -0.22803686559200287, 0.19125722348690033, 4.545029640197754, 0.5455895662307739, 0.9833351969718933], "mean": [0.4280478060245514, -0.07965151220560074, 0.13739264011383057, -3.85186767578125, -0.8785210847854614, -0.8373320698738098, -0.5265054106712341, -0.2689598500728607, 0.18122875690460205, 2.8310186862945557, -0.09719923138618469, 0.15436077117919922], "std": [0.011924433521926403, 0.041562046855688095, 0.004618579521775246, 0.5021496415138245, 0.25900983810424805, 0.5411308407783508, 0.052809782326221466, 0.02228911593556404, 0.004767135251313448, 0.5058279633522034, 0.3824485242366791, 0.5889202952384949], "count": [531]}, "action": {"min": [-0.12648025155067444, -0.10269913077354431, 0.12155235558748245, 0.13627523183822632, 0.4422750174999237, 0.14965331554412842, 0.374261736869812, 0.10698578506708145, -0.12279713153839111, 0.0922347828745842, -0.3215765655040741, -0.6458622813224792, -0.07199649512767792, 0.035051558166742325], "max": [-0.11572447419166565, -0.08060620725154877, 0.14336881041526794, 0.5934084057807922, 0.7469485998153687, 0.5617570877075195, 0.8107879161834717, 0.12544913589954376, -0.10362057387828827, 0.11530052870512009, 0.5291316509246826, -0.13540741801261902, 0.9611086845397949, 0.8394396901130676], "mean": [-0.12249305844306946, -0.08847098797559738, 0.13379958271980286, 0.37783852219581604, 0.6083635091781616, 0.30713674426078796, 0.5775659084320068, 0.11569779366254807, -0.11175909638404846, 0.10312030464410782, 0.044226475059986115, -0.36891883611679077, 0.4110241234302521, 0.7279084324836731], "std": [0.0026077711954712868, 0.006314994767308235, 0.005568575579673052, 0.12517641484737396, 0.10166390985250473, 0.12087807804346085, 0.13638533651828766, 0.00603101821616292, 0.005324334371834993, 0.005303539335727692, 0.19056467711925507, 0.16898305714130402, 0.2586650252342224, 0.1771262139081955], "count": [531]}, "timestamp": {"min": [0.0], "max": [17.666666666666668], "mean": [8.833333333333336], "std": [5.109540821581467], "count": [531]}, "frame_index": {"min": [0], "max": [530], "mean": [265.0], "std": [153.286224647444], "count": [531]}, "episode_index": {"min": [442], "max": [442], "mean": [442.0], "std": [0.0], "count": [531]}, "index": {"min": [261710], "max": [262240], "mean": [261975.0], "std": [153.286224647444], "count": [531]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [531]}}} +{"episode_index": 443, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5608002478213509]], [[0.5209450626361656]], [[0.4813838180827887]]], "std": [[[0.22370722138148683]], [[0.21667874384034522]], [[0.22200344702633273]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5778557216775599]], [[0.5481167783224401]], [[0.5134520206971678]]], "std": [[[0.21203127007251307]], [[0.19094478028522777]], [[0.20463654859531635]]], "count": [100]}, "observation.state": {"min": [0.4267427623271942, -0.12471441179513931, 0.12319551408290863, -4.538528919219971, -0.597784698009491, -0.8629398345947266, -0.598959743976593, -0.29647570848464966, 0.16527697443962097, 2.3657219409942627, -0.5608928203582764, -0.5564027428627014], "max": [0.477658748626709, -0.004139384720474482, 0.13100436329841614, -4.335759162902832, -0.3077054023742676, 0.16781115531921387, -0.4800373613834381, -0.24862566590309143, 0.1930292546749115, 4.541674613952637, 0.04509003832936287, 0.4253672659397125], "mean": [0.44229334592819214, -0.050385478883981705, 0.12792114913463593, -4.510765552520752, -0.4966804087162018, -0.2933254837989807, -0.5414876937866211, -0.2696920931339264, 0.1763671487569809, 2.7350211143493652, -0.14622122049331665, 0.008009237237274647], "std": [0.01250999141484499, 0.03305811807513237, 0.001658210763707757, 0.06174724921584129, 0.0820036455988884, 0.3019874393939972, 0.027953196316957474, 0.012375394813716412, 0.00490903714671731, 0.4459700286388397, 0.1425696462392807, 0.30250898003578186], "count": [419]}, "action": {"min": [-0.12456705421209335, -0.09378932416439056, 0.1215587928891182, 0.15930959582328796, 0.37783822417259216, 0.09269978851079941, 0.6590173244476318, 0.11188755184412003, -0.12114965915679932, 0.09086646884679794, -0.29763415455818176, -0.43800482153892517, 0.24150852859020233, 0.13733570277690887], "max": [-0.11768592894077301, -0.07352808862924576, 0.1311250478029251, 0.642692506313324, 0.46973270177841187, 0.24008342623710632, 0.8781883120536804, 0.12621928751468658, -0.0985102728009224, 0.11174657195806503, 0.37600478529930115, -0.1984521597623825, 0.9506009817123413, 0.8742038011550903], "mean": [-0.12306862324476242, -0.0830543115735054, 0.12822093069553375, 0.36932694911956787, 0.43075791001319885, 0.15357978641986847, 0.7928808927536011, 0.11593028903007507, -0.10847301036119461, 0.0996929332613945, 0.11323677748441696, -0.34741371870040894, 0.44811737537384033, 0.772587239742279], "std": [0.0014479897217825055, 0.005376950837671757, 0.002713520545512438, 0.13803711533546448, 0.031034551560878754, 0.045169223099946976, 0.06116002798080444, 0.0032389129046350718, 0.00470663420855999, 0.0038138667587190866, 0.12698908150196075, 0.06655130535364151, 0.17250628769397736, 0.1358935534954071], "count": [419]}, "timestamp": {"min": [0.0], "max": [13.933333333333334], "mean": [6.966666666666667], "std": [4.031817897122284], "count": [419]}, "frame_index": {"min": [0], "max": [418], "mean": [209.0], "std": [120.95453691366852], "count": [419]}, "episode_index": {"min": [443], "max": [443], "mean": [443.0], "std": [0.0], "count": [419]}, "index": {"min": [262241], "max": [262659], "mean": [262450.0], "std": [120.95453691366852], "count": [419]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [419]}}} +{"episode_index": 444, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5528691394335512]], [[0.5133466067538126]], [[0.474182818627451]]], "std": [[[0.22415691105794167]], [[0.21673380056706743]], [[0.22211966148998807]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5682185566448802]], [[0.538883167211329]], [[0.5041759150326797]]], "std": [[[0.2157023146780849]], [[0.19351766002246137]], [[0.20727108224393267]]], "count": [100]}, "observation.state": {"min": [0.35199445486068726, -0.12008850276470184, 0.12684457004070282, -2.199857234954834, 0.1654668003320694, -0.3848586082458496, -0.5856379866600037, -0.2999277710914612, 0.16246791183948517, 2.0866246223449707, -0.46155810356140137, -0.7655817270278931], "max": [0.46819838881492615, 0.01588566042482853, 0.13609619438648224, -0.7829822301864624, 1.0285996198654175, 1.0493966341018677, -0.4657271206378937, -0.24273322522640228, 0.1932975798845291, 3.9899802207946777, 0.17858390510082245, 0.6977691054344177], "mean": [0.4228249192237854, -0.05155957117676735, 0.13245898485183716, -1.2425223588943481, 0.7595216631889343, 0.5212475657463074, -0.5339208245277405, -0.2639864683151245, 0.17843295633792877, 2.5041115283966064, -0.12566237151622772, 0.02771841734647751], "std": [0.02130456268787384, 0.034954845905303955, 0.002536213491111994, 0.4570060074329376, 0.26613327860832214, 0.4340737462043762, 0.027381950989365578, 0.015108123421669006, 0.007045462261885405, 0.26183071732521057, 0.1778838336467743, 0.424617201089859], "count": [354]}, "action": {"min": [-0.1365000605583191, -0.09584315121173859, 0.12553425133228302, -0.46028873324394226, -0.5931076407432556, -0.6033713221549988, -0.2923347055912018, 0.1081695705652237, -0.12220270186662674, 0.09086383134126663, -0.2638244032859802, -0.4655434191226959, 0.0535782128572464, 0.4419461786746979], "max": [-0.11903541535139084, -0.07664784789085388, 0.1393781155347824, 0.6932981014251709, 0.7089844346046448, 0.7571678757667542, 0.2957245707511902, 0.129873588681221, -0.09971880167722702, 0.11266808956861496, 0.5161411166191101, -0.2018265575170517, 0.7905910015106201, 0.8982566595077515], "mean": [-0.12390651553869247, -0.08484060317277908, 0.13151855766773224, 0.4341684877872467, -0.19565045833587646, 0.4776613116264343, -0.09534180909395218, 0.11584781855344772, -0.10942862182855606, 0.10203874111175537, 0.1610535979270935, -0.3333274722099304, 0.35997962951660156, 0.8190420269966125], "std": [0.002724045654758811, 0.005061792209744453, 0.0037571066059172153, 0.3678208291530609, 0.39523670077323914, 0.4598540663719177, 0.1816541850566864, 0.005324142053723335, 0.005222862120717764, 0.004446172155439854, 0.15488289296627045, 0.08610408753156662, 0.16083943843841553, 0.07257752120494843], "count": [354]}, "timestamp": {"min": [0.0], "max": [11.766666666666667], "mean": [5.883333333333333], "std": [3.4063529970836464], "count": [354]}, "frame_index": {"min": [0], "max": [353], "mean": [176.5], "std": [102.1905899125094], "count": [354]}, "episode_index": {"min": [444], "max": [444], "mean": [444.0], "std": [0.0], "count": [354]}, "index": {"min": [262660], "max": [263013], "mean": [262836.5], "std": [102.1905899125094], "count": [354]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [354]}}} +{"episode_index": 445, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5586116748366013]], [[0.520688839869281]], [[0.4825243654684096]]], "std": [[[0.22584537721116993]], [[0.21843746044141601]], [[0.2245274750536561]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.568846399782135]], [[0.5426449101307189]], [[0.5093050435729848]]], "std": [[[0.2210027420738921]], [[0.1983907233459253]], [[0.2120113907012319]]], "count": [100]}, "observation.state": {"min": [0.3703359365463257, -0.1618916541337967, 0.12021923065185547, -2.125627040863037, -0.04276721924543381, -0.2354748547077179, -0.6066747307777405, -0.3212270736694336, 0.16646048426628113, 2.3567051887512207, -0.5458627939224243, -0.6730008721351624], "max": [0.4687621593475342, 0.008348270319402218, 0.1353689730167389, -0.6043264269828796, 1.0309224128723145, 1.0675666332244873, -0.49810081720352173, -0.2553212642669678, 0.18944759666919708, 4.543561935424805, 0.026234209537506104, 0.3098737895488739], "mean": [0.426789253950119, -0.05467626452445984, 0.13079224526882172, -1.155487060546875, 0.6214381456375122, 0.5381115674972534, -0.5648183226585388, -0.289205402135849, 0.17754031717777252, 2.7340493202209473, -0.33468085527420044, -0.14766979217529297], "std": [0.016757706180214882, 0.03794365003705025, 0.0033782185055315495, 0.5528131127357483, 0.27372410893440247, 0.4493926763534546, 0.026894085109233856, 0.017251821234822273, 0.00535432156175375, 0.4310651421546936, 0.14215882122516632, 0.2928489148616791], "count": [327]}, "action": {"min": [-0.13432754576206207, -0.10036743432283401, 0.11813067644834518, -0.44820261001586914, -0.6030707359313965, -0.6023321151733398, -0.3791253864765167, 0.1080174446105957, -0.11662888526916504, 0.08985896408557892, -0.2710850238800049, -0.4086742401123047, 0.30283284187316895, 0.11566776782274246], "max": [-0.1210874691605568, -0.07713847607374191, 0.13537034392356873, 0.6873429417610168, 0.7590333223342896, 0.8508030772209167, 0.39734405279159546, 0.12325640022754669, -0.10221341997385025, 0.1100831925868988, 0.38643941283226013, -0.12334582954645157, 0.9184582233428955, 0.8896787762641907], "mean": [-0.12469545751810074, -0.08502781391143799, 0.13060656189918518, 0.3674977719783783, -0.19046857953071594, 0.45652228593826294, -0.08814624696969986, 0.11316544562578201, -0.10951216518878937, 0.09750894457101822, 0.14224600791931152, -0.2571008801460266, 0.47773757576942444, 0.788591206073761], "std": [0.002606017282232642, 0.004997890908271074, 0.004647880792617798, 0.36816272139549255, 0.4213199317455292, 0.4877765476703644, 0.24800093472003937, 0.00419177720323205, 0.003859077114611864, 0.004444961901754141, 0.13908424973487854, 0.08555955439805984, 0.13449285924434662, 0.1371246576309204], "count": [327]}, "timestamp": {"min": [0.0], "max": [10.866666666666667], "mean": [5.433333333333333], "std": [3.146544253739448], "count": [327]}, "frame_index": {"min": [0], "max": [326], "mean": [163.0], "std": [94.39632761218344], "count": [327]}, "episode_index": {"min": [445], "max": [445], "mean": [445.0], "std": [0.0], "count": [327]}, "index": {"min": [263014], "max": [263340], "mean": [263177.0], "std": [94.39632761218344], "count": [327]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [327]}}} +{"episode_index": 446, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5408405112044818]], [[0.5062258419571533]], [[0.4701289585278556]]], "std": [[[0.2236601746427111]], [[0.21583563944580575]], [[0.2215389993595018]]], "count": [168]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.54947194664903]], [[0.5272056667574437]], [[0.4963651069223986]]], "std": [[[0.21906454935271058]], [[0.19642947702309793]], [[0.2094049123278835]]], "count": [168]}, "observation.state": {"min": [0.33136701583862305, -0.1702476441860199, 0.12150514870882034, -2.6200759410858154, -0.050965409725904465, -0.8549776673316956, -0.6344534158706665, -0.434836208820343, 0.15820442140102386, 2.2071962356567383, -0.8008265495300293, -0.7713322043418884], "max": [0.4611012041568756, 0.023461660370230675, 0.13891172409057617, -0.7796272039413452, 1.1614102125167847, 0.9754174947738647, -0.49064838886260986, -0.27612629532814026, 0.18696391582489014, 2.9857749938964844, 0.22545021772384644, 0.7020037174224854], "mean": [0.43245336413383484, -0.06711818277835846, 0.1306016594171524, -1.4007647037506104, 0.6189614534378052, 0.21491022408008575, -0.5639861226081848, -0.3293916881084442, 0.1771405041217804, 2.6011013984680176, -0.401476114988327, -0.06993565708398819], "std": [0.022176066413521767, 0.03888219594955444, 0.0029829132836312056, 0.574535071849823, 0.27905330061912537, 0.47247639298439026, 0.02795504406094551, 0.03497025743126869, 0.005395045969635248, 0.21665918827056885, 0.19559532403945923, 0.45650777220726013], "count": [934]}, "action": {"min": [-0.1410113275051117, -0.10395030677318573, 0.12184710800647736, -0.46372270584106445, -0.6137791872024536, -0.6145130395889282, -0.3638111650943756, 0.10556580871343613, -0.12734372913837433, 0.07175273448228836, -0.20198401808738708, -0.5029897093772888, 0.21028050780296326, 0.7091059684753418], "max": [-0.11905337125062943, -0.07619443535804749, 0.13439325988292694, 0.7457463145256042, 0.7000460028648376, 0.8608055114746094, 0.31807461380958557, 0.12970897555351257, -0.10549807548522949, 0.10542307794094086, 0.49434351921081543, -0.07097426801919937, 0.6002525687217712, 0.9274638891220093], "mean": [-0.12384914606809616, -0.08711397647857666, 0.12846419215202332, 0.45104652643203735, -0.24781593680381775, 0.6591207385063171, -0.14067302644252777, 0.11503440141677856, -0.113688625395298, 0.09293483942747116, 0.14227549731731415, -0.23828069865703583, 0.42827847599983215, 0.8279516696929932], "std": [0.003937254194170237, 0.0056238253600895405, 0.003135193604975939, 0.23909932374954224, 0.28001001477241516, 0.32993513345718384, 0.19100600481033325, 0.0052351560443639755, 0.004628555383533239, 0.005632472224533558, 0.13905198872089386, 0.13005661964416504, 0.12238896638154984, 0.05314997211098671], "count": [934]}, "timestamp": {"min": [0.0], "max": [31.1], "mean": [15.55], "std": [8.987414039150034], "count": [934]}, "frame_index": {"min": [0], "max": [933], "mean": [466.5], "std": [269.62242117450097], "count": [934]}, "episode_index": {"min": [446], "max": [446], "mean": [446.0], "std": [0.0], "count": [934]}, "index": {"min": [263341], "max": [264274], "mean": [263807.5], "std": [269.62242117450097], "count": [934]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [934]}}} +{"episode_index": 447, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5626088616557734]], [[0.5213150980392157]], [[0.4809347630718954]]], "std": [[[0.22107131470951724]], [[0.21335713538400905]], [[0.21848950447274676]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5790492565359476]], [[0.5469874782135077]], [[0.5106628159041394]]], "std": [[[0.21202224595047062]], [[0.18960674861007348]], [[0.20374916204573887]]], "count": [100]}, "observation.state": {"min": [0.39241522550582886, -0.09837988764047623, 0.12850123643875122, -2.1218526363372803, 0.18514245748519897, -0.30970141291618347, -0.5605777502059937, -0.2641483545303345, 0.17144343256950378, 2.269054889678955, -0.06681524962186813, -0.7916725277900696], "max": [0.4480961263179779, 0.01796307973563671, 0.13679878413677216, -0.6850570440292358, 0.9299480319023132, 1.0713213682174683, -0.501560628414154, -0.2165377140045166, 0.1880955696105957, 2.7402281761169434, 0.20755083858966827, 0.43915486335754395], "mean": [0.42038494348526, -0.04501497745513916, 0.13258852064609528, -1.2072257995605469, 0.7057176828384399, 0.4800156354904175, -0.5324495434761047, -0.2371259331703186, 0.1803375482559204, 2.3999059200286865, 0.06436953693628311, -0.15723933279514313], "std": [0.019235560670495033, 0.03555436059832573, 0.0024071496445685625, 0.497032105922699, 0.22813326120376587, 0.4266566336154938, 0.01855974644422531, 0.013592085801064968, 0.003551057307049632, 0.09859133511781693, 0.08249405771493912, 0.40398386120796204], "count": [319]}, "action": {"min": [-0.12846128642559052, -0.0946217030286789, 0.12786781787872314, -0.4484204053878784, -0.592623770236969, -0.5953136682510376, -0.32896479964256287, 0.10874251276254654, -0.1172323152422905, 0.09943117946386337, 0.011668944731354713, -0.5329945087432861, 0.17040427029132843, 0.6697027087211609], "max": [-0.12067318707704544, -0.07601961493492126, 0.13668149709701538, 0.6601362228393555, 0.6880350708961487, 0.7621789574623108, 0.3371545970439911, 0.12252292037010193, -0.10445412993431091, 0.10946764051914215, 0.5605708360671997, -0.2601473927497864, 0.44484931230545044, 0.8606586456298828], "mean": [-0.12442433089017868, -0.0842641144990921, 0.1328410804271698, 0.4096429646015167, -0.1797083020210266, 0.49766573309898376, -0.10156673192977905, 0.11394806951284409, -0.10830572247505188, 0.10513787716627121, 0.29298990964889526, -0.37444111704826355, 0.338432252407074, 0.7857376337051392], "std": [0.002565703820437193, 0.005527718923985958, 0.002962915925309062, 0.35438042879104614, 0.3872285485267639, 0.46602582931518555, 0.22180861234664917, 0.0034061800688505173, 0.0031919304747134447, 0.002249245997518301, 0.15237738192081451, 0.08776649832725525, 0.09223642945289612, 0.05100911855697632], "count": [319]}, "timestamp": {"min": [0.0], "max": [10.6], "mean": [5.3], "std": [3.0695638488590236], "count": [319]}, "frame_index": {"min": [0], "max": [318], "mean": [159.0], "std": [92.0869154657707], "count": [319]}, "episode_index": {"min": [447], "max": [447], "mean": [447.0], "std": [0.0], "count": [319]}, "index": {"min": [264275], "max": [264593], "mean": [264434.0], "std": [92.0869154657707], "count": [319]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [319]}}} +{"episode_index": 448, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5210866748366013]], [[0.48656400326797383]], [[0.4445573883442266]]], "std": [[[0.2263969483257952]], [[0.21940737403875288]], [[0.22450171346845596]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5295847303921568]], [[0.5064054248366013]], [[0.4679932979302832]]], "std": [[[0.21870031562429101]], [[0.1985811818994102]], [[0.21266967690832672]]], "count": [100]}, "observation.state": {"min": [0.37166422605514526, -0.10828044265508652, 0.12424031645059586, -2.0994157791137695, -0.1274818480014801, -0.1856231689453125, -0.589105486869812, -0.296444833278656, 0.16465994715690613, 2.243263006210327, -0.44037944078445435, -0.8790629506111145], "max": [0.47926509380340576, 0.0020774200093001127, 0.13666656613349915, -0.6208919286727905, 1.0322887897491455, 1.0231527090072632, -0.45910874009132385, -0.22539567947387695, 0.189789816737175, 3.047423839569092, 0.46948301792144775, 0.5833080410957336], "mean": [0.4277489483356476, -0.0476519800722599, 0.13340522348880768, -1.2043126821517944, 0.6493228077888489, 0.6031546592712402, -0.535548746585846, -0.27214595675468445, 0.17962566018104553, 2.721359968185425, -0.13716517388820648, -0.20269560813903809], "std": [0.024964220821857452, 0.03131088986992836, 0.0028302897699177265, 0.4469032287597656, 0.34335580468177795, 0.3653951585292816, 0.03891655057668686, 0.013304438441991806, 0.005570988170802593, 0.3002730906009674, 0.18688558042049408, 0.5104215145111084], "count": [421]}, "action": {"min": [-0.13357257843017578, -0.09617343544960022, 0.12343176454305649, -0.4063678979873657, -0.6053362488746643, -0.6034368276596069, -0.36554035544395447, 0.10697507113218307, -0.12122898548841476, 0.09405913949012756, -0.044408101588487625, -0.5505279302597046, 0.16825121641159058, 0.5693395733833313], "max": [-0.1189216747879982, -0.07892210781574249, 0.13980047404766083, 0.6900213360786438, 0.7423818111419678, 0.7842329144477844, 0.3774365186691284, 0.13008278608322144, -0.10272645205259323, 0.10983938723802567, 0.40826913714408875, -0.12885227799415588, 0.696819007396698, 0.9007341861724854], "mean": [-0.12306801229715347, -0.08519823849201202, 0.13260114192962646, 0.4196597635746002, -0.220991313457489, 0.46930447220802307, -0.05512081831693649, 0.11512329429388046, -0.1110122948884964, 0.10159610956907272, 0.19387894868850708, -0.2825738191604614, 0.4724337160587311, 0.7630828619003296], "std": [0.0034835869446396828, 0.0047906977124512196, 0.0038718874566257, 0.333642840385437, 0.43237364292144775, 0.45788848400115967, 0.20937301218509674, 0.0063752843998372555, 0.004240356385707855, 0.004103334154933691, 0.11685798317193985, 0.1342829465866089, 0.18948034942150116, 0.09738405048847198], "count": [421]}, "timestamp": {"min": [0.0], "max": [14.0], "mean": [6.999999999999999], "std": [4.051062960645158], "count": [421]}, "frame_index": {"min": [0], "max": [420], "mean": [210.0], "std": [121.53188881935473], "count": [421]}, "episode_index": {"min": [448], "max": [448], "mean": [448.0], "std": [0.0], "count": [421]}, "index": {"min": [264594], "max": [265014], "mean": [264804.0], "std": [121.53188881935473], "count": [421]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [421]}}} +{"episode_index": 449, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.52777281820848]], [[0.49230550056561084]], [[0.4511646739358136]]], "std": [[[0.22028259012526297]], [[0.21492047184764107]], [[0.2203449902255775]]], "count": [104]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.540667046359142]], [[0.5156882698592258]], [[0.47841981418635826]]], "std": [[[0.20936127656679243]], [[0.19138272810272902]], [[0.2062199776956213]]], "count": [104]}, "observation.state": {"min": [0.3650149703025818, -0.12944844365119934, 0.11474499851465225, -2.1426117420196533, 0.1809067279100418, -0.44329315423965454, -0.5749034285545349, -0.28164035081863403, 0.16558678448200226, 2.361318349838257, -0.4166046977043152, -0.8635644316673279], "max": [0.4704611599445343, 0.022473150864243507, 0.13643452525138855, -0.8033221960067749, 1.0305124521255493, 0.9706646203994751, -0.46268436312675476, -0.22963546216487885, 0.18844686448574066, 3.0677638053894043, 0.3198660612106323, 0.48513564467430115], "mean": [0.4323098361492157, -0.037187401205301285, 0.1290265917778015, -1.40483558177948, 0.773407518863678, 0.3388466238975525, -0.5261684060096741, -0.2551564872264862, 0.1759704351425171, 2.650377035140991, 0.029492205008864403, -0.009000756777822971], "std": [0.020565947517752647, 0.03961806744337082, 0.005300474353134632, 0.46120691299438477, 0.21626652777194977, 0.4312606453895569, 0.03159237280488014, 0.011647112667560577, 0.005611761473119259, 0.22573840618133545, 0.19876737892627716, 0.45372867584228516], "count": [495]}, "action": {"min": [-0.13572297990322113, -0.09760560095310211, 0.11866004765033722, -0.42823177576065063, -0.6155992746353149, -0.6099172830581665, -0.30592209100723267, 0.10827460139989853, -0.1189989447593689, 0.09522905945777893, -0.06099230796098709, -0.5481646656990051, 0.1847027987241745, 0.5784159302711487], "max": [-0.11779634654521942, -0.06985261291265488, 0.13695527613162994, 0.6547911167144775, 0.6858305335044861, 0.7851115465164185, 0.2991461157798767, 0.12613891065120697, -0.10129372030496597, 0.11058814823627472, 0.44263601303100586, -0.19611234962940216, 0.6636641621589661, 0.8518551588058472], "mean": [-0.123543381690979, -0.08131950348615646, 0.12896044552326202, 0.5072110891342163, -0.23534716665744781, 0.6019209027290344, -0.10043275356292725, 0.11741947382688522, -0.1077541932463646, 0.10102242231369019, 0.173446387052536, -0.39014264941215515, 0.4012405574321747, 0.7678502202033997], "std": [0.0036649531684815884, 0.006526110228151083, 0.0047630551271140575, 0.2696574926376343, 0.29974815249443054, 0.3589061200618744, 0.15354211628437042, 0.004737770650535822, 0.004554009065032005, 0.0037353618536144495, 0.112370565533638, 0.13698163628578186, 0.1761009246110916, 0.06865893304347992], "count": [495]}, "timestamp": {"min": [0.0], "max": [16.466666666666665], "mean": [8.233333333333333], "std": [4.763130001102994], "count": [495]}, "frame_index": {"min": [0], "max": [494], "mean": [247.0], "std": [142.89390003308984], "count": [495]}, "episode_index": {"min": [449], "max": [449], "mean": [449.0], "std": [0.0], "count": [495]}, "index": {"min": [265015], "max": [265509], "mean": [265262.0], "std": [142.89390003308984], "count": [495]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [495]}}} +{"episode_index": 450, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.523006443578081]], [[0.4881579042923212]], [[0.4469760714877244]]], "std": [[[0.2252626715854258]], [[0.21880453808649342]], [[0.22373542159575113]]], "count": [171]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5341853332951114]], [[0.510089596949891]], [[0.4723321787129407]]], "std": [[[0.21559108453800438]], [[0.1966948331753791]], [[0.21102915802498762]]], "count": [171]}, "observation.state": {"min": [0.37119317054748535, -0.142700657248497, 0.1220184788107872, -2.211390256881714, 0.21684212982654572, -0.30239808559417725, -0.6097020506858826, -0.3180144131183624, 0.16253402829170227, 2.211390256881714, -0.41332539916038513, -0.8718768954277039], "max": [0.4758516252040863, 0.029840640723705292, 0.13954950869083405, -0.5919547080993652, 1.251590371131897, 0.9343459606170654, -0.43491342663764954, -0.22545745968818665, 0.18728798627853394, 3.712979793548584, 0.6626870036125183, 0.6012499332427979], "mean": [0.4304865300655365, -0.04971146956086159, 0.13297809660434723, -1.2390891313552856, 0.8426001667976379, 0.4396134912967682, -0.5182752013206482, -0.2733297348022461, 0.1771099865436554, 2.6900417804718018, -0.03501705080270767, 0.0897752121090889], "std": [0.022351687774062157, 0.03870339319109917, 0.004953905940055847, 0.47214871644973755, 0.2615332007408142, 0.353333443403244, 0.03839801251888275, 0.023294471204280853, 0.004788808990269899, 0.3313130736351013, 0.23084178566932678, 0.46247732639312744], "count": [954]}, "action": {"min": [-0.13445013761520386, -0.09941049665212631, 0.12261313199996948, -0.4315478503704071, -0.5914772152900696, -0.5896582007408142, -0.371594101190567, 0.10815794765949249, -0.11854230612516403, 0.09001879394054413, -0.2758486568927765, -0.5989782810211182, -0.5539031028747559, -0.5771497488021851], "max": [-0.11628090590238571, -0.07223476469516754, 0.13832847774028778, 0.735236644744873, 0.6526432633399963, 0.8209102153778076, 0.39444923400878906, 0.13133445382118225, -0.10220661014318466, 0.1092890277504921, 0.4853724539279938, 0.615203857421875, 0.7644449472427368, 0.8664131760597229], "mean": [-0.12227673083543777, -0.08393610268831253, 0.1311529576778412, 0.543822169303894, -0.29140397906303406, 0.6070233583450317, -0.15809617936611176, 0.1186007708311081, -0.11067371815443039, 0.10055465251207352, 0.12848937511444092, -0.39351290464401245, 0.38797059655189514, 0.7528271079063416], "std": [0.004162522964179516, 0.005461066495627165, 0.004172590095549822, 0.23530103266239166, 0.2440805286169052, 0.28109630942344666, 0.17864036560058594, 0.0061528561636805534, 0.0035016231704503298, 0.0038637870457023382, 0.16790352761745453, 0.17264237999916077, 0.18396754562854767, 0.13973437249660492], "count": [954]}, "timestamp": {"min": [0.0], "max": [31.766666666666666], "mean": [15.883333333333335], "std": [9.17986423687232], "count": [954]}, "frame_index": {"min": [0], "max": [953], "mean": [476.5], "std": [275.3959271061696], "count": [954]}, "episode_index": {"min": [450], "max": [450], "mean": [450.0], "std": [0.0], "count": [954]}, "index": {"min": [265510], "max": [266463], "mean": [265986.5], "std": [275.3959271061696], "count": [954]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [954]}}} +{"episode_index": 451, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5320883224400871]], [[0.49663003540305006]], [[0.454352325708061]]], "std": [[[0.22273879701552063]], [[0.2169809696392687]], [[0.22247247828815586]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5441818954248365]], [[0.5190834613289761]], [[0.48060783496732024]]], "std": [[[0.21240884698632428]], [[0.19450172381798533]], [[0.20913252350519276]]], "count": [100]}, "observation.state": {"min": [0.3641422986984253, -0.17937591671943665, 0.12385532259941101, -2.278700590133667, 0.014893379993736744, -0.5529168248176575, -0.588719367980957, -0.29734838008880615, 0.16713455319404602, 2.178678512573242, -0.5306961536407471, -0.6248796582221985], "max": [0.47506392002105713, 0.02027216926217079, 0.1363256275653839, -0.7823531627655029, 1.0436296463012695, 0.8990706205368042, -0.49278756976127625, -0.2323615849018097, 0.19043408334255219, 3.145768642425537, 0.37110471725463867, 0.5335230231285095], "mean": [0.42532292008399963, -0.042518120259046555, 0.1311631053686142, -1.322435975074768, 0.5985514521598816, 0.33880555629730225, -0.5364735126495361, -0.2625982463359833, 0.1766340285539627, 2.5682804584503174, -0.09090610593557358, 0.010783027857542038], "std": [0.018528949469327927, 0.039192840456962585, 0.002917957492172718, 0.4361417591571808, 0.2740996181964874, 0.44048359990119934, 0.03427794203162193, 0.015334022231400013, 0.004771174862980843, 0.22968769073486328, 0.299966961145401, 0.4015893340110779], "count": [450]}, "action": {"min": [-0.134871706366539, -0.1068580225110054, 0.1208215057849884, -0.33427906036376953, -0.6431431770324707, -0.6461391448974609, -0.3238878548145294, 0.11029376834630966, -0.12043552100658417, 0.09164820611476898, -0.12003953754901886, -0.5542062520980835, 0.1354643553495407, 0.6619613766670227], "max": [-0.11854350566864014, -0.07351195812225342, 0.1365860402584076, 0.6701634526252747, 0.7188708186149597, 0.8282724618911743, 0.3233170509338379, 0.12521986663341522, -0.10067824274301529, 0.1091926246881485, 0.4214208722114563, -0.11775662004947662, 0.5647851824760437, 0.8510388731956482], "mean": [-0.12447745352983475, -0.08407333493232727, 0.13170847296714783, 0.45483851432800293, -0.31060969829559326, 0.6639568209648132, -0.1637411266565323, 0.116470567882061, -0.10811828076839447, 0.10056953132152557, 0.17614729702472687, -0.35600829124450684, 0.3677270710468292, 0.7986873388290405], "std": [0.00269513763487339, 0.006432746537029743, 0.003646501339972019, 0.2045057713985443, 0.2844252586364746, 0.30047789216041565, 0.12643606960773468, 0.004134373273700476, 0.003905361983925104, 0.0034365870524197817, 0.13056372106075287, 0.17194916307926178, 0.14023664593696594, 0.05315819010138512], "count": [450]}, "timestamp": {"min": [0.0], "max": [14.966666666666667], "mean": [7.483333333333333], "std": [4.330116327237342], "count": [450]}, "frame_index": {"min": [0], "max": [449], "mean": [224.5], "std": [129.90348981712026], "count": [450]}, "episode_index": {"min": [451], "max": [451], "mean": [451.0], "std": [0.0], "count": [450]}, "index": {"min": [266464], "max": [266913], "mean": [266688.5], "std": [129.90348981712026], "count": [450]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [450]}}} +{"episode_index": 452, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.526435069390836]], [[0.48945277520457003]], [[0.44735645574940386]]], "std": [[[0.23316600888735994]], [[0.22684529478294607]], [[0.23262272603873096]]], "count": [127]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5415394622853517]], [[0.5138227767484946]], [[0.4755298663647436]]], "std": [[[0.22515642534207572]], [[0.20581510852318072]], [[0.22105870480773152]]], "count": [127]}, "observation.state": {"min": [0.3232349753379822, -0.138375923037529, 0.125979945063591, -2.0302181243896484, 0.45499953627586365, -0.5262987613677979, -0.5861013531684875, -0.27828097343444824, 0.1613362431526184, 2.338252544403076, -0.46975627541542053, -0.7832948565483093], "max": [0.4796357750892639, 0.01284290011972189, 0.14673225581645966, -0.5575655698776245, 1.1671489477157593, 1.070570468902588, -0.4631708860397339, -0.21413594484329224, 0.1950877606868744, 3.071328639984131, 0.24553579092025757, 0.3294639587402344], "mean": [0.4277268648147583, -0.06094944104552269, 0.1399620771408081, -1.1519520282745361, 0.7982098460197449, 0.44891995191574097, -0.5339387655258179, -0.231206476688385, 0.17850567400455475, 2.649188756942749, -0.25240203738212585, -0.24950343370437622], "std": [0.028228361159563065, 0.0368536151945591, 0.004067250061780214, 0.36785995960235596, 0.18657256662845612, 0.41566842794418335, 0.02818182483315468, 0.011713485233485699, 0.0071058315224945545, 0.17162838578224182, 0.1426667422056198, 0.3244997560977936], "count": [645]}, "action": {"min": [-0.14032909274101257, -0.10134947299957275, 0.12675531208515167, -0.5768495798110962, -0.5756609439849854, -0.5749315023422241, -0.4113447964191437, 0.11047086119651794, -0.11870014667510986, 0.0918121412396431, 0.061849795281887054, -0.44026073813438416, 0.23929494619369507, 0.6262537240982056], "max": [-0.11165379732847214, -0.07824523746967316, 0.14381159842014313, 0.7067586779594421, 0.5903860926628113, 0.8318353295326233, 0.22142359614372253, 0.12716716527938843, -0.09459351748228073, 0.11811384558677673, 0.4428177773952484, -0.04851503297686577, 0.6268184781074524, 0.8834824562072754], "mean": [-0.11987052857875824, -0.08885347843170166, 0.13629993796348572, 0.5041183829307556, -0.3048655390739441, 0.6322883367538452, -0.2153933048248291, 0.11564084142446518, -0.10467120260000229, 0.10660496354103088, 0.21102361381053925, -0.23444800078868866, 0.4641092121601105, 0.8076978921890259], "std": [0.0056883483193814754, 0.0054999664425849915, 0.003755779704079032, 0.2449752390384674, 0.23420077562332153, 0.2756459414958954, 0.126079261302948, 0.004245638847351074, 0.005124185234308243, 0.005561804864555597, 0.09038617461919785, 0.10598038882017136, 0.10517335683107376, 0.047611530870199203], "count": [645]}, "timestamp": {"min": [0.0], "max": [21.466666666666665], "mean": [10.733333333333333], "std": [6.20650793447819], "count": [645]}, "frame_index": {"min": [0], "max": [644], "mean": [322.0], "std": [186.19523803434572], "count": [645]}, "episode_index": {"min": [452], "max": [452], "mean": [452.0], "std": [0.0], "count": [645]}, "index": {"min": [266914], "max": [267558], "mean": [267236.0], "std": [186.19523803434572], "count": [645]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [645]}}} +{"episode_index": 453, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5261953567538127]], [[0.49200339869281046]], [[0.45231457244008716]]], "std": [[[0.22645554369931434]], [[0.22136305574176607]], [[0.2273840363191689]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5381814950980391]], [[0.514230059912854]], [[0.47783183278867103]]], "std": [[[0.2172904594408186]], [[0.19962969652028434]], [[0.21490161107042832]]], "count": [100]}, "observation.state": {"min": [0.34808674454689026, -0.1582542359828949, 0.1232227310538292, -1.78257417678833, 0.0720074400305748, -0.13103824853897095, -0.5551409125328064, -0.2624879777431488, 0.16897140443325043, 2.178468704223633, -0.03347593918442726, -0.8509803414344788], "max": [0.46052199602127075, 0.009004710242152214, 0.14026376605033875, -0.4942392110824585, 1.252546787261963, 1.150758981704712, -0.46018993854522705, -0.20396509766578674, 0.19260795414447784, 3.03714919090271, 0.5296030640602112, 0.6077605485916138], "mean": [0.4110718369483948, -0.06569121032953262, 0.13452300429344177, -1.0301494598388672, 0.7677969336509705, 0.6408621072769165, -0.5078187584877014, -0.23858928680419922, 0.1794055849313736, 2.435075521469116, 0.21567237377166748, -0.16655948758125305], "std": [0.02224387601017952, 0.04338614642620087, 0.003751125419512391, 0.39083653688430786, 0.3557412326335907, 0.37410593032836914, 0.01936156302690506, 0.016167260706424713, 0.005357009824365377, 0.190297931432724, 0.1258755475282669, 0.40122389793395996], "count": [437]}, "action": {"min": [-0.13819661736488342, -0.10454850643873215, 0.12040121853351593, -0.4686773121356964, -0.5836012363433838, -0.5884153246879578, -0.4647566080093384, 0.11073333770036697, -0.12077096849679947, 0.09467373788356781, -0.038807593286037445, -0.6132787466049194, 0.17405280470848083, 0.6358460187911987], "max": [-0.12094498425722122, -0.07673715054988861, 0.13816571235656738, 0.7260329723358154, 0.7180925011634827, 0.7539409399032593, 0.4195117652416229, 0.1287308931350708, -0.10019536316394806, 0.11336830258369446, 0.6067928671836853, -0.29147836565971375, 0.4983710050582886, 0.8060526847839355], "mean": [-0.1251475214958191, -0.08752831071615219, 0.13276836276054382, 0.41702064871788025, -0.1746532917022705, 0.43534594774246216, -0.09990781545639038, 0.117572121322155, -0.10936896502971649, 0.10501792281866074, 0.32187598943710327, -0.43558770418167114, 0.3404582142829895, 0.7383638024330139], "std": [0.003687653923407197, 0.007579111494123936, 0.004812813829630613, 0.3837341070175171, 0.4279385805130005, 0.45065373182296753, 0.25022080540657043, 0.0029297710862010717, 0.004868954885751009, 0.0037974240258336067, 0.16734915971755981, 0.10250116139650345, 0.06937574595212936, 0.04733463004231453], "count": [437]}, "timestamp": {"min": [0.0], "max": [14.533333333333333], "mean": [7.2666666666666675], "std": [4.205023450852828], "count": [437]}, "frame_index": {"min": [0], "max": [436], "mean": [218.0], "std": [126.15070352558483], "count": [437]}, "episode_index": {"min": [453], "max": [453], "mean": [453.0], "std": [0.0], "count": [437]}, "index": {"min": [267559], "max": [267995], "mean": [267777.0], "std": [126.15070352558483], "count": [437]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [437]}}} +{"episode_index": 454, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5288817538126361]], [[0.49365577886710243]], [[0.45287725762527237]]], "std": [[[0.224646563900661]], [[0.21887661372068307]], [[0.2246150241831595]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5424064324618736]], [[0.5170447058823529]], [[0.47967435185185187]]], "std": [[[0.21470918424649568]], [[0.19627421255567218]], [[0.21119293570519201]]], "count": [100]}, "observation.state": {"min": [0.35118356347084045, -0.15399129688739777, 0.12257328629493713, -1.862046718597412, 0.550508439540863, -0.16138039529323578, -0.5339420437812805, -0.257885217666626, 0.16641901433467865, 2.3738999366760254, 0.027327299118041992, -0.7531081438064575], "max": [0.44218823313713074, 0.00908965989947319, 0.13922542333602905, -0.5695179104804993, 1.0391205549240112, 0.7998161315917969, -0.4711407721042633, -0.2050076723098755, 0.1908644437789917, 2.9897592067718506, 0.7635247707366943, 0.3698550760746002], "mean": [0.4088810384273529, -0.060065146535634995, 0.1320047825574875, -1.2033450603485107, 0.8361214995384216, 0.3587498366832733, -0.5039945244789124, -0.22221706807613373, 0.1791795939207077, 2.5544233322143555, 0.3403140902519226, -0.15756696462631226], "std": [0.017743026837706566, 0.04378948733210564, 0.004226617515087128, 0.38865602016448975, 0.13630220293998718, 0.2879820168018341, 0.019229454919695854, 0.009322389028966427, 0.005984919611364603, 0.1717337667942047, 0.190211221575737, 0.3256574273109436], "count": [367]}, "action": {"min": [-0.13699260354042053, -0.10049142688512802, 0.12248269468545914, 0.4267320930957794, -0.5282617211341858, 0.6079066395759583, -0.45437678694725037, 0.11443179845809937, -0.11694876849651337, 0.09528107941150665, -0.30096468329429626, -0.6317797303199768, -0.4163583219051361, -0.6266520619392395], "max": [-0.1192820817232132, -0.07625912129878998, 0.13575172424316406, 0.6417410373687744, -0.17096935212612152, 0.7786267995834351, -0.06462671607732773, 0.12558837234973907, -0.09973777085542679, 0.11487418413162231, 0.5406444668769836, 0.670804500579834, 0.5094003677368164, 0.8054912686347961], "mean": [-0.12585550546646118, -0.08542557060718536, 0.13122104108333588, 0.5580350160598755, -0.32847699522972107, 0.7063241004943848, -0.23357617855072021, 0.11790984123945236, -0.10775554925203323, 0.10600756853818893, 0.2539556622505188, -0.3211756944656372, 0.2855106592178345, 0.5608102083206177], "std": [0.003785274224355817, 0.006031963042914867, 0.003492460586130619, 0.06381405889987946, 0.09695980697870255, 0.04652128368616104, 0.10775310546159744, 0.0034307537134736776, 0.004108994733542204, 0.004122065845876932, 0.22276772558689117, 0.3701178729534149, 0.26627859473228455, 0.42286089062690735], "count": [367]}, "timestamp": {"min": [0.0], "max": [12.2], "mean": [6.1], "std": [3.531446036839741], "count": [367]}, "frame_index": {"min": [0], "max": [366], "mean": [183.0], "std": [105.94338110519222], "count": [367]}, "episode_index": {"min": [454], "max": [454], "mean": [454.0], "std": [0.0], "count": [367]}, "index": {"min": [267996], "max": [268362], "mean": [268179.0], "std": [105.94338110519222], "count": [367]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [367]}}} +{"episode_index": 455, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.520270547385621]], [[0.4854472685185185]], [[0.4450497194989107]]], "std": [[[0.22428551490372306]], [[0.21779938263401988]], [[0.22313525637908552]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.532639327342048]], [[0.5083785947712418]], [[0.4713966857298475]]], "std": [[[0.21591381426546577]], [[0.1966473628212618]], [[0.21143687378522336]]], "count": [100]}, "observation.state": {"min": [0.38809821009635925, -0.14931131899356842, 0.12156607955694199, -1.7051986455917358, 0.17735418677330017, -0.05526382848620415, -0.5809503197669983, -0.27047327160835266, 0.16560493409633636, 2.4321937561035156, -0.1635538935661316, -0.6751691102981567], "max": [0.47149601578712463, -0.0073906597681343555, 0.1383284032344818, -0.23569150269031525, 1.287252426147461, 0.9969879388809204, -0.47871676087379456, -0.20691518485546112, 0.19112628698349, 2.999824285507202, 0.6404152512550354, 0.4517355263233185], "mean": [0.41602426767349243, -0.06590905785560608, 0.1344348043203354, -0.9313979744911194, 0.9603683948516846, 0.5186042785644531, -0.5304790139198303, -0.24641694128513336, 0.17808541655540466, 2.5651237964630127, 0.11613103002309799, -0.21484938263893127], "std": [0.019151298329234123, 0.034691814333200455, 0.004294211510568857, 0.4005489647388458, 0.3037237226963043, 0.3210805356502533, 0.024795804172754288, 0.012487570755183697, 0.005747250281274319, 0.11057215929031372, 0.13897182047367096, 0.34583330154418945], "count": [395]}, "action": {"min": [-0.13472846150398254, -0.09734532237052917, 0.12165257334709167, -0.47218024730682373, -0.54897540807724, -0.5355708599090576, -0.5479761958122253, 0.11007679253816605, -0.11982767283916473, 0.0929562896490097, -0.2328561246395111, -0.6299813389778137, -0.3979615867137909, -0.6263383626937866], "max": [-0.11954530328512192, -0.07744380086660385, 0.1361810266971588, 0.7145609855651855, 0.6133993268013, 0.7625152468681335, 0.5643213987350464, 0.1282757669687271, -0.10000843554735184, 0.11290650069713593, 0.49988338351249695, 0.6517989039421082, 0.5381366610527039, 0.8267612457275391], "mean": [-0.12435989081859589, -0.08548856526613235, 0.13215140998363495, 0.4932539165019989, -0.16564519703388214, 0.48449942469596863, -0.1872502714395523, 0.1155458316206932, -0.10840637236833572, 0.10242335498332977, 0.28980034589767456, -0.38066360354423523, 0.41025301814079285, 0.7225044965744019], "std": [0.0031109594274312258, 0.004966318141669035, 0.004358408506959677, 0.3596630394458771, 0.3073882460594177, 0.3969668447971344, 0.27934250235557556, 0.0038979421369731426, 0.004728379193693399, 0.0037735227961093187, 0.14274689555168152, 0.1416970044374466, 0.11948847770690918, 0.16142576932907104], "count": [395]}, "timestamp": {"min": [0.0], "max": [13.133333333333333], "mean": [6.5666666666666655], "std": [3.8008770917600936], "count": [395]}, "frame_index": {"min": [0], "max": [394], "mean": [197.0], "std": [114.02631275280281], "count": [395]}, "episode_index": {"min": [455], "max": [455], "mean": [455.0], "std": [0.0], "count": [395]}, "index": {"min": [268363], "max": [268757], "mean": [268560.0], "std": [114.02631275280281], "count": [395]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [395]}}} +{"episode_index": 456, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5230767238562092]], [[0.48847104847494555]], [[0.4480014460784314]]], "std": [[[0.22139253494511144]], [[0.21571305413322625]], [[0.22068090418356046]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5367766367102397]], [[0.5134552668845316]], [[0.47674943899782135]]], "std": [[[0.20959250019052833]], [[0.19227195540180367]], [[0.20690766755762885]]], "count": [100]}, "observation.state": {"min": [0.3514615595340729, -0.15107209980487823, 0.11602702736854553, -1.7628633975982666, -0.023228200152516365, -0.20610292255878448, -0.5761390328407288, -0.3276987075805664, 0.16356846690177917, 2.2837331295013428, -0.29704776406288147, -0.42185744643211365], "max": [0.485775351524353, -0.0055140298791229725, 0.1308954805135727, -0.7483834028244019, 0.5714138150215149, 0.6783335208892822, -0.48579850792884827, -0.24694983661174774, 0.18503761291503906, 2.6460773944854736, 0.5983312129974365, 0.360356867313385], "mean": [0.43722760677337646, -0.05762924998998642, 0.12521407008171082, -1.2098668813705444, 0.4449666738510132, 0.2841225862503052, -0.5424570441246033, -0.284872442483902, 0.1736135482788086, 2.4448444843292236, -0.053510017693042755, -0.06028275936841965], "std": [0.024248389527201653, 0.03768661245703697, 0.003165614325553179, 0.22829946875572205, 0.15559712052345276, 0.22181090712547302, 0.019822603091597557, 0.015168879181146622, 0.00523819774389267, 0.09776511043310165, 0.16500025987625122, 0.2566145360469818], "count": [438]}, "action": {"min": [-0.14030584692955017, -0.09860159456729889, 0.11775967478752136, 0.21135838329792023, -0.6458144783973694, 0.6591494083404541, -0.4065585732460022, 0.11380476504564285, -0.1166500523686409, 0.08696942776441574, 0.0037064622156322002, -0.6054468750953674, 0.31443771719932556, 0.6380193829536438], "max": [-0.11974389851093292, -0.07460081577301025, 0.13352976739406586, 0.46056175231933594, -0.15306049585342407, 0.873009979724884, -0.07136458903551102, 0.12583239376544952, -0.10219581425189972, 0.10572691261768341, 0.42225244641304016, -0.24639907479286194, 0.4233537018299103, 0.8723042011260986], "mean": [-0.1254851073026657, -0.08284840732812881, 0.12627749145030975, 0.3955908417701721, -0.37337878346443176, 0.7909414768218994, -0.230274498462677, 0.11760137975215912, -0.10911764949560165, 0.09579726308584213, 0.24800941348075867, -0.36695703864097595, 0.356684148311615, 0.8073647618293762], "std": [0.003947457764297724, 0.006108256056904793, 0.0036745795514434576, 0.0645785853266716, 0.11786440014839172, 0.05784018337726593, 0.06382062286138535, 0.002651355229318142, 0.003637974848970771, 0.004290414042770863, 0.11992589384317398, 0.09273301064968109, 0.02413146011531353, 0.034763675183057785], "count": [438]}, "timestamp": {"min": [0.0], "max": [14.566666666666666], "mean": [7.283333333333334], "std": [4.21464598047579], "count": [438]}, "frame_index": {"min": [0], "max": [437], "mean": [218.5], "std": [126.43937941427373], "count": [438]}, "episode_index": {"min": [456], "max": [456], "mean": [456.0], "std": [0.0], "count": [438]}, "index": {"min": [268758], "max": [269195], "mean": [268976.5], "std": [126.43937941427373], "count": [438]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [438]}}} +{"episode_index": 457, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5116456586303284]], [[0.47921943211246765]], [[0.43928976291774574]]], "std": [[[0.2241675027937519]], [[0.21867017584743115]], [[0.2238982045567045]]], "count": [106]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5257920109343527]], [[0.5047999290911332]], [[0.46911800160315703]]], "std": [[[0.21250980405620157]], [[0.19553601826043457]], [[0.2098944789418075]]], "count": [106]}, "observation.state": {"min": [0.3916352391242981, -0.16356748342514038, 0.12493643164634705, -1.7561532258987427, 0.13212749361991882, 0.00788297038525343, -0.5755675435066223, -0.32058608531951904, 0.1627608835697174, 2.3351073265075684, -0.20809738337993622, -0.5779526829719543], "max": [0.48383694887161255, -0.022905629128217697, 0.1318676918745041, -0.6510872840881348, 1.0668578147888184, 0.9079982042312622, -0.48752841353416443, -0.2637158930301666, 0.18407317996025085, 3.058537483215332, 0.2649381756782532, 0.35614800453186035], "mean": [0.44785797595977783, -0.07526110112667084, 0.1287979632616043, -1.1164265871047974, 0.6902707815170288, 0.5822134017944336, -0.5413094758987427, -0.28996384143829346, 0.17251017689704895, 2.449246883392334, 0.0018648533150553703, -0.14856934547424316], "std": [0.017242886126041412, 0.04068269208073616, 0.002260018140077591, 0.28961071372032166, 0.2760007977485657, 0.2503204643726349, 0.02401401288807392, 0.01577826589345932, 0.005447113420814276, 0.08906635642051697, 0.14225886762142181, 0.3181244730949402], "count": [503]}, "action": {"min": [-0.13262899219989777, -0.0988784059882164, 0.1157226637005806, -0.4030133783817291, -0.5944895148277283, -0.602635383605957, -0.3501601815223694, 0.11446323990821838, -0.1180746853351593, 0.08740565180778503, 0.001365523785352707, -0.502741813659668, 0.22260339558124542, 0.7069675326347351], "max": [-0.11747466027736664, -0.07701202481985092, 0.13141515851020813, 0.6622436046600342, 0.6774893403053284, 0.739718496799469, 0.37340331077575684, 0.1273605078458786, -0.10299919545650482, 0.10430488735437393, 0.48708078265190125, -0.2602773904800415, 0.5629048943519592, 0.8464849591255188], "mean": [-0.12169377505779266, -0.08514782786369324, 0.12551136314868927, 0.41950610280036926, -0.23336054384708405, 0.4795135259628296, -0.10270104557275772, 0.11815048009157181, -0.10918974876403809, 0.09429760277271271, 0.29048869013786316, -0.37255385518074036, 0.3664049208164215, 0.7824150919914246], "std": [0.0025166275445371866, 0.006423821672797203, 0.0038681270089000463, 0.336520791053772, 0.40078118443489075, 0.45907166600227356, 0.21085134148597717, 0.0023223315365612507, 0.004337427671998739, 0.004663592204451561, 0.12909623980522156, 0.09344403445720673, 0.06270863860845566, 0.03261716291308403], "count": [503]}, "timestamp": {"min": [0.0], "max": [16.733333333333334], "mean": [8.366666666666667], "std": [4.840110191583108], "count": [503]}, "frame_index": {"min": [0], "max": [502], "mean": [251.0], "std": [145.20330574749323], "count": [503]}, "episode_index": {"min": [457], "max": [457], "mean": [457.0], "std": [0.0], "count": [503]}, "index": {"min": [269196], "max": [269698], "mean": [269447.0], "std": [145.20330574749323], "count": [503]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [503]}}} +{"episode_index": 458, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5303854493464052]], [[0.4957520778867102]], [[0.4557501279956427]]], "std": [[[0.22343746437378845]], [[0.21946756707705298]], [[0.22377048156742388]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5427128594771242]], [[0.5192013616557735]], [[0.4825888671023965]]], "std": [[[0.2070371859228186]], [[0.19173549062114656]], [[0.20590367588830072]]], "count": [100]}, "observation.state": {"min": [0.4003850817680359, -0.1371711790561676, 0.11757738888263702, -2.4797933101654053, 0.436143696308136, -0.6439188122749329, -0.5393942594528198, -0.27120691537857056, 0.162080317735672, 2.3049118518829346, 0.1373196840286255, -0.48443907499313354], "max": [0.4995063543319702, 0.014348840340971947, 0.1329163908958435, -0.8687454462051392, 1.1179598569869995, 0.9110279679298401, -0.4757203459739685, -0.2119504064321518, 0.18680834770202637, 2.7060487270355225, 0.45499953627586365, 0.31691935658454895], "mean": [0.4509361684322357, -0.04029364511370659, 0.12840111553668976, -1.668408751487732, 0.952646791934967, 0.12750975787639618, -0.5074868202209473, -0.2401745468378067, 0.1738901287317276, 2.5165534019470215, 0.3179298937320709, -0.14943943917751312], "std": [0.023262254893779755, 0.04052669182419777, 0.004483343567699194, 0.4314282238483429, 0.18699388206005096, 0.4189492464065552, 0.018668659031391144, 0.018650304526090622, 0.005111549515277147, 0.09528360515832901, 0.10582200437784195, 0.21747437119483948], "count": [442]}, "action": {"min": [-0.13167832791805267, -0.09476210176944733, 0.1149638369679451, -0.46858933568000793, -0.6061452627182007, -0.6153448224067688, -0.31706488132476807, 0.11522918194532394, -0.1130102202296257, 0.08993352204561234, 0.09112567454576492, -0.5740053057670593, 0.2765744924545288, 0.6558597683906555], "max": [-0.1172504872083664, -0.07267076522111893, 0.13139407336711884, 0.7437846064567566, 0.6263254880905151, 0.7531699538230896, 0.20232287049293518, 0.12766222655773163, -0.10007034242153168, 0.11286338418722153, 0.4839459955692291, -0.3731178939342499, 0.42833951115608215, 0.7817187309265137], "mean": [-0.12062527239322662, -0.08115947246551514, 0.12495224177837372, 0.6097801923751831, -0.22934147715568542, 0.6229469180107117, -0.08393491059541702, 0.12014498561620712, -0.10648389160633087, 0.10064350813627243, 0.32137224078178406, -0.48142489790916443, 0.3721370995044708, 0.7159878015518188], "std": [0.002361743012443185, 0.005075550172477961, 0.005141521338373423, 0.23598265647888184, 0.2179001271724701, 0.2620539367198944, 0.09285546839237213, 0.0021738731302320957, 0.0031443217303603888, 0.0050108847208321095, 0.08596371859312057, 0.06701745092868805, 0.03750745579600334, 0.023184098303318024], "count": [442]}, "timestamp": {"min": [0.0], "max": [14.7], "mean": [7.35], "std": [4.253136097830243], "count": [442]}, "frame_index": {"min": [0], "max": [441], "mean": [220.5], "std": [127.59408293490729], "count": [442]}, "episode_index": {"min": [458], "max": [458], "mean": [458.0], "std": [0.0], "count": [442]}, "index": {"min": [269699], "max": [270140], "mean": [269919.5], "std": [127.59408293490729], "count": [442]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [442]}}} +{"episode_index": 459, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.529370438453159]], [[0.4937836220043573]], [[0.45229446078431373]]], "std": [[[0.22362745124503214]], [[0.21797090939731337]], [[0.2225065629836939]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5411975081699347]], [[0.5167010648148148]], [[0.47871251361655776]]], "std": [[[0.20847148385140507]], [[0.19102147920093648]], [[0.205304707127804]]], "count": [100]}, "observation.state": {"min": [0.38870060443878174, -0.11926215887069702, 0.1253499537706375, -1.6666157245635986, -0.020222200080752373, 0.05333695933222771, -0.5537817478179932, -0.2739948332309723, 0.1639171689748764, 2.1556127071380615, -0.025141119956970215, -0.7878921031951904], "max": [0.4830414950847626, -0.012279150076210499, 0.1325002759695053, -0.741044282913208, 0.9960801005363464, 0.925492525100708, -0.45700815320014954, -0.22310975193977356, 0.18534095585346222, 2.8444440364837646, 0.941972017288208, 0.1027098000049591], "mean": [0.4322379231452942, -0.05936814472079277, 0.12872837483882904, -1.1407203674316406, 0.5792702436447144, 0.560564398765564, -0.525431752204895, -0.24604296684265137, 0.17357046902179718, 2.4414870738983154, 0.17146903276443481, -0.33626455068588257], "std": [0.021444445475935936, 0.03029797226190567, 0.0017010627780109644, 0.23153755068778992, 0.2873115837574005, 0.24650610983371735, 0.020871125161647797, 0.012444572523236275, 0.004632049240171909, 0.10328389704227448, 0.15881669521331787, 0.2235630303621292], "count": [449]}, "action": {"min": [-0.13281318545341492, -0.09603022038936615, 0.121468685567379, -0.37003085017204285, -0.6384590864181519, -0.6312842965126038, -0.3601672351360321, 0.1147417426109314, -0.11586406081914902, 0.09365680813789368, -0.47696831822395325, -0.5701154470443726, -0.4270164966583252, -0.5781106948852539], "max": [-0.11854982376098633, -0.07527773082256317, 0.13320881128311157, 0.6302614808082581, 0.7123919725418091, 0.7560645937919617, 0.31015533208847046, 0.12703415751457214, -0.09953715652227402, 0.10798656195402145, 0.5888243317604065, 0.6511287689208984, 0.4798007607460022, 0.8064736723899841], "mean": [-0.12437666952610016, -0.08413539826869965, 0.1284879893064499, 0.3936310410499573, -0.25249889492988586, 0.5192956924438477, -0.1331579089164734, 0.11816082894802094, -0.1057579517364502, 0.09969647228717804, 0.3541620671749115, -0.36341041326522827, 0.3732352554798126, 0.7037705779075623], "std": [0.0027032908983528614, 0.005329734180122614, 0.003090381156653166, 0.28542980551719666, 0.4033181667327881, 0.46663758158683777, 0.17892415821552277, 0.0031358632259070873, 0.0034158029593527317, 0.0037826283369213343, 0.15713229775428772, 0.16969633102416992, 0.12285485863685608, 0.19830161333084106], "count": [449]}, "timestamp": {"min": [0.0], "max": [14.933333333333334], "mean": [7.466666666666667], "std": [4.320493798938574], "count": [449]}, "frame_index": {"min": [0], "max": [448], "mean": [224.0], "std": [129.6148139681572], "count": [449]}, "episode_index": {"min": [459], "max": [459], "mean": [459.0], "std": [0.0], "count": [449]}, "index": {"min": [270141], "max": [270589], "mean": [270365.0], "std": [129.6148139681572], "count": [449]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [449]}}} +{"episode_index": 460, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5229905419389979]], [[0.4882021432461873]], [[0.4477220452069717]]], "std": [[[0.2265831763238498]], [[0.22127042861415588]], [[0.22551677299068393]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5349046432461874]], [[0.5115617510893246]], [[0.47446839869281043]]], "std": [[[0.21192730111886623]], [[0.1952358986517368]], [[0.20903717025423801]]], "count": [100]}, "observation.state": {"min": [0.3634626865386963, -0.12068314850330353, 0.11686573177576065, -1.8542882204055786, -0.2617955207824707, -0.018016289919614792, -0.5835683345794678, -0.3272121846675873, 0.1573125720024109, 2.331123113632202, -0.27586910128593445, -0.7184303402900696], "max": [0.496787965297699, 0.001652659964747727, 0.1373198926448822, -0.710639238357544, 0.6764873266220093, 1.0728800296783447, -0.48243141174316406, -0.21500088274478912, 0.18492354452610016, 2.9056735038757324, 0.6857786178588867, 0.24657657742500305], "mean": [0.4497385323047638, -0.06133703514933586, 0.1280270367860794, -1.4061877727508545, 0.4003148376941681, 0.48474133014678955, -0.5255904197692871, -0.2636965215206146, 0.17227208614349365, 2.573685646057129, 0.09848307073116302, -0.22771190106868744], "std": [0.026810137555003166, 0.03161725401878357, 0.005184964742511511, 0.2913782000541687, 0.22951334714889526, 0.314794659614563, 0.028124086558818817, 0.02601715922355652, 0.006590050179511309, 0.12945206463336945, 0.23903661966323853, 0.3383941650390625], "count": [420]}, "action": {"min": [-0.1369878649711609, -0.1006479561328888, 0.11452590674161911, -0.3504175841808319, -0.6562885046005249, -0.6550482511520386, -0.3407319188117981, 0.11587795615196228, -0.11467151343822479, 0.08535107970237732, -0.2992039918899536, -0.6143118143081665, -0.4048393964767456, -0.6121296882629395], "max": [-0.11383237689733505, -0.07185686379671097, 0.13718955218791962, 0.5319646596908569, 0.7852206230163574, 0.8753452301025391, 0.35781246423721313, 0.12833136320114136, -0.09690830111503601, 0.10848630219697952, 0.5487982034683228, 0.6332555413246155, 0.5023943185806274, 0.8421036601066589], "mean": [-0.12261758744716644, -0.08532204478979111, 0.12673404812812805, 0.34793275594711304, -0.24779418110847473, 0.5766570568084717, -0.013480662368237972, 0.1195574551820755, -0.10668228566646576, 0.09752276539802551, 0.2890177369117737, -0.3865945637226105, 0.42571353912353516, 0.71355140209198], "std": [0.004249964375048876, 0.0068237874656915665, 0.004970048554241657, 0.24677103757858276, 0.42004746198654175, 0.4787406027317047, 0.13526703417301178, 0.002596452133730054, 0.00398916844278574, 0.006507848389446735, 0.18177542090415955, 0.1172148734331131, 0.0863538458943367, 0.1496240198612213], "count": [420]}, "timestamp": {"min": [0.0], "max": [13.966666666666667], "mean": [6.9833333333333325], "std": [4.041440428948661], "count": [420]}, "frame_index": {"min": [0], "max": [419], "mean": [209.5], "std": [121.24321286845984], "count": [420]}, "episode_index": {"min": [460], "max": [460], "mean": [460.0], "std": [0.0], "count": [420]}, "index": {"min": [270590], "max": [271009], "mean": [270799.5], "std": [121.24321286845984], "count": [420]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [420]}}} +{"episode_index": 461, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5277761192810457]], [[0.49287859477124185]], [[0.45247183823529413]]], "std": [[[0.22195788077411915]], [[0.21675580381557127]], [[0.22102158122081123]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5389876171023965]], [[0.5153431535947713]], [[0.4783276960784314]]], "std": [[[0.20789658810053718]], [[0.19103271663715582]], [[0.20492458286699153]]], "count": [100]}, "observation.state": {"min": [0.33337491750717163, -0.13611316680908203, 0.11011075973510742, -1.9146788120269775, 0.09332273155450821, -0.07881993800401688, -0.5724398493766785, -0.2829532027244568, 0.15925051271915436, 2.25102162361145, -0.272726446390152, -0.6599189639091492], "max": [0.46680060029029846, 0.004247500095516443, 0.1337602734565735, -0.8135969638824463, 0.7307320237159729, 0.9422645568847656, -0.4924941062927246, -0.21665355563163757, 0.18451909720897675, 2.73288893699646, 0.7348310947418213, 0.13011494278907776], "mean": [0.4294636845588684, -0.046869486570358276, 0.12837816774845123, -1.2564051151275635, 0.5707690715789795, 0.49812400341033936, -0.5372355580329895, -0.25680527091026306, 0.17460349202156067, 2.4706194400787354, 0.07733543962240219, -0.2109842151403427], "std": [0.02585633657872677, 0.03567074239253998, 0.0056083304807543755, 0.31221631169319153, 0.13749392330646515, 0.28443220257759094, 0.01952436752617359, 0.015079869888722897, 0.0051557826809585094, 0.12067440152168274, 0.1940510869026184, 0.21727123856544495], "count": [335]}, "action": {"min": [-0.14392614364624023, -0.0979403406381607, 0.11118979752063751, -0.3923012912273407, -0.6279943585395813, -0.6271596550941467, -0.36374631524086, 0.11404237151145935, -0.11574126780033112, 0.0875747948884964, -0.33957016468048096, -0.6125025749206543, -0.39419087767601013, -0.6128568649291992], "max": [-0.12009574472904205, -0.0736861377954483, 0.1354963481426239, 0.5415244698524475, 0.7009338736534119, 0.8260254263877869, 0.28639769554138184, 0.12436361610889435, -0.09638962894678116, 0.10545161366462708, 0.5339319705963135, 0.6430731415748596, 0.44014647603034973, 0.8577203750610352], "mean": [-0.12471432983875275, -0.08260814100503922, 0.1295241266489029, 0.43389514088630676, -0.3391977548599243, 0.6503509879112244, -0.13047254085540771, 0.1166449710726738, -0.10697668045759201, 0.09896604716777802, 0.28253164887428284, -0.33563438057899475, 0.3561379015445709, 0.7121859788894653], "std": [0.005271787289530039, 0.005733167752623558, 0.0049381316639482975, 0.20485156774520874, 0.28811115026474, 0.3357084095478058, 0.13794437050819397, 0.0024393938947468996, 0.004407320637255907, 0.003616795176640153, 0.17528267204761505, 0.20665808022022247, 0.1548493653535843, 0.27581167221069336], "count": [335]}, "timestamp": {"min": [0.0], "max": [11.133333333333333], "mean": [5.566666666666666], "std": [3.2235246409964224], "count": [335]}, "frame_index": {"min": [0], "max": [334], "mean": [167.0], "std": [96.70573922989266], "count": [335]}, "episode_index": {"min": [461], "max": [461], "mean": [461.0], "std": [0.0], "count": [335]}, "index": {"min": [271010], "max": [271344], "mean": [271177.0], "std": [96.70573922989266], "count": [335]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [335]}}} +{"episode_index": 462, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.539058311546841]], [[0.5052773229847494]], [[0.46556128540305014]]], "std": [[[0.22149563402643058]], [[0.21792019119909486]], [[0.22257773833090486]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.549825558278867]], [[0.5264403921568628]], [[0.48984942810457516]]], "std": [[[0.2052867986796163]], [[0.19163031829759314]], [[0.2055994308800396]]], "count": [100]}, "observation.state": {"min": [0.3477778434753418, -0.21173417568206787, 0.11959830671548843, -2.5628304481506348, 0.5022757649421692, -0.6026982665061951, -0.571188747882843, -0.31534233689308167, 0.16279199719429016, 2.20509934425354, -0.1983962059020996, -0.921021044254303], "max": [0.4917527437210083, 0.020673759281635284, 0.13480378687381744, -0.07255271822214127, 1.2469446659088135, 1.2858397960662842, -0.47333401441574097, -0.21413594484329224, 0.18620169162750244, 2.855767250061035, 0.3559380769729614, 0.39958930015563965], "mean": [0.4225170314311981, -0.048648569732904434, 0.12792494893074036, -1.72685706615448, 1.0129656791687012, 0.03840983659029007, -0.5307434797286987, -0.2583974003791809, 0.1746998280286789, 2.5080373287200928, 0.06351439654827118, -0.13313834369182587], "std": [0.028810245916247368, 0.0570356659591198, 0.0024385962169617414, 0.7139670848846436, 0.1801609992980957, 0.5404302477836609, 0.027370931580662727, 0.027030473574995995, 0.006311082746833563, 0.12872791290283203, 0.125665545463562, 0.44455215334892273], "count": [437]}, "action": {"min": [-0.1431616097688675, -0.1012885794043541, 0.11182120442390442, -0.5622151494026184, -0.5528203845024109, -0.5507135391235352, -0.5404069423675537, 0.10937203466892242, -0.1187935620546341, 0.08978407084941864, -0.019051462411880493, -0.5379490256309509, 0.2849219739437103, 0.5923858284950256], "max": [-0.1195516288280487, -0.07598643749952316, 0.1313616782426834, 0.753150224685669, 0.6221005916595459, 0.7157136797904968, 0.5600795149803162, 0.12868183851242065, -0.09908721596002579, 0.10939062386751175, 0.6082015633583069, -0.27357572317123413, 0.5089080929756165, 0.8471713662147522], "mean": [-0.12593790888786316, -0.08371597528457642, 0.12522698938846588, 0.6098206043243408, -0.1936616599559784, 0.5936821699142456, -0.06052270904183388, 0.11748810857534409, -0.10737709701061249, 0.09943243116140366, 0.26782578229904175, -0.3971976935863495, 0.38364893198013306, 0.7587272524833679], "std": [0.0042294953018426895, 0.006173861678689718, 0.0030893718358129263, 0.29057246446609497, 0.21402345597743988, 0.25845566391944885, 0.19353069365024567, 0.005479251034557819, 0.004770173691213131, 0.00489364517852664, 0.17939360439777374, 0.08399952948093414, 0.06373545527458191, 0.06594933569431305], "count": [437]}, "timestamp": {"min": [0.0], "max": [14.533333333333333], "mean": [7.2666666666666675], "std": [4.205023450852828], "count": [437]}, "frame_index": {"min": [0], "max": [436], "mean": [218.0], "std": [126.15070352558483], "count": [437]}, "episode_index": {"min": [462], "max": [462], "mean": [462.0], "std": [0.0], "count": [437]}, "index": {"min": [271345], "max": [271781], "mean": [271563.0], "std": [126.15070352558483], "count": [437]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [437]}}} +{"episode_index": 463, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5242976873932756]], [[0.49129089874187915]], [[0.4515749842980235]]], "std": [[[0.2288181939838172]], [[0.22538981069084685]], [[0.2307699365202246]]], "count": [111]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5366577852362167]], [[0.5149770284990873]], [[0.4785779774872912]]], "std": [[[0.2129089408306111]], [[0.19868964276924786]], [[0.2134856667964851]]], "count": [111]}, "observation.state": {"min": [0.36774882674217224, -0.18078145384788513, 0.11893200874328613, -2.4540014266967773, 0.3903704881668091, -0.48414087295532227, -0.5657133460044861, -0.3012715280056, 0.15824848413467407, 2.3692867755889893, -0.18268300592899323, -0.6712533235549927], "max": [0.5298181176185608, 0.020611969754099846, 0.13322360813617706, -0.6290698051452637, 1.0433562994003296, 0.7993949055671692, -0.43942350149154663, -0.22201311588287354, 0.18804112076759338, 3.406622886657715, 0.5634889006614685, 0.38470014929771423], "mean": [0.46024319529533386, -0.058385107666254044, 0.12835893034934998, -1.6123191118240356, 0.8625550866127014, 0.1612689048051834, -0.5156161785125732, -0.2622431814670563, 0.17038105428218842, 2.744957685470581, 0.07842594385147095, -0.23653684556484222], "std": [0.03232458233833313, 0.04751075059175491, 0.0038530398160219193, 0.46355193853378296, 0.1612851768732071, 0.3259012699127197, 0.029814641922712326, 0.02042824774980545, 0.006869460456073284, 0.2852450907230377, 0.17373394966125488, 0.3513888120651245], "count": [535]}, "action": {"min": [-0.1373189240694046, -0.10013549029827118, 0.11275753378868103, 0.40184858441352844, -0.5802904367446899, 0.5813350081443787, -0.3979974389076233, 0.11289647966623306, -0.11831396073102951, 0.08964602649211884, 0.033821363002061844, -0.5387392640113831, 0.26038825511932373, 0.4544818699359894], "max": [-0.11307265609502792, -0.07211567461490631, 0.1314508318901062, 0.7173441648483276, -0.07481352984905243, 0.760259747505188, 0.1558530032634735, 0.13135117292404175, -0.0971260592341423, 0.11425673216581345, 0.5138042569160461, -0.26273879408836365, 0.8045291304588318, 0.8311393857002258], "mean": [-0.11939671635627747, -0.08334417641162872, 0.12343595921993256, 0.6144617199897766, -0.29451268911361694, 0.6979908347129822, -0.10337651520967484, 0.12186162173748016, -0.1057957112789154, 0.09736372530460358, 0.25729358196258545, -0.3683663606643677, 0.49400824308395386, 0.706000030040741], "std": [0.004393973853439093, 0.005838938523083925, 0.00480222562327981, 0.07385679334402084, 0.11844052374362946, 0.037801504135131836, 0.13003523647785187, 0.004443017300218344, 0.0051753767766058445, 0.005374597851186991, 0.12027645856142044, 0.09131704270839691, 0.15594424307346344, 0.0922100767493248], "count": [535]}, "timestamp": {"min": [0.0], "max": [17.8], "mean": [8.900000000000002], "std": [5.14803090727146], "count": [535]}, "frame_index": {"min": [0], "max": [534], "mean": [267.0], "std": [154.44092721814383], "count": [535]}, "episode_index": {"min": [463], "max": [463], "mean": [463.0], "std": [0.0], "count": [535]}, "index": {"min": [271782], "max": [272316], "mean": [272049.0], "std": [154.44092721814383], "count": [535]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [535]}}} +{"episode_index": 464, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5257502794977641]], [[0.49396487166991554]], [[0.4559964596949891]]], "std": [[[0.23379575365828945]], [[0.23050503462857808]], [[0.235502991104974]]], "count": [114]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5392933938195161]], [[0.5187795861521997]], [[0.4836238007873715]]], "std": [[[0.21638430651640236]], [[0.20254831894567363]], [[0.21680351160858144]]], "count": [114]}, "observation.state": {"min": [0.3450671434402466, -0.18124482035636902, 0.11626424640417099, -1.877773404121399, -0.1411454975605011, -0.3109012544155121, -0.5658755302429199, -0.3068010210990906, 0.15944236516952515, 2.202583074569702, -0.22435712814331055, -0.5621281266212463], "max": [0.48382920026779175, -0.00047108670696616173, 0.1323862075805664, -0.43070313334465027, 1.3140332698822021, 0.8377384543418884, -0.4451923668384552, -0.22870101034641266, 0.18631576001644135, 2.970048427581787, 1.0622121095657349, 0.4283817708492279], "mean": [0.439946711063385, -0.0884329155087471, 0.12555138766765594, -1.1063189506530762, 0.7135767936706543, 0.37025418877601624, -0.5146986246109009, -0.2777269780635834, 0.17166049778461456, 2.410811424255371, 0.20008614659309387, 0.07685963809490204], "std": [0.02098703198134899, 0.04891282320022583, 0.0040724268183112144, 0.440503865480423, 0.43551042675971985, 0.34820085763931274, 0.02697594277560711, 0.017142197117209435, 0.005256751086562872, 0.11922692507505417, 0.3120066821575165, 0.25667503476142883], "count": [559]}, "action": {"min": [-0.14188401401042938, -0.10356362909078598, 0.11252018064260483, -0.2504553198814392, -0.6122346520423889, -0.6139829158782959, -0.48343363404273987, 0.11702948808670044, -0.11733584105968475, 0.0883568748831749, -0.5147491693496704, -0.6175933480262756, -0.5506031513214111, -0.5218819379806519], "max": [-0.11910892277956009, -0.07273750007152557, 0.13063441216945648, 0.757768452167511, 0.6578662395477295, 0.828369677066803, 0.5012127161026001, 0.1279737800359726, -0.09836345911026001, 0.11027731001377106, 0.4065454304218292, 0.6495330929756165, 0.5798986554145813, 0.8532293438911438], "mean": [-0.12475127726793289, -0.0858074501156807, 0.12171099334955215, 0.45367172360420227, -0.2030695080757141, 0.49375152587890625, -0.15206392109394073, 0.12140312790870667, -0.10857759416103363, 0.09542348980903625, 0.19008785486221313, -0.3966500461101532, 0.23448298871517181, 0.7307406067848206], "std": [0.004269811790436506, 0.00756112951785326, 0.005077661015093327, 0.2896568775177002, 0.36176395416259766, 0.4491237998008728, 0.26371273398399353, 0.001958428416401148, 0.004182088654488325, 0.0045134625397622585, 0.1728251576423645, 0.267273873090744, 0.1855725646018982, 0.2860601544380188], "count": [559]}, "timestamp": {"min": [0.0], "max": [18.6], "mean": [9.299999999999999], "std": [5.378971401051816], "count": [559]}, "frame_index": {"min": [0], "max": [558], "mean": [279.0], "std": [161.36914203155447], "count": [559]}, "episode_index": {"min": [464], "max": [464], "mean": [464.0], "std": [0.0], "count": [559]}, "index": {"min": [272317], "max": [272875], "mean": [272596.0], "std": [161.36914203155447], "count": [559]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [559]}}} +{"episode_index": 465, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.52188128771666]], [[0.48914621531995295]], [[0.4502768764339561]]], "std": [[[0.2246512805445545]], [[0.22048062324026907]], [[0.22500928160634714]]], "count": [113]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.532332116278173]], [[0.5114363130699674]], [[0.4758052543042782]]], "std": [[[0.21166892006698673]], [[0.19595215329969148]], [[0.20960007197841987]]], "count": [113]}, "observation.state": {"min": [0.41223177313804626, -0.16240134835243225, 0.11993663758039474, -2.505585193634033, 0.23187214136123657, -0.7996875643730164, -0.6262286901473999, -0.3485887348651886, 0.162356436252594, 2.3506243228912354, -0.1809067279100418, -0.6176839470863342], "max": [0.49285709857940674, -0.00025485019432380795, 0.1363191455602646, -0.47704461216926575, 1.1801294088363647, 0.7963514924049377, -0.4678199887275696, -0.24209995567798615, 0.1896200031042099, 3.2086756229400635, 0.48410311341285706, 0.6449084281921387], "mean": [0.44480448961257935, -0.058439407497644424, 0.12865567207336426, -1.3225784301757812, 0.8335099816322327, 0.241441547870636, -0.5187689065933228, -0.2833064794540405, 0.1748543232679367, 2.5334932804107666, 0.0589890293776989, 0.10590573400259018], "std": [0.01874413713812828, 0.04577116295695305, 0.0045637572184205055, 0.6226799488067627, 0.2859519422054291, 0.5314162969589233, 0.024187959730625153, 0.028486808761954308, 0.005365804769098759, 0.13194578886032104, 0.13401027023792267, 0.3948965072631836], "count": [547]}, "action": {"min": [-0.13094130158424377, -0.09902467578649521, 0.11521892994642258, -0.32820695638656616, -0.5898098349571228, -0.5870895981788635, -0.47760283946990967, 0.09915006905794144, -0.12408693879842758, 0.08925579488277435, -0.06589927524328232, -0.5860697031021118, 0.17874759435653687, 0.6014307737350464], "max": [-0.11867446452379227, -0.07465462386608124, 0.13493625819683075, 0.7631614208221436, 0.587557852268219, 0.7218176126480103, 0.4498685598373413, 0.1285829097032547, -0.09985016286373138, 0.10632090270519257, 0.5013245940208435, -0.3123267590999603, 0.545146107673645, 0.8516607880592346], "mean": [-0.12236282229423523, -0.08352441340684891, 0.12566600739955902, 0.5814993977546692, -0.3187762498855591, 0.6594715714454651, -0.23462089896202087, 0.11973211914300919, -0.11105083674192429, 0.09748814254999161, 0.18180198967456818, -0.43814703822135925, 0.34949809312820435, 0.78123539686203], "std": [0.002959014382213354, 0.006306252907961607, 0.005559392739087343, 0.13767850399017334, 0.17633309960365295, 0.06101600453257561, 0.1285245567560196, 0.004257045220583677, 0.0048608072102069855, 0.004564255475997925, 0.16573038697242737, 0.06655005365610123, 0.08543068915605545, 0.05747797340154648], "count": [547]}, "timestamp": {"min": [0.0], "max": [18.2], "mean": [9.100000000000001], "std": [5.2635011583967986], "count": [547]}, "frame_index": {"min": [0], "max": [546], "mean": [273.0], "std": [157.90503475190397], "count": [547]}, "episode_index": {"min": [465], "max": [465], "mean": [465.0], "std": [0.0], "count": [547]}, "index": {"min": [272876], "max": [273422], "mean": [273149.0], "std": [157.90503475190397], "count": [547]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [547]}}} +{"episode_index": 466, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5283399717422722]], [[0.49444181550507993]], [[0.45467726061821867]]], "std": [[[0.22501897843370772]], [[0.22053657370713958]], [[0.22483300405285064]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5393752130114973]], [[0.5171806256606053]], [[0.4809447059902069]]], "std": [[[0.20982258998115313]], [[0.19427465650847545]], [[0.2081528963097568]]], "count": [101]}, "observation.state": {"min": [0.37293076515197754, -0.1198568120598793, 0.12057571113109589, -2.28645920753479, -0.09550891071557999, -0.543527364730835, -0.5562530159950256, -0.33730581402778625, 0.16024088859558105, 2.341398000717163, -0.24116341769695282, -0.5488901734352112], "max": [0.474847674369812, 0.017499709501862526, 0.137415811419487, -0.10337714105844498, 1.2037675380706787, 1.033292293548584, -0.4705847203731537, -0.23555879294872284, 0.18662816286087036, 2.8127808570861816, 0.31481051445007324, 0.45088353753089905], "mean": [0.42768585681915283, -0.0494130402803421, 0.1301257461309433, -1.3191304206848145, 0.9121736884117126, 0.30916628241539, -0.5284138917922974, -0.2746836543083191, 0.1730761080980301, 2.507349729537964, 0.06350241601467133, -0.02869352325797081], "std": [0.019613832235336304, 0.03289245069026947, 0.004897204227745533, 0.6256335973739624, 0.38624751567840576, 0.46861666440963745, 0.022179802879691124, 0.029955539852380753, 0.005985158029943705, 0.0839153602719307, 0.12813855707645416, 0.25298556685447693], "count": [472]}, "action": {"min": [-0.13843366503715515, -0.096513532102108, 0.11592687666416168, -0.4935162365436554, -0.5543930530548096, -0.5554064512252808, -0.571291983127594, 0.11255887150764465, -0.11949484795331955, 0.08656840771436691, -0.0436592772603035, -0.5177388787269592, 0.2614167332649231, 0.6664609909057617], "max": [-0.11905975639820099, -0.07413370907306671, 0.13313375413417816, 0.757832407951355, 0.6754552721977234, 0.7529769539833069, 0.6371679306030273, 0.1270005851984024, -0.09712234884500504, 0.11028848588466644, 0.4835396409034729, -0.36725637316703796, 0.4238131642341614, 0.8529717922210693], "mean": [-0.124013252556324, -0.08319192379713058, 0.12787790596485138, 0.5265566110610962, -0.14529761672019958, 0.4974999725818634, -0.06287644058465958, 0.11903730779886246, -0.10843599587678909, 0.09683040529489517, 0.2360743284225464, -0.4209175705909729, 0.37044379115104675, 0.7813576459884644], "std": [0.00353795918636024, 0.0052611734718084335, 0.005278017371892929, 0.346881240606308, 0.32880276441574097, 0.3952382802963257, 0.2559603154659271, 0.0029353429563343525, 0.004362684674561024, 0.006039523519575596, 0.12321536242961884, 0.030876005068421364, 0.03968139737844467, 0.04048178344964981], "count": [472]}, "timestamp": {"min": [0.0], "max": [15.7], "mean": [7.85], "std": [4.541811924282594], "count": [472]}, "frame_index": {"min": [0], "max": [471], "mean": [235.5], "std": [136.2543577284778], "count": [472]}, "episode_index": {"min": [466], "max": [466], "mean": [466.0], "std": [0.0], "count": [472]}, "index": {"min": [273423], "max": [273894], "mean": [273658.5], "std": [136.2543577284778], "count": [472]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [472]}}} +{"episode_index": 467, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5292649455337691]], [[0.4933984340958606]], [[0.45225630446623094]]], "std": [[[0.22614397133419212]], [[0.2219670083444257]], [[0.22707977804660526]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5410225381263616]], [[0.515489332788671]], [[0.4773793572984749]]], "std": [[[0.21284236994138567]], [[0.19731514064992656]], [[0.21202219064548625]]], "count": [100]}, "observation.state": {"min": [0.3752784729003906, -0.13604365289211273, 0.1217942163348198, -1.9647947549819946, 0.034705668687820435, -0.2689360976219177, -0.566709578037262, -0.2793080806732178, 0.1587190330028534, 2.387739419937134, -0.3007369339466095, -1.0891920328140259], "max": [0.483582079410553, -0.003351669991388917, 0.13650710880756378, -0.47536709904670715, 1.1616835594177246, 0.9286139011383057, -0.46468454599380493, -0.19649721682071686, 0.19042758643627167, 2.9859848022460938, 0.7670773267745972, 0.5403774380683899], "mean": [0.4387871026992798, -0.06349285691976547, 0.1295688897371292, -1.0917888879776, 0.7012551426887512, 0.5001125335693359, -0.5253803133964539, -0.2422952651977539, 0.17566117644309998, 2.6520042419433594, 0.10304146260023117, -0.17935940623283386], "std": [0.030928827822208405, 0.035088587552309036, 0.0032894930336624384, 0.32938721776008606, 0.27732470631599426, 0.29313191771507263, 0.02860492840409279, 0.023433126509189606, 0.007721960078924894, 0.21966670453548431, 0.17371869087219238, 0.5653043389320374], "count": [459]}, "action": {"min": [-0.13480548560619354, -0.09594084322452545, 0.11978151649236679, -0.38065794110298157, -0.5885909795761108, -0.5825123190879822, -0.3746059834957123, 0.10579086095094681, -0.11508301645517349, 0.09293816983699799, -0.37299978733062744, -0.6299454569816589, -0.4040403962135315, -0.603580892086029], "max": [-0.11356116086244583, -0.0757564902305603, 0.13265810906887054, 0.7216331958770752, 0.6429688930511475, 0.776422381401062, 0.4625556170940399, 0.12925593554973602, -0.09572282433509827, 0.10980940610170364, 0.5203362107276917, 0.6276143193244934, 0.7031134366989136, 0.8655654191970825], "mean": [-0.12291499227285385, -0.08401770889759064, 0.12792252004146576, 0.48798325657844543, -0.3514556288719177, 0.6329781413078308, -0.21574123203754425, 0.11746583878993988, -0.10644688457250595, 0.1018955260515213, 0.2286682426929474, -0.3480786383152008, 0.43899351358413696, 0.6985774636268616], "std": [0.006049303337931633, 0.005137507803738117, 0.00401335908100009, 0.2076539695262909, 0.23577512800693512, 0.25947991013526917, 0.15844866633415222, 0.007384370546787977, 0.003468337468802929, 0.004880003165453672, 0.18980415165424347, 0.15450796484947205, 0.20342178642749786, 0.21106266975402832], "count": [459]}, "timestamp": {"min": [0.0], "max": [15.266666666666667], "mean": [7.633333333333334], "std": [4.416719077257167], "count": [459]}, "frame_index": {"min": [0], "max": [458], "mean": [229.0], "std": [132.50157231771504], "count": [459]}, "episode_index": {"min": [467], "max": [467], "mean": [467.0], "std": [0.0], "count": [459]}, "index": {"min": [273895], "max": [274353], "mean": [274124.0], "std": [132.50157231771504], "count": [459]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [459]}}} +{"episode_index": 468, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.592207179296361]], [[0.5524777497357579]], [[0.5178763778338618]]], "std": [[[0.24082251789330023]], [[0.23119919241845321]], [[0.23701083533416256]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6131957413878643]], [[0.5815371368019155]], [[0.5514709765094157]]], "std": [[[0.23762048037318484]], [[0.20974648327183462]], [[0.2249748561300517]]], "count": [101]}, "observation.state": {"min": [0.30733388662338257, -0.15768276154994965, 0.12183699756860733, -2.0019099712371826, 0.08184526115655899, -0.36856788396835327, -0.5668177008628845, -0.31694096326828003, 0.1609538495540619, 2.139047145843506, -0.04946241155266762, -0.5836869478225708], "max": [0.44638168811798096, -0.0007645505829714239, 0.13436046242713928, -0.9062799215316772, 1.3095241785049438, 1.2557554244995117, -0.49097272753715515, -0.2598699629306793, 0.1861550211906433, 2.663271903991699, 0.29226547479629517, 0.5757794380187988], "mean": [0.4077795743942261, -0.050605904310941696, 0.12869274616241455, -1.2728036642074585, 0.7066113352775574, 0.5013911724090576, -0.5318635106086731, -0.27442559599876404, 0.17491333186626434, 2.4555203914642334, 0.10327205061912537, 0.0359058640897274], "std": [0.02314779721200466, 0.03578649461269379, 0.002805268159136176, 0.2816397249698639, 0.31637173891067505, 0.377547949552536, 0.017355261370539665, 0.01391221210360527, 0.005679193418473005, 0.12109824270009995, 0.09547314792871475, 0.31435397267341614], "count": [472]}, "action": {"min": [-0.14665065705776215, -0.10113107413053513, 0.12149251252412796, -0.4488382041454315, -0.6351757049560547, -0.6380876898765564, -0.27049678564071655, 0.11253838986158371, -0.12048769742250443, 0.08713789284229279, 0.016368500888347626, -0.5672743916511536, 0.14985385537147522, 0.7188160419464111], "max": [-0.12048670649528503, -0.07427976280450821, 0.13573791086673737, 0.7517856955528259, 0.7884427309036255, 0.8051292300224304, 0.25575557351112366, 0.12213277816772461, -0.09907285869121552, 0.10659721493721008, 0.5264884829521179, -0.3233734667301178, 0.4356333911418915, 0.8346498012542725], "mean": [-0.12770678102970123, -0.0834391638636589, 0.12983667850494385, 0.4449597895145416, -0.26283717155456543, 0.5783373713493347, -0.13727961480617523, 0.11749637126922607, -0.10968240350484848, 0.09738045930862427, 0.23017297685146332, -0.43890973925590515, 0.32106634974479675, 0.7884953022003174], "std": [0.004521416965872049, 0.005631773266941309, 0.003989906050264835, 0.2881971597671509, 0.3612505793571472, 0.3871699571609497, 0.12707211077213287, 0.0019628996960818768, 0.004523509182035923, 0.004731159657239914, 0.12563933432102203, 0.08101948350667953, 0.08144224435091019, 0.024243270978331566], "count": [472]}, "timestamp": {"min": [0.0], "max": [15.7], "mean": [7.85], "std": [4.541811924282594], "count": [472]}, "frame_index": {"min": [0], "max": [471], "mean": [235.5], "std": [136.2543577284778], "count": [472]}, "episode_index": {"min": [468], "max": [468], "mean": [468.0], "std": [0.0], "count": [472]}, "index": {"min": [274354], "max": [274825], "mean": [274589.5], "std": [136.2543577284778], "count": [472]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [472]}}} +{"episode_index": 469, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5769178758169935]], [[0.5378010675381264]], [[0.5027799782135076]]], "std": [[[0.24136487983572014]], [[0.23110139461516946]], [[0.23671332656049457]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6017535049019608]], [[0.5709542647058823]], [[0.5405880092592593]]], "std": [[[0.23699081295342772]], [[0.2086774667633689]], [[0.22424887759410805]]], "count": [100]}, "observation.state": {"min": [0.3838893175125122, -0.165057972073555, 0.11833961308002472, -2.0960607528686523, 0.07665307819843292, -0.379420667886734, -0.5737218260765076, -0.3415919244289398, 0.1582109034061432, 2.1273045539855957, -0.32054921984672546, -0.3856286108493805], "max": [0.4960079491138458, 0.004185719881206751, 0.13077233731746674, -0.6846376657485962, 1.1589508056640625, 0.8784632682800293, -0.48572129011154175, -0.26219451427459717, 0.18558983504772186, 3.9232988357543945, 0.5848042368888855, 0.5827479362487793], "mean": [0.4409750998020172, -0.05940258130431175, 0.12602655589580536, -1.3198400735855103, 0.7985319495201111, 0.4105526804924011, -0.5367981791496277, -0.2956974506378174, 0.17121270298957825, 2.4502413272857666, -0.04655613750219345, 0.09830129146575928], "std": [0.024027295410633087, 0.04231521859765053, 0.004150195512920618, 0.3400013744831085, 0.33430907130241394, 0.3507160246372223, 0.023288408294320107, 0.019702773541212082, 0.005844442173838615, 0.3513529598712921, 0.12178895622491837, 0.3241676092147827], "count": [359]}, "action": {"min": [-0.13581272959709167, -0.09911271184682846, 0.1156783252954483, -0.36983320116996765, -0.6320136189460754, -0.6464740633964539, -0.38552844524383545, 0.1128406822681427, -0.11910774558782578, 0.08637793362140656, -0.23810115456581116, -0.644248902797699, -0.33455410599708557, -0.6413474678993225], "max": [-0.11829914897680283, -0.07187449932098389, 0.13125213980674744, 0.7240734100341797, 0.6850912570953369, 0.754091203212738, 0.26724112033843994, 0.13012763857841492, -0.09895894676446915, 0.10669855028390884, 0.44881629943847656, 0.6481163501739502, 0.7650137543678284, 0.8723724484443665], "mean": [-0.12355084717273712, -0.08202735334634781, 0.12394452095031738, 0.4991028904914856, -0.23680390417575836, 0.5380496382713318, -0.1225435882806778, 0.11975422501564026, -0.10907109826803207, 0.09354312717914581, 0.18695682287216187, -0.39240777492523193, 0.3196618854999542, 0.8004681468009949], "std": [0.004113525617867708, 0.006552771665155888, 0.004872871097177267, 0.30064114928245544, 0.3369136452674866, 0.4081570506095886, 0.1407751441001892, 0.003634984837844968, 0.004264353774487972, 0.004822805058211088, 0.17345595359802246, 0.10289750248193741, 0.11585032939910889, 0.11846546828746796], "count": [359]}, "timestamp": {"min": [0.0], "max": [11.933333333333334], "mean": [5.966666666666667], "std": [3.454465708808431], "count": [359]}, "frame_index": {"min": [0], "max": [358], "mean": [179.0], "std": [103.63397126425292], "count": [359]}, "episode_index": {"min": [469], "max": [469], "mean": [469.0], "std": [0.0], "count": [359]}, "index": {"min": [274826], "max": [275184], "mean": [275005.0], "std": [103.63397126425292], "count": [359]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [359]}}} +{"episode_index": 470, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5775722402312179]], [[0.5390790287441142]], [[0.5044119557769344]]], "std": [[[0.24601722879250293]], [[0.23618207099218483]], [[0.24300173068609723]]], "count": [124]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6025733712839975]], [[0.5723047715053763]], [[0.5424173738491813]]], "std": [[[0.2433768983965244]], [[0.21546276278348578]], [[0.23182519499922136]]], "count": [124]}, "observation.state": {"min": [0.35676708817481995, -0.15748196840286255, 0.12015441805124283, -2.093125104904175, -0.4437953531742096, -0.5879829525947571, -0.574532687664032, -0.3150489032268524, 0.1637771725654602, 2.226487874984741, -0.3269711434841156, -0.3223077654838562], "max": [0.48369020223617554, -0.014225269667804241, 0.13389639556407928, -0.43678414821624756, 1.1544418334960938, 0.961904764175415, -0.45499253273010254, -0.2541319727897644, 0.18756408989429474, 3.1300418376922607, 0.2479952573776245, 0.644162118434906], "mean": [0.4405944347381592, -0.07411878556013107, 0.12782393395900726, -1.0173676013946533, 0.4874117970466614, 0.45357462763786316, -0.5255327820777893, -0.2867504954338074, 0.17409154772758484, 2.45363450050354, -0.013323824852705002, 0.08520936965942383], "std": [0.018615663051605225, 0.044010892510414124, 0.003529573790729046, 0.44590815901756287, 0.43996086716651917, 0.41606029868125916, 0.026025911793112755, 0.014825798571109772, 0.0048982310108840466, 0.1679878830909729, 0.15020614862442017, 0.3511694073677063], "count": [622]}, "action": {"min": [-0.14004142582416534, -0.10449539124965668, 0.11731672286987305, -0.23046953976154327, -0.6393986344337463, -0.6375778317451477, -0.4358348846435547, 0.11269554495811462, -0.12222034484148026, 0.08965815603733063, -0.0689772516489029, -0.567650318145752, 0.18372464179992676, 0.6718027591705322], "max": [-0.12008601427078247, -0.0753437951207161, 0.13457435369491577, 0.7069928646087646, 0.7790803909301758, 0.8168765306472778, 0.4565528929233551, 0.12694978713989258, -0.10066590458154678, 0.10943535715341568, 0.41851943731307983, -0.21983666718006134, 0.6066492199897766, 0.8778901696205139], "mean": [-0.12448805570602417, -0.08623660355806351, 0.12573236227035522, 0.3730957806110382, -0.18811586499214172, 0.47517189383506775, -0.1678675264120102, 0.11956813931465149, -0.11046016216278076, 0.09675489366054535, 0.19832658767700195, -0.40091371536254883, 0.32254263758659363, 0.8104055523872375], "std": [0.0029721318278461695, 0.00834261067211628, 0.005028742831200361, 0.26927730441093445, 0.44390854239463806, 0.47517621517181396, 0.27583760023117065, 0.0027474823873490095, 0.004365657921880484, 0.004422459751367569, 0.14566190540790558, 0.1042058914899826, 0.07511160522699356, 0.03775585815310478], "count": [622]}, "timestamp": {"min": [0.0], "max": [20.7], "mean": [10.35], "std": [5.985190055461898], "count": [622]}, "frame_index": {"min": [0], "max": [621], "mean": [310.5], "std": [179.55570166385695], "count": [622]}, "episode_index": {"min": [470], "max": [470], "mean": [470.0], "std": [0.0], "count": [622]}, "index": {"min": [275185], "max": [275806], "mean": [275495.5], "std": [179.55570166385695], "count": [622]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [622]}}} +{"episode_index": 471, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5890683605664487]], [[0.549563834422658]], [[0.5144011029411765]]], "std": [[[0.2415144842629467]], [[0.2320907269192433]], [[0.23819151656300397]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6117994852941177]], [[0.5800715740740741]], [[0.5496466176470588]]], "std": [[[0.23841407915641571]], [[0.21062594102819968]], [[0.22642951772340103]]], "count": [100]}, "observation.state": {"min": [0.37852975726127625, -0.14375866949558258, 0.11907850205898285, -2.445404052734375, 0.11450138688087463, -0.6743340492248535, -0.5630412697792053, -0.32726624608039856, 0.16096681356430054, 2.1851789951324463, -0.16860944032669067, -0.25384432077407837], "max": [0.4572475552558899, 0.016480309888720512, 0.13170047104358673, -0.6617814302444458, 1.374289870262146, 0.9185101389884949, -0.4717276990413666, -0.23671720921993256, 0.18845334649085999, 2.6737563610076904, 0.4994063973426819, 0.48372572660446167], "mean": [0.42034101486206055, -0.05529136583209038, 0.12805791199207306, -1.2066529989242554, 0.762908399105072, 0.5182595252990723, -0.5312336683273315, -0.29164308309555054, 0.17367969453334808, 2.4005777835845947, 0.00808336678892374, 0.10517329722642899], "std": [0.021171120926737785, 0.04507160186767578, 0.0031697943340986967, 0.5169227719306946, 0.40735676884651184, 0.4783323407173157, 0.0239188801497221, 0.01655741222202778, 0.006234329659491777, 0.12398736923933029, 0.1661902219057083, 0.2420036494731903], "count": [463]}, "action": {"min": [-0.13523946702480316, -0.09779101610183716, 0.11726135015487671, -0.37989723682403564, -0.6137524843215942, -0.6175562143325806, -0.37750670313835144, 0.11463835835456848, -0.12419870495796204, 0.08597427606582642, -0.028322841972112656, -0.5845847725868225, 0.21292786300182343, 0.6742411851882935], "max": [-0.12322305142879486, -0.07300131767988205, 0.13500674068927765, 0.7979064583778381, 0.6716988682746887, 0.7216792106628418, 0.37741342186927795, 0.1268635094165802, -0.09949075430631638, 0.10760258883237839, 0.37366053462028503, -0.2746577262878418, 0.38970497250556946, 0.8707059025764465], "mean": [-0.12658710777759552, -0.0834386870265007, 0.1276431679725647, 0.40593084692955017, -0.1451476365327835, 0.37627148628234863, -0.06199248135089874, 0.11909447610378265, -0.11066890507936478, 0.0953851044178009, 0.2072198987007141, -0.4098738431930542, 0.2977674603462219, 0.8229184746742249], "std": [0.002760498085990548, 0.006629782263189554, 0.0050780149176716805, 0.40579378604888916, 0.4369073510169983, 0.5118246674537659, 0.22629137337207794, 0.002165692625567317, 0.005419806577265263, 0.00469336099922657, 0.103166364133358, 0.09873215854167938, 0.041333623230457306, 0.033220190554857254], "count": [463]}, "timestamp": {"min": [0.0], "max": [15.4], "mean": [7.7], "std": [4.455209185760966], "count": [463]}, "frame_index": {"min": [0], "max": [462], "mean": [231.0], "std": [133.65627557282897], "count": [463]}, "episode_index": {"min": [471], "max": [471], "mean": [471.0], "std": [0.0], "count": [463]}, "index": {"min": [275807], "max": [276269], "mean": [276038.0], "std": [133.65627557282897], "count": [463]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [463]}}} +{"episode_index": 472, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5861181479196185]], [[0.5505345536816125]], [[0.5180187337172631]]], "std": [[[0.2407132858691627]], [[0.23091660819864565]], [[0.23652845258914282]]], "count": [143]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6003105622590917]], [[0.5750565039535628]], [[0.5471426215396804]]], "std": [[[0.2424448042459063]], [[0.21454907539451298]], [[0.22929765321839193]]], "count": [143]}, "observation.state": {"min": [0.34173092246055603, -0.17322862148284912, 0.11599981039762497, -1.9431966543197632, -0.03716513141989708, -0.08502676337957382, -0.6371409296989441, -0.3605743944644928, 0.16407401859760284, 2.6662075519561768, -0.35170236229896545, -0.8604939579963684], "max": [0.4432539939880371, 0.010950840078294277, 0.1325378715991974, -0.8200973868370056, 1.2372435331344604, 1.0397793054580688, -0.5171450972557068, -0.2788678705692291, 0.19405849277973175, 4.381471157073975, 0.6430113911628723, 0.5298668742179871], "mean": [0.40480098128318787, -0.06939002126455307, 0.12736356258392334, -1.1082708835601807, 0.5462411046028137, 0.7675660848617554, -0.5949137210845947, -0.3184124827384949, 0.1778092235326767, 3.911118745803833, 0.23936964571475983, -0.5144091844558716], "std": [0.016442691907286644, 0.05212089419364929, 0.0033866639714688063, 0.2739250659942627, 0.34764471650123596, 0.2992156147956848, 0.02434466779232025, 0.02322261780500412, 0.005380768328905106, 0.48362308740615845, 0.2895013689994812, 0.27399706840515137], "count": [750]}, "action": {"min": [-0.14215004444122314, -0.10333308577537537, 0.11710598319768906, -0.502787709236145, -0.6533544063568115, -0.6520493030548096, -0.3269325792789459, 0.10313219577074051, -0.12265029549598694, 0.07991714030504227, -0.10090302675962448, -0.6719063520431519, 0.21106372773647308, 0.016320573166012764], "max": [-0.12454012036323547, -0.07398808747529984, 0.136146679520607, 0.7394500970840454, 0.7289605140686035, 0.7875353693962097, 0.3039873242378235, 0.12330764532089233, -0.10555794835090637, 0.10239437222480774, 0.21141614019870758, -0.0510907806456089, 0.9969397187232971, 0.7222965359687805], "mean": [-0.1296602040529251, -0.08597055077552795, 0.12828874588012695, 0.21458418667316437, -0.029450660571455956, 0.1768103390932083, -0.012082130648195744, 0.1109883040189743, -0.11444985866546631, 0.08999361097812653, 0.043597061187028885, -0.23916691541671753, 0.8678976893424988, 0.298867404460907], "std": [0.0035849963314831257, 0.008224137127399445, 0.005192448850721121, 0.43425509333610535, 0.5571796298027039, 0.6189666390419006, 0.19882680475711823, 0.003705374663695693, 0.003997106105089188, 0.004194327164441347, 0.06208299845457077, 0.12000288814306259, 0.1602582335472107, 0.23322030901908875], "count": [750]}, "timestamp": {"min": [0.0], "max": [24.966666666666665], "mean": [12.483333333333333], "std": [7.21687194986448], "count": [750]}, "frame_index": {"min": [0], "max": [749], "mean": [374.5], "std": [216.5061584959344], "count": [750]}, "episode_index": {"min": [472], "max": [472], "mean": [472.0], "std": [0.0], "count": [750]}, "index": {"min": [276270], "max": [277019], "mean": [276644.5], "std": [216.5061584959344], "count": [750]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [750]}}} +{"episode_index": 473, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5894525953159041]], [[0.5508314133986928]], [[0.515648809912854]]], "std": [[[0.23431236203229075]], [[0.2256763397116543]], [[0.2307709111861058]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6111425381263617]], [[0.5810126770152505]], [[0.5502523148148148]]], "std": [[[0.22943481082188408]], [[0.2032556666960726]], [[0.21840081402162603]]], "count": [100]}, "observation.state": {"min": [0.34342992305755615, -0.14456184208393097, 0.11706016957759857, -2.3462207317352295, 0.35566481947898865, -0.14232175052165985, -0.6103739142417908, -0.33535969257354736, 0.15911051630973816, 2.338042974472046, -0.2949981987476349, -0.5740951895713806], "max": [0.48410722613334656, 0.05422130972146988, 0.13325342535972595, -0.8968439102172852, 0.8608099222183228, 0.7599250674247742, -0.5058776140213013, -0.2668049931526184, 0.18652446568012238, 4.176394462585449, 0.28543365001678467, 0.36602234840393066], "mean": [0.4421960115432739, -0.028346536681056023, 0.12547212839126587, -1.6543524265289307, 0.7333639860153198, 0.3438078463077545, -0.5548129081726074, -0.2990935444831848, 0.17354801297187805, 3.2006406784057617, -0.06704925000667572, -0.17443113029003143], "std": [0.025952173396945, 0.04932287707924843, 0.005452671088278294, 0.3971380591392517, 0.13628403842449188, 0.2553817629814148, 0.033955976366996765, 0.017626576125621796, 0.005669124890118837, 0.7632511258125305, 0.183007150888443, 0.24541878700256348], "count": [355]}, "action": {"min": [-0.14009906351566315, -0.09712936729192734, 0.11970172077417374, 0.3858790993690491, -0.5947638750076294, 0.6591766476631165, -0.28898733854293823, 0.10890363901853561, -0.11714629083871841, 0.08297958225011826, -0.19804894924163818, -0.5556467771530151, 0.3168276250362396, 0.23438209295272827], "max": [-0.12017536163330078, -0.06562663614749908, 0.13181546330451965, 0.6340510845184326, -0.19466447830200195, 0.7743971347808838, 0.17722898721694946, 0.12916791439056396, -0.10117336362600327, 0.10266069322824478, 0.3034708499908447, -0.21947181224822998, 0.9427125453948975, 0.8560327887535095], "mean": [-0.12347111105918884, -0.07921252399682999, 0.1259242296218872, 0.5594915747642517, -0.36640802025794983, 0.7205342054367065, -0.015747761353850365, 0.11649323254823685, -0.1100669652223587, 0.09339987486600876, 0.07687932997941971, -0.3155430853366852, 0.6149125099182129, 0.6015310883522034], "std": [0.003927814774215221, 0.008030436001718044, 0.003347778460010886, 0.06775285303592682, 0.10579352080821991, 0.031287018209695816, 0.12858852744102478, 0.005742267705500126, 0.0042411587201058865, 0.004507072735577822, 0.1466686874628067, 0.06637385487556458, 0.25275540351867676, 0.25448521971702576], "count": [355]}, "timestamp": {"min": [0.0], "max": [11.8], "mean": [5.9], "std": [3.41597553985518], "count": [355]}, "frame_index": {"min": [0], "max": [354], "mean": [177.0], "std": [102.4792661956554], "count": [355]}, "episode_index": {"min": [473], "max": [473], "mean": [473.0], "std": [0.0], "count": [355]}, "index": {"min": [277020], "max": [277374], "mean": [277197.0], "std": [102.4792661956554], "count": [355]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [355]}}} +{"episode_index": 474, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5836549226669548]], [[0.5445837204486936]], [[0.5093214610453916]]], "std": [[[0.2474099791486852]], [[0.23721331413480684]], [[0.24362402213816278]]], "count": [121]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6068446226975639]], [[0.5760570950143142]], [[0.5454975175102181]]], "std": [[[0.24390542569664686]], [[0.21592883286135578]], [[0.23201959360619925]]], "count": [121]}, "observation.state": {"min": [0.3876734673976898, -0.14713351428508759, 0.11944534629583359, -2.4934232234954834, 0.08826717734336853, -0.5316089391708374, -0.5810506939888, -0.37779608368873596, 0.16794733703136444, 2.407869577407837, -0.35416179895401, -0.38809001445770264], "max": [0.4802304208278656, 0.03722357004880905, 0.1336643546819687, -0.769352376461029, 1.0604358911514282, 0.7711606621742249, -0.49871864914894104, -0.2570125460624695, 0.19482849538326263, 2.9704678058624268, 0.45896199345588684, 0.8156766295433044], "mean": [0.42844104766845703, -0.0486493818461895, 0.12697109580039978, -1.4698394536972046, 0.5594732165336609, 0.23936037719249725, -0.5285459756851196, -0.29058149456977844, 0.17934824526309967, 2.5967626571655273, -0.029610246419906616, 0.18714551627635956], "std": [0.017628617584705353, 0.053458381444215775, 0.0030027846805751324, 0.5129224061965942, 0.2951449751853943, 0.437415212392807, 0.014642510563135147, 0.019225573167204857, 0.006647920235991478, 0.14943484961986542, 0.17322345077991486, 0.42531269788742065], "count": [603]}, "action": {"min": [-0.1360962688922882, -0.09983500093221664, 0.12034068256616592, 0.21950368583202362, -0.6218666434288025, 0.6434291005134583, -0.38854125142097473, 0.10539363324642181, -0.13124728202819824, 0.08793570846319199, -0.16912014782428741, -0.6456167101860046, 0.04574824869632721, 0.73902428150177], "max": [-0.11780638992786407, -0.07280247658491135, 0.13294711709022522, 0.7233586311340332, -0.08938302099704742, 0.832331657409668, 0.08210477977991104, 0.12466267496347427, -0.10468505322933197, 0.10963248461484909, 0.36308160424232483, -0.29786109924316406, 0.5551244020462036, 0.8407031893730164], "mean": [-0.12607629597187042, -0.08371919393539429, 0.12743449211120605, 0.4696023166179657, -0.37038466334342957, 0.7433874011039734, -0.14126622676849365, 0.11657164245843887, -0.11408815532922745, 0.09916608035564423, 0.11870797723531723, -0.4203796982765198, 0.3552919030189514, 0.7925333976745605], "std": [0.003399850567802787, 0.007137887645512819, 0.003475683741271496, 0.15202179551124573, 0.17700451612472534, 0.045097704976797104, 0.11503490060567856, 0.0031924075447022915, 0.006514387670904398, 0.003382854163646698, 0.15084104239940643, 0.09798026084899902, 0.146610826253891, 0.03162162005901337], "count": [603]}, "timestamp": {"min": [0.0], "max": [20.066666666666666], "mean": [10.033333333333333], "std": [5.8023622264908115], "count": [603]}, "frame_index": {"min": [0], "max": [602], "mean": [301.0], "std": [174.07086679472434], "count": [603]}, "episode_index": {"min": [474], "max": [474], "mean": [474.0], "std": [0.0], "count": [603]}, "index": {"min": [277375], "max": [277977], "mean": [277676.0], "std": [174.07086679472434], "count": [603]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [603]}}} +{"episode_index": 475, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5737797847399829]], [[0.5356612121499162]], [[0.5005485538821004]]], "std": [[[0.24772350784253433]], [[0.2379236664279705]], [[0.2450314651293792]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6048037558018377]], [[0.5743315868617979]], [[0.5434648061317925]]], "std": [[[0.24313613367859804]], [[0.21576645710987366]], [[0.23318913571893712]]], "count": [138]}, "observation.state": {"min": [0.40466347336769104, -0.1601463109254837, 0.11611517518758774, -1.9752792119979858, -0.1546725183725357, -0.6908943057060242, -0.5223270654678345, -0.3110021948814392, 0.15904571115970612, 2.2583606243133545, -0.1847325563430786, -0.42362719774246216], "max": [0.5055996179580688, -0.005537199787795544, 0.13096287846565247, -0.5556783676147461, 0.9291282296180725, 0.766794741153717, -0.44130784273147583, -0.2172713726758957, 0.19190795719623566, 3.0929267406463623, 0.5455895662307739, 0.7437292337417603], "mean": [0.4686204493045807, -0.08366192877292633, 0.12581932544708252, -1.067821741104126, 0.3604321777820587, 0.2822806239128113, -0.4854221045970917, -0.255187451839447, 0.17158560454845428, 2.5139684677124023, 0.2865144610404968, 0.11137489229440689], "std": [0.021069282665848732, 0.04579606279730797, 0.0026093050837516785, 0.36707767844200134, 0.36038291454315186, 0.38057777285575867, 0.01937711611390114, 0.022013282403349876, 0.006470206659287214, 0.14541850984096527, 0.16582819819450378, 0.3454628586769104], "count": [718]}, "action": {"min": [-0.13166290521621704, -0.09809063374996185, 0.11262952536344528, 0.13077105581760406, -0.6333373188972473, 0.6162338852882385, -0.4428189694881439, 0.11952104419469833, -0.1209660992026329, 0.08581501990556717, -0.08472058176994324, -0.6307142972946167, 0.11743851006031036, 0.62974613904953], "max": [-0.11360935866832733, -0.07466842979192734, 0.13515102863311768, 0.6376420259475708, -0.001287399441935122, 0.8503258228302002, 0.021416189149022102, 0.1331661194562912, -0.09847449511289597, 0.11630077660083771, 0.4700878858566284, -0.35506734251976013, 0.6088125109672546, 0.8386204838752747], "mean": [-0.12162493914365768, -0.0860980972647667, 0.12221874296665192, 0.35601726174354553, -0.4075392484664917, 0.7380992770195007, -0.30819445848464966, 0.12460311502218246, -0.1074010506272316, 0.09927411377429962, 0.22419075667858124, -0.5059160590171814, 0.3078984022140503, 0.749023973941803], "std": [0.00320215686224401, 0.006625937297940254, 0.006202387157827616, 0.15443235635757446, 0.1907515674829483, 0.04124189913272858, 0.0738455057144165, 0.0028209532611072063, 0.004141458310186863, 0.006401783786714077, 0.1479722559452057, 0.07005636394023895, 0.09693398326635361, 0.04183390364050865], "count": [718]}, "timestamp": {"min": [0.0], "max": [23.9], "mean": [11.950000000000003], "std": [6.908951520390856], "count": [718]}, "frame_index": {"min": [0], "max": [717], "mean": [358.5], "std": [207.26854561172567], "count": [718]}, "episode_index": {"min": [475], "max": [475], "mean": [475.0], "std": [0.0], "count": [718]}, "index": {"min": [277978], "max": [278695], "mean": [278336.5], "std": [207.26854561172567], "count": [718]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [718]}}} +{"episode_index": 476, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5880875998547568]], [[0.5476802126200274]], [[0.512437532780602]]], "std": [[[0.23929619470111904]], [[0.230145944563813]], [[0.23603496229168916]]], "count": [108]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6107344493867506]], [[0.5786630734083756]], [[0.5474185956790123]]], "std": [[[0.23646563057314773]], [[0.20900723158067266]], [[0.22547086062639526]]], "count": [108]}, "observation.state": {"min": [0.3956278860569, -0.1380515694618225, 0.11246742308139801, -2.2617156505584717, -0.08225516974925995, -0.8624876141548157, -0.5367453694343567, -0.2763734459877014, 0.16013719141483307, 2.265699863433838, -0.31658676266670227, -0.750382125377655], "max": [0.5047500729560852, 0.027670549228787422, 0.13940951228141785, -0.4502043128013611, 1.0081040859222412, 1.0881458520889282, -0.4466056525707245, -0.20309242606163025, 0.19171610474586487, 3.0730061531066895, 0.48123374581336975, 0.5908803939819336], "mean": [0.4359552562236786, -0.05392029508948326, 0.12955139577388763, -1.3309286832809448, 0.7062954306602478, 0.12163396924734116, -0.5017126202583313, -0.2321970909833908, 0.17589791119098663, 2.5870299339294434, 0.17492176592350006, -0.10296531021595001], "std": [0.02702108770608902, 0.04706048592925072, 0.0074260421097278595, 0.5317033529281616, 0.29618096351623535, 0.5918553471565247, 0.021360795944929123, 0.017322685569524765, 0.005523426923900843, 0.20998123288154602, 0.2060902714729309, 0.46200037002563477], "count": [520]}, "action": {"min": [-0.1317148357629776, -0.10101675987243652, 0.1100357323884964, -0.4612526595592499, -0.642561137676239, -0.638732373714447, -0.40671199560165405, 0.11281244456768036, -0.1184387356042862, 0.09516294300556183, -0.017946233972907066, -0.5731257200241089, 0.14240796864032745, 0.5898500084877014], "max": [-0.11655417084693909, -0.07113043963909149, 0.13517779111862183, 0.6455052495002747, 0.7366198897361755, 0.8318297863006592, 0.4693051278591156, 0.1318623423576355, -0.09549582004547119, 0.11277120560407639, 0.5585768818855286, -0.30053138732910156, 0.6248096227645874, 0.8617230653762817], "mean": [-0.12331648916006088, -0.08390230685472488, 0.1281120777130127, 0.4342348277568817, -0.09445160627365112, 0.5718480944633484, -0.15119825303554535, 0.12004842609167099, -0.10639510303735733, 0.10421540588140488, 0.2486199587583542, -0.4309931695461273, 0.3992260992527008, 0.7244974970817566], "std": [0.003338512731716037, 0.008425731211900711, 0.006381357554346323, 0.31285688281059265, 0.3459963798522949, 0.431485116481781, 0.2210785299539566, 0.004365341737866402, 0.0036315624602138996, 0.0037622784730046988, 0.20141197741031647, 0.07950407266616821, 0.12741373479366302, 0.07094548642635345], "count": [520]}, "timestamp": {"min": [0.0], "max": [17.3], "mean": [8.65], "std": [5.003693080560042], "count": [520]}, "frame_index": {"min": [0], "max": [519], "mean": [259.5], "std": [150.11079241680127], "count": [520]}, "episode_index": {"min": [476], "max": [476], "mean": [476.0], "std": [0.0], "count": [520]}, "index": {"min": [278696], "max": [279215], "mean": [278955.5], "std": [150.11079241680127], "count": [520]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [520]}}} +{"episode_index": 477, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5870662445533769]], [[0.5471690196078431]], [[0.5114801116557735]]], "std": [[[0.23957049348146625]], [[0.23084750684040392]], [[0.23673161042994006]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6077415032679739]], [[0.576217933006536]], [[0.5448493627450981]]], "std": [[[0.23791153765182005]], [[0.21091385161268808]], [[0.22639604002619443]]], "count": [100]}, "observation.state": {"min": [0.3943999707698822, -0.14934992790222168, 0.11994311958551407, -2.637899398803711, 0.3514290750026703, -0.7590711116790771, -0.5522217154502869, -0.29917094111442566, 0.16241605579853058, 2.559685230255127, -0.12830166518688202, -0.720679759979248], "max": [0.49132800102233887, 0.03713089972734451, 0.13734452426433563, -0.4900453984737396, 1.203904151916504, 1.0343836545944214, -0.47453105449676514, -0.20639775693416595, 0.1884377896785736, 3.082442283630371, 0.5461360812187195, 0.5037662386894226], "mean": [0.43604138493537903, -0.050142381340265274, 0.13010771572589874, -1.2917813062667847, 0.8378203511238098, 0.38628914952278137, -0.5292189717292786, -0.24592696130275726, 0.17423589527606964, 2.7538719177246094, 0.13621443510055542, -0.0812552347779274], "std": [0.024322371929883957, 0.04775704815983772, 0.0047812918201088905, 0.696213960647583, 0.27963411808013916, 0.5595969557762146, 0.01983697898685932, 0.02591605670750141, 0.005694070365279913, 0.09142373502254486, 0.1881411224603653, 0.35481223464012146], "count": [462]}, "action": {"min": [-0.13272573053836823, -0.09651526063680649, 0.11698438972234726, -0.44911620020866394, -0.5766680240631104, -0.5689680576324463, -0.4379862844944, 0.11263124644756317, -0.1157328262925148, 0.09142384678125381, -0.05219712108373642, -0.5428044199943542, 0.3385937213897705, 0.5335701704025269], "max": [-0.11911258101463318, -0.07208559662103653, 0.1361478865146637, 0.7717532515525818, 0.6246447563171387, 0.711857795715332, 0.4232541024684906, 0.12516652047634125, -0.09540197998285294, 0.11145889014005661, 0.5144756436347961, -0.3789312541484833, 0.5996196269989014, 0.816635251045227], "mean": [-0.12343258410692215, -0.08321991562843323, 0.12844394147396088, 0.5354047417640686, -0.274060994386673, 0.565405547618866, -0.14863605797290802, 0.11783801019191742, -0.10610342025756836, 0.10014992952346802, 0.20636391639709473, -0.43996894359588623, 0.4779309332370758, 0.7048207521438599], "std": [0.0026372880674898624, 0.00663381302729249, 0.00562736252322793, 0.2906635105609894, 0.28114578127861023, 0.2994743585586548, 0.20794878900051117, 0.002885304857045412, 0.003953891806304455, 0.00512623880058527, 0.15576103329658508, 0.02935759164392948, 0.08179036527872086, 0.08268838375806808], "count": [462]}, "timestamp": {"min": [0.0], "max": [15.366666666666667], "mean": [7.683333333333333], "std": [4.445586658782027], "count": [462]}, "frame_index": {"min": [0], "max": [461], "mean": [230.5], "std": [133.3675997634608], "count": [462]}, "episode_index": {"min": [477], "max": [477], "mean": [477.0], "std": [0.0], "count": [462]}, "index": {"min": [279216], "max": [279677], "mean": [279446.5], "std": [133.3675997634608], "count": [462]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [462]}}} +{"episode_index": 478, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5713790644140256]], [[0.5383332202902125]], [[0.502751400193201]]], "std": [[[0.23543207727645205]], [[0.2329173721471918]], [[0.23809869374526998]]], "count": [106]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5871151524026801]], [[0.5632100880708677]], [[0.5315085732930489]]], "std": [[[0.21853269895482777]], [[0.2051235596150392]], [[0.2200784380421994]]], "count": [106]}, "observation.state": {"min": [0.3669224679470062, -0.14453095197677612, 0.1116948276758194, -3.6091833114624023, 0.005465460009872913, -1.2884809970855713, -0.5474876761436462, -0.3224549889564514, 0.15632091462612152, 2.149531602859497, -0.3568945527076721, -0.5637915134429932], "max": [0.5302273631095886, 0.07925067842006683, 0.13351398706436157, -0.6265535354614258, 1.4575015306472778, 1.244631290435791, -0.46296238899230957, -0.22575092315673828, 0.1934090554714203, 4.548174858093262, 0.3477398753166199, 0.6093555688858032], "mean": [0.44100329279899597, -0.030535468831658363, 0.12501677870750427, -1.6744734048843384, 0.6996272206306458, 0.22319887578487396, -0.5094046592712402, -0.2797563374042511, 0.17365007102489471, 2.5747592449188232, 0.12958413362503052, 0.1620968133211136], "std": [0.04278047755360603, 0.04877382516860962, 0.006485920399427414, 1.0249886512756348, 0.460416704416275, 0.8230469226837158, 0.017819451168179512, 0.02965034358203411, 0.008382421918213367, 0.3423025608062744, 0.146159365773201, 0.3972049355506897], "count": [506]}, "action": {"min": [-0.13856956362724304, -0.09274674952030182, 0.10855336487293243, -0.3932395577430725, -0.6379160284996033, -0.6193273067474365, -0.39766958355903625, 0.11219175159931183, -0.12275323271751404, 0.08778048306703568, -0.3421230912208557, -0.6173771619796753, 0.19549643993377686, 0.185441255569458], "max": [-0.1224382147192955, -0.06960943341255188, 0.14159739017486572, 0.8811567425727844, 0.6367645859718323, 0.7732557058334351, 0.4008357524871826, 0.1331203430891037, -0.09647413343191147, 0.11237123608589172, 0.5248563289642334, -0.28862786293029785, 0.8835694789886475, 0.8358420133590698], "mean": [-0.12707260251045227, -0.08009123802185059, 0.12625965476036072, 0.5473852753639221, -0.3730775713920593, 0.5926769971847534, -0.09101562201976776, 0.12117598950862885, -0.1103217825293541, 0.09727559983730316, 0.1688290387392044, -0.4788951873779297, 0.32633617520332336, 0.7556138634681702], "std": [0.003084062598645687, 0.005372252315282822, 0.010109197348356247, 0.25732865929603577, 0.2380853295326233, 0.2015012502670288, 0.19526070356369019, 0.004845252726227045, 0.005504850298166275, 0.007451926823705435, 0.1926272213459015, 0.09485583752393723, 0.10533136129379272, 0.08666886389255524], "count": [506]}, "timestamp": {"min": [0.0], "max": [16.833333333333332], "mean": [8.416666666666666], "std": [4.868977761752917], "count": [506]}, "frame_index": {"min": [0], "max": [505], "mean": [252.5], "std": [146.0693328525875], "count": [506]}, "episode_index": {"min": [478], "max": [478], "mean": [478.0], "std": [0.0], "count": [506]}, "index": {"min": [279678], "max": [280183], "mean": [279930.5], "std": [146.0693328525875], "count": [506]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [506]}}} +{"episode_index": 479, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.549110789627504]], [[0.5160836760720547]], [[0.47807420957542907]]], "std": [[[0.24365804388388884]], [[0.23872700659441648]], [[0.2436978807665029]]], "count": [205]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5662139898506828]], [[0.5428445374355705]], [[0.5083538192783889]]], "std": [[[0.22996353960037724]], [[0.21270825256915535]], [[0.2276220678309483]]], "count": [205]}, "observation.state": {"min": [0.3557090759277344, -0.19213387370109558, 0.11883997917175293, -2.445404052734375, 0.05110204964876175, -0.6904767751693726, -0.6047672033309937, -0.34314417839050293, 0.16217495501041412, 2.1033997535705566, -0.5943687558174133, -0.7681294083595276], "max": [0.4930965006351471, 0.025569969788193703, 0.1456368863582611, -0.8700035810470581, 1.2547329664230347, 0.9038152694702148, -0.46502435207366943, -0.24620072543621063, 0.1933714747428894, 3.2791314125061035, 0.33544260263442993, 0.755413830280304], "mean": [0.44352129101753235, -0.07210129499435425, 0.13173715770244598, -1.1509432792663574, 0.5858985185623169, 0.4575853943824768, -0.5360605120658875, -0.27773797512054443, 0.17458169162273407, 2.636427164077759, -0.12517817318439484, 0.05062141269445419], "std": [0.026478514075279236, 0.04627437889575958, 0.005378883797675371, 0.2832205891609192, 0.2677551209926605, 0.27101433277130127, 0.038475293666124344, 0.017974646762013435, 0.0064139654859900475, 0.23514173924922943, 0.2457495629787445, 0.3422044813632965], "count": [1213]}, "action": {"min": [-0.13639208674430847, -0.10664775967597961, 0.11591562628746033, -0.3877688944339752, -0.665791392326355, -0.6637306213378906, -0.3568326234817505, 0.10871970653533936, -0.11929315328598022, 0.08701664209365845, -0.07149021327495575, -0.558951735496521, 0.0860762670636177, 0.6000553369522095], "max": [-0.11511040478944778, -0.07321126013994217, 0.14190389215946198, 0.7672003507614136, 0.7102794051170349, 0.7938961982727051, 0.25920936465263367, 0.12711013853549957, -0.09943236410617828, 0.11453506350517273, 0.568311333656311, 0.017863567918539047, 0.5881361961364746, 0.8669764995574951], "mean": [-0.12163129448890686, -0.08700083196163177, 0.1288013756275177, 0.44353172183036804, -0.36801910400390625, 0.665705680847168, -0.2131660431623459, 0.11792495101690292, -0.1084819883108139, 0.0979590117931366, 0.1379811316728592, -0.36296749114990234, 0.40024781227111816, 0.7983285784721375], "std": [0.004442270845174789, 0.00785638578236103, 0.006615036632865667, 0.18912279605865479, 0.24329525232315063, 0.2666344940662384, 0.1148202195763588, 0.00445482088252902, 0.0051240199245512486, 0.006049232091754675, 0.09964512288570404, 0.13919545710086823, 0.13890831172466278, 0.05558691918849945], "count": [1213]}, "timestamp": {"min": [0.0], "max": [40.4], "mean": [20.200000000000003], "std": [11.672093975708805], "count": [1213]}, "frame_index": {"min": [0], "max": [1212], "mean": [606.0], "std": [350.16281927126414], "count": [1213]}, "episode_index": {"min": [479], "max": [479], "mean": [479.0], "std": [0.0], "count": [1213]}, "index": {"min": [280184], "max": [281396], "mean": [280790.0], "std": [350.16281927126414], "count": [1213]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [1213]}}} +{"episode_index": 480, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5576739971475417]], [[0.5308560126226893]], [[0.49877942159108773]]], "std": [[[0.2356221477235982]], [[0.2319943108082937]], [[0.23712726706034046]]], "count": [194]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5675642196168272]], [[0.5537142193360736]], [[0.5267229156840284]]], "std": [[[0.22666376200540536]], [[0.21128917599578048]], [[0.22593764922132112]]], "count": [194]}, "observation.state": {"min": [0.32792267203330994, -0.22588993608951569, 0.10459764301776886, -2.8503153324127197, -0.16478362679481506, -0.4977637529373169, -0.6941964626312256, -0.4013426899909973, 0.15893034636974335, 2.504746437072754, -0.5535144805908203, -0.6991801261901855], "max": [0.5154615044593811, 0.0342271514236927, 0.13726674020290375, -0.3606666922569275, 1.2768681049346924, 1.2645496129989624, -0.5153765678405762, -0.282968670129776, 0.19321590662002563, 4.500155925750732, 0.43832987546920776, 0.013296499848365784], "mean": [0.41598808765411377, -0.05807856470346451, 0.12363731116056442, -1.4485794305801392, 0.636955976486206, 0.2945879101753235, -0.6161373853683472, -0.3388446271419525, 0.17697784304618835, 3.6358232498168945, 0.027461756020784378, -0.4466879665851593], "std": [0.03203796222805977, 0.05226922035217285, 0.007803667336702347, 0.6570725440979004, 0.34784653782844543, 0.4284975528717041, 0.045165617018938065, 0.024893710389733315, 0.006015222519636154, 0.7513458728790283, 0.3793684244155884, 0.20455168187618256], "count": [1128]}, "action": {"min": [-0.1457810401916504, -0.10552646964788437, 0.1057245284318924, -0.3617999851703644, -0.6579114198684692, -0.6565958261489868, -0.5367708802223206, 0.1020917296409607, -0.12796863913536072, 0.07051130384206772, -0.09890980273485184, -0.32554906606674194, 0.43637868762016296, 0.08034326881170273], "max": [-0.11679922789335251, -0.06912276148796082, 0.13547074794769287, 0.7731922268867493, 0.6816291809082031, 0.9793291687965393, 0.527843177318573, 0.12786000967025757, -0.10013460367918015, 0.10346478968858719, 0.26997727155685425, -0.14015866816043854, 0.9770817160606384, 0.8445761799812317], "mean": [-0.1295030564069748, -0.08327434211969376, 0.124554842710495, 0.4449883997440338, -0.2638019919395447, 0.6293643116950989, -0.06783319264650345, 0.10940825939178467, -0.11445704102516174, 0.0863756462931633, 0.047908663749694824, -0.22141216695308685, 0.778859555721283, 0.4214906096458435], "std": [0.004798075184226036, 0.008445370011031628, 0.007534996140748262, 0.2692369222640991, 0.2806564271450043, 0.34905827045440674, 0.24206417798995972, 0.00422872556373477, 0.005537022370845079, 0.0084450151771307, 0.10171851515769958, 0.04631388932466507, 0.22622019052505493, 0.31739217042922974], "count": [1128]}, "timestamp": {"min": [0.0], "max": [37.56666666666667], "mean": [18.78333333333333], "std": [10.854180795469585], "count": [1128]}, "frame_index": {"min": [0], "max": [1127], "mean": [563.5], "std": [325.62542386408757], "count": [1128]}, "episode_index": {"min": [480], "max": [480], "mean": [480.0], "std": [0.0], "count": [1128]}, "index": {"min": [281397], "max": [282524], "mean": [281960.5], "std": [325.62542386408757], "count": [1128]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [1128]}}} +{"episode_index": 481, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5660155159521435]], [[0.5345046088586094]], [[0.4991203703703703]]], "std": [[[0.23043779226217448]], [[0.22840181712258723]], [[0.23268145590255399]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.581102391898379]], [[0.5591475642516894]], [[0.5275084122632104]]], "std": [[[0.21500279847326514]], [[0.201359541501588]], [[0.21530929180252165]]], "count": [118]}, "observation.state": {"min": [0.30375826358795166, -0.21750305593013763, 0.11114002019166946, -2.9960498809814453, -0.2268165946006775, -0.7966344356536865, -0.5345444083213806, -0.27533087134361267, 0.16575400531291962, 1.9257924556732178, -0.07433026283979416, -0.6405179500579834], "max": [0.4937683641910553, 0.029925590381026268, 0.13821174204349518, 0.009436050429940224, 1.1771234273910522, 1.1868265867233276, -0.3991803526878357, -0.2286006212234497, 0.1946016550064087, 3.0224709510803223, 0.8892303109169006, 0.6068546772003174], "mean": [0.4159889221191406, -0.06974759697914124, 0.1293787658214569, -1.2425421476364136, 0.7046645879745483, 0.46852168440818787, -0.4907597005367279, -0.24948741495609283, 0.17828349769115448, 2.4270436763763428, 0.43797749280929565, -0.03342624381184578], "std": [0.03339402377605438, 0.06742232292890549, 0.006441887002438307, 0.8053590059280396, 0.24125804007053375, 0.5778489112854004, 0.03089887462556362, 0.009727975353598595, 0.005199824925512075, 0.17612503468990326, 0.19871024787425995, 0.23560267686843872], "count": [584]}, "action": {"min": [-0.1474079191684723, -0.10907508432865143, 0.11128357797861099, -0.5747562050819397, -0.5735639333724976, -0.5728495121002197, -0.5562070608139038, 0.11449733376502991, -0.12076330184936523, 0.09495986998081207, -0.09467096626758575, -0.6467941403388977, 0.06208815798163414, 0.6071206331253052], "max": [-0.11984022706747055, -0.0741984099149704, 0.14024874567985535, 0.7356160283088684, 0.6089355945587158, 0.9224231839179993, 0.6324694156646729, 0.1279248744249344, -0.09944293648004532, 0.11445609480142593, 0.578491747379303, -0.4308731257915497, 0.4714515209197998, 0.8273903131484985], "mean": [-0.12739865481853485, -0.08672162890434265, 0.12831377983093262, 0.3440103530883789, -0.14552542567253113, 0.4289763867855072, 0.043918028473854065, 0.12018101662397385, -0.11085104197263718, 0.10242649167776108, 0.3055393397808075, -0.5392095446586609, 0.2880401313304901, 0.7125390768051147], "std": [0.004472685977816582, 0.009617251344025135, 0.0077128103002905846, 0.43404069542884827, 0.3858121335506439, 0.4946078062057495, 0.3043849468231201, 0.0036338784266263247, 0.003997507970780134, 0.004498250316828489, 0.11445090919733047, 0.07354393601417542, 0.0660037100315094, 0.04852498695254326], "count": [584]}, "timestamp": {"min": [0.0], "max": [19.433333333333334], "mean": [9.716666666666665], "std": [5.619534381660696], "count": [584]}, "frame_index": {"min": [0], "max": [583], "mean": [291.5], "std": [168.5860314498209], "count": [584]}, "episode_index": {"min": [481], "max": [481], "mean": [481.0], "std": [0.0], "count": [584]}, "index": {"min": [282525], "max": [283108], "mean": [282816.5], "std": [168.5860314498209], "count": [584]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [584]}}} +{"episode_index": 482, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5622549950654525]], [[0.5294433318436587]], [[0.4936007578719997]]], "std": [[[0.23408620486947343]], [[0.23098788476454132]], [[0.23510310924872574]]], "count": [117]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5820667001843473]], [[0.5594090926019031]], [[0.5270076136342476]]], "std": [[[0.21724444091634457]], [[0.2021267986200277]], [[0.21665937768079083]]], "count": [117]}, "observation.state": {"min": [0.3456926941871643, -0.13623672723770142, 0.11172205209732056, -2.3263001441955566, 0.1109488382935524, -0.5237311720848083, -0.5814986228942871, -0.32047024369239807, 0.16237588226795197, 2.059784412384033, -0.1343136727809906, -0.6299931406974792], "max": [0.48726582527160645, 0.026774710044264793, 0.13451212644577026, -0.5475004315376282, 0.8248745203018188, 0.7704879641532898, -0.43089759349823, -0.22243015468120575, 0.18657632172107697, 4.540626049041748, 0.7003986835479736, 0.6501507759094238], "mean": [0.4515282213687897, -0.049566637724637985, 0.12405611574649811, -1.6509826183319092, 0.590859591960907, 0.07094608247280121, -0.5057296752929688, -0.25136417150497437, 0.1760004460811615, 2.8438830375671387, 0.2688208818435669, -0.06252925843000412], "std": [0.0260505061596632, 0.049657296389341354, 0.004796672612428665, 0.602425754070282, 0.16027116775512695, 0.42169418931007385, 0.03804951533675194, 0.02250077947974205, 0.00463057542219758, 0.8931921124458313, 0.23315981030464172, 0.3330562114715576], "count": [573]}, "action": {"min": [-0.1392568051815033, -0.09702443331480026, 0.10635478794574738, -0.2807423174381256, -0.6111433506011963, -0.6083008646965027, -0.44064122438430786, 0.11114990711212158, -0.11680267006158829, 0.08772116154432297, -0.2363738715648651, -0.6414941549301147, 0.01282638031989336, 0.0938083603978157], "max": [-0.11840029805898666, -0.06991449743509293, 0.1337592601776123, 0.6138340830802917, 0.6150676608085632, 0.8313090801239014, 0.4445542097091675, 0.13487036526203156, -0.0972566083073616, 0.1083376333117485, 0.5516446828842163, -0.266950398683548, 0.9433022141456604, 0.8242522478103638], "mean": [-0.1236637756228447, -0.08183366805315018, 0.12335746735334396, 0.48297518491744995, -0.19780728220939636, 0.6853663921356201, -0.034235309809446335, 0.11957309395074844, -0.10859356075525284, 0.10125044733285904, 0.18503420054912567, -0.4482022821903229, 0.4113568365573883, 0.6133713126182556], "std": [0.0036824827548116446, 0.007503143046051264, 0.005882980301976204, 0.20381411910057068, 0.25188007950782776, 0.3319460451602936, 0.2038044035434723, 0.004778384696692228, 0.004009806551039219, 0.004255631472915411, 0.23459550738334656, 0.10191591084003448, 0.29973238706588745, 0.25333037972450256], "count": [573]}, "timestamp": {"min": [0.0], "max": [19.066666666666666], "mean": [9.533333333333333], "std": [5.513686674153759], "count": [573]}, "frame_index": {"min": [0], "max": [572], "mean": [286.0], "std": [165.41060022461278], "count": [573]}, "episode_index": {"min": [482], "max": [482], "mean": [482.0], "std": [0.0], "count": [573]}, "index": {"min": [283109], "max": [283681], "mean": [283395.0], "std": [165.41060022461278], "count": [573]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [573]}}} +{"episode_index": 483, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5502589531351876]], [[0.5183631565764992]], [[0.4828811741647186]]], "std": [[[0.23720669125900606]], [[0.2323711773776403]], [[0.23608007638005957]]], "count": [137]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5642459885819697]], [[0.5428590318528059]], [[0.5112105000556589]]], "std": [[[0.22364253957845392]], [[0.20634873346456045]], [[0.21960096949267616]]], "count": [137]}, "observation.state": {"min": [0.3197443187236786, -0.14272382855415344, 0.09043437987565994, -2.25144100189209, -0.06599543243646622, -0.4966643154621124, -0.7127310037612915, -0.35454294085502625, 0.15894977748394012, 2.3831262588500977, -0.03374921903014183, -0.47561025619506836], "max": [0.46226733922958374, 0.06658539921045303, 0.13488933444023132, -0.5332415103912354, 1.2432554960250854, 0.9994484782218933, -0.48006823658943176, -0.21784284710884094, 0.19691163301467896, 3.2583720684051514, 0.5906795859336853, 0.5925142765045166], "mean": [0.40979692339897156, -0.04807969555258751, 0.12557826936244965, -1.1525557041168213, 0.5693023800849915, 0.5123536586761475, -0.529636561870575, -0.2772836685180664, 0.17768743634223938, 2.641042947769165, 0.2157594859600067, 0.06982579827308655], "std": [0.0331563763320446, 0.045877605676651, 0.008004425093531609, 0.4496629536151886, 0.38740864396095276, 0.4220569431781769, 0.03828783333301544, 0.02391725778579712, 0.007648318074643612, 0.20906740427017212, 0.15994010865688324, 0.3448711037635803], "count": [709]}, "action": {"min": [-0.15099264681339264, -0.10110226273536682, 0.10970010608434677, -0.41477152705192566, -0.6485077142715454, -0.6494103670120239, -0.3439101576805115, 0.09213359653949738, -0.12633420526981354, 0.07568372040987015, -0.21969249844551086, -0.6190812587738037, -0.5848727226257324, -0.58514803647995], "max": [-0.1205388754606247, -0.0556558258831501, 0.13631130754947662, 0.7456648349761963, 0.6778315901756287, 0.9543787240982056, 0.4226960241794586, 0.1242762953042984, -0.10170981287956238, 0.11369647085666656, 0.4439859390258789, 0.7736774682998657, 0.7222242951393127, 0.8247579336166382], "mean": [-0.12944923341274261, -0.08247072249650955, 0.12788476049900055, 0.29653918743133545, -0.10065717250108719, 0.35725632309913635, -0.03600142151117325, 0.11648395657539368, -0.11223502457141876, 0.09784981608390808, 0.19338688254356384, -0.460316002368927, 0.3534749150276184, 0.704120934009552], "std": [0.006553220096975565, 0.008949984796345234, 0.0059757353737950325, 0.39177533984184265, 0.4685187041759491, 0.5794108510017395, 0.25355324149131775, 0.0050450824201107025, 0.005763355176895857, 0.007164394948631525, 0.12476694583892822, 0.19411394000053406, 0.19517013430595398, 0.19657590985298157], "count": [709]}, "timestamp": {"min": [0.0], "max": [23.6], "mean": [11.8], "std": [6.822348894951389], "count": [709]}, "frame_index": {"min": [0], "max": [708], "mean": [354.0], "std": [204.67046684854168], "count": [709]}, "episode_index": {"min": [483], "max": [483], "mean": [483.0], "std": [0.0], "count": [709]}, "index": {"min": [283682], "max": [284390], "mean": [284036.0], "std": [204.67046684854168], "count": [709]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [709]}}} +{"episode_index": 484, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5421675538060342]], [[0.5087426903842345]], [[0.47034852611078104]]], "std": [[[0.2383847956747978]], [[0.23295223554165884]], [[0.23766306015582406]]], "count": [132]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5620243034924408]], [[0.5385281573909025]], [[0.5038364506998086]]], "std": [[[0.22400282197427776]], [[0.20598463843750792]], [[0.22079002870882836]]], "count": [132]}, "observation.state": {"min": [0.36201855540275574, -0.16332808136940002, 0.1174347996711731, -1.8326901197433472, -0.48027729988098145, 0.22794070839881897, -0.6031067967414856, -0.2982751131057739, 0.1589355170726776, 2.381448745727539, -0.20372502505779266, -0.36367905139923096], "max": [0.48228466510772705, -0.019561680033802986, 0.1362776756286621, -0.32606786489486694, 0.8998879790306091, 0.9661335945129395, -0.43917638063430786, -0.1900641769170761, 0.18324744701385498, 3.008841037750244, 0.9213399291038513, 0.3310631215572357], "mean": [0.4354962706565857, -0.08320453017950058, 0.12834496796131134, -0.9369949698448181, 0.42167940735816956, 0.5420681238174438, -0.5170597434043884, -0.255950003862381, 0.17188064754009247, 2.6756722927093506, 0.12060817331075668, -0.026831405237317085], "std": [0.027752310037612915, 0.04066033288836479, 0.004109416157007217, 0.3431723415851593, 0.2948303818702698, 0.1921144276857376, 0.04212362319231033, 0.021503590047359467, 0.004838855005800724, 0.2047729343175888, 0.2064281851053238, 0.19364149868488312], "count": [675]}, "action": {"min": [-0.13662806153297424, -0.1039167046546936, 0.11549820750951767, -0.31772077083587646, -0.6403477787971497, -0.638227641582489, -0.4625034034252167, 0.11178659647703171, -0.11382950097322464, 0.09002365171909332, -0.41093072295188904, -0.5963307619094849, -0.4761223793029785, -0.5909945964813232], "max": [-0.11680419743061066, -0.0778706967830658, 0.13501085340976715, 0.5672563314437866, 0.7810087203979492, 0.8336622714996338, 0.5229910016059875, 0.13056229054927826, -0.0962926372885704, 0.11034973710775375, 0.44012072682380676, 0.6360636949539185, 0.5767043828964233, 0.8149688839912415], "mean": [-0.1252140998840332, -0.0876653790473938, 0.12672169506549835, 0.346198171377182, -0.2930077016353607, 0.5628560781478882, -0.19640357792377472, 0.12082069367170334, -0.10609021037817001, 0.09847548604011536, 0.17794132232666016, -0.38882341980934143, 0.3843565881252289, 0.6851828694343567], "std": [0.005823915358632803, 0.006943827029317617, 0.004825814627110958, 0.21251016855239868, 0.38309574127197266, 0.41419076919555664, 0.27465352416038513, 0.004550380632281303, 0.00477405684068799, 0.005373718682676554, 0.17639975249767303, 0.2304239273071289, 0.19854658842086792, 0.2762511968612671], "count": [675]}, "timestamp": {"min": [0.0], "max": [22.466666666666665], "mean": [11.233333333333333], "std": [6.495183400598278], "count": [675]}, "frame_index": {"min": [0], "max": [674], "mean": [337.0], "std": [194.85550201794834], "count": [675]}, "episode_index": {"min": [484], "max": [484], "mean": [484.0], "std": [0.0], "count": [675]}, "index": {"min": [284391], "max": [285065], "mean": [284728.0], "std": [194.85550201794834], "count": [675]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [675]}}} +{"episode_index": 485, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5463784900987086]], [[0.5150570237095459]], [[0.4797654072491815]]], "std": [[[0.23525399753795906]], [[0.23049275227173474]], [[0.23441831709418434]]], "count": [179]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5620900944487044]], [[0.5412003064105841]], [[0.5095598306982632]]], "std": [[[0.2221916999163243]], [[0.20490176146983913]], [[0.21840725036558498]]], "count": [179]}, "observation.state": {"min": [0.27873659133911133, -0.17036348581314087, 0.10086432099342346, -2.2757649421691895, -0.0047822799533605576, -0.5096746683120728, -0.6035161018371582, -0.35036495327949524, 0.16116124391555786, 2.339510679244995, -0.251001238822937, -0.7198535203933716], "max": [0.4900614619255066, 0.0034057300072163343, 0.13802765309810638, -0.027888759970664978, 1.2745453119277954, 1.0471245050430298, -0.46517881751060486, -0.21777333319187164, 0.1886257529258728, 3.9167983531951904, 0.7816973924636841, 0.40827661752700806], "mean": [0.42365026473999023, -0.07293784618377686, 0.12544667720794678, -1.1272979974746704, 0.7583017349243164, 0.45638179779052734, -0.5371642112731934, -0.2846030592918396, 0.17545466125011444, 2.7689898014068604, 0.11758062988519669, -0.07448974996805191], "std": [0.029983486980199814, 0.04045814275741577, 0.007178102619946003, 0.5530394911766052, 0.37749865651130676, 0.3348957300186157, 0.03555876389145851, 0.039354849606752396, 0.005448771174997091, 0.40057650208473206, 0.2488817274570465, 0.3600793778896332], "count": [1010]}, "action": {"min": [-0.15469108521938324, -0.10138079524040222, 0.11077462136745453, -0.4674338698387146, -0.5709608793258667, -0.5630050301551819, -0.560936450958252, 0.10630704462528229, -0.1234593391418457, 0.08430243283510208, -0.46687477827072144, -0.6483035683631897, -0.49776604771614075, -0.5403087735176086], "max": [-0.11891673505306244, -0.07232676446437836, 0.13883370161056519, 0.7594846487045288, 0.6208745241165161, 0.8069932460784912, 0.6344621777534485, 0.1263575702905655, -0.09820055216550827, 0.11038258671760559, 0.4955918788909912, 0.5682744383811951, 0.7834692001342773, 0.8352181911468506], "mean": [-0.1269817054271698, -0.08419276773929596, 0.1240038052201271, 0.48409610986709595, -0.2905917465686798, 0.5631005167961121, -0.1470978558063507, 0.11696808785200119, -0.11091914027929306, 0.09582524746656418, 0.11370901763439178, -0.33040961623191833, 0.3645569682121277, 0.5861352682113647], "std": [0.005212769843637943, 0.007063047960400581, 0.007510322146117687, 0.2735729217529297, 0.28768324851989746, 0.33282628655433655, 0.27223342657089233, 0.004456235561519861, 0.005421734414994717, 0.006253932137042284, 0.2352747619152069, 0.316405326128006, 0.31357306241989136, 0.3842500150203705], "count": [1010]}, "timestamp": {"min": [0.0], "max": [33.63333333333333], "mean": [16.816666666666666], "std": [9.71872476774145], "count": [1010]}, "frame_index": {"min": [0], "max": [1009], "mean": [504.5], "std": [291.5617430322435], "count": [1010]}, "episode_index": {"min": [485], "max": [485], "mean": [485.0], "std": [0.0], "count": [1010]}, "index": {"min": [285066], "max": [286075], "mean": [285570.5], "std": [291.5617430322435], "count": [1010]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [1010]}}} +{"episode_index": 486, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5503044989106753]], [[0.5189449428104576]], [[0.48442683278867105]]], "std": [[[0.23896675116988284]], [[0.23549349216689577]], [[0.2403829164422061]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5719084940087146]], [[0.5503017538126362]], [[0.5195367783224402]]], "std": [[[0.2218388950842965]], [[0.20678780632988372]], [[0.22234292870139233]]], "count": [100]}, "observation.state": {"min": [0.3773018419742584, -0.155759796500206, 0.10965576022863388, -2.57981538772583, 0.3190462291240692, -0.6333940625190735, -0.5671806931495667, -0.3402945101261139, 0.15796460211277008, 2.1962924003601074, -0.20905384421348572, -0.5093570947647095], "max": [0.49104225635528564, 0.000926727952901274, 0.13306157290935516, -0.6691206097602844, 1.1040228605270386, 0.9536460041999817, -0.45944854617118835, -0.21459929645061493, 0.1821054071187973, 2.7926506996154785, 0.6838656663894653, 0.27016907930374146], "mean": [0.4441877603530884, -0.07665333151817322, 0.12360219657421112, -1.416534662246704, 0.7041083574295044, 0.30709490180015564, -0.526978075504303, -0.27161169052124023, 0.17001888155937195, 2.4773921966552734, 0.18443812429904938, -0.10545115917921066], "std": [0.029807953163981438, 0.04359182342886925, 0.007317438255995512, 0.656085729598999, 0.24072302877902985, 0.5326675176620483, 0.02696601301431656, 0.04470871388912201, 0.005464373622089624, 0.10880731791257858, 0.1412118375301361, 0.20290938019752502], "count": [361]}, "action": {"min": [-0.1352500468492508, -0.09941911697387695, 0.10382191091775894, 0.3115498721599579, -0.6052665710449219, 0.5866200923919678, -0.43467628955841064, 0.1172938346862793, -0.1139196902513504, 0.08139090240001678, -0.3518853485584259, -0.5540174245834351, -0.4681977927684784, -0.5648653507232666], "max": [-0.11918123066425323, -0.0736730545759201, 0.13794639706611633, 0.7482773661613464, -0.09576813131570816, 0.8126757740974426, 0.08003746718168259, 0.1279735565185547, -0.09914933145046234, 0.1075659915804863, 0.5056056976318359, 0.5964850783348083, 0.4729888439178467, 0.8396726846694946], "mean": [-0.12527325749397278, -0.08441873639822006, 0.12099411338567734, 0.5456347465515137, -0.37919655442237854, 0.6774584650993347, -0.16831707954406738, 0.1203431710600853, -0.1063644289970398, 0.09457379579544067, 0.2866935729980469, -0.44618910551071167, 0.35634708404541016, 0.7453591227531433], "std": [0.003365130862221122, 0.00610490795224905, 0.01057039201259613, 0.13989342749118805, 0.16473639011383057, 0.04127655550837517, 0.15099789202213287, 0.0016568718710914254, 0.00397880095988512, 0.008380599319934845, 0.11789989471435547, 0.08308108150959015, 0.06744611263275146, 0.1040506586432457], "count": [361]}, "timestamp": {"min": [0.0], "max": [12.0], "mean": [6.0], "std": [3.4737107920301407], "count": [361]}, "frame_index": {"min": [0], "max": [360], "mean": [180.0], "std": [104.21132376090422], "count": [361]}, "episode_index": {"min": [486], "max": [486], "mean": [486.0], "std": [0.0], "count": [361]}, "index": {"min": [286076], "max": [286436], "mean": [286256.0], "std": [104.21132376090422], "count": [361]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [361]}}} +{"episode_index": 487, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5478865465167548]], [[0.5141495033198465]], [[0.4768387021475257]]], "std": [[[0.2388206726747981]], [[0.23326125560124727]], [[0.2376102744382254]]], "count": [168]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5658054453262786]], [[0.5418247159975101]], [[0.5084247685185186]]], "std": [[[0.22485110569588054]], [[0.20678103925728847]], [[0.22111347784344562]]], "count": [168]}, "observation.state": {"min": [0.3627444803714752, -0.1730818897485733, 0.10632430016994476, -2.974032402038574, -0.0847146287560463, -1.1612924337387085, -0.6061418652534485, -0.3272894322872162, 0.15940219163894653, -3.9537038803100586, -0.5510550141334534, -0.4284069538116455], "max": [0.505136251449585, 0.03838970884680748, 0.14023654162883759, -0.2465953677892685, 1.3084311485290527, 1.2339935302734375, -0.48908066749572754, -0.24118095636367798, 0.18567928671836853, -2.6544649600982666, 0.5026856660842896, 0.42745286226272583], "mean": [0.4318573772907257, -0.0806790217757225, 0.13030192255973816, -1.0214015245437622, 0.5302169322967529, 0.3141873776912689, -0.5378249287605286, -0.2633155882358551, 0.1747642457485199, -3.620816230773926, -0.03394727408885956, -0.0993795096874237], "std": [0.027148375287652016, 0.046691637486219406, 0.005987775977700949, 0.6831110119819641, 0.3765944242477417, 0.47123363614082336, 0.02206771820783615, 0.01639888808131218, 0.005231013055890799, 0.28685006499290466, 0.17599129676818848, 0.19205665588378906], "count": [932]}, "action": {"min": [-0.13691601157188416, -0.10113327205181122, 0.10561777651309967, -0.21526838839054108, -0.5871135592460632, -0.5693228244781494, -0.5623291730880737, 0.109624482691288, -0.11792198568582535, 0.08695033192634583, -0.17363262176513672, -0.5296032428741455, 0.2988939881324768, 0.5365204811096191], "max": [-0.1183977723121643, -0.07142714411020279, 0.13880187273025513, 0.8096792697906494, 0.6299408078193665, 0.9093753695487976, 0.5791606903076172, 0.12513123452663422, -0.09117647260427475, 0.10640613734722137, 0.41912662982940674, -0.272574782371521, 0.7629705667495728, 0.8291918635368347], "mean": [-0.1251714676618576, -0.08884545415639877, 0.12781767547130585, 0.38587844371795654, -0.2937757670879364, 0.6042060852050781, -0.23788751661777496, 0.11677377671003342, -0.10732018947601318, 0.098988838493824, 0.2039918750524521, -0.38025882840156555, 0.44136032462120056, 0.7622498869895935], "std": [0.004142452497035265, 0.006284298840910196, 0.006766973529011011, 0.24719981849193573, 0.2825947105884552, 0.3346215486526489, 0.30033183097839355, 0.0033535438124090433, 0.004772845655679703, 0.0042876689694821835, 0.14389567077159882, 0.0699075311422348, 0.09582215547561646, 0.05649464577436447], "count": [932]}, "timestamp": {"min": [0.0], "max": [31.033333333333335], "mean": [15.516666666666666], "std": [8.968169019122886], "count": [932]}, "frame_index": {"min": [0], "max": [931], "mean": [465.5], "std": [269.0450705736866], "count": [932]}, "episode_index": {"min": [487], "max": [487], "mean": [487.0], "std": [0.0], "count": [932]}, "index": {"min": [286437], "max": [287368], "mean": [286902.5], "std": [269.0450705736866], "count": [932]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [932]}}} +{"episode_index": 488, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5670189896514162]], [[0.5345776252723312]], [[0.49884664760348585]]], "std": [[[0.23426445040320523]], [[0.23144094053317388]], [[0.23622946585515875]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5853980664488017]], [[0.5620458360566449]], [[0.5301534531590414]]], "std": [[[0.21725954209074308]], [[0.20303080222966652]], [[0.21766828368782795]]], "count": [100]}, "observation.state": {"min": [0.3442562520503998, -0.16094174981117249, 0.11115427315235138, -2.7087748050689697, 0.011477470397949219, -0.8480370044708252, -0.5444294810295105, -0.35866686701774597, 0.15877866744995117, -4.443539619445801, 0.12297285348176956, -0.6436759233474731], "max": [0.4918763041496277, 0.020673759281635284, 0.13224880397319794, -0.22415855526924133, 1.3084311485290527, 1.0794987678527832, -0.4598115086555481, -0.20400370657444, 0.18642334640026093, -3.703963041305542, 0.7672139406204224, 0.6302054524421692], "mean": [0.4368419349193573, -0.05976865813136101, 0.1250365525484085, -1.4103211164474487, 0.6744058132171631, 0.33442115783691406, -0.49963846802711487, -0.26530441641807556, 0.17350588738918304, -4.032285690307617, 0.28582507371902466, 0.08210113644599915], "std": [0.0314505472779274, 0.05516275390982628, 0.005843439605087042, 0.798992395401001, 0.3998733162879944, 0.5681329369544983, 0.023376867175102234, 0.033155154436826706, 0.006654966622591019, 0.2155311554670334, 0.14027772843837738, 0.44413992762565613], "count": [439]}, "action": {"min": [-0.14186912775039673, -0.10056421160697937, 0.10815819352865219, -0.28520649671554565, -0.6023231744766235, -0.5997813940048218, -0.5690268278121948, 0.11665673553943634, -0.11946015059947968, 0.08371234685182571, -0.5272961258888245, -0.5828723311424255, -0.41482675075531006, -0.5402035117149353], "max": [-0.11944524198770523, -0.07118929177522659, 0.13533496856689453, 0.7931157350540161, 0.6047050952911377, 0.8033750057220459, 0.5838225483894348, 0.13116443157196045, -0.09915298223495483, 0.11266583204269409, 0.5825415849685669, 0.5499375462532043, 0.47152286767959595, 0.8495606184005737], "mean": [-0.1263912171125412, -0.08334425836801529, 0.12410539388656616, 0.5000793933868408, -0.3189535439014435, 0.6162994503974915, -0.1113542914390564, 0.1216304823756218, -0.10889998823404312, 0.09852282702922821, 0.2120995968580246, -0.42914530634880066, 0.15873774886131287, 0.7240574359893799], "std": [0.005284099839627743, 0.006978318560868502, 0.00794824305921793, 0.23228015005588531, 0.248712420463562, 0.26375412940979004, 0.26568058133125305, 0.0030123384203761816, 0.004244283307343721, 0.007537095807492733, 0.24968773126602173, 0.23325924575328827, 0.1431044638156891, 0.2901005744934082], "count": [439]}, "timestamp": {"min": [0.0], "max": [14.6], "mean": [7.3], "std": [4.2242685099842365], "count": [439]}, "frame_index": {"min": [0], "max": [438], "mean": [219.0], "std": [126.7280552995271], "count": [439]}, "episode_index": {"min": [488], "max": [488], "mean": [488.0], "std": [0.0], "count": [439]}, "index": {"min": [287369], "max": [287807], "mean": [287588.0], "std": [126.7280552995271], "count": [439]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [439]}}} +{"episode_index": 489, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6451781427015251]], [[0.5856004003267974]], [[0.5134320479302832]]], "std": [[[0.25859981268513893]], [[0.2479964183628328]], [[0.2933671172561384]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6451781427015251]], [[0.5856004003267974]], [[0.5134320479302832]]], "std": [[[0.25859981268513893]], [[0.2479964183628328]], [[0.2933671172561384]]], "count": [100]}, "observation.state": {"min": [0.5209832787513733, 0.21728681027889252, 0.13937321305274963, -2.730163097381592, -0.8500156402587891, -0.4799821972846985, -0.2539466321468353, -0.0627240389585495, 0.1491057574748993, 4.440394401550293, -0.809161365032196, 0.4457590579986572], "max": [0.605114758014679, 0.3482334613800049, 0.1452363282442093, -0.12581397593021393, 1.0417166948318481, 1.0276577472686768, -0.2539389133453369, -0.06270858645439148, 0.1491057574748993, 4.4408135414123535, -0.8088880777359009, 0.44598188996315], "mean": [0.5608023405075073, 0.28164851665496826, 0.1428736448287964, -1.4394707679748535, 0.2883637547492981, 0.3181159496307373, -0.2539464831352234, -0.06271249055862427, 0.14910535514354706, 4.440702438354492, -0.8089747428894043, 0.44583138823509216], "std": [0.023820865899324417, 0.0394958034157753, 0.0015697189373895526, 0.9740447998046875, 0.6386613845825195, 0.5872296690940857, 1.5721506088084425e-06, 6.542398296005558e-06, 4.023313522338867e-07, 0.00016926297394093126, 0.00012732086179312319, 0.00010381487663835287], "count": [304]}, "action": {"min": [-0.10729672759771347, -0.04478377848863602, 0.14832450449466705, -0.3459553122520447, -0.621248722076416, -0.6244252324104309, -0.48963817954063416, 0.1587829887866974, -0.0728384479880333, 0.11215843260288239, -0.49254804849624634, -0.3924545347690582, 0.7605617642402649, 0.15786661207675934], "max": [-0.09816520661115646, -0.020531464368104935, 0.1610637605190277, 0.7021410465240479, 0.7317496538162231, 0.7842586040496826, 0.5628424882888794, 0.158785879611969, -0.07283278554677963, 0.11216247826814651, -0.49238142371177673, -0.39235398173332214, 0.7606685757637024, 0.15811863541603088], "mean": [-0.1032407358288765, -0.033435169607400894, 0.15404123067855835, 0.3876071870326996, 0.05077977105975151, 0.3801235258579254, 0.13277333974838257, 0.15878398716449738, -0.07283581793308258, 0.11216018348932266, -0.49244990944862366, -0.39241257309913635, 0.7606292963027954, 0.1579517275094986], "std": [0.003057975322008133, 0.007496138568967581, 0.0034467296209186316, 0.34295570850372314, 0.4426838159561157, 0.5191577076911926, 0.31929123401641846, 6.481097898358712e-07, 1.496127310929296e-06, 9.866153050097637e-07, 6.380669947247952e-05, 2.9368400646490045e-05, 4.404106948641129e-05, 8.327617979375646e-05], "count": [304]}, "timestamp": {"min": [0.0], "max": [10.1], "mean": [5.05], "std": [2.9252255373636484], "count": [304]}, "frame_index": {"min": [0], "max": [303], "mean": [151.5], "std": [87.75676612090945], "count": [304]}, "episode_index": {"min": [489], "max": [489], "mean": [489.0], "std": [0.0], "count": [304]}, "index": {"min": [287808], "max": [288111], "mean": [287959.5], "std": [87.75676612090945], "count": [304]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [304]}}} +{"episode_index": 490, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6493075517429193]], [[0.5879106944444444]], [[0.5150352559912854]]], "std": [[[0.24853526922149644]], [[0.2414533483622512]], [[0.2887651086132291]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6493075517429193]], [[0.5879106944444444]], [[0.5150352559912854]]], "std": [[[0.24853526922149644]], [[0.2414533483622512]], [[0.2887651086132291]]], "count": [100]}, "observation.state": {"min": [0.5257095694541931, 0.23470157384872437, 0.1318378746509552, -2.6368510723114014, -0.9649269580841064, -0.3349582254886627, -0.258981853723526, -0.024519680067896843, 0.1506522297859192, 4.537899971008301, -0.8278805613517761, 0.37466666102409363], "max": [0.5971448421478271, 0.32111895084381104, 0.1462526172399521, -0.3246000409126282, 0.8095712661743164, 1.0266506671905518, -0.25894322991371155, -0.024511950090527534, 0.15065482258796692, 4.53810977935791, -0.8278805613517761, 0.374830037355423], "mean": [0.5573639869689941, 0.2807829678058624, 0.14138905704021454, -1.5829023122787476, 0.2646998167037964, 0.3631327450275421, -0.25895434617996216, -0.024517342448234558, 0.15065255761146545, 4.5378923416137695, -0.8278807997703552, 0.37474408745765686], "std": [0.022286439314484596, 0.028686776757240295, 0.00313627440482378, 0.8303102850914001, 0.5371651649475098, 0.5461599826812744, 5.284824055706849e-06, 3.5134842164552538e-06, 1.1943059234909015e-06, 1.994810372707434e-05, 2.384185791015625e-07, 8.13206352177076e-05], "count": [278]}, "action": {"min": [-0.11188032478094101, -0.04631994292140007, 0.14587287604808807, -0.2916090488433838, -0.6368534564971924, -0.6363271474838257, -0.4373510777950287, 0.15746095776557922, -0.06939078867435455, 0.11558625102043152, -0.5062680244445801, -0.35906317830085754, 0.774054765701294, 0.12492338567972183], "max": [-0.09860848635435104, -0.022058425471186638, 0.16278712451457977, 0.6118181943893433, 0.7781150341033936, 0.8170675039291382, 0.49878233671188354, 0.15746615827083588, -0.06938805431127548, 0.11559008806943893, -0.5062412619590759, -0.3589663803577423, 0.7740938663482666, 0.12506482005119324], "mean": [-0.10444332659244537, -0.03303153067827225, 0.15376320481300354, 0.38403964042663574, -0.0002096794924000278, 0.47649911046028137, 0.12648886442184448, 0.15746423602104187, -0.06938952952623367, 0.11558783799409866, -0.5062480568885803, -0.3589991629123688, 0.7740785479545593, 0.1250436156988144], "std": [0.004171162843704224, 0.005983714945614338, 0.004223936703056097, 0.29474925994873047, 0.4269885718822479, 0.5174689888954163, 0.2692434787750244, 7.392745260403899e-07, 8.17584066226118e-07, 9.694163054518867e-07, 6.138059688964859e-06, 3.200486389687285e-05, 1.5118714145501144e-05, 2.2804351829108782e-05], "count": [278]}, "timestamp": {"min": [0.0], "max": [9.233333333333333], "mean": [4.616666666666667], "std": [2.675038940526536], "count": [278]}, "frame_index": {"min": [0], "max": [277], "mean": [138.5], "std": [80.25116821579608], "count": [278]}, "episode_index": {"min": [490], "max": [490], "mean": [490.0], "std": [0.0], "count": [278]}, "index": {"min": [288112], "max": [288389], "mean": [288250.5], "std": [80.25116821579608], "count": [278]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [278]}}} +{"episode_index": 491, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6506492211328977]], [[0.5871473692810457]], [[0.5127786737472767]]], "std": [[[0.24796195879648653]], [[0.24079720950802086]], [[0.288221247933758]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6506492211328977]], [[0.5871473692810457]], [[0.5127786737472767]]], "std": [[[0.24796195879648653]], [[0.24079720950802086]], [[0.288221247933758]]], "count": [100]}, "observation.state": {"min": [0.5075070858001709, 0.22561964392662048, 0.12838585674762726, -2.801877021789551, -0.7320983409881592, -0.6752462983131409, -0.24492646753787994, -0.08049403876066208, 0.1473972499370575, 4.189185619354248, -0.7672139406204224, 0.7810683846473694], "max": [0.5905187726020813, 0.329436331987381, 0.14455966651439667, -0.38939422369003296, 1.092272162437439, 1.0384209156036377, -0.2449032962322235, -0.08048631995916367, 0.1473972499370575, 4.189605236053467, -0.7669406533241272, 0.7812911868095398], "mean": [0.5426994562149048, 0.27926430106163025, 0.13895927369594574, -1.7166978120803833, 0.512654185295105, 0.19001449644565582, -0.24491089582443237, -0.08048640936613083, 0.14739719033241272, 4.189326763153076, -0.7669768929481506, 0.7810986638069153], "std": [0.02328910119831562, 0.02795613743364811, 0.004557293374091387, 0.901799738407135, 0.5541580319404602, 0.6321277618408203, 4.554560746328207e-06, 9.050629046214453e-07, 5.960464477539063e-08, 0.00019591511227190495, 8.544867159798741e-05, 6.964433850953355e-05], "count": [287]}, "action": {"min": [-0.11765512824058533, -0.04503496736288071, 0.14490889012813568, -0.3155333399772644, -0.6315597295761108, -0.6316999793052673, -0.4558604955673218, 0.16119185090065002, -0.07326559722423553, 0.1109350323677063, -0.48833686113357544, -0.4924983084201813, 0.6925367712974548, 0.19839513301849365], "max": [-0.10089922696352005, -0.024491488933563232, 0.15863843262195587, 0.7263896465301514, 0.7273643612861633, 0.7623667120933533, 0.49630337953567505, 0.16119615733623505, -0.07326109707355499, 0.11093806475400925, -0.48818883299827576, -0.49241727590560913, 0.6926253437995911, 0.19866707921028137], "mean": [-0.10743881016969681, -0.03377843275666237, 0.1516277939081192, 0.4791332185268402, -0.047260209918022156, 0.5025081038475037, 0.08221012353897095, 0.16119474172592163, -0.07326342165470123, 0.1109369620680809, -0.48821336030960083, -0.49244168400764465, 0.6926120519638062, 0.1985899955034256], "std": [0.004760121461004019, 0.004939279984682798, 0.0027102851308882236, 0.31739118695259094, 0.37484991550445557, 0.4338614046573639, 0.28185057640075684, 8.847987942317559e-07, 1.0298808774678037e-06, 8.379634550692572e-07, 4.2841020331252366e-05, 3.255468254792504e-05, 2.6139758119825274e-05, 9.431223588762805e-05], "count": [287]}, "timestamp": {"min": [0.0], "max": [9.533333333333333], "mean": [4.766666666666667], "std": [2.7616420236277306], "count": [287]}, "frame_index": {"min": [0], "max": [286], "mean": [143.0], "std": [82.84926070883192], "count": [287]}, "episode_index": {"min": [491], "max": [491], "mean": [491.0], "std": [0.0], "count": [287]}, "index": {"min": [288390], "max": [288676], "mean": [288533.0], "std": [82.84926070883192], "count": [287]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [287]}}} +{"episode_index": 492, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6300272140522876]], [[0.5709178376906319]], [[0.4947641503267974]]], "std": [[[0.2503960441679291]], [[0.24335230175578476]], [[0.29071986269833067]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6300272140522876]], [[0.5709178376906319]], [[0.4947641503267974]]], "std": [[[0.2503960441679291]], [[0.24335230175578476]], [[0.29071986269833067]]], "count": [100]}, "observation.state": {"min": [0.5138320326805115, 0.20994248986244202, 0.12230236828327179, -2.8358469009399414, -0.638638973236084, -0.48590365052223206, -0.30274656414985657, -0.06456977128982544, 0.15253832936286926, 4.53748083114624, -0.6542155742645264, 0.5376567244529724], "max": [0.5883873105049133, 0.3246559798717499, 0.14544114470481873, -0.4405585825443268, 1.0766955614089966, 1.0699079036712646, -0.30273884534835815, -0.06456205248832703, 0.15254221856594086, 4.537899971008301, -0.6539422869682312, 0.5379612445831299], "mean": [0.5472689867019653, 0.2774766683578491, 0.138414666056633, -1.51778244972229, 0.394146203994751, 0.3306329846382141, -0.3027450442314148, -0.0645638108253479, 0.15253980457782745, 4.537868976593018, -0.6539831161499023, 0.5378078818321228], "std": [0.024692334234714508, 0.03590233623981476, 0.006624424364417791, 0.904270350933075, 0.549313485622406, 0.5787708163261414, 3.1061974823387573e-06, 3.3322180570394266e-06, 1.2767496855303762e-06, 0.00010076589387608692, 9.248274727724493e-05, 3.1968167604645714e-05], "count": [251]}, "action": {"min": [-0.11733824759721756, -0.04819503426551819, 0.14243200421333313, -0.4020017385482788, -0.5989834666252136, -0.6099513173103333, -0.5056098699569702, 0.15188468992710114, -0.07510314881801605, 0.11339342594146729, -0.4565884470939636, -0.46224409341812134, 0.755047619342804, 0.08809372037649155], "max": [-0.10063496977090836, -0.021553410217165947, 0.1628350168466568, 0.7104299664497375, 0.7511324286460876, 0.8340019583702087, 0.47434180974960327, 0.1518886536359787, -0.07509880512952805, 0.11339684575796127, -0.45644524693489075, -0.4621681272983551, 0.7551672458648682, 0.08832954615354538], "mean": [-0.1073254644870758, -0.033424653112888336, 0.15142592787742615, 0.40999072790145874, -0.03806375712156296, 0.4782639741897583, 0.061451759189367294, 0.1518867313861847, -0.07510145753622055, 0.11339433491230011, -0.45647603273391724, -0.46221670508384705, 0.7551246881484985, 0.08814002573490143], "std": [0.005048117134720087, 0.007366330828517675, 0.005174640566110611, 0.3359414339065552, 0.402971476316452, 0.46910300850868225, 0.3203831911087036, 8.351464089173533e-07, 8.435275162810285e-07, 7.233732617351052e-07, 4.0911130781751126e-05, 1.8717679267865606e-05, 1.811361471482087e-05, 4.895063102594577e-05], "count": [251]}, "timestamp": {"min": [0.0], "max": [8.333333333333334], "mean": [4.166666666666667], "std": [2.41522945769824], "count": [251]}, "frame_index": {"min": [0], "max": [250], "mean": [125.0], "std": [72.4568837309472], "count": [251]}, "episode_index": {"min": [492], "max": [492], "mean": [492.0], "std": [0.0], "count": [251]}, "index": {"min": [288677], "max": [288927], "mean": [288802.0], "std": [72.4568837309472], "count": [251]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [251]}}} +{"episode_index": 493, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6552633033769063]], [[0.5900812145969498]], [[0.5135798965141612]]], "std": [[[0.23896993928945615]], [[0.23389097195826286]], [[0.28428304058644677]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6552633033769063]], [[0.5900812145969498]], [[0.5135798965141612]]], "std": [[[0.23896993928945615]], [[0.23389097195826286]], [[0.28428304058644677]]], "count": [100]}, "observation.state": {"min": [0.5158708095550537, 0.21561869978904724, 0.1320258378982544, -2.6381092071533203, -0.5983312129974365, -0.46906301379203796, -0.2733384072780609, -0.013769630342721939, 0.15162575244903564, 4.297805309295654, -0.5733267664909363, 0.6363616585731506], "max": [0.56458580493927, 0.3258220851421356, 0.14672966301441193, -0.21912598609924316, 1.2488576173782349, 1.1363641023635864, -0.2733229696750641, -0.013754189945757389, 0.15162834525108337, 4.297805309295654, -0.5730534791946411, 0.6371265053749084], "mean": [0.5401473641395569, 0.2787189185619354, 0.14085568487644196, -1.3905162811279297, 0.5423009991645813, 0.3602694571018219, -0.27333706617355347, -0.01376847643405199, 0.1516266167163849, 4.297794342041016, -0.573218047618866, 0.6369754672050476], "std": [0.013791588135063648, 0.035278476774692535, 0.004263146780431271, 0.8575563430786133, 0.626975953578949, 0.5510805249214172, 3.2200146051764023e-06, 2.8436272714316146e-06, 8.349480822289479e-07, 1.0967254638671875e-05, 6.26433320576325e-05, 0.00022037059534341097], "count": [228]}, "action": {"min": [-0.11347588151693344, -0.04299560934305191, 0.14831922948360443, -0.47020602226257324, -0.5967297554016113, -0.5901533365249634, -0.4938008487224579, 0.15686233341693878, -0.0685601457953453, 0.11876333504915237, -0.41163501143455505, -0.46940767765045166, 0.7598153948783875, 0.18144379556179047], "max": [-0.10092062503099442, -0.023311972618103027, 0.15922465920448303, 0.7635194659233093, 0.6643749475479126, 0.7591394782066345, 0.5645609498023987, 0.1568659245967865, -0.06855625659227371, 0.11876774579286575, -0.41146403551101685, -0.4691248834133148, 0.7600153088569641, 0.18160706758499146], "mean": [-0.10672938823699951, -0.03315287083387375, 0.1530858725309372, 0.45289361476898193, -0.062310945242643356, 0.4368351697921753, 0.03914986550807953, 0.15686380863189697, -0.06855834275484085, 0.11876482516527176, -0.41159912943840027, -0.46934372186660767, 0.7598478198051453, 0.18147465586662292], "std": [0.0036979473661631346, 0.005671207793056965, 0.0024260671343654394, 0.3664093613624573, 0.3831847012042999, 0.465455561876297, 0.31766611337661743, 6.47389470032067e-07, 6.92323283146834e-07, 9.177600759358029e-07, 2.8300108169787563e-05, 8.947841706685722e-05, 5.014233829570003e-05, 4.445083686732687e-05], "count": [228]}, "timestamp": {"min": [0.0], "max": [7.566666666666666], "mean": [3.7833333333333328], "std": [2.193909920835571], "count": [228]}, "frame_index": {"min": [0], "max": [227], "mean": [113.5], "std": [65.81729762506713], "count": [228]}, "episode_index": {"min": [493], "max": [493], "mean": [493.0], "std": [0.0], "count": [228]}, "index": {"min": [288928], "max": [289155], "mean": [289041.5], "std": [65.81729762506713], "count": [228]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [228]}}} +{"episode_index": 494, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6543256100217866]], [[0.5896619798474946]], [[0.5125607244008715]]], "std": [[[0.23817788145033322]], [[0.23379309424229547]], [[0.28493502496534545]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6543256100217866]], [[0.5896619798474946]], [[0.5125607244008715]]], "std": [[[0.23817788145033322]], [[0.23379309424229547]], [[0.28493502496534545]]], "count": [100]}, "observation.state": {"min": [0.5035144686698914, 0.22303253412246704, 0.1204279288649559, -2.6775310039520264, -0.9210666418075562, -0.4415600001811981, -0.2763425409793854, -0.024735910817980766, 0.15272629261016846, 4.412924766540527, -0.599151074886322, 0.6686691045761108], "max": [0.5956157445907593, 0.3265634775161743, 0.14111801981925964, -0.1079903170466423, 0.955635666847229, 0.9865826964378357, -0.2762884795665741, -0.02465095929801464, 0.1527288854122162, 4.413553714752197, -0.599151074886322, 0.6686691045761108], "mean": [0.5408737063407898, 0.28406134247779846, 0.13606314361095428, -1.4295154809951782, 0.2953762114048004, 0.25779736042022705, -0.27632561326026917, -0.02468510903418064, 0.15272779762744904, 4.413317680358887, -0.5991514921188354, 0.6686703562736511], "std": [0.023839008063077927, 0.029371201992034912, 0.006080279126763344, 0.9366220831871033, 0.5926573872566223, 0.4936453104019165, 1.079628236766439e-05, 2.306762326043099e-05, 1.1613290098466678e-06, 8.298250759253278e-05, 4.172325134277344e-07, 1.2516975402832031e-06], "count": [304]}, "action": {"min": [-0.12039881944656372, -0.04544440656900406, 0.14076031744480133, -0.2672549784183502, -0.6204686164855957, -0.6134310960769653, -0.5654698610305786, 0.15582017600536346, -0.07069668918848038, 0.1183156818151474, -0.4271737039089203, -0.49341702461242676, 0.7483838200569153, 0.11823108792304993], "max": [-0.0998828187584877, -0.022072914987802505, 0.15862734615802765, 0.6659786701202393, 0.7505127191543579, 0.7928836941719055, 0.5614342093467712, 0.1558273285627365, -0.07068262249231339, 0.11832167208194733, -0.4271440804004669, -0.4933352768421173, 0.7484002709388733, 0.11853819340467453], "mean": [-0.10960689187049866, -0.03247598931193352, 0.15032100677490234, 0.4043754041194916, -0.07223190367221832, 0.5305677652359009, 0.01220522541552782, 0.15582269430160522, -0.0706886276602745, 0.11831793189048767, -0.4271639287471771, -0.49339133501052856, 0.7483929991722107, 0.11834317445755005], "std": [0.0059271883219480515, 0.005984642542898655, 0.004094011150300503, 0.28347107768058777, 0.3882140517234802, 0.4339907169342041, 0.3608294427394867, 1.4665979506389704e-06, 3.2737802939664107e-06, 1.5533005353063345e-06, 6.079141712689307e-06, 1.4904941053828225e-05, 4.183483270026045e-06, 3.977195956395008e-05], "count": [304]}, "timestamp": {"min": [0.0], "max": [10.1], "mean": [5.05], "std": [2.9252255373636484], "count": [304]}, "frame_index": {"min": [0], "max": [303], "mean": [151.5], "std": [87.75676612090945], "count": [304]}, "episode_index": {"min": [494], "max": [494], "mean": [494.0], "std": [0.0], "count": [304]}, "index": {"min": [289156], "max": [289459], "mean": [289307.5], "std": [87.75676612090945], "count": [304]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [304]}}} +{"episode_index": 495, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6470060920479302]], [[0.5855424291938998]], [[0.5108142783224401]]], "std": [[[0.24215369628782968]], [[0.23614524132028805]], [[0.2851460256847359]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6470060920479302]], [[0.5855424291938998]], [[0.5108142783224401]]], "std": [[[0.24215369628782968]], [[0.23614524132028805]], [[0.2851460256847359]]], "count": [100]}, "observation.state": {"min": [0.4988113343715668, 0.23245425522327423, 0.13346990942955017, -2.6131560802459717, -0.9278984665870667, -0.6849028468132019, -0.295085608959198, -0.020442070439457893, 0.1557583212852478, 4.478348255157471, -0.6584513187408447, 0.7017505764961243], "max": [0.5588710308074951, 0.33144426345825195, 0.14325301349163055, -0.13378217816352844, 0.9922542572021484, 0.932603657245636, -0.29507017135620117, -0.020418910309672356, 0.1557583212852478, 4.478767395019531, -0.6584513187408447, 0.7017505764961243], "mean": [0.5253377556800842, 0.28449031710624695, 0.13919597864151, -1.4969942569732666, 0.2877883017063141, 0.17756539583206177, -0.2950732409954071, -0.020428026095032692, 0.15575799345970154, 4.478451251983643, -0.6584510207176208, 0.7017514705657959], "std": [0.019901271909475327, 0.032067377120256424, 0.0028025333303958178, 0.9416794776916504, 0.6309254169464111, 0.6447501182556152, 6.539015885209665e-06, 6.730074801453156e-06, 3.2782554626464844e-07, 0.00016441648767795414, 2.980232238769531e-07, 8.940696716308594e-07], "count": [295]}, "action": {"min": [-0.11857590079307556, -0.04661224037408829, 0.14834906160831451, -0.23254075646400452, -0.6129964590072632, -0.6160144209861755, -0.5291420221328735, 0.15196464955806732, -0.07119686156511307, 0.1198689267039299, -0.46326377987861633, -0.498677134513855, 0.7287048101425171, 0.07554317265748978], "max": [-0.10507745295763016, -0.025206567719578743, 0.1611284762620926, 0.6765154004096985, 0.7450727224349976, 0.7890034317970276, 0.5573089718818665, 0.15196731686592102, -0.0711916908621788, 0.11987204104661942, -0.4632507562637329, -0.49862340092658997, 0.728717029094696, 0.07575099170207977], "mean": [-0.1103890910744667, -0.03402012959122658, 0.15396583080291748, 0.4078109562397003, 0.02130844071507454, 0.4589332044124603, 0.06775716692209244, 0.15196657180786133, -0.0711934044957161, 0.11987090110778809, -0.46325719356536865, -0.49863913655281067, 0.7287126183509827, 0.0757015272974968], "std": [0.004177723545581102, 0.005780682433396578, 0.0027048580814152956, 0.3085736930370331, 0.4219881296157837, 0.4926750361919403, 0.31938254833221436, 9.332808872386522e-07, 1.1343521464368678e-06, 7.689196195315162e-07, 3.536491476552328e-06, 1.70664116012631e-05, 2.944284915429307e-06, 8.044630521908402e-05], "count": [295]}, "timestamp": {"min": [0.0], "max": [9.8], "mean": [4.9], "std": [2.838622514139169], "count": [295]}, "frame_index": {"min": [0], "max": [294], "mean": [147.0], "std": [85.15867542417507], "count": [295]}, "episode_index": {"min": [495], "max": [495], "mean": [495.0], "std": [0.0], "count": [295]}, "index": {"min": [289460], "max": [289754], "mean": [289607.0], "std": [85.15867542417507], "count": [295]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [295]}}} +{"episode_index": 496, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6352505964052287]], [[0.5740844144880175]], [[0.49795545479302833]]], "std": [[[0.24067501763283533]], [[0.2351575170834938]], [[0.28314489036976254]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6352505964052287]], [[0.5740844144880175]], [[0.49795545479302833]]], "std": [[[0.24067501763283533]], [[0.2351575170834938]], [[0.28314489036976254]]], "count": [100]}, "observation.state": {"min": [0.5076538324356079, 0.22622200846672058, 0.12610697746276855, -2.7402281761169434, -0.5209949612617493, -0.6554113626480103, -0.31397542357444763, -0.03396458178758621, 0.15512701869010925, 4.53748083114624, -0.671158492565155, 0.5205460786819458], "max": [0.5805255770683289, 0.32754427194595337, 0.14344486594200134, -0.44559112191200256, 0.96943598985672, 1.0273679494857788, -0.3139599859714508, -0.03394912928342819, 0.15512962639331818, 4.537899971008301, -0.6710218787193298, 0.520954430103302], "mean": [0.5384958386421204, 0.2806759774684906, 0.13783612847328186, -1.6070252656936646, 0.4238804876804352, 0.15825553238391876, -0.3139611482620239, -0.033955205231904984, 0.15512734651565552, 4.537850379943848, -0.6710481643676758, 0.5208337903022766], "std": [0.02158099040389061, 0.026059169322252274, 0.004787322599440813, 0.8413347601890564, 0.47645166516304016, 0.6120499968528748, 4.739352789329132e-06, 4.026675924251322e-06, 1.3597473298432305e-06, 0.00011744449875550345, 5.472442353493534e-05, 0.00011247896327404305], "count": [304]}, "action": {"min": [-0.11909445375204086, -0.043934863060712814, 0.14356368780136108, -0.2435970902442932, -0.6399406790733337, -0.6421127915382385, -0.5361667275428772, 0.149422749876976, -0.07232139259576797, 0.11726449429988861, -0.4695919454097748, -0.43919995427131653, 0.7606921792030334, 0.08936139941215515], "max": [-0.10146059095859528, -0.02179192565381527, 0.1602492481470108, 0.688622772693634, 0.7180999517440796, 0.8044940233230591, 0.4490484297275543, 0.1494259238243103, -0.07231612503528595, 0.11726998537778854, -0.46951115131378174, -0.4390215575695038, 0.7607853412628174, 0.08964424580335617], "mean": [-0.10856368392705917, -0.03292860463261604, 0.1519089639186859, 0.4478095769882202, -0.05719931051135063, 0.566409170627594, -0.005142626818269491, 0.14942514896392822, -0.07231979817152023, 0.11726722121238708, -0.4695414900779724, -0.4391458332538605, 0.7607162594795227, 0.08940861374139786], "std": [0.004890325479209423, 0.004897169768810272, 0.0036842520348727703, 0.28388381004333496, 0.36211109161376953, 0.4248732030391693, 0.28830161690711975, 8.64061121319537e-07, 1.1933008181586047e-06, 1.2592057601068518e-06, 2.2894408175488934e-05, 5.0794198614312336e-05, 2.0495954231591895e-05, 6.367901369230822e-05], "count": [304]}, "timestamp": {"min": [0.0], "max": [10.1], "mean": [5.05], "std": [2.9252255373636484], "count": [304]}, "frame_index": {"min": [0], "max": [303], "mean": [151.5], "std": [87.75676612090945], "count": [304]}, "episode_index": {"min": [496], "max": [496], "mean": [496.0], "std": [0.0], "count": [304]}, "index": {"min": [289755], "max": [290058], "mean": [289906.5], "std": [87.75676612090945], "count": [304]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [304]}}} +{"episode_index": 497, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6461806753812636]], [[0.5872066094771242]], [[0.5141624455337691]]], "std": [[[0.25041734755268363]], [[0.24338139361235223]], [[0.29145569400768084]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6461806753812636]], [[0.5872066094771242]], [[0.5141624455337691]]], "std": [[[0.25041734755268363]], [[0.24338139361235223]], [[0.29145569400768084]]], "count": [100]}, "observation.state": {"min": [0.5150599479675293, 0.23058536648750305, 0.12468884140253067, -2.8289270401000977, -0.5521481037139893, -0.7172929048538208, -0.28393399715423584, -0.03336992859840393, 0.15712201595306396, 4.537899971008301, -0.6708852052688599, 0.6842005252838135], "max": [0.5824716687202454, 0.3178136348724365, 0.1452466994524002, -0.5305155515670776, 0.9477107524871826, 0.9414704442024231, -0.283918559551239, -0.033346761018037796, 0.15712331235408783, 4.53810977935791, -0.6708852052688599, 0.6845272183418274], "mean": [0.5450376868247986, 0.27767229080200195, 0.13815762102603912, -1.5673834085464478, 0.40282729268074036, 0.1425897181034088, -0.2839217782020569, -0.03335472196340561, 0.15712253749370575, 4.537889003753662, -0.6708841323852539, 0.6844071745872498], "std": [0.02036784403026104, 0.024316074326634407, 0.005829079542309046, 0.8857339024543762, 0.45561638474464417, 0.6041802167892456, 5.072644853498787e-06, 8.809357495920267e-06, 5.772629378952843e-07, 1.6884892829693854e-05, 1.0728836059570312e-06, 0.00015402352437376976], "count": [295]}, "action": {"min": [-0.11556584388017654, -0.04412013664841652, 0.143415629863739, -0.25388821959495544, -0.6349107027053833, -0.6270002126693726, -0.5115898847579956, 0.15302391350269318, -0.07399116456508636, 0.12019859999418259, -0.46202683448791504, -0.5025264024734497, 0.72892826795578, 0.051619820296764374], "max": [-0.10040656477212906, -0.025744596496224403, 0.16333672404289246, 0.6813039183616638, 0.6990185976028442, 0.8150826096534729, 0.43475717306137085, 0.15302646160125732, -0.07398738712072372, 0.12020063400268555, -0.46201416850090027, -0.5023857951164246, 0.729017436504364, 0.05179966986179352], "mean": [-0.10759534686803818, -0.0330013781785965, 0.15188872814178467, 0.4619099199771881, -0.10688456892967224, 0.6115767359733582, -0.05773173272609711, 0.15302619338035583, -0.07398884743452072, 0.12020016461610794, -0.4620198905467987, -0.5024629235267639, 0.7289668917655945, 0.05174948275089264], "std": [0.004439082928001881, 0.0049402727745473385, 0.004567161202430725, 0.2508758008480072, 0.339269757270813, 0.3583943247795105, 0.30226966738700867, 8.153019166456943e-07, 1.2370045396892237e-06, 7.816350375833281e-07, 3.890330845024437e-06, 5.3559466323349625e-05, 3.643956733867526e-05, 3.6949590139556676e-05], "count": [295]}, "timestamp": {"min": [0.0], "max": [9.8], "mean": [4.9], "std": [2.838622514139169], "count": [295]}, "frame_index": {"min": [0], "max": [294], "mean": [147.0], "std": [85.15867542417507], "count": [295]}, "episode_index": {"min": [497], "max": [497], "mean": [497.0], "std": [0.0], "count": [295]}, "index": {"min": [290059], "max": [290353], "mean": [290206.0], "std": [85.15867542417507], "count": [295]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [295]}}} +{"episode_index": 498, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6585606290849674]], [[0.597216130174292]], [[0.5251128404139433]]], "std": [[[0.24673535173276573]], [[0.2388293764654081]], [[0.2869999481550546]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6585606290849674]], [[0.597216130174292]], [[0.5251128404139433]]], "std": [[[0.24673535173276573]], [[0.2388293764654081]], [[0.2869999481550546]]], "count": [100]}, "observation.state": {"min": [0.497475266456604, 0.22053036093711853, 0.13655248284339905, -2.725130558013916, -0.6931569576263428, -0.5647061467170715, -0.23726552724838257, -0.04471461847424507, 0.154153510928154, 4.3917460441589355, -0.7263596057891846, 0.7429948449134827], "max": [0.5783091187477112, 0.3141685128211975, 0.14349929988384247, -0.4904647767543793, 0.9460711479187012, 1.1106268167495728, -0.23725007474422455, -0.044699180871248245, 0.15415740013122559, 4.392165660858154, -0.7262229919433594, 0.7433215975761414], "mean": [0.5334147810935974, 0.2707037031650543, 0.14043432474136353, -1.6232149600982666, 0.3573112487792969, 0.2805417478084564, -0.23725976049900055, -0.04470039904117584, 0.15415582060813904, 4.391993999481201, -0.72625333070755, 0.7431818842887878], "std": [0.024258755147457123, 0.026301750913262367, 0.002377393189817667, 0.853911817073822, 0.5887715816497803, 0.6642521023750305, 3.222068926334032e-06, 4.05836226491374e-06, 1.5212928019536776e-06, 0.00020226671767886728, 5.500794941326603e-05, 8.274463471025229e-05], "count": [271]}, "action": {"min": [-0.11331553012132645, -0.047023121267557144, 0.14702728390693665, -0.2630051374435425, -0.6445196866989136, -0.6436134576797485, -0.38312453031539917, 0.16027307510375977, -0.07392224669456482, 0.1188388466835022, -0.46899279952049255, -0.5048368573188782, 0.716421902179718, 0.10922762006521225], "max": [-0.10190611332654953, -0.026559991762042046, 0.1597297340631485, 0.6698516607284546, 0.7659386396408081, 0.7950862050056458, 0.46680232882499695, 0.16027554869651794, -0.07391773909330368, 0.1188456267118454, -0.4689209759235382, -0.5047192573547363, 0.7165043950080872, 0.10946399718523026], "mean": [-0.10819489508867264, -0.03579631820321083, 0.1537611186504364, 0.38719096779823303, 0.12875418365001678, 0.38574716448783875, 0.16986091434955597, 0.1602744460105896, -0.07391978800296783, 0.11884337663650513, -0.46893325448036194, -0.5047863125801086, 0.7164733409881592, 0.10934553295373917], "std": [0.0037370040081441402, 0.005735686980187893, 0.0032883132807910442, 0.35625290870666504, 0.41159340739250183, 0.5564130544662476, 0.22345227003097534, 6.629899758081592e-07, 1.226834115186648e-06, 1.9004910427611321e-06, 2.1273435777402483e-05, 3.7544021324720234e-05, 1.5394476577057503e-05, 9.249505819752812e-05], "count": [271]}, "timestamp": {"min": [0.0], "max": [9.0], "mean": [4.5], "std": [2.6076809620810595], "count": [271]}, "frame_index": {"min": [0], "max": [270], "mean": [135.0], "std": [78.23042886243178], "count": [271]}, "episode_index": {"min": [498], "max": [498], "mean": [498.0], "std": [0.0], "count": [271]}, "index": {"min": [290354], "max": [290624], "mean": [290489.0], "std": [78.23042886243178], "count": [271]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [271]}}} +{"episode_index": 499, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6504750571895425]], [[0.5899619444444444]], [[0.5161901579520698]]], "std": [[[0.24218259986428695]], [[0.2367945524653309]], [[0.28570794833094704]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6504750571895425]], [[0.5899619444444444]], [[0.5161901579520698]]], "std": [[[0.24218259986428695]], [[0.2367945524653309]], [[0.28570794833094704]]], "count": [100]}, "observation.state": {"min": [0.4907565116882324, 0.22032956779003143, 0.12267699837684631, -2.7047905921936035, -0.9024840593338013, -0.7417696714401245, -0.29250621795654297, -0.026882829144597054, 0.15586072206497192, 4.460524559020996, -0.714472234249115, 0.6838263869285583], "max": [0.5657210946083069, 0.300205796957016, 0.14363929629325867, -0.06563294678926468, 1.0236806869506836, 0.9109875559806824, -0.29249078035354614, -0.02687511034309864, 0.1558620184659958, 4.461153507232666, -0.7137890458106995, 0.6842867136001587], "mean": [0.5230191946029663, 0.26910993456840515, 0.13689300417900085, -1.2896287441253662, 0.3449598252773285, 0.1637699156999588, -0.2924938499927521, -0.026875803247094154, 0.1558615267276764, 4.460851669311523, -0.714169442653656, 0.684090793132782], "std": [0.021729884669184685, 0.02327888272702694, 0.006679730489850044, 0.8916388750076294, 0.5412783622741699, 0.5490760803222656, 5.913670975132845e-06, 2.302078200955293e-06, 6.64670949390711e-07, 0.00016839474847074598, 0.00021719560027122498, 9.415858949068934e-05], "count": [284]}, "action": {"min": [-0.12102297693490982, -0.04757945239543915, 0.14382930099964142, -0.243771031498909, -0.6048893332481384, -0.6072490215301514, -0.5681517720222473, 0.15204709768295288, -0.07174821197986603, 0.11932209134101868, -0.48567134141921997, -0.48310843110084534, 0.7234331965446472, 0.0866488441824913], "max": [-0.1033313199877739, -0.02700413204729557, 0.16262803971767426, 0.6940696239471436, 0.6918884515762329, 0.7783216238021851, 0.5756911635398865, 0.15205368399620056, -0.0717439278960228, 0.11932764947414398, -0.485369473695755, -0.4828822910785675, 0.7235567569732666, 0.0869937613606453], "mean": [-0.11133180558681488, -0.0348195843398571, 0.15197958052158356, 0.43313607573509216, -0.07062187045812607, 0.559158444404602, -0.09562306851148605, 0.15205079317092896, -0.07174623012542725, 0.11932483315467834, -0.4855358898639679, -0.48300471901893616, 0.7234830260276794, 0.08679678291082382], "std": [0.005569479428231716, 0.005472671240568161, 0.004638676531612873, 0.2537424564361572, 0.3551437556743622, 0.4152911305427551, 0.35017821192741394, 1.554358050270821e-06, 1.119375042435422e-06, 1.2736339840557775e-06, 9.281113307224587e-05, 6.0066027799621224e-05, 3.453129102126695e-05, 8.332377183251083e-05], "count": [284]}, "timestamp": {"min": [0.0], "max": [9.433333333333334], "mean": [4.716666666666667], "std": [2.7327743330826926], "count": [284]}, "frame_index": {"min": [0], "max": [283], "mean": [141.5], "std": [81.98322999248077], "count": [284]}, "episode_index": {"min": [499], "max": [499], "mean": [499.0], "std": [0.0], "count": [284]}, "index": {"min": [290625], "max": [290908], "mean": [290766.5], "std": [81.98322999248077], "count": [284]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [284]}}} +{"episode_index": 500, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.661585522875817]], [[0.6005822712418301]], [[0.5279656154684096]]], "std": [[[0.2431299137901661]], [[0.2395936666927676]], [[0.2896642520947105]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.661585522875817]], [[0.6005822712418301]], [[0.5279656154684096]]], "std": [[[0.2431299137901661]], [[0.2395936666927676]], [[0.2896642520947105]]], "count": [100]}, "observation.state": {"min": [0.4865167438983917, 0.22784379124641418, 0.1252475380897522, -3.1338162422180176, -0.958095133304596, -0.7350494861602783, -0.26353827118873596, -0.03503032028675079, 0.15437905490398407, 4.530980110168457, -0.7413896322250366, 0.6744927763938904], "max": [0.5925344228744507, 0.34625646471977234, 0.14901241660118103, -0.19773761928081512, 1.3986111879348755, 1.244352102279663, -0.2634919285774231, -0.03500714898109436, 0.154381662607193, 4.531399726867676, -0.7411163449287415, 0.6749606132507324], "mean": [0.531184732913971, 0.28628477454185486, 0.1403573602437973, -1.3800203800201416, 0.545221209526062, 0.3425538241863251, -0.2635042071342468, -0.03501840680837631, 0.15438047051429749, 4.531208038330078, -0.7411900758743286, 0.6746983528137207], "std": [0.03145120292901993, 0.03271955996751785, 0.007467482704669237, 1.0785952806472778, 0.7797919511795044, 0.6752467751502991, 1.2509598491305951e-05, 7.244895186886424e-06, 8.87477710875828e-07, 0.00020677967404481024, 0.00011988228652626276, 0.00012050658551743254], "count": [300]}, "action": {"min": [-0.1235511377453804, -0.04448729753494263, 0.14780160784721375, -0.43278029561042786, -0.6147863268852234, -0.6078703999519348, -0.5312617421150208, 0.1562766432762146, -0.07288006693124771, 0.11824867874383926, -0.4837373197078705, -0.48899930715560913, 0.723748505115509, 0.055503323674201965], "max": [-0.09883502870798111, -0.02490798570215702, 0.16197875142097473, 0.833597719669342, 0.7309550046920776, 0.7033969163894653, 0.5384542942047119, 0.15628516674041748, -0.07287447154521942, 0.11825484037399292, -0.48358413577079773, -0.48882144689559937, 0.7239313125610352, 0.055830392986536026], "mean": [-0.11015469580888748, -0.03262592479586601, 0.1537148803472519, 0.4823012351989746, -0.10210813581943512, 0.40569326281547546, -0.018686674535274506, 0.1562827229499817, -0.07287783920764923, 0.1182522103190422, -0.4836277663707733, -0.4889147877693176, 0.7238565683364868, 0.055666230618953705], "std": [0.007125211413949728, 0.00474721472710371, 0.0035770204849541187, 0.3491690754890442, 0.3960042893886566, 0.42446133494377136, 0.3648528456687927, 2.3358304588327883e-06, 1.3672873819814413e-06, 1.543823827887536e-06, 5.934803994023241e-05, 3.6353489122120664e-05, 5.268050153972581e-05, 0.00010725811443990096], "count": [300]}, "timestamp": {"min": [0.0], "max": [9.966666666666667], "mean": [4.983333333333333], "std": [2.8867353083961027], "count": [300]}, "frame_index": {"min": [0], "max": [299], "mean": [149.5], "std": [86.60205925188308], "count": [300]}, "episode_index": {"min": [500], "max": [500], "mean": [500.0], "std": [0.0], "count": [300]}, "index": {"min": [290909], "max": [291208], "mean": [291058.5], "std": [86.60205925188308], "count": [300]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [300]}}} +{"episode_index": 501, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6507729575163399]], [[0.5905218927015251]], [[0.5181980147058823]]], "std": [[[0.25038317704412233]], [[0.24247796573119612]], [[0.2894068102580744]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6507729575163399]], [[0.5905218927015251]], [[0.5181980147058823]]], "std": [[[0.25038317704412233]], [[0.24247796573119612]], [[0.2894068102580744]]], "count": [100]}, "observation.state": {"min": [0.5051208138465881, 0.20846745371818542, 0.1335424929857254, -2.873800754547119, -0.513343334197998, -0.6041293144226074, -0.2553212642669678, -0.05001242086291313, 0.1559385061264038, 4.024788856506348, -0.7896223068237305, 1.1059406995773315], "max": [0.5743087530136108, 0.31499484181404114, 0.14614373445510864, -0.48396438360214233, 0.9576852321624756, 1.0950603485107422, -0.25529810786247253, -0.05000469833612442, 0.1559423953294754, 4.025207996368408, -0.7896223068237305, 1.1062674522399902], "mean": [0.5341655015945435, 0.27846428751945496, 0.13847114145755768, -1.6280755996704102, 0.4916660189628601, 0.22149252891540527, -0.25530490279197693, -0.050012145191431046, 0.15594059228897095, 4.024804592132568, -0.7896236777305603, 1.10612154006958], "std": [0.02003351040184498, 0.025479605421423912, 0.0031843888573348522, 0.8491145372390747, 0.385521799325943, 0.5865764021873474, 7.991969141585287e-06, 1.6896455008463818e-06, 1.2529657169579878e-06, 8.63630702951923e-05, 1.3709068298339844e-06, 0.00012998002057429403], "count": [279]}, "action": {"min": [-0.1123817041516304, -0.04794201999902725, 0.14564552903175354, -0.3032163381576538, -0.6298332810401917, -0.6277233958244324, -0.5550175309181213, 0.1581002175807953, -0.07318472862243652, 0.12027008086442947, -0.538021445274353, -0.5512106418609619, 0.6105429530143738, 0.18426761031150818], "max": [-0.10479982197284698, -0.026981757953763008, 0.16147381067276, 0.6731211543083191, 0.7418578267097473, 0.8099024891853333, 0.4310479462146759, 0.1581047773361206, -0.0731796845793724, 0.1202755868434906, -0.5379675626754761, -0.5510292649269104, 0.6106394529342651, 0.18455007672309875], "mean": [-0.1087891012430191, -0.03276805952191353, 0.15293048322200775, 0.4779658019542694, -0.08179346472024918, 0.6002178192138672, 0.007060206960886717, 0.15810339152812958, -0.07318230718374252, 0.12027371674776077, -0.5380042195320129, -0.5510910749435425, 0.6105834245681763, 0.1844901591539383], "std": [0.002550399163737893, 0.005093488376587629, 0.0037362705916166306, 0.2559778690338135, 0.3317607343196869, 0.3857262432575226, 0.2831476926803589, 1.0327846666768892e-06, 9.067952078112285e-07, 1.2882960618298966e-06, 1.4553522305504885e-05, 4.212898784317076e-05, 3.713069236255251e-05, 5.22848276887089e-05], "count": [279]}, "timestamp": {"min": [0.0], "max": [9.266666666666667], "mean": [4.633333333333335], "std": [2.6846615070446793], "count": [279]}, "frame_index": {"min": [0], "max": [278], "mean": [139.0], "std": [80.53984521134038], "count": [279]}, "episode_index": {"min": [501], "max": [501], "mean": [501.0], "std": [0.0], "count": [279]}, "index": {"min": [291209], "max": [291487], "mean": [291348.0], "std": [80.53984521134038], "count": [279]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [279]}}} +{"episode_index": 502, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6734514869281046]], [[0.6097289569716776]], [[0.5360464161220043]]], "std": [[[0.24013137571504914]], [[0.2364217272896771]], [[0.2877370743449591]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6734514869281046]], [[0.6097289569716776]], [[0.5360464161220043]]], "std": [[[0.24013137571504914]], [[0.2364217272896771]], [[0.2877370743449591]]], "count": [100]}, "observation.state": {"min": [0.5017073154449463, 0.2370879054069519, 0.13275694847106934, -3.102362632751465, -0.7423461079597473, -0.5471100807189941, -0.2291257530450821, -0.04651401937007904, 0.15474073588848114, 4.015981674194336, -0.628801167011261, 1.1454286575317383], "max": [0.5864179730415344, 0.35110631585121155, 0.14133061468601227, -0.3537469208240509, 1.0657646656036377, 1.1889541149139404, -0.22911031544208527, -0.046444520354270935, 0.154742032289505, 4.016401290893555, -0.628801167011261, 1.145755410194397], "mean": [0.5391415357589722, 0.29866865277290344, 0.13889186084270477, -1.8437491655349731, 0.5080487728118896, 0.30205267667770386, -0.2291218638420105, -0.04647344723343849, 0.15474139153957367, 4.0163397789001465, -0.6287998557090759, 1.145681381225586], "std": [0.02746507339179516, 0.0347478911280632, 0.002155707683414221, 1.0077705383300781, 0.6389936804771423, 0.6498255729675293, 6.237613888515625e-06, 1.9081593563896604e-05, 6.488255621661665e-07, 0.0001466602407163009, 1.3113021850585938e-06, 8.680465543875471e-05], "count": [243]}, "action": {"min": [-0.11443469673395157, -0.04341685399413109, 0.14741230010986328, -0.39161425828933716, -0.617795467376709, -0.6335502862930298, -0.15720078349113464, 0.16272570192813873, -0.073801688849926, 0.12105904519557953, -0.46889951825141907, -0.6047448515892029, 0.610320508480072, 0.20478303730487823], "max": [-0.1043940857052803, -0.02328929491341114, 0.15854129195213318, 0.723249077796936, 0.7432264089584351, 0.7437076568603516, 0.5109902620315552, 0.16272956132888794, -0.0737910121679306, 0.12106498330831528, -0.4688322842121124, -0.6045819520950317, 0.6104311347007751, 0.2050628662109375], "mean": [-0.10924804210662842, -0.03159152716398239, 0.15260176360607147, 0.39435261487960815, 0.11673744767904282, 0.29495349526405334, 0.2970221936702728, 0.16272646188735962, -0.07379600405693054, 0.12106192111968994, -0.4688659608364105, -0.6047099828720093, 0.6103541851043701, 0.20483508706092834], "std": [0.003411985235288739, 0.006227381061762571, 0.003331444226205349, 0.4096416234970093, 0.4023560881614685, 0.5458342432975769, 0.1673526167869568, 1.1024899322364945e-06, 2.6289505967724836e-06, 1.3104319123158348e-06, 1.3290739843796473e-05, 3.429103526286781e-05, 2.1686420950572938e-05, 7.178159285103902e-05], "count": [243]}, "timestamp": {"min": [0.0], "max": [8.066666666666666], "mean": [4.033333333333333], "std": [2.33824879074221], "count": [243]}, "frame_index": {"min": [0], "max": [242], "mean": [121.0], "std": [70.14746372226631], "count": [243]}, "episode_index": {"min": [502], "max": [502], "mean": [502.0], "std": [0.0], "count": [243]}, "index": {"min": [291488], "max": [291730], "mean": [291609.0], "std": [70.14746372226631], "count": [243]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [243]}}} +{"episode_index": 503, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6463651851851852]], [[0.5897471786492375]], [[0.5195482380174291]]], "std": [[[0.25183216600826486]], [[0.24247288106766857]], [[0.287277933176902]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6463651851851852]], [[0.5897471786492375]], [[0.5195482380174291]]], "std": [[[0.25183216600826486]], [[0.24247288106766857]], [[0.287277933176902]]], "count": [100]}, "observation.state": {"min": [0.5154615044593811, 0.22317926585674286, 0.13447323441505432, -2.745260715484619, -0.5513283014297485, -0.6146809458732605, -0.2592598795890808, -0.03811940923333168, 0.15679016709327698, 4.184782028198242, -0.6747110486030579, 1.0302075147628784], "max": [0.5838308930397034, 0.3143538534641266, 0.144102081656456, -0.2600155174732208, 1.0314689874649048, 0.8820213079452515, -0.2592444121837616, -0.038088519126176834, 0.15679016709327698, 4.185201644897461, -0.6747110486030579, 1.0302075147628784], "mean": [0.5448229312896729, 0.27654191851615906, 0.14057257771492004, -1.68545663356781, 0.4314173758029938, 0.05554854869842529, -0.2592458128929138, -0.03810345381498337, 0.1567898988723755, 4.184842109680176, -0.6747117042541504, 1.0302083492279053], "std": [0.020617857575416565, 0.025957342237234116, 0.002367194276303053, 0.9720576405525208, 0.5910194516181946, 0.5535117983818054, 3.366616283528856e-06, 8.307515599881299e-06, 2.682209014892578e-07, 0.00015040401194710284, 6.556510925292969e-07, 8.344650268554688e-07], "count": [191]}, "action": {"min": [-0.11127497255802155, -0.04170902073383331, 0.1488344967365265, -0.181230828166008, -0.5821256637573242, -0.5919366478919983, -0.5290241837501526, 0.15723474323749542, -0.0734611377120018, 0.12164982408285141, -0.4812629818916321, -0.5803732872009277, 0.6412684917449951, 0.1426495611667633], "max": [-0.10085681825876236, -0.026160558685660362, 0.15579581260681152, 0.6976578235626221, 0.6106484532356262, 0.8192021250724792, 0.5681126713752747, 0.1572369933128357, -0.07345561683177948, 0.12165383249521255, -0.481232613325119, -0.5802983045578003, 0.6412807703018188, 0.14285099506378174], "mean": [-0.10628262162208557, -0.03470626473426819, 0.1527869999408722, 0.4460918605327606, 0.10253410786390305, 0.38489049673080444, 0.19093404710292816, 0.1572362631559372, -0.07345790416002274, 0.12165231257677078, -0.48125189542770386, -0.5803143382072449, 0.6412743926048279, 0.14281734824180603], "std": [0.0038494698237627745, 0.004541215021163225, 0.0019801242742687464, 0.33199453353881836, 0.3380433917045593, 0.5594581365585327, 0.2615436315536499, 6.981475166867313e-07, 1.175859551949543e-06, 8.657989383209497e-07, 8.12885173218092e-06, 2.2939524569665082e-05, 3.2765699415904237e-06, 7.107490091584623e-05], "count": [191]}, "timestamp": {"min": [0.0], "max": [6.333333333333333], "mean": [3.166666666666667], "std": [1.837873166945363], "count": [191]}, "frame_index": {"min": [0], "max": [190], "mean": [95.0], "std": [55.136195008360886], "count": [191]}, "episode_index": {"min": [503], "max": [503], "mean": [503.0], "std": [0.0], "count": [191]}, "index": {"min": [291731], "max": [291921], "mean": [291826.0], "std": [55.136195008360886], "count": [191]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [191]}}} +{"episode_index": 504, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6528872930283225]], [[0.5995880446623094]], [[0.5325159504357299]]], "std": [[[0.24696425655229287]], [[0.24121693009762069]], [[0.2856380356253343]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6528872930283225]], [[0.5995880446623094]], [[0.5325159504357299]]], "std": [[[0.24696425655229287]], [[0.24121693009762069]], [[0.2856380356253343]]], "count": [100]}, "observation.state": {"min": [0.5078778266906738, 0.2357286959886551, 0.13311991095542908, -2.747776985168457, -0.7079136967658997, -0.5854898691177368, -0.2820882499217987, -0.03360933065414429, 0.16064533591270447, 4.181217670440674, -0.7177515029907227, 0.9719156622886658], "max": [0.5768958926200867, 0.3241385519504547, 0.14349153637886047, -0.08450505137443542, 1.087353229522705, 0.8874144554138184, -0.2820728123188019, -0.03357844054698944, 0.160647913813591, 4.181636810302734, -0.7170683741569519, 0.97270268201828], "mean": [0.5387173891067505, 0.28534257411956787, 0.13876883685588837, -1.4490772485733032, 0.429217666387558, 0.16083180904388428, -0.28208160400390625, -0.03359273076057434, 0.16064688563346863, 4.181386947631836, -0.7173730134963989, 0.972305417060852], "std": [0.019027089700102806, 0.025004448369145393, 0.0032156321685761213, 0.9133608937263489, 0.567791759967804, 0.4897160232067108, 7.6039627856516745e-06, 9.174568731395993e-06, 8.219321898650378e-07, 0.00020421012595761567, 0.00020445938571356237, 0.00016732446965761483], "count": [248]}, "action": {"min": [-0.11416532099246979, -0.04346689581871033, 0.14846190810203552, -0.2635577917098999, -0.5908558964729309, -0.5827749967575073, -0.5413998961448669, 0.1527557373046875, -0.07404009252786636, 0.12408135086297989, -0.5049083232879639, -0.5476157069206238, 0.650005578994751, 0.15097323060035706], "max": [-0.10180139541625977, -0.023269619792699814, 0.15836076438426971, 0.7239128947257996, 0.6295565962791443, 0.8146418333053589, 0.6022928357124329, 0.15276101231575012, -0.0740327537059784, 0.12408869713544846, -0.5046087503433228, -0.5472886562347412, 0.65020751953125, 0.15129275619983673], "mean": [-0.10837246477603912, -0.03225670009851456, 0.15258817374706268, 0.46511557698249817, -0.12164941430091858, 0.5824700593948364, -0.05126344412565231, 0.15275830030441284, -0.07403668761253357, 0.12408586591482162, -0.5047413110733032, -0.5474757552146912, 0.6501202583312988, 0.15116220712661743], "std": [0.004143809899687767, 0.0051468657329678535, 0.002311281394213438, 0.26314976811408997, 0.31896206736564636, 0.37593087553977966, 0.33861657977104187, 1.253375216947461e-06, 1.5586983863613568e-06, 1.924178377521457e-06, 7.642216951353475e-05, 9.078226867131889e-05, 3.905560151906684e-05, 9.867964399745688e-05], "count": [248]}, "timestamp": {"min": [0.0], "max": [8.233333333333333], "mean": [4.116666666666667], "std": [2.386361712360937], "count": [248]}, "frame_index": {"min": [0], "max": [247], "mean": [123.5], "std": [71.5908513708281], "count": [248]}, "episode_index": {"min": [504], "max": [504], "mean": [504.0], "std": [0.0], "count": [248]}, "index": {"min": [291922], "max": [292169], "mean": [292045.5], "std": [71.5908513708281], "count": [248]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [248]}}} +{"episode_index": 505, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6442907352941176]], [[0.590432415577342]], [[0.5213350789760348]]], "std": [[[0.2367292805540876]], [[0.23278347787329356]], [[0.27709691423126]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6442907352941176]], [[0.590432415577342]], [[0.5213350789760348]]], "std": [[[0.2367292805540876]], [[0.23278347787329356]], [[0.27709691423126]]], "count": [100]}, "observation.state": {"min": [0.4982784390449524, 0.23267821967601776, 0.1281084567308426, -2.820120096206665, -0.6861885190010071, -0.5314366817474365, -0.32799220085144043, -0.014472399838268757, 0.15594758093357086, 4.53748083114624, -0.5435400009155273, 0.6283861398696899], "max": [0.5596510171890259, 0.3328729569911957, 0.14261263608932495, -0.13902443647384644, 1.1504793167114258, 0.9485917091369629, -0.327953577041626, -0.014472399838268757, 0.15594887733459473, 4.537899971008301, -0.5435400009155273, 0.6284677982330322], "mean": [0.5296514630317688, 0.28579503297805786, 0.13743218779563904, -1.3331280946731567, 0.41888079047203064, 0.36299335956573486, -0.3279694616794586, -0.014472429640591145, 0.1559477001428604, 4.537871837615967, -0.5435405373573303, 0.6284671425819397], "std": [0.017632577568292618, 0.03227214515209198, 0.004313325043767691, 0.9199449419975281, 0.6236300468444824, 0.5030593872070312, 1.1199208529433236e-05, 2.9802322387695312e-08, 6.057228461031627e-07, 9.68904496403411e-05, 5.364418029785156e-07, 1.0370554264227394e-05], "count": [245]}, "action": {"min": [-0.11443918198347092, -0.04481677711009979, 0.14672844111919403, -0.28189653158187866, -0.6088252663612366, -0.6017290949821472, -0.5398075580596924, 0.147892564535141, -0.07052217423915863, 0.11949173361063004, -0.4239203631877899, -0.4902048408985138, 0.7587707042694092, 0.0652741938829422], "max": [-0.10540863126516342, -0.02307729236781597, 0.1609424650669098, 0.7312585115432739, 0.6826145648956299, 0.7909736633300781, 0.5816113352775574, 0.14789865911006927, -0.07051973044872284, 0.11949386447668076, -0.4239029586315155, -0.4901714622974396, 0.7587922811508179, 0.06548291444778442], "mean": [-0.11053688079118729, -0.03232661262154579, 0.1520383656024933, 0.4350949823856354, -0.09952565282583237, 0.46875569224357605, 0.019591568037867546, 0.14789603650569916, -0.07052164524793625, 0.11949247866868973, -0.4239102303981781, -0.490201473236084, 0.7587738037109375, 0.06528788805007935], "std": [0.002835965948179364, 0.00585862435400486, 0.003492442425340414, 0.3092069923877716, 0.39053165912628174, 0.4499404728412628, 0.36069515347480774, 1.6782897773737204e-06, 4.4763933715330495e-07, 4.969309088664886e-07, 4.985200575902127e-06, 7.458613254129887e-06, 3.5472280615067575e-06, 4.8021654947660863e-05], "count": [245]}, "timestamp": {"min": [0.0], "max": [8.133333333333333], "mean": [4.066666666666666], "std": [2.357493961344923], "count": [245]}, "frame_index": {"min": [0], "max": [244], "mean": [122.0], "std": [70.7248188403477], "count": [245]}, "episode_index": {"min": [505], "max": [505], "mean": [505.0], "std": [0.0], "count": [245]}, "index": {"min": [292170], "max": [292414], "mean": [292292.0], "std": [70.7248188403477], "count": [245]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [245]}}} +{"episode_index": 506, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6479171840958605]], [[0.5939271704793029]], [[0.5257436982570807]]], "std": [[[0.2436451262114463]], [[0.237592251493187]], [[0.2819110937151477]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6479171840958605]], [[0.5939271704793029]], [[0.5257436982570807]]], "std": [[[0.2436451262114463]], [[0.237592251493187]], [[0.2819110937151477]]], "count": [100]}, "observation.state": {"min": [0.5038851499557495, 0.21616701781749725, 0.12909752130508423, -2.6213340759277344, -0.7699466943740845, -0.4273573160171509, -0.30832239985466003, -0.011468259617686272, 0.1592375636100769, 4.53748083114624, -0.694659948348999, 0.6005308628082275], "max": [0.568215548992157, 0.32635498046875, 0.14391282200813293, -0.3273259997367859, 0.9802302718162537, 0.8724678158760071, -0.30831465125083923, -0.011468259617686272, 0.15923886001110077, 4.537899971008301, -0.6943866610527039, 0.601243793964386], "mean": [0.5312979817390442, 0.2797633707523346, 0.13731464743614197, -1.3085551261901855, 0.2788323163986206, 0.30985596776008606, -0.30832183361053467, -0.011468237265944481, 0.15923839807510376, 4.537853717803955, -0.6944863796234131, 0.6010624766349792], "std": [0.019559191539883614, 0.02973734773695469, 0.004688774235546589, 0.8402942419052124, 0.5722519159317017, 0.43320050835609436, 1.2299825584705104e-06, 2.2351741790771484e-08, 7.095966907399998e-07, 0.00012488446373026818, 0.00013139158545527607, 0.0001294734247494489], "count": [258]}, "action": {"min": [-0.11874621361494064, -0.047469910234212875, 0.14702656865119934, -0.17296195030212402, -0.6326467990875244, -0.6275648474693298, -0.5444740056991577, 0.14882352948188782, -0.0715162456035614, 0.12243250012397766, -0.48145997524261475, -0.45651185512542725, 0.7450996041297913, 0.06797400861978531], "max": [-0.1024186760187149, -0.025725435465574265, 0.16058330237865448, 0.6863548755645752, 0.7345889210700989, 0.8341837525367737, 0.5340746641159058, 0.14882633090019226, -0.07151206582784653, 0.12243553251028061, -0.481316477060318, -0.4562862813472748, 0.7453112602233887, 0.06829719245433807], "mean": [-0.11034981906414032, -0.03340949863195419, 0.15223798155784607, 0.3878304958343506, -0.14297090470790863, 0.5606366395950317, -0.06714759767055511, 0.148824542760849, -0.07151488959789276, 0.12243378907442093, -0.4813777506351471, -0.456468403339386, 0.7451722025871277, 0.06804243475198746], "std": [0.004999068565666676, 0.005602661985903978, 0.0032821691129356623, 0.2669662535190582, 0.36833688616752625, 0.4213300943374634, 0.35477086901664734, 6.708268642796611e-07, 1.0116871180798626e-06, 1.0837777608685428e-06, 5.9559301007539034e-05, 4.525541953626089e-05, 4.588613228406757e-05, 7.04596604919061e-05], "count": [258]}, "timestamp": {"min": [0.0], "max": [8.566666666666666], "mean": [4.283333333333333], "std": [2.482587509180843], "count": [258]}, "frame_index": {"min": [0], "max": [257], "mean": [128.5], "std": [74.47762527542528], "count": [258]}, "episode_index": {"min": [506], "max": [506], "mean": [506.0], "std": [0.0], "count": [258]}, "index": {"min": [292415], "max": [292672], "mean": [292543.5], "std": [74.47762527542528], "count": [258]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [258]}}} +{"episode_index": 507, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6461231481481482]], [[0.5922836492374727]], [[0.5233983333333334]]], "std": [[[0.24121064755905874]], [[0.23618045585525543]], [[0.28124707672049637]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6461231481481482]], [[0.5922836492374727]], [[0.5233983333333334]]], "std": [[[0.24121064755905874]], [[0.23618045585525543]], [[0.28124707672049637]]], "count": [100]}, "observation.state": {"min": [0.5110750198364258, 0.21230565011501312, 0.12962381541728973, -2.7874083518981934, -0.8366252779960632, -0.45632925629615784, -0.3196130096912384, -0.01008589006960392, 0.15601369738578796, 4.53748083114624, -0.5252307057380676, 0.5358835458755493], "max": [0.5814677476882935, 0.3216286599636078, 0.14166246354579926, -0.13839535415172577, 0.9131417274475098, 1.0110489130020142, -0.31960529088974, -0.01008589006960392, 0.15601369738578796, 4.537899971008301, -0.5249574184417725, 0.5361063480377197], "mean": [0.5342955589294434, 0.2762373387813568, 0.13772401213645935, -1.3358407020568848, 0.23003825545310974, 0.29075101017951965, -0.3196130096912384, -0.010085901245474815, 0.15601351857185364, 4.537896633148193, -0.5251265168190002, 0.5360234379768372], "std": [0.02158927358686924, 0.032886527478694916, 0.003925731871277094, 0.9561166763305664, 0.5727493762969971, 0.47992652654647827, 1.5437602769452496e-06, 1.1175870895385742e-08, 1.7881393432617188e-07, 4.812702172785066e-05, 0.00013233708159532398, 0.00010790436499519274], "count": [225]}, "action": {"min": [-0.11897026747465134, -0.05014542490243912, 0.1489776223897934, -0.27344706654548645, -0.6288414001464844, -0.6177212595939636, -0.5605587959289551, 0.14914266765117645, -0.07029420882463455, 0.12034256756305695, -0.40854233503341675, -0.45590850710868835, 0.7861760854721069, 0.08463586866855621], "max": [-0.10258297622203827, -0.025914261117577553, 0.15917226672172546, 0.6537967920303345, 0.7674655914306641, 0.8323939442634583, 0.5810247659683228, 0.14914536476135254, -0.0702911838889122, 0.12034431099891663, -0.40840524435043335, -0.45585885643959045, 0.7862736582756042, 0.08484368771314621], "mean": [-0.10981720685958862, -0.03439723700284958, 0.15224964916706085, 0.35895004868507385, -0.06682094931602478, 0.519079327583313, 0.0002927840978372842, 0.1491435021162033, -0.07029309868812561, 0.12034298479557037, -0.4084905683994293, -0.4558899998664856, 0.7862144708633423, 0.08465646207332611], "std": [0.005007186904549599, 0.006639943458139896, 0.002456026617437601, 0.2922910153865814, 0.4018317759037018, 0.4465884864330292, 0.388461709022522, 8.252535508290748e-07, 6.634786586801056e-07, 6.98387736974837e-07, 6.462107558036223e-05, 2.373949610046111e-05, 4.499818533076905e-05, 3.1362193112727255e-05], "count": [225]}, "timestamp": {"min": [0.0], "max": [7.466666666666667], "mean": [3.7333333333333334], "std": [2.1650421260121955], "count": [225]}, "frame_index": {"min": [0], "max": [224], "mean": [112.0], "std": [64.95126378036586], "count": [225]}, "episode_index": {"min": [507], "max": [507], "mean": [507.0], "std": [0.0], "count": [225]}, "index": {"min": [292673], "max": [292897], "mean": [292785.0], "std": [64.95126378036586], "count": [225]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [225]}}} +{"episode_index": 508, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6545244635076253]], [[0.6010166367102396]], [[0.5342573747276689]]], "std": [[[0.24564324418998085]], [[0.23872794699056168]], [[0.28272596419557205]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6545244635076253]], [[0.6010166367102396]], [[0.5342573747276689]]], "std": [[[0.24564324418998085]], [[0.23872794699056168]], [[0.28272596419557205]]], "count": [100]}, "observation.state": {"min": [0.5099706649780273, 0.21328644454479218, 0.12892641127109528, -2.6060266494750977, -0.7674872279167175, -0.4251955449581146, -0.288776159286499, -0.03151647001504898, 0.15267573297023773, 4.449620723724365, -0.5889033079147339, 0.616310179233551], "max": [0.5747798681259155, 0.3158288896083832, 0.14328929781913757, 0.10421589761972427, 1.0158923864364624, 0.9004097580909729, -0.28873753547668457, -0.03150875121355057, 0.15267832577228546, 4.450039863586426, -0.5879468321800232, 0.6172308325767517], "mean": [0.5385861992835999, 0.27128446102142334, 0.13759978115558624, -1.2137348651885986, 0.2530803084373474, 0.21718037128448486, -0.2887550890445709, -0.03151487186551094, 0.15267705917358398, 4.449715614318848, -0.5882655382156372, 0.6169225573539734], "std": [0.017698757350444794, 0.03146977350115776, 0.004725421313196421, 0.954719066619873, 0.60957932472229, 0.42033135890960693, 1.4548576473316643e-05, 3.1621211746823974e-06, 6.736274258400954e-07, 0.00017067076987586915, 0.00022876450384501368, 0.00020651558588724583], "count": [211]}, "action": {"min": [-0.11569329351186752, -0.047490037977695465, 0.1467115432024002, -0.26633089780807495, -0.604000449180603, -0.5904394388198853, -0.593075692653656, 0.15414224565029144, -0.07143653929233551, 0.11722614616155624, -0.42496976256370544, -0.4816673696041107, 0.7583240270614624, 0.11189451068639755], "max": [-0.10132868587970734, -0.0267218928784132, 0.1586323380470276, 0.6970648169517517, 0.6748249530792236, 0.753736138343811, 0.6397866010665894, 0.15414801239967346, -0.07142840325832367, 0.11723310500383377, -0.42455384135246277, -0.4812297523021698, 0.7585163116455078, 0.11228912323713303], "mean": [-0.10898146778345108, -0.035020895302295685, 0.15127088129520416, 0.36986416578292847, -0.10959317535161972, 0.5281826853752136, -0.06488662958145142, 0.1541450321674347, -0.07143308222293854, 0.11723017692565918, -0.4247066378593445, -0.48153284192085266, 0.7584049701690674, 0.11212289333343506], "std": [0.004479802213609219, 0.005895349662750959, 0.003008185187354684, 0.294376403093338, 0.37038347125053406, 0.4222515821456909, 0.40726491808891296, 1.7095633211283712e-06, 1.682401148173085e-06, 1.2269813396414975e-06, 9.210639836965129e-05, 0.00010719079728005454, 3.855445538647473e-05, 8.502363198203966e-05], "count": [211]}, "timestamp": {"min": [0.0], "max": [7.0], "mean": [3.5], "std": [2.030325644378808], "count": [211]}, "frame_index": {"min": [0], "max": [210], "mean": [105.0], "std": [60.909769331364245], "count": [211]}, "episode_index": {"min": [508], "max": [508], "mean": [508.0], "std": [0.0], "count": [211]}, "index": {"min": [292898], "max": [293108], "mean": [293003.0], "std": [60.909769331364245], "count": [211]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [211]}}} +{"episode_index": 509, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.652932734204793]], [[0.5999949074074075]], [[0.5332985321350762]]], "std": [[[0.24305785044945905]], [[0.23639135955573504]], [[0.2799048861034602]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.652932734204793]], [[0.5999949074074075]], [[0.5332985321350762]]], "std": [[[0.24305785044945905]], [[0.23639135955573504]], [[0.2799048861034602]]], "count": [100]}, "observation.state": {"min": [0.5088508725166321, 0.22009016573429108, 0.13248862326145172, -2.902737855911255, -0.9425185918807983, -0.5900730490684509, -0.29971152544021606, -0.02543867938220501, 0.1528753638267517, 4.478977203369141, -0.5010460615158081, 0.6953434944152832], "max": [0.5791277289390564, 0.33574581146240234, 0.14231449365615845, 0.29461437463760376, 1.118369698524475, 1.0424296855926514, -0.29969608783721924, -0.02540007047355175, 0.1528753638267517, 4.479396343231201, -0.5010460615158081, 0.6953434944152832], "mean": [0.5353216528892517, 0.2844356894493103, 0.13890963792800903, -1.2891030311584473, 0.24382425844669342, 0.23709408938884735, -0.29969844222068787, -0.025413842871785164, 0.15287525951862335, 4.479196548461914, -0.5010453462600708, 0.6953430771827698], "std": [0.02009938471019268, 0.03334589675068855, 0.0021158335730433464, 1.1740715503692627, 0.7356048226356506, 0.5398582816123962, 3.399461547815008e-06, 1.1066877959819976e-05, 1.043081283569336e-07, 0.00019356689881533384, 7.152557373046875e-07, 4.172325134277344e-07], "count": [257]}, "action": {"min": [-0.11414222419261932, -0.04450787231326103, 0.14874672889709473, -0.3967192471027374, -0.5915310978889465, -0.5816206932067871, -0.5820480585098267, 0.1530570536851883, -0.07107941806316376, 0.11774046719074249, -0.3943445384502411, -0.524605393409729, 0.7498850226402283, 0.08338995277881622], "max": [-0.1034165769815445, -0.025715405121445656, 0.15768733620643616, 0.7191832065582275, 0.7246284484863281, 0.7751488089561462, 0.6502763628959656, 0.15305958688259125, -0.07107315212488174, 0.11774471402168274, -0.39433082938194275, -0.5245596766471863, 0.7499023079872131, 0.0835997611284256], "mean": [-0.10927107185125351, -0.03408893197774887, 0.15243077278137207, 0.36877134442329407, 0.011487532407045364, 0.3812345266342163, 0.11285115778446198, 0.15305933356285095, -0.07107575237751007, 0.11774314939975739, -0.3943353593349457, -0.5245815515518188, 0.7498951554298401, 0.08348903805017471], "std": [0.0032923801336437464, 0.005754435434937477, 0.0023010894656181335, 0.35110247135162354, 0.4339185953140259, 0.4671818017959595, 0.419503778219223, 5.140234407008393e-07, 1.5144382814469282e-06, 9.999213261835393e-07, 3.0326405067171436e-06, 1.4426509551412892e-05, 4.0965733205666766e-06, 9.579792822478339e-05], "count": [257]}, "timestamp": {"min": [0.0], "max": [8.533333333333333], "mean": [4.266666666666667], "std": [2.4729649321321876], "count": [257]}, "frame_index": {"min": [0], "max": [256], "mean": [128.0], "std": [74.18894796396563], "count": [257]}, "episode_index": {"min": [509], "max": [509], "mean": [509.0], "std": [0.0], "count": [257]}, "index": {"min": [293109], "max": [293365], "mean": [293237.0], "std": [74.18894796396563], "count": [257]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [257]}}} +{"episode_index": 510, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6662088671023966]], [[0.6108053540305011]], [[0.5445512227668846]]], "std": [[[0.23831911732896524]], [[0.2308554176580228]], [[0.2749923617490263]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6662088671023966]], [[0.6108053540305011]], [[0.5445512227668846]]], "std": [[[0.23831911732896524]], [[0.2308554176580228]], [[0.2749923617490263]]], "count": [100]}, "observation.state": {"min": [0.5137393474578857, 0.20281441509723663, 0.13230453431606293, -2.5007622241973877, -0.7959076166152954, -0.46091821789741516, -0.2679942846298218, -0.011769440025091171, 0.1495179831981659, 4.192750453948975, -0.3773899972438812, 0.9285168647766113], "max": [0.5601915717124939, 0.3153037428855896, 0.14539578557014465, 0.08681163936853409, 1.1288907527923584, 0.940115749835968, -0.26797109842300415, -0.011746279895305634, 0.1495218724012375, 4.193169593811035, -0.37711673974990845, 0.928761899471283], "mean": [0.5328134298324585, 0.2732211947441101, 0.13854366540908813, -0.8512232899665833, 0.007704234216362238, 0.19074872136116028, -0.2679913640022278, -0.011758921667933464, 0.1495206505060196, 4.193065166473389, -0.3773188889026642, 0.9287397265434265], "std": [0.01305671688169241, 0.02748807519674301, 0.003761911764740944, 0.9918758273124695, 0.8118091821670532, 0.3615185022354126, 6.304247563093668e-06, 7.67536857892992e-06, 1.2040602541674161e-06, 0.0001526622218079865, 0.00011947895109187812, 3.079466478084214e-05], "count": [299]}, "action": {"min": [-0.11593450605869293, -0.043209273368120193, 0.14917336404323578, -0.2478739619255066, -0.5878533124923706, -0.5983734130859375, -0.47071129083633423, 0.15948815643787384, -0.06827908009290695, 0.1182374581694603, -0.3504725992679596, -0.6027504801750183, 0.6912314891815186, 0.19000490009784698], "max": [-0.10144177824258804, -0.02568976581096649, 0.1547766476869583, 0.735357940196991, 0.6428810954093933, 0.8460279107093811, 0.6394037008285522, 0.15949437022209167, -0.0682760626077652, 0.11824072152376175, -0.35030603408813477, -0.6026467680931091, 0.6913414001464844, 0.19020821154117584], "mean": [-0.10933063924312592, -0.03609976917505264, 0.15129457414150238, 0.30029234290122986, 0.27982011437416077, 0.03414082154631615, 0.3267260789871216, 0.15948958694934845, -0.06827785819768906, 0.1182389184832573, -0.3504207134246826, -0.6026936173439026, 0.6912637948989868, 0.1900612711906433], "std": [0.004563227295875549, 0.005208645015954971, 0.0014352764701470733, 0.32796427607536316, 0.36840012669563293, 0.6042876243591309, 0.33936282992362976, 1.7241407022083877e-06, 8.875995831658656e-07, 9.88866190709814e-07, 5.417296779341996e-05, 2.5013618142111227e-05, 1.6340067304554395e-05, 7.580823148600757e-05], "count": [299]}, "timestamp": {"min": [0.0], "max": [9.933333333333334], "mean": [4.966666666666667], "std": [2.8771127502720115], "count": [299]}, "frame_index": {"min": [0], "max": [298], "mean": [149.0], "std": [86.31338250816034], "count": [299]}, "episode_index": {"min": [510], "max": [510], "mean": [510.0], "std": [0.0], "count": [299]}, "index": {"min": [293366], "max": [293664], "mean": [293515.0], "std": [86.31338250816034], "count": [299]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [299]}}} +{"episode_index": 511, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6523175462962963]], [[0.599958774509804]], [[0.5320992701525055]]], "std": [[[0.2453193628521348]], [[0.24046695043871955]], [[0.28590406136699814]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6523175462962963]], [[0.599958774509804]], [[0.5320992701525055]]], "std": [[[0.2453193628521348]], [[0.24046695043871955]], [[0.28590406136699814]]], "count": [100]}, "observation.state": {"min": [0.49375292658805847, 0.2209859937429428, 0.12977418303489685, -2.471195936203003, -0.9024840593338013, -0.2989673614501953, -0.30772000551223755, -0.030280839651823044, 0.15965236723423004, 4.446055889129639, -0.5588432550430298, 0.7263008952140808], "max": [0.5400121212005615, 0.32691100239753723, 0.14767464995384216, 0.07402054965496063, 1.2047240734100342, 1.111544132232666, -0.3077045679092407, -0.030273109674453735, 0.15965497493743896, 4.446055889129639, -0.5588432550430298, 0.7263825535774231], "mean": [0.5157309770584106, 0.2833983302116394, 0.13897794485092163, -1.01840341091156, 0.34008070826530457, 0.4873681664466858, -0.30771782994270325, -0.03028014302253723, 0.1596537083387375, 4.446048259735107, -0.5588439702987671, 0.7263787388801575], "std": [0.01213385071605444, 0.030492601916193962, 0.00599690293893218, 0.8017736673355103, 0.6949043869972229, 0.39072751998901367, 5.003212663723389e-06, 2.325062723684823e-06, 1.306592253058625e-06, 7.62939453125e-06, 7.152557373046875e-07, 1.342276664217934e-05], "count": [219]}, "action": {"min": [-0.1198062151670456, -0.042634665966033936, 0.15019696950912476, -0.4354136288166046, -0.589165985584259, -0.5892025232315063, -0.5728311538696289, 0.14960455894470215, -0.07448204606771469, 0.12235134094953537, -0.42565664649009705, -0.5253466963768005, 0.7311306595802307, 0.09097567945718765], "max": [-0.10420770943164825, -0.025129560381174088, 0.16153062880039215, 0.7582776546478271, 0.7019498348236084, 0.7520281672477722, 0.6074215173721313, 0.1496075540781021, -0.0744793489575386, 0.12235472351312637, -0.4256492853164673, -0.5253157615661621, 0.7311521172523499, 0.09099358320236206], "mean": [-0.11174236238002777, -0.03299572318792343, 0.15430021286010742, 0.39959436655044556, -0.15730838477611542, 0.4554331302642822, -0.09209239482879639, 0.14960509538650513, -0.0744808241724968, 0.12235233187675476, -0.4256555140018463, -0.5253440141677856, 0.7311314940452576, 0.09097672998905182], "std": [0.004883226007223129, 0.005017600953578949, 0.0029465181287378073, 0.3195457458496094, 0.39973896741867065, 0.4262339174747467, 0.395097017288208, 9.309530355494644e-07, 6.801379299758992e-07, 1.0477349405846326e-06, 2.2749077288608532e-06, 4.973107934347354e-06, 3.67256575373176e-06, 2.840092975020525e-06], "count": [219]}, "timestamp": {"min": [0.0], "max": [7.266666666666667], "mean": [3.6333333333333337], "std": [2.1073065132392914], "count": [219]}, "frame_index": {"min": [0], "max": [218], "mean": [109.0], "std": [63.219195397178744], "count": [219]}, "episode_index": {"min": [511], "max": [511], "mean": [511.0], "std": [0.0], "count": [219]}, "index": {"min": [293665], "max": [293883], "mean": [293774.0], "std": [63.219195397178744], "count": [219]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [219]}}} +{"episode_index": 512, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6630892783224401]], [[0.6093871595860566]], [[0.5433515604575163]]], "std": [[[0.24330755335237128]], [[0.2372599402657309]], [[0.2814411541314354]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6630892783224401]], [[0.6093871595860566]], [[0.5433515604575163]]], "std": [[[0.24330755335237128]], [[0.2372599402657309]], [[0.2814411541314354]]], "count": [100]}, "observation.state": {"min": [0.49184539914131165, 0.23833125829696655, 0.13534823060035706, -2.25165057182312, -0.8604000210762024, 0.06988952308893204, -0.2659863829612732, -0.02470502071082592, 0.15622887015342712, 4.454653263092041, -0.6587245464324951, 0.7196901440620422], "max": [0.5482290983200073, 0.3225167691707611, 0.14570817351341248, -0.25141823291778564, 1.1297105550765991, 1.108614444732666, -0.265970915555954, -0.024681849405169487, 0.15623146295547485, 4.455072402954102, -0.6583146452903748, 0.7201060652732849], "mean": [0.5224126577377319, 0.28368330001831055, 0.1400749832391739, -1.1637884378433228, 0.32803213596343994, 0.6044320464134216, -0.26597192883491516, -0.02469007484614849, 0.1562298983335495, 4.4548821449279785, -0.6584016680717468, 0.7199265360832214], "std": [0.016441788524389267, 0.027239790186285973, 0.003393577178940177, 0.6997366547584534, 0.7081929445266724, 0.31198152899742126, 2.2731369426765013e-06, 4.041426109324675e-06, 1.3118639117237763e-06, 0.00020638554997276515, 0.00012804447032976896, 8.605221228208393e-05], "count": [220]}, "action": {"min": [-0.11513371765613556, -0.04356923699378967, 0.1465430110692978, -0.3614634573459625, -0.625101625919342, -0.6253374218940735, -0.5164456963539124, 0.1559503972530365, -0.07253889739513397, 0.12116730213165283, -0.45136332511901855, -0.5068967342376709, 0.7295576333999634, 0.08434783667325974], "max": [-0.10526221245527267, -0.026839973405003548, 0.16174745559692383, 0.7183637022972107, 0.747124195098877, 0.7402306199073792, 0.5292003154754639, 0.1559532731771469, -0.07253331691026688, 0.1211739256978035, -0.4511648416519165, -0.5067033171653748, 0.7297237515449524, 0.08464805781841278], "mean": [-0.11011075228452682, -0.03301730379462242, 0.1545700579881668, 0.38738682866096497, -0.13941121101379395, 0.4339658319950104, 0.008341250941157341, 0.15595214068889618, -0.07253608107566833, 0.12117103487253189, -0.4512158930301666, -0.5068269968032837, 0.7296516299247742, 0.08449798822402954], "std": [0.0027202521450817585, 0.004776997026056051, 0.0032158170361071825, 0.32307034730911255, 0.44258883595466614, 0.46986547112464905, 0.3479474186897278, 6.86867736021668e-07, 1.5003016642367584e-06, 1.8735172488959506e-06, 5.586824772763066e-05, 4.407461892697029e-05, 2.765461613307707e-05, 0.00010329367796657607], "count": [220]}, "timestamp": {"min": [0.0], "max": [7.3], "mean": [3.65], "std": [2.116929117587287], "count": [220]}, "frame_index": {"min": [0], "max": [219], "mean": [109.5], "std": [63.50787352761861], "count": [220]}, "episode_index": {"min": [512], "max": [512], "mean": [512.0], "std": [0.0], "count": [220]}, "index": {"min": [293884], "max": [294103], "mean": [293993.5], "std": [63.50787352761861], "count": [220]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [220]}}} +{"episode_index": 513, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6530032244008714]], [[0.6000124918300653]], [[0.5338383551198257]]], "std": [[[0.24354275114205853]], [[0.2378579391350703]], [[0.2812388340855481]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6530032244008714]], [[0.6000124918300653]], [[0.5338383551198257]]], "std": [[[0.24354275114205853]], [[0.2378579391350703]], [[0.2812388340855481]]], "count": [100]}, "observation.state": {"min": [0.4988422095775604, 0.21676939725875854, 0.13245491683483124, -2.689063787460327, -0.41605815291404724, -0.39719563722610474, -0.2878957688808441, -0.03061291016638279, 0.15638571977615356, 4.308709144592285, -0.6383657455444336, 0.8200826048851013], "max": [0.5517815351486206, 0.33892756700515747, 0.14313505589962006, -0.6571682691574097, 0.9598714113235474, 1.065051555633545, -0.2878803014755249, -0.030597470700740814, 0.15638701617717743, 4.309128284454346, -0.6380924582481384, 0.820327639579773], "mean": [0.5301975607872009, 0.286671906709671, 0.13787369430065155, -1.5608395338058472, 0.4702514708042145, 0.358725905418396, -0.28788065910339355, -0.030604515224695206, 0.15638597309589386, 4.308794021606445, -0.6382094025611877, 0.820296585559845], "std": [0.014787831343710423, 0.03399873524904251, 0.0031748854089528322, 0.8176506757736206, 0.45938026905059814, 0.5251324772834778, 2.605676399980439e-06, 6.519209364341805e-06, 5.506532829713251e-07, 0.0001618425449123606, 0.00013519212370738387, 4.0397975681116804e-05], "count": [227]}, "action": {"min": [-0.11469809710979462, -0.0447247177362442, 0.14944159984588623, -0.30645057559013367, -0.6327400803565979, -0.6292324662208557, -0.4297388195991516, 0.15317146480083466, -0.07237605005502701, 0.1205422505736351, -0.4596668779850006, -0.5307454466819763, 0.6995123624801636, 0.13331319391727448], "max": [-0.10620876401662827, -0.023810314014554024, 0.1579490751028061, 0.6754706501960754, 0.7130429148674011, 0.7686870694160461, 0.3929060697555542, 0.1531747430562973, -0.07236991822719574, 0.12054618448019028, -0.45953041315078735, -0.5306025147438049, 0.6996048092842102, 0.13358840346336365], "mean": [-0.10990682989358902, -0.0319780670106411, 0.15288832783699036, 0.45076850056648254, -0.14749854803085327, 0.5683006048202515, 0.009842026978731155, 0.15317372977733612, -0.07237248867750168, 0.12054461985826492, -0.4595932960510254, -0.5306642651557922, 0.6995343565940857, 0.13349352777004242], "std": [0.002728644758462906, 0.005137500818818808, 0.0019979747012257576, 0.2802637219429016, 0.35247212648391724, 0.40300238132476807, 0.29460808634757996, 8.004944902495481e-07, 1.704680812508741e-06, 9.142163435171824e-07, 5.9326808695914224e-05, 3.6757479392690584e-05, 1.98541038116673e-05, 8.122856525005773e-05], "count": [227]}, "timestamp": {"min": [0.0], "max": [7.533333333333333], "mean": [3.7666666666666666], "std": [2.1842873233874505], "count": [227]}, "frame_index": {"min": [0], "max": [226], "mean": [113.0], "std": [65.5286197016235], "count": [227]}, "episode_index": {"min": [513], "max": [513], "mean": [513.0], "std": [0.0], "count": [227]}, "index": {"min": [294104], "max": [294330], "mean": [294217.0], "std": [65.5286197016235], "count": [227]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [227]}}} +{"episode_index": 514, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6627425163398694]], [[0.6074848393246187]], [[0.5401544961873639]]], "std": [[[0.24333439687909783]], [[0.23738270456006394]], [[0.2822027767028802]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6627425163398694]], [[0.6074848393246187]], [[0.5401544961873639]]], "std": [[[0.24333439687909783]], [[0.23738270456006394]], [[0.2822027767028802]]], "count": [100]}, "observation.state": {"min": [0.5135154128074646, 0.2201673835515976, 0.13014362752437592, -2.5808637142181396, -0.5500985383987427, -0.37310609221458435, -0.2558232545852661, -0.024203039705753326, 0.15590998530387878, 4.2334303855896, -0.6686990261077881, 0.9303944706916809], "max": [0.554330050945282, 0.3339000940322876, 0.14452725648880005, -0.3157930374145508, 1.0810680389404297, 0.915216326713562, -0.2558077871799469, -0.024195320904254913, 0.1559125781059265, 4.23384952545166, -0.6686990261077881, 0.9303944706916809], "mean": [0.5333730578422546, 0.2899051904678345, 0.13870428502559662, -1.448015570640564, 0.4815284311771393, 0.2667405605316162, -0.25582295656204224, -0.02420242317020893, 0.15591037273406982, 4.233700275421143, -0.6686997413635254, 0.9303937554359436], "std": [0.014416173100471497, 0.0325123630464077, 0.004136733710765839, 0.8377482891082764, 0.6028913259506226, 0.4566326141357422, 3.1475005926040467e-06, 2.0715299342555227e-06, 9.016357012114895e-07, 0.00019791694649029523, 7.152557373046875e-07, 7.152557373046875e-07], "count": [192]}, "action": {"min": [-0.11838150769472122, -0.04048432782292366, 0.14934132993221283, -0.292207270860672, -0.5914564728736877, -0.5951305627822876, -0.49671801924705505, 0.157838836312294, -0.07154472917318344, 0.12197299301624298, -0.4691469073295593, -0.5510387420654297, 0.675243616104126, 0.1425287425518036], "max": [-0.10417503118515015, -0.022720571607351303, 0.1596541702747345, 0.7167955040931702, 0.6439768671989441, 0.7679315209388733, 0.5420719385147095, 0.1578427106142044, -0.07154061645269394, 0.12197646498680115, -0.4691232144832611, -0.550974428653717, 0.6752537488937378, 0.14273078739643097], "mean": [-0.10907883197069168, -0.031655196100473404, 0.15267305076122284, 0.4592980146408081, -0.1420663744211197, 0.5578239560127258, -0.02828170172870159, 0.15783987939357758, -0.0715428814291954, 0.12197384983301163, -0.4691360890865326, -0.5510168671607971, 0.6752469539642334, 0.14260105788707733], "std": [0.004459089133888483, 0.004755130037665367, 0.0025034197606146336, 0.3016262948513031, 0.32742953300476074, 0.3915344178676605, 0.3246649503707886, 7.168296747295244e-07, 9.77071294983034e-07, 9.479401228418283e-07, 7.871388334024232e-06, 2.8574557290994562e-05, 2.236974069091957e-06, 9.447558841202408e-05], "count": [192]}, "timestamp": {"min": [0.0], "max": [6.366666666666666], "mean": [3.1833333333333336], "std": [1.847495802631427], "count": [192]}, "frame_index": {"min": [0], "max": [191], "mean": [95.5], "std": [55.42487407894281], "count": [192]}, "episode_index": {"min": [514], "max": [514], "mean": [514.0], "std": [0.0], "count": [192]}, "index": {"min": [294331], "max": [294522], "mean": [294426.5], "std": [55.42487407894281], "count": [192]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [192]}}} +{"episode_index": 515, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.666293137254902]], [[0.6113925381263616]], [[0.5440290931372549]]], "std": [[[0.24223900447468127]], [[0.2352253960234035]], [[0.28046099567516974]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.666293137254902]], [[0.6113925381263616]], [[0.5440290931372549]]], "std": [[[0.24223900447468127]], [[0.2352253960234035]], [[0.28046099567516974]]], "count": [100]}, "observation.state": {"min": [0.5060397982597351, 0.23026873171329498, 0.13478174805641174, -2.671449899673462, -0.7387935519218445, -0.5249270796775818, -0.26236438751220703, -0.017298920080065727, 0.158391073346138, 4.2812395095825195, -0.607622504234314, 0.9030523300170898], "max": [0.5654894113540649, 0.3195435106754303, 0.14228856563568115, -0.18389807641506195, 0.9727152585983276, 0.8363648056983948, -0.2623566687107086, -0.017291199415922165, 0.158391073346138, 4.281659126281738, -0.607622504234314, 0.9030523300170898], "mean": [0.5349012613296509, 0.2803594172000885, 0.1377333551645279, -1.3503155708312988, 0.29259538650512695, 0.2509323060512543, -0.26235729455947876, -0.017297960817813873, 0.15839135646820068, 4.281562805175781, -0.6076216101646423, 0.903050422668457], "std": [0.016083164140582085, 0.028829006478190422, 0.0019291037460789084, 0.9099651575088501, 0.5907314419746399, 0.48971301317214966, 2.913167463702848e-06, 2.5632309643697226e-06, 2.8312206268310547e-07, 0.00017679105803836137, 8.940696716308594e-07, 1.9073486328125e-06], "count": [222]}, "action": {"min": [-0.11474806815385818, -0.04575429484248161, 0.14835664629936218, -0.23445551097393036, -0.603412926197052, -0.590397298336029, -0.5221730470657349, 0.1564646065235138, -0.07232853770256042, 0.12441466003656387, -0.44261473417282104, -0.5587302446365356, 0.6890559792518616, 0.1308498978614807], "max": [-0.10540102422237396, -0.026157613843679428, 0.15986870229244232, 0.68297278881073, 0.6964151263237, 0.8065159320831299, 0.5624569058418274, 0.15646658837795258, -0.07232578843832016, 0.1244167611002922, -0.4425928294658661, -0.5586737990379333, 0.6890668272972107, 0.131053164601326], "mean": [-0.10956282168626785, -0.03355749696493149, 0.15210963785648346, 0.40058010816574097, -0.09953907132148743, 0.5279970169067383, -0.029340658336877823, 0.15646590292453766, -0.07232800126075745, 0.12441523373126984, -0.44259873032569885, -0.5587174296379089, 0.689063310623169, 0.1309002786874771], "std": [0.003171672811731696, 0.005556323565542698, 0.002972288290038705, 0.283372700214386, 0.38634195923805237, 0.4352034628391266, 0.3619721531867981, 5.720661988561915e-07, 7.334641054512758e-07, 5.457999350255704e-07, 7.669532351428643e-06, 2.2282210920820944e-05, 3.088279072471778e-06, 8.506341691827402e-05], "count": [222]}, "timestamp": {"min": [0.0], "max": [7.366666666666666], "mean": [3.6833333333333336], "std": [2.1361743235842763], "count": [222]}, "frame_index": {"min": [0], "max": [221], "mean": [110.5], "std": [64.0852297075283], "count": [222]}, "episode_index": {"min": [515], "max": [515], "mean": [515.0], "std": [0.0], "count": [222]}, "index": {"min": [294523], "max": [294744], "mean": [294633.5], "std": [64.0852297075283], "count": [222]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [222]}}} +{"episode_index": 516, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.655026364379085]], [[0.6023086056644881]], [[0.5347869526143791]]], "std": [[[0.2543238670065441]], [[0.24345887352358375]], [[0.2864246154070497]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.655026364379085]], [[0.6023086056644881]], [[0.5347869526143791]]], "std": [[[0.2543238670065441]], [[0.24345887352358375]], [[0.2864246154070497]]], "count": [100]}, "observation.state": {"min": [0.515005886554718, 0.20947140455245972, 0.1357669234275818, -2.490697145462036, -0.848785936832428, -0.602853000164032, -0.26628753542900085, -0.02847371995449066, 0.1585090458393097, 4.262157917022705, -0.5321991443634033, 1.027858853340149], "max": [0.5762008428573608, 0.31251582503318787, 0.1452726274728775, -0.010274809785187244, 1.0633052587509155, 0.8690620064735413, -0.2662412226200104, -0.02845826931297779, 0.15851423144340515, 4.262577056884766, -0.5321991443634033, 1.0280221700668335], "mean": [0.5394514799118042, 0.27773919701576233, 0.14014603197574615, -1.2009960412979126, 0.33471015095710754, 0.11150302737951279, -0.26625433564186096, -0.028463589027523994, 0.15851180255413055, 4.262385845184326, -0.5321980118751526, 1.027938723564148], "std": [0.015666699036955833, 0.031221143901348114, 0.0030645602382719517, 0.8997935056686401, 0.6612240672111511, 0.4561743438243866, 1.1860912309202831e-05, 5.2852319640805945e-06, 1.1825187584690866e-06, 0.0002059552789432928, 1.1324882507324219e-06, 1.2277417226869147e-05], "count": [224]}, "action": {"min": [-0.11413666605949402, -0.04408737272024155, 0.1478746235370636, -0.276390016078949, -0.5764485597610474, -0.5794999599456787, -0.5674827694892883, 0.15631958842277527, -0.07415154576301575, 0.12385870516300201, -0.41971105337142944, -0.6184613108634949, 0.6530263423919678, 0.12200973927974701], "max": [-0.1001521423459053, -0.025363290682435036, 0.15925288200378418, 0.7154181599617004, 0.6102101802825928, 0.777050793170929, 0.6102754473686218, 0.15632638335227966, -0.07414703071117401, 0.12386565655469894, -0.4196629226207733, -0.6183858513832092, 0.6530768275260925, 0.12222978472709656], "mean": [-0.10738445818424225, -0.03368798643350601, 0.1530662477016449, 0.42666158080101013, -0.07571206241846085, 0.514565110206604, -0.10229094326496124, 0.15632422268390656, -0.07414901256561279, 0.12386339157819748, -0.4196818172931671, -0.6184362769126892, 0.6530653238296509, 0.12210177630186081], "std": [0.004715637303888798, 0.005724359769374132, 0.0025786005426198244, 0.28548476099967957, 0.3463866114616394, 0.4409829378128052, 0.37554749846458435, 1.6254415413641254e-06, 1.0531555290071992e-06, 1.523414539406076e-06, 1.557673022034578e-05, 2.4577184376539662e-05, 7.1369308898283634e-06, 9.905269689625129e-05], "count": [224]}, "timestamp": {"min": [0.0], "max": [7.433333333333334], "mean": [3.7166666666666663], "std": [2.155419526062927], "count": [224]}, "frame_index": {"min": [0], "max": [223], "mean": [111.5], "std": [64.66258578188781], "count": [224]}, "episode_index": {"min": [516], "max": [516], "mean": [516.0], "std": [0.0], "count": [224]}, "index": {"min": [294745], "max": [294968], "mean": [294856.5], "std": [64.66258578188781], "count": [224]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [224]}}} +{"episode_index": 517, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6476861111111111]], [[0.5945169144880175]], [[0.5249873393246187]]], "std": [[[0.2381557624134247]], [[0.2331379304165961]], [[0.2779331906216126]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6476861111111111]], [[0.5945169144880175]], [[0.5249873393246187]]], "std": [[[0.2381557624134247]], [[0.2331379304165961]], [[0.2779331906216126]]], "count": [100]}, "observation.state": {"min": [0.49124303460121155, 0.22861605882644653, 0.13212047517299652, -2.9025282859802246, -0.7061374187469482, -0.7403337955474854, -0.33569175004959106, -0.0015522693283855915, 0.15982218086719513, 4.472057342529297, -0.4641541838645935, 0.7004641890525818], "max": [0.5557201504707336, 0.32528921961784363, 0.14470095932483673, -0.35081127285957336, 1.178216576576233, 1.0940049886703491, -0.3356608748435974, -0.001536823809146881, 0.1598273664712906, 4.472686290740967, -0.4641541838645935, 0.7004641890525818], "mean": [0.5267816781997681, 0.29044532775878906, 0.1397472470998764, -1.3780887126922607, 0.403766930103302, 0.3074744939804077, -0.3356739282608032, -0.0015404029982164502, 0.15982456505298615, 4.472283840179443, -0.46415525674819946, 0.7004650235176086], "std": [0.018495162948966026, 0.030534639954566956, 0.0037968026008456945, 0.9714146256446838, 0.6323701739311218, 0.6232063174247742, 4.486632860789541e-06, 6.363192824210273e-06, 1.2953887562616728e-06, 0.00020695815328508615, 1.0728836059570312e-06, 8.344650268554688e-07], "count": [265]}, "action": {"min": [-0.11877121031284332, -0.04452872648835182, 0.15085859596729279, -0.3876412808895111, -0.6010111570358276, -0.6058149933815002, -0.5503454208374023, 0.1460723578929901, -0.07064703106880188, 0.12382186204195023, -0.3955131769180298, -0.5197687745094299, 0.752469003200531, 0.08477038890123367], "max": [-0.1055988073348999, -0.025491269305348396, 0.16200464963912964, 0.7477535009384155, 0.7419068217277527, 0.7473620772361755, 0.5057678818702698, 0.14607693254947662, -0.07064048200845718, 0.12382598966360092, -0.3954906463623047, -0.519725501537323, 0.7524887919425964, 0.08508240431547165], "mean": [-0.1103154793381691, -0.032338835299015045, 0.1546451896429062, 0.4293175935745239, -0.11402400583028793, 0.4944244921207428, -0.04512370377779007, 0.14607524871826172, -0.07064307481050491, 0.12382431328296661, -0.39550071954727173, -0.5197420716285706, 0.7524813413619995, 0.08496838063001633], "std": [0.003831968642771244, 0.005246663000434637, 0.0022829852532595396, 0.3304987847805023, 0.39072665572166443, 0.40952444076538086, 0.3557897210121155, 7.413601679218118e-07, 1.697090624475095e-06, 8.271777005575132e-07, 4.86830731460941e-06, 1.3054177543381229e-05, 5.4191696108318865e-06, 0.00010241302516078576], "count": [265]}, "timestamp": {"min": [0.0], "max": [8.8], "mean": [4.4], "std": [2.5499455331873704], "count": [265]}, "frame_index": {"min": [0], "max": [264], "mean": [132.0], "std": [76.49836599562111], "count": [265]}, "episode_index": {"min": [517], "max": [517], "mean": [517.0], "std": [0.0], "count": [265]}, "index": {"min": [294969], "max": [295233], "mean": [295101.0], "std": [76.49836599562111], "count": [265]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [265]}}} +{"episode_index": 518, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.657064645969499]], [[0.6003638316993465]], [[0.5298527859477125]]], "std": [[[0.2421822672636775]], [[0.23544958027008148]], [[0.28203035934759324]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.657064645969499]], [[0.6003638316993465]], [[0.5298527859477125]]], "std": [[[0.2421822672636775]], [[0.23544958027008148]], [[0.28203035934759324]]], "count": [100]}, "observation.state": {"min": [0.5111908316612244, 0.2128307968378067, 0.12991806864738464, -2.649432420730591, -0.9069930911064148, -0.537229061126709, -0.2655925154685974, -0.027964020147919655, 0.15547053515911102, 4.407892227172852, -0.626478374004364, 0.696722149848938], "max": [0.5759305357933044, 0.32330450415611267, 0.14674131572246552, -0.03606666997075081, 1.057566523551941, 0.9106740355491638, -0.2655693292617798, -0.0279254000633955, 0.15547184646129608, 4.4085211753845215, -0.6262050867080688, 0.6973236203193665], "mean": [0.5392348170280457, 0.2780947983264923, 0.13942107558250427, -1.328373908996582, 0.27272188663482666, 0.16487808525562286, -0.26558253169059753, -0.027940038591623306, 0.15547117590904236, 4.40824031829834, -0.6263803839683533, 0.6970289349555969], "std": [0.01771692931652069, 0.03519139438867569, 0.0050287325866520405, 1.0167236328125, 0.6807741522789001, 0.5099472403526306, 3.961867605539737e-06, 1.0248160833725706e-05, 6.580381750609376e-07, 0.0001643217692617327, 9.979565220419317e-05, 0.00019904226064682007], "count": [228]}, "action": {"min": [-0.1171058937907219, -0.04539748281240463, 0.14885614812374115, -0.309455543756485, -0.5922482013702393, -0.589080810546875, -0.5771344900131226, 0.15644411742687225, -0.07255012542009354, 0.12061847746372223, -0.4360056221485138, -0.500525712966919, 0.739159882068634, 0.11406340450048447], "max": [-0.09974353015422821, -0.026053886860609055, 0.15989568829536438, 0.7104315161705017, 0.7159843444824219, 0.7833531498908997, 0.5837665796279907, 0.1564473807811737, -0.07254210859537125, 0.12062226980924606, -0.43584755063056946, -0.5003339648246765, 0.7393355965614319, 0.11432885378599167], "mean": [-0.10816919803619385, -0.03477907553315163, 0.15248189866542816, 0.389275461435318, -0.03545467182993889, 0.46747562289237976, -0.005439291708171368, 0.15644526481628418, -0.07254628837108612, 0.12062004953622818, -0.43593981862068176, -0.5004322528839111, 0.7392487525939941, 0.1141718178987503], "std": [0.005371642764657736, 0.006290094461292028, 0.002679386641830206, 0.3227241635322571, 0.4001123607158661, 0.4566497206687927, 0.3948098123073578, 7.634458825123147e-07, 1.7677751884548343e-06, 9.443821795684926e-07, 5.015229544369504e-05, 5.9783498727483675e-05, 5.553848313866183e-05, 7.838081364752725e-05], "count": [228]}, "timestamp": {"min": [0.0], "max": [7.566666666666666], "mean": [3.7833333333333328], "std": [2.193909920835571], "count": [228]}, "frame_index": {"min": [0], "max": [227], "mean": [113.5], "std": [65.81729762506713], "count": [228]}, "episode_index": {"min": [518], "max": [518], "mean": [518.0], "std": [0.0], "count": [228]}, "index": {"min": [295234], "max": [295461], "mean": [295347.5], "std": [65.81729762506713], "count": [228]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [228]}}} +{"episode_index": 519, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6644449264705883]], [[0.6071465849673203]], [[0.5391154193899782]]], "std": [[[0.24165579119665218]], [[0.23629012078371775]], [[0.2818196466554653]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6644449264705883]], [[0.6071465849673203]], [[0.5391154193899782]]], "std": [[[0.24165579119665218]], [[0.23629012078371775]], [[0.2818196466554653]]], "count": [100]}, "observation.state": {"min": [0.48875632882118225, 0.21050624549388885, 0.1287889927625656, -2.7200980186462402, -0.6794933080673218, -0.5097617506980896, -0.2471197247505188, -0.025894319638609886, 0.15434147417545319, 4.519657135009766, -0.8500156402587891, 0.7296411991119385], "max": [0.5534496307373047, 0.3286563456058502, 0.14569133520126343, -0.13231435418128967, 1.242982268333435, 1.1136314868927002, -0.24711200594902039, -0.02587888017296791, 0.15434406697750092, 4.520076274871826, -0.8500156402587891, 0.7301312685012817], "mean": [0.5239858627319336, 0.28375667333602905, 0.1383523792028427, -1.210096836090088, 0.4203634560108185, 0.3456766605377197, -0.24711798131465912, -0.02589326724410057, 0.1543416827917099, 4.519934177398682, -0.8500167727470398, 0.7299960255622864], "std": [0.017116796225309372, 0.03712546080350876, 0.005630350671708584, 0.8961363434791565, 0.6999704241752625, 0.4875512421131134, 3.3370836263202364e-06, 3.7390818761195987e-06, 1.0714591098803794e-06, 0.00019324001914355904, 1.1324882507324219e-06, 0.00010144815314561129], "count": [234]}, "action": {"min": [-0.11773666739463806, -0.04381582513451576, 0.149057999253273, -0.44195660948753357, -0.5860770344734192, -0.5892637372016907, -0.5665324926376343, 0.15808968245983124, -0.07146342843770981, 0.11889178305864334, -0.5250450968742371, -0.48544663190841675, 0.6978164911270142, 0.041598156094551086], "max": [-0.10357087850570679, -0.024745387956500053, 0.15979303419589996, 0.7682863473892212, 0.6798828840255737, 0.7498819231987, 0.5880708694458008, 0.15809190273284912, -0.0714578628540039, 0.11889579147100449, -0.5250275731086731, -0.48526862263679504, 0.6979394555091858, 0.04184078797698021], "mean": [-0.11100967973470688, -0.0329231433570385, 0.1528267115354538, 0.40745678544044495, -0.13206100463867188, 0.4786522686481476, -0.06301852315664291, 0.15809060633182526, -0.07146131247282028, 0.11889301240444183, -0.5250365138053894, -0.48537829518318176, 0.6978581547737122, 0.04170132055878639], "std": [0.0043581691570580006, 0.005788072943687439, 0.002585943089798093, 0.35185208916664124, 0.36857888102531433, 0.4237962067127228, 0.37974464893341064, 5.560702902585035e-07, 1.16834405616828e-06, 1.226554331879015e-06, 4.638734935724642e-06, 3.839232158497907e-05, 2.4057007976807654e-05, 8.789473940851167e-05], "count": [234]}, "timestamp": {"min": [0.0], "max": [7.766666666666667], "mean": [3.8833333333333337], "std": [2.251645488838642], "count": [234]}, "frame_index": {"min": [0], "max": [233], "mean": [116.5], "std": [67.54936466515926], "count": [234]}, "episode_index": {"min": [519], "max": [519], "mean": [519.0], "std": [0.0], "count": [234]}, "index": {"min": [295462], "max": [295695], "mean": [295578.5], "std": [67.54936466515926], "count": [234]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [234]}}} +{"episode_index": 520, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6672551606753813]], [[0.609514765795207]], [[0.5406827124183006]]], "std": [[[0.24140275435118816]], [[0.23521489400188333]], [[0.28055386556473844]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6672551606753813]], [[0.609514765795207]], [[0.5406827124183006]]], "std": [[[0.24140275435118816]], [[0.23521489400188333]], [[0.28055386556473844]]], "count": [100]}, "observation.state": {"min": [0.4920770823955536, 0.23562057316303253, 0.12658919394016266, -2.8903660774230957, -0.8384015560150146, -0.4907247722148895, -0.25227850675582886, -0.04612788185477257, 0.156230166554451, 4.179959297180176, -0.44516173005104065, 0.9102470874786377], "max": [0.5783014297485352, 0.3388657867908478, 0.14310653507709503, -0.056825969368219376, 1.0933653116226196, 0.9608229994773865, -0.25227078795433044, -0.04612788185477257, 0.15623275935649872, 4.1803789138793945, -0.44516173005104065, 0.9105737805366516], "mean": [0.5303382277488708, 0.28668805956840515, 0.1371329426765442, -1.3717753887176514, 0.2854168713092804, 0.3113020360469818, -0.2522711455821991, -0.04612787440419197, 0.15623155236244202, 4.180069446563721, -0.4451606273651123, 0.9103986024856567], "std": [0.022001387551426888, 0.03439037874341011, 0.004989597015082836, 1.042400598526001, 0.702389657497406, 0.5018836855888367, 1.8540849850978702e-06, 7.450580596923828e-09, 9.274420449401077e-07, 0.000173849068232812, 1.1026859283447266e-06, 8.864333358360454e-05], "count": [196]}, "action": {"min": [-0.11877928674221039, -0.04444827139377594, 0.14604733884334564, -0.284566193819046, -0.6140833497047424, -0.6025822758674622, -0.5537198185920715, 0.1595938801765442, -0.07583849132061005, 0.12159781903028488, -0.36857059597969055, -0.5947338342666626, 0.6868777275085449, 0.19653207063674927], "max": [-0.10360748320817947, -0.02541676163673401, 0.15822724997997284, 0.7134056091308594, 0.7129965424537659, 0.7550071477890015, 0.587772786617279, 0.15959610044956207, -0.07583589106798172, 0.1216001957654953, -0.36853063106536865, -0.5945729613304138, 0.6869748830795288, 0.19679418206214905], "mean": [-0.11124058067798615, -0.03341824188828468, 0.15177534520626068, 0.38890257477760315, -0.08918573707342148, 0.44206440448760986, 0.051493071019649506, 0.15959541499614716, -0.07583735138177872, 0.12159907817840576, -0.3685486316680908, -0.5946379899978638, 0.6869372129440308, 0.1967102736234665], "std": [0.004327022936195135, 0.005721667315810919, 0.003143808338791132, 0.3199717104434967, 0.41920706629753113, 0.4587797522544861, 0.392597496509552, 4.960734827363922e-07, 7.45428792470193e-07, 7.505246344408079e-07, 1.0486166502232663e-05, 3.797363751800731e-05, 2.7352349206921645e-05, 8.65925831021741e-05], "count": [196]}, "timestamp": {"min": [0.0], "max": [6.5], "mean": [3.25], "std": [1.8859863319877066], "count": [196]}, "frame_index": {"min": [0], "max": [195], "mean": [97.5], "std": [56.5795899596312], "count": [196]}, "episode_index": {"min": [520], "max": [520], "mean": [520.0], "std": [0.0], "count": [196]}, "index": {"min": [295696], "max": [295891], "mean": [295793.5], "std": [56.5795899596312], "count": [196]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [196]}}} +{"episode_index": 521, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.660235931372549]], [[0.6034327696078432]], [[0.5341965577342047]]], "std": [[[0.24873091712640397]], [[0.2396204263128337]], [[0.2843823055770979]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.660235931372549]], [[0.6034327696078432]], [[0.5341965577342047]]], "std": [[[0.24873091712640397]], [[0.2396204263128337]], [[0.2843823055770979]]], "count": [100]}, "observation.state": {"min": [0.5039160251617432, 0.22621428966522217, 0.13105103373527527, -2.6548843383789062, -0.8647724390029907, -0.6559242010116577, -0.2434823215007782, -0.0415019690990448, 0.15028537809848785, 4.20973539352417, -0.5121135711669922, 1.0204651355743408], "max": [0.5633733868598938, 0.3212425112724304, 0.14571206271648407, 0.031034110113978386, 1.0701370239257812, 0.7375650405883789, -0.24346688389778137, -0.041478801518678665, 0.15028797090053558, 4.21036434173584, -0.5121135711669922, 1.0208734273910522], "mean": [0.5371119976043701, 0.2837648391723633, 0.13825464248657227, -1.3792084455490112, 0.3051873743534088, 0.03956189006567001, -0.2434745579957962, -0.04149312525987625, 0.15028665959835052, 4.20997953414917, -0.5121148228645325, 1.0205940008163452], "std": [0.015831388533115387, 0.029681146144866943, 0.004699466284364462, 1.023057460784912, 0.6751280426979065, 0.49027198553085327, 7.051828106341418e-06, 6.305524038907606e-06, 1.1980193903582403e-06, 0.00011424078547861427, 1.2516975402832031e-06, 0.00011914157221326604], "count": [193]}, "action": {"min": [-0.11656670272350311, -0.04053127393126488, 0.1458718627691269, -0.03238625451922417, -0.5798467397689819, -0.5835944414138794, -0.5755770206451416, 0.1618323177099228, -0.07198800146579742, 0.11713796854019165, -0.40286004543304443, -0.6197912693023682, 0.6554873585700989, 0.15445470809936523], "max": [-0.10193899273872375, -0.02763824351131916, 0.15595418214797974, 0.712049663066864, 0.6134610772132874, 0.7672094106674194, 0.5981040000915527, 0.16183476150035858, -0.07198240607976913, 0.1171412393450737, -0.40279221534729004, -0.6196548342704773, 0.6556293964385986, 0.15473754703998566], "mean": [-0.10905386507511139, -0.033637262880802155, 0.1519080549478531, 0.43507251143455505, -0.13144609332084656, 0.5716236233711243, -0.09645334631204605, 0.16183361411094666, -0.07198501378297806, 0.11713927239179611, -0.40283140540122986, -0.6197031736373901, 0.655576229095459, 0.15464632213115692], "std": [0.004569638054817915, 0.004413796588778496, 0.002654450247064233, 0.2787913978099823, 0.3387736678123474, 0.35628294944763184, 0.3714125156402588, 8.151334895956097e-07, 1.2794447457054048e-06, 1.1117139138150378e-06, 1.5351381080108695e-05, 3.6653102142736316e-05, 3.7540205084951594e-05, 5.386588236433454e-05], "count": [193]}, "timestamp": {"min": [0.0], "max": [6.4], "mean": [3.2], "std": [1.8571184369578824], "count": [193]}, "frame_index": {"min": [0], "max": [192], "mean": [96.0], "std": [55.71355310873648], "count": [193]}, "episode_index": {"min": [521], "max": [521], "mean": [521.0], "std": [0.0], "count": [193]}, "index": {"min": [295892], "max": [296084], "mean": [295988.0], "std": [55.71355310873648], "count": [193]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [193]}}} +{"episode_index": 522, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6606618954248366]], [[0.6047619444444444]], [[0.5349311764705883]]], "std": [[[0.24520292502517801]], [[0.23816682487284263]], [[0.2843862678034616]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6606618954248366]], [[0.6047619444444444]], [[0.5349311764705883]]], "std": [[[0.24520292502517801]], [[0.23816682487284263]], [[0.2843862678034616]]], "count": [100]}, "observation.state": {"min": [0.4967339038848877, 0.22730320692062378, 0.1341465711593628, -2.487551689147949, -0.5685445070266724, -0.15668165683746338, -0.27209505438804626, -0.02492126077413559, 0.1568588763475418, 4.2980146408081055, -0.5048718452453613, 0.9744778871536255], "max": [0.558276355266571, 0.3166552186012268, 0.14470745623111725, -0.391700804233551, 1.0347481966018677, 0.9941549897193909, -0.27207958698272705, -0.02490581013262272, 0.15686145424842834, 4.298434257507324, -0.5037787556648254, 0.975665807723999], "mean": [0.5344831347465515, 0.28711870312690735, 0.13935324549674988, -1.349611759185791, 0.3348582983016968, 0.4280972480773926, -0.2720800042152405, -0.024914797395467758, 0.15685880184173584, 4.298185348510742, -0.50419020652771, 0.9752317667007446], "std": [0.016449445858597755, 0.030607426539063454, 0.0034030291717499495, 0.8141503930091858, 0.6839380860328674, 0.3830863833427429, 2.081428192468593e-06, 7.560101948911324e-06, 8.089792231658066e-07, 0.00020108291937503964, 0.0003325386205688119, 0.00027608530945144594], "count": [195]}, "action": {"min": [-0.11447082459926605, -0.04314938560128212, 0.1504509001970291, -0.3090435862541199, -0.6028878688812256, -0.621996283531189, -0.5101850628852844, 0.15601719915866852, -0.07301803678274155, 0.12256383150815964, -0.4049324095249176, -0.6093441247940063, 0.6716526746749878, 0.11783202737569809], "max": [-0.10264915972948074, -0.02726992778480053, 0.15744024515151978, 0.7026273012161255, 0.6823997497558594, 0.7862027883529663, 0.5059431195259094, 0.1560249924659729, -0.0730128288269043, 0.12256953865289688, -0.4044904112815857, -0.6088064908981323, 0.6719886064529419, 0.1181689128279686], "mean": [-0.10891301184892654, -0.032786380499601364, 0.15316027402877808, 0.38281282782554626, -0.16288696229457855, 0.4932747781276703, 0.0047326888889074326, 0.15602222084999084, -0.07301516085863113, 0.12256719917058945, -0.4046761095523834, -0.6091117262840271, 0.6717799305915833, 0.11802976578474045], "std": [0.004118278622627258, 0.004927950445562601, 0.0016309763304889202, 0.33079156279563904, 0.3937530815601349, 0.4446863532066345, 0.3483807444572449, 2.0691659301519394e-06, 1.1827216894744197e-06, 1.6924483361435705e-06, 0.00013222740381024778, 0.0001503032399341464, 6.612362631130964e-05, 0.00010080749780172482], "count": [195]}, "timestamp": {"min": [0.0], "max": [6.466666666666667], "mean": [3.2333333333333334], "std": [1.8763637016156385], "count": [195]}, "frame_index": {"min": [0], "max": [194], "mean": [97.0], "std": [56.290911048469155], "count": [195]}, "episode_index": {"min": [522], "max": [522], "mean": [522.0], "std": [0.0], "count": [195]}, "index": {"min": [296085], "max": [296279], "mean": [296182.0], "std": [56.290911048469155], "count": [195]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [195]}}} +{"episode_index": 523, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6580478676470589]], [[0.6012228622004357]], [[0.5309968055555556]]], "std": [[[0.24268772997740876]], [[0.23507818669639058]], [[0.2809893386187992]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6580478676470589]], [[0.6012228622004357]], [[0.5309968055555556]]], "std": [[[0.24268772997740876]], [[0.23507818669639058]], [[0.2809893386187992]]], "count": [100]}, "observation.state": {"min": [0.5120326280593872, 0.21429811418056488, 0.13220861554145813, -2.2694742679595947, -0.7543700933456421, -0.09275215119123459, -0.268017441034317, -0.02485175058245659, 0.15615497529506683, 4.258802890777588, -0.4914814829826355, 0.9082401990890503], "max": [0.5485302805900574, 0.3127938508987427, 0.14547355473041534, -0.020130230113863945, 1.1291639804840088, 1.0154942274093628, -0.2680020034313202, -0.02482859045267105, 0.15615497529506683, 4.259431838989258, -0.4914814829826355, 0.9084852337837219], "mean": [0.5346951484680176, 0.2797985374927521, 0.13924619555473328, -1.1462762355804443, 0.3357214629650116, 0.39577770233154297, -0.26800668239593506, -0.024838943034410477, 0.15615473687648773, 4.259122371673584, -0.49148043990135193, 0.9083244800567627], "std": [0.009848588146269321, 0.030868368223309517, 0.00449675926938653, 0.7647061944007874, 0.7041193246841431, 0.32490378618240356, 6.885959919600282e-06, 8.706070730113424e-06, 2.384185791015625e-07, 0.0001746769848978147, 1.043081283569336e-06, 8.160954166669399e-05], "count": [197]}, "action": {"min": [-0.11360611021518707, -0.04229464754462242, 0.14598765969276428, -0.2869688868522644, -0.5940333604812622, -0.5902125835418701, -0.5399293303489685, 0.1569305956363678, -0.07269623875617981, 0.12228774279356003, -0.3949342370033264, -0.5848636627197266, 0.6920320391654968, 0.15176793932914734], "max": [-0.10229630768299103, -0.028148164972662926, 0.15576675534248352, 0.7291725277900696, 0.6321446895599365, 0.7676661610603333, 0.6125845909118652, 0.15693354606628418, -0.0726916715502739, 0.1222902312874794, -0.3949003219604492, -0.5847328901290894, 0.6921052932739258, 0.15210527181625366], "mean": [-0.10861802101135254, -0.03311430662870407, 0.15268366038799286, 0.40726423263549805, -0.170367032289505, 0.5069875717163086, -0.05617126077413559, 0.15693217515945435, -0.07269418239593506, 0.1222887635231018, -0.3949136734008789, -0.5848022699356079, 0.6920743584632874, 0.15193010866641998], "std": [0.004385653417557478, 0.004541590344160795, 0.0025992589071393013, 0.30928897857666016, 0.36377936601638794, 0.4288097023963928, 0.3647550046443939, 9.18694411211618e-07, 1.4655917084382963e-06, 7.575073368570884e-07, 8.138083103403915e-06, 4.218508183839731e-05, 2.2080093913245946e-05, 9.22492690733634e-05], "count": [197]}, "timestamp": {"min": [0.0], "max": [6.533333333333333], "mean": [3.2666666666666666], "std": [1.8956089610817242], "count": [197]}, "frame_index": {"min": [0], "max": [196], "mean": [98.0], "std": [56.868268832451726], "count": [197]}, "episode_index": {"min": [523], "max": [523], "mean": [523.0], "std": [0.0], "count": [197]}, "index": {"min": [296280], "max": [296476], "mean": [296378.0], "std": [56.868268832451726], "count": [197]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [197]}}} +{"episode_index": 524, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6346687472766884]], [[0.5796804520697167]], [[0.5074883306100217]]], "std": [[[0.23924789811505975]], [[0.23382189124325464]], [[0.27862645863483215]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6346687472766884]], [[0.5796804520697167]], [[0.5074883306100217]]], "std": [[[0.23924789811505975]], [[0.23382189124325464]], [[0.27862645863483215]]], "count": [100]}, "observation.state": {"min": [0.5135076642036438, 0.2229939103126526, 0.1331043541431427, -2.4093375205993652, -0.7882559895515442, -0.14084075391292572, -0.3187558054924011, -0.0130359698086977, 0.15495462715625763, 4.4169087409973145, -0.5722336769104004, 0.8347442746162415], "max": [0.5593961477279663, 0.3319385051727295, 0.14360949397087097, -0.2010926604270935, 0.959324836730957, 0.935133695602417, -0.3187480866909027, -0.013020530343055725, 0.15495462715625763, 4.417328357696533, -0.5722336769104004, 0.8347442746162415], "mean": [0.5399813652038574, 0.2834439277648926, 0.1387912780046463, -1.3259763717651367, 0.27656689286231995, 0.36932966113090515, -0.3187485933303833, -0.013028974644839764, 0.15495482087135315, 4.417015552520752, -0.5722346305847168, 0.8347459435462952], "std": [0.013525874353945255, 0.03313560038805008, 0.0031453915871679783, 0.8364005088806152, 0.6970388889312744, 0.3735218048095703, 1.2400955711200368e-06, 7.666296369279735e-06, 1.9371509552001953e-07, 0.00017381913494318724, 9.5367431640625e-07, 1.6689300537109375e-06], "count": [202]}, "action": {"min": [-0.11267351359128952, -0.04586346447467804, 0.14613039791584015, -0.27924662828445435, -0.6101254820823669, -0.6129679083824158, -0.5242609977722168, 0.14945264160633087, -0.0694834291934967, 0.119380883872509, -0.44295045733451843, -0.5514494180679321, 0.7024780511856079, 0.0789518803358078], "max": [-0.10385867208242416, -0.023546170443296432, 0.15528081357479095, 0.6754541397094727, 0.719523012638092, 0.7834087014198303, 0.5451819896697998, 0.14945369958877563, -0.06947966665029526, 0.11938319355249405, -0.44292861223220825, -0.5514050126075745, 0.7024887204170227, 0.0791584700345993], "mean": [-0.10820396989583969, -0.033270880579948425, 0.15200909972190857, 0.3701709806919098, -0.08235720545053482, 0.46428072452545166, 0.0436868816614151, 0.14945363998413086, -0.06948138028383255, 0.11938222497701645, -0.4429428279399872, -0.551418125629425, 0.7024827003479004, 0.07911026477813721], "std": [0.0028575134929269552, 0.005950339138507843, 0.0023043521214276552, 0.32530078291893005, 0.41987401247024536, 0.4850054383277893, 0.3483971059322357, 2.9095164677528373e-07, 1.1857742947540828e-06, 7.417675647047872e-07, 7.345117865042994e-06, 1.590400279383175e-05, 2.9081204502290348e-06, 8.499055547872558e-05], "count": [202]}, "timestamp": {"min": [0.0], "max": [6.7], "mean": [3.35], "std": [1.9437220880453965], "count": [202]}, "frame_index": {"min": [0], "max": [201], "mean": [100.5], "std": [58.31166264136189], "count": [202]}, "episode_index": {"min": [524], "max": [524], "mean": [524.0], "std": [0.0], "count": [202]}, "index": {"min": [296477], "max": [296678], "mean": [296577.5], "std": [58.31166264136189], "count": [202]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [202]}}} +{"episode_index": 525, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6517938017429193]], [[0.5953122303921569]], [[0.5236614052287581]]], "std": [[[0.24046781630231479]], [[0.23455008158039434]], [[0.28175349010035644]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6517938017429193]], [[0.5953122303921569]], [[0.5236614052287581]]], "std": [[[0.24046781630231479]], [[0.23455008158039434]], [[0.28175349010035644]]], "count": [100]}, "observation.state": {"min": [0.5038079023361206, 0.235527902841568, 0.13126620650291443, -2.3940300941467285, -0.7944046258926392, -0.018131470307707787, -0.28845179080963135, -0.0026488974690437317, 0.16276994347572327, 4.380423069000244, -0.5313793420791626, 0.8819358348846436], "max": [0.5599908232688904, 0.322447270154953, 0.14475929737091064, -0.1939631998538971, 1.0169854164123535, 1.0598251819610596, -0.2884286344051361, -0.0026334519498050213, 0.16277123987674713, 4.380842208862305, -0.5312427282333374, 0.882128894329071], "mean": [0.5402082204818726, 0.28504931926727295, 0.13833671808242798, -1.2297945022583008, 0.18125680088996887, 0.4997607469558716, -0.28843656182289124, -0.002638615434989333, 0.16277076303958893, 4.380680561065674, -0.5313262343406677, 0.8820831179618835], "std": [0.015261390246450901, 0.027538016438484192, 0.004487405065447092, 0.7954792976379395, 0.7396592497825623, 0.315743625164032, 6.969665264477953e-06, 7.166403520386666e-06, 6.245923600545211e-07, 0.0002002715482376516, 6.661922088824213e-05, 5.6204495194833726e-05], "count": [172]}, "action": {"min": [-0.11603675782680511, -0.04325057193636894, 0.14788353443145752, -0.3357580304145813, -0.6264439821243286, -0.62744140625, -0.5049439072608948, 0.15172235667705536, -0.07274448126554489, 0.12817567586898804, -0.41582998633384705, -0.570513129234314, 0.7023391127586365, 0.09127906709909439], "max": [-0.10204404592514038, -0.025737935677170753, 0.15485338866710663, 0.6845069527626038, 0.7320737242698669, 0.7827160954475403, 0.5489518642425537, 0.15172754228115082, -0.07274022698402405, 0.12817934155464172, -0.41572991013526917, -0.570435643196106, 0.7024139761924744, 0.09153874963521957], "mean": [-0.10888031870126724, -0.03309079259634018, 0.15186361968517303, 0.3274920582771301, -0.14534838497638702, 0.45596492290496826, 0.03204336389899254, 0.15172527730464935, -0.07274230569601059, 0.1281771957874298, -0.4157834053039551, -0.5704920291900635, 0.7023623585700989, 0.09137482941150665], "std": [0.004453639499843121, 0.0047460575588047504, 0.0021385091822594404, 0.3264284133911133, 0.44494226574897766, 0.47321873903274536, 0.36636999249458313, 1.4401379075934528e-06, 1.3099991065246286e-06, 9.113119290304894e-07, 3.615798777900636e-05, 1.9606095520430245e-05, 2.19406392716337e-05, 9.891835361486301e-05], "count": [172]}, "timestamp": {"min": [0.0], "max": [5.7], "mean": [2.85], "std": [1.655042799043779], "count": [172]}, "frame_index": {"min": [0], "max": [171], "mean": [85.5], "std": [49.65128397131337], "count": [172]}, "episode_index": {"min": [525], "max": [525], "mean": [525.0], "std": [0.0], "count": [172]}, "index": {"min": [296679], "max": [296850], "mean": [296764.5], "std": [49.65128397131337], "count": [172]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [172]}}} +{"episode_index": 526, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6410451633986929]], [[0.5841304112200435]], [[0.5116801770152506]]], "std": [[[0.23779186458179855]], [[0.23239773509106026]], [[0.2775716098989291]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6410451633986929]], [[0.5841304112200435]], [[0.5116801770152506]]], "std": [[[0.23779186458179855]], [[0.23239773509106026]], [[0.2775716098989291]]], "count": [100]}, "observation.state": {"min": [0.5058389902114868, 0.225163996219635, 0.13594192266464233, -2.349785566329956, -0.7180247902870178, -0.0686689168214798, -0.3288957476615906, 0.007614609785377979, 0.15917792916297913, 4.4731059074401855, -0.57182377576828, 0.9814317226409912], "max": [0.567003071308136, 0.3242543935775757, 0.1473052054643631, -0.031453490257263184, 1.1805393695831299, 1.0257028341293335, -0.32888802886009216, 0.007630059961229563, 0.15917792916297913, 4.4731059074401855, -0.57182377576828, 0.9816767573356628], "mean": [0.535616934299469, 0.27894631028175354, 0.14155398309230804, -1.2366385459899902, 0.45534461736679077, 0.4430432915687561, -0.32888826727867126, 0.0076155890710651875, 0.15917780995368958, 4.473098278045654, -0.571823239326477, 0.9815911650657654], "std": [0.016120273619890213, 0.029277799651026726, 0.003642164170742035, 0.8140770792961121, 0.7107741236686707, 0.3295281231403351, 1.5525777143921005e-06, 2.6874756713368697e-06, 1.1920928955078125e-07, 7.62939453125e-06, 5.364418029785156e-07, 0.00011351065768394619], "count": [190]}, "action": {"min": [-0.11140046268701553, -0.04292590171098709, 0.15186084806919098, -0.32471489906311035, -0.5844746828079224, -0.5754324197769165, -0.5459096431732178, 0.14662982523441315, -0.06877592206001282, 0.12375929951667786, -0.4480816721916199, -0.5975759625434875, 0.6647157669067383, 0.016722114756703377], "max": [-0.10001508891582489, -0.02593066729605198, 0.15561562776565552, 0.7456868886947632, 0.6499624848365784, 0.7729558348655701, 0.6196721792221069, 0.1466309279203415, -0.06877388060092926, 0.12376078963279724, -0.4480762481689453, -0.5974907875061035, 0.6647929549217224, 0.01677810773253441], "mean": [-0.10690519213676453, -0.03350219875574112, 0.1538276970386505, 0.4419457018375397, -0.1338270753622055, 0.46102166175842285, 0.029401525855064392, 0.14663107693195343, -0.06877592206001282, 0.12375979125499725, -0.44807863235473633, -0.5975462794303894, 0.6647434830665588, 0.016741862520575523], "std": [0.003990837838500738, 0.005183739587664604, 0.0009353126515634358, 0.32679513096809387, 0.3813275992870331, 0.4384465515613556, 0.35906514525413513, 3.0197523415154137e-07, 3.856130490476062e-07, 2.1871844069210056e-07, 1.4199583802110283e-06, 3.8146503356983885e-05, 3.424794340389781e-05, 2.5353570890729316e-05], "count": [190]}, "timestamp": {"min": [0.0], "max": [6.3], "mean": [3.15], "std": [1.8282505298782221], "count": [190]}, "frame_index": {"min": [0], "max": [189], "mean": [94.5], "std": [54.847515896346664], "count": [190]}, "episode_index": {"min": [526], "max": [526], "mean": [526.0], "std": [0.0], "count": [190]}, "index": {"min": [296851], "max": [297040], "mean": [296945.5], "std": [54.847515896346664], "count": [190]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [190]}}} +{"episode_index": 527, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6474708551198257]], [[0.589171364379085]], [[0.5154071105664488]]], "std": [[[0.2322701358065283]], [[0.22848500096451532]], [[0.2752461276423153]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6474708551198257]], [[0.589171364379085]], [[0.5154071105664488]]], "std": [[[0.2322701358065283]], [[0.22848500096451532]], [[0.2752461276423153]]], "count": [100]}, "observation.state": {"min": [0.5088431239128113, 0.22884002327919006, 0.1317199170589447, -2.343914270401001, -0.6807230114936829, -0.0011633955873548985, -0.3453528881072998, 0.023469390347599983, 0.16164477169513702, 4.493026256561279, -0.45199355483055115, 0.9026082158088684], "max": [0.555843710899353, 0.33818620443344116, 0.14731428027153015, -0.11637791991233826, 1.2190707921981812, 1.0389312505722046, -0.34532973170280457, 0.02348482981324196, 0.16164477169513702, 4.493026256561279, -0.451720267534256, 0.9030761122703552], "mean": [0.5368331074714661, 0.290741890668869, 0.1405842900276184, -1.2278586626052856, 0.45062941312789917, 0.4587494730949402, -0.3453385829925537, 0.02348283864557743, 0.16164444386959076, 4.49302864074707, -0.45177003741264343, 0.9028098583221436], "std": [0.012726551853120327, 0.03355775028467178, 0.005315203685313463, 0.767561137676239, 0.6963776350021362, 0.30592721700668335, 8.123071893351153e-06, 4.332535809226101e-06, 3.2782554626464844e-07, 2.384185791015625e-06, 0.00010467160609550774, 0.00012822479766327888], "count": [196]}, "action": {"min": [-0.11417137086391449, -0.042605284601449966, 0.1485443264245987, -0.39505621790885925, -0.5853391885757446, -0.5881901383399963, -0.5290024876594543, 0.14416161179542542, -0.06799492239952087, 0.12673628330230713, -0.400564968585968, -0.5858330726623535, 0.7037132382392883, 0.033734939992427826], "max": [-0.10251342505216599, -0.02386218123137951, 0.15724487602710724, 0.7494139075279236, 0.6663943529129028, 0.7334452271461487, 0.5921040773391724, 0.14416496455669403, -0.06799175590276718, 0.1267385333776474, -0.4004325568675995, -0.5857092142105103, 0.7038800716400146, 0.03385450690984726], "mean": [-0.1076294556260109, -0.031096572056412697, 0.1537586748600006, 0.4290826618671417, -0.15704280138015747, 0.49010083079338074, -0.008299807086586952, 0.14416342973709106, -0.06799301505088806, 0.12673760950565338, -0.4004596769809723, -0.5857737064361572, 0.7038164138793945, 0.03380949795246124], "std": [0.0035851607099175453, 0.005393379833549261, 0.002530190162360668, 0.3296809196472168, 0.3668194115161896, 0.4243420958518982, 0.3572753369808197, 1.042628355207853e-06, 7.48437344100239e-07, 5.715570523534552e-07, 4.731829176307656e-05, 2.9171043934184127e-05, 4.748368519358337e-05, 3.48346984537784e-05], "count": [196]}, "timestamp": {"min": [0.0], "max": [6.5], "mean": [3.25], "std": [1.8859863319877066], "count": [196]}, "frame_index": {"min": [0], "max": [195], "mean": [97.5], "std": [56.5795899596312], "count": [196]}, "episode_index": {"min": [527], "max": [527], "mean": [527.0], "std": [0.0], "count": [196]}, "index": {"min": [297041], "max": [297236], "mean": [297138.5], "std": [56.5795899596312], "count": [196]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [196]}}} +{"episode_index": 528, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6409424591503268]], [[0.5878061029411765]], [[0.5188833333333333]]], "std": [[[0.23539388358714822]], [[0.23086137536065873]], [[0.2735227652636935]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6409424591503268]], [[0.5878061029411765]], [[0.5188833333333333]]], "std": [[[0.23539388358714822]], [[0.23086137536065873]], [[0.2735227652636935]]], "count": [100]}, "observation.state": {"min": [0.5083643198013306, 0.23476335406303406, 0.1345847249031067, -2.3340587615966797, -0.6845488548278809, -0.013380750082433224, -0.33162185549736023, -0.007884910330176353, 0.15857644379138947, 4.53748083114624, -0.43955960869789124, 0.659469485282898], "max": [0.5633965134620667, 0.3356376886367798, 0.1428615301847458, -0.055358149111270905, 0.9940305352210999, 0.9901949763298035, -0.3316141366958618, -0.007830849848687649, 0.1585790365934372, 4.537899971008301, -0.43942299485206604, 0.6599892973899841], "mean": [0.5368028879165649, 0.28959017992019653, 0.13810573518276215, -1.191723346710205, 0.29564952850341797, 0.429192453622818, -0.3316151201725006, -0.007851678878068924, 0.15857741236686707, 4.537876129150391, -0.4395591914653778, 0.6597614288330078], "std": [0.013500622473657131, 0.028028424829244614, 0.0026987013407051563, 0.8242972493171692, 0.6807674765586853, 0.3028966188430786, 1.9270328266429715e-06, 1.444879853806924e-05, 1.0154825531571987e-06, 0.00010098946222569793, 9.787198905542027e-06, 0.00011878313671331853], "count": [194]}, "action": {"min": [-0.11380928754806519, -0.04068571701645851, 0.14943091571331024, -0.3124300241470337, -0.6157563328742981, -0.6127268075942993, -0.5739074945449829, 0.14716309309005737, -0.07131695747375488, 0.12248308211565018, -0.3794294595718384, -0.514341413974762, 0.7666202783584595, 0.061506547033786774], "max": [-0.10265721380710602, -0.021917345002293587, 0.15465793013572693, 0.6803109645843506, 0.6649843454360962, 0.769629955291748, 0.6109269857406616, 0.14716506004333496, -0.07130998373031616, 0.12248937785625458, -0.3793467581272125, -0.5141515731811523, 0.7667779922485352, 0.06176096946001053], "mean": [-0.10888286679983139, -0.03158815950155258, 0.152046799659729, 0.3689935803413391, -0.14837156236171722, 0.4873420000076294, -0.0007333107059821486, 0.14716379344463348, -0.0713132992386818, 0.12248706817626953, -0.37941867113113403, -0.5142457485198975, 0.7666836977005005, 0.061562296003103256], "std": [0.0037455942947417498, 0.00483696348965168, 0.0012330490862950683, 0.32455238699913025, 0.39022400975227356, 0.4480677545070648, 0.38203784823417664, 5.097767257211672e-07, 1.8569413668956258e-06, 1.5862005966482684e-06, 6.356588528433349e-06, 5.0515860493760556e-05, 3.3953594538616017e-05, 5.442596011562273e-05], "count": [194]}, "timestamp": {"min": [0.0], "max": [6.433333333333334], "mean": [3.2166666666666663], "std": [1.866741069945755], "count": [194]}, "frame_index": {"min": [0], "max": [193], "mean": [96.5], "std": [56.00223209837265], "count": [194]}, "episode_index": {"min": [528], "max": [528], "mean": [528.0], "std": [0.0], "count": [194]}, "index": {"min": [297237], "max": [297430], "mean": [297333.5], "std": [56.00223209837265], "count": [194]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [194]}}} +{"episode_index": 529, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6484212363834423]], [[0.60032299291939]], [[0.5358374673202614]]], "std": [[[0.2366034713948718]], [[0.23218977132170435]], [[0.27264944451528084]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6484212363834423]], [[0.60032299291939]], [[0.5358374673202614]]], "std": [[[0.2366034713948718]], [[0.23218977132170435]], [[0.27264944451528084]]], "count": [100]}, "observation.state": {"min": [0.5004562735557556, 0.2455751746892929, 0.13236157596111298, -2.491955280303955, -0.6160939931869507, -0.16955126821994781, -0.33304286003112793, -0.02835015021264553, 0.1553460955619812, 4.287949562072754, -0.28270092606544495, 0.7591484785079956], "max": [0.5532874464988708, 0.3309345543384552, 0.14282134175300598, -0.11574885249137878, 1.0570199489593506, 0.9142888784408569, -0.3330351412296295, -0.028334710747003555, 0.1553460955619812, 4.288369178771973, -0.28270092606544495, 0.7591484785079956], "mean": [0.534645140171051, 0.287955641746521, 0.1387445330619812, -1.2205156087875366, 0.3485834300518036, 0.4551800787448883, -0.33303844928741455, -0.02834402024745941, 0.15534594655036926, 4.288295269012451, -0.2827003598213196, 0.7591497302055359], "std": [0.016602395102381706, 0.028400084003806114, 0.0034341393038630486, 0.835306704044342, 0.6236750483512878, 0.3677465319633484, 3.8065297758294037e-06, 7.550869213446276e-06, 1.4901161193847656e-07, 0.00015756409266032279, 5.662441253662109e-07, 1.2516975402832031e-06], "count": [228]}, "action": {"min": [-0.11186762154102325, -0.0412973128259182, 0.1486487090587616, -0.28846701979637146, -0.5969958901405334, -0.5961031913757324, -0.5286111235618591, 0.1492810845375061, -0.07251230627298355, 0.11926352232694626, -0.316025048494339, -0.5732265114784241, 0.7356598377227783, 0.17406243085861206], "max": [-0.10444295406341553, -0.025641366839408875, 0.15751183032989502, 0.7114920616149902, 0.669660747051239, 0.7532966732978821, 0.6006845235824585, 0.1492825746536255, -0.07250939309597015, 0.11926567554473877, -0.31601184606552124, -0.5731991529464722, 0.7357011437416077, 0.17426835000514984], "mean": [-0.10903606563806534, -0.03187011182308197, 0.153079554438591, 0.39313507080078125, -0.13639697432518005, 0.470336377620697, 0.005311680492013693, 0.14928176999092102, -0.07251129299402237, 0.1192643791437149, -0.3160160481929779, -0.5732198357582092, 0.7356916666030884, 0.17410287261009216], "std": [0.002258998341858387, 0.004933574236929417, 0.002248851116746664, 0.3144299387931824, 0.3988988995552063, 0.45696571469306946, 0.3725477457046509, 5.510470373337739e-07, 1.0210854952674708e-06, 6.19731451934058e-07, 3.693811549965176e-06, 8.436685675405897e-06, 1.3581765415437985e-05, 7.70246479078196e-05], "count": [228]}, "timestamp": {"min": [0.0], "max": [7.566666666666666], "mean": [3.7833333333333328], "std": [2.193909920835571], "count": [228]}, "frame_index": {"min": [0], "max": [227], "mean": [113.5], "std": [65.81729762506713], "count": [228]}, "episode_index": {"min": [529], "max": [529], "mean": [529.0], "std": [0.0], "count": [228]}, "index": {"min": [297431], "max": [297658], "mean": [297544.5], "std": [65.81729762506713], "count": [228]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [228]}}} +{"episode_index": 530, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6487909586056645]], [[0.6010253839869281]], [[0.5365031835511982]]], "std": [[[0.24535312831653505]], [[0.23788124424092874]], [[0.27848929061596334]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6487909586056645]], [[0.6010253839869281]], [[0.5365031835511982]]], "std": [[[0.24535312831653505]], [[0.23788124424092874]], [[0.27848929061596334]]], "count": [100]}, "observation.state": {"min": [0.5129439234733582, 0.23104099929332733, 0.1336267590522766, -2.4198219776153564, -0.6891945004463196, -0.027059609070420265, -0.29706263542175293, -0.02892936021089554, 0.15900163352489471, 4.537899971008301, -0.6748476624488831, 0.6258458495140076], "max": [0.5599367618560791, 0.33097314834594727, 0.14676855504512787, -0.007339150179177523, 1.2200273275375366, 1.133911371231079, -0.2970471978187561, -0.02892163023352623, 0.15900422632694244, 4.537899971008301, -0.6748476624488831, 0.6262542605400085], "mean": [0.543428361415863, 0.2881758511066437, 0.14052093029022217, -1.152899980545044, 0.3592235743999481, 0.442962646484375, -0.29705923795700073, -0.028922347351908684, 0.15900278091430664, 4.537902355194092, -0.6748488545417786, 0.6261925101280212], "std": [0.013577851466834545, 0.03306107223033905, 0.004236799199134111, 0.8724108338356018, 0.777462899684906, 0.3386763036251068, 5.962728209851775e-06, 2.2663102754449937e-06, 9.913135272654472e-07, 2.384185791015625e-06, 1.1920928955078125e-06, 0.00011143360461574048], "count": [179]}, "action": {"min": [-0.11174055933952332, -0.04173526540398598, 0.14850850403308868, -0.4203296899795532, -0.6058617234230042, -0.5984026193618774, -0.5927065014839172, 0.1506006121635437, -0.0740392804145813, 0.12150301784276962, -0.46803173422813416, -0.4774100184440613, 0.7408680319786072, 0.06435338407754898], "max": [-0.10173401236534119, -0.02532391995191574, 0.15540224313735962, 0.7482640147209167, 0.6892743706703186, 0.7595780491828918, 0.6236609220504761, 0.15060356259346008, -0.07403679192066193, 0.12150512635707855, -0.4680117964744568, -0.477256178855896, 0.7409708499908447, 0.06444928050041199], "mean": [-0.10674146562814713, -0.032070621848106384, 0.1527319848537445, 0.3617126941680908, -0.09887602925300598, 0.3905586004257202, 0.05045853927731514, 0.15060114860534668, -0.07403767108917236, 0.121504046022892, -0.468029260635376, -0.47738420963287354, 0.7408849000930786, 0.06436784565448761], "std": [0.003192558418959379, 0.0052442182786762714, 0.0017985684098675847, 0.38208067417144775, 0.4159717857837677, 0.476784348487854, 0.3974466621875763, 1.015297470985388e-06, 5.697134497495426e-07, 7.398406296488247e-07, 6.010347078699851e-06, 4.098002682439983e-05, 2.778987618512474e-05, 2.6155934392591007e-05], "count": [179]}, "timestamp": {"min": [0.0], "max": [5.933333333333334], "mean": [2.9666666666666663], "std": [1.7224014243685084], "count": [179]}, "frame_index": {"min": [0], "max": [178], "mean": [89.0], "std": [51.67204273105525], "count": [179]}, "episode_index": {"min": [530], "max": [530], "mean": [530.0], "std": [0.0], "count": [179]}, "index": {"min": [297659], "max": [297837], "mean": [297748.0], "std": [51.67204273105525], "count": [179]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [179]}}} +{"episode_index": 531, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6638071977124184]], [[0.6140961546840958]], [[0.5497664978213507]]], "std": [[[0.24429580811789053]], [[0.23555322310355148]], [[0.2763109744459895]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6638071977124184]], [[0.6140961546840958]], [[0.5497664978213507]]], "std": [[[0.24429580811789053]], [[0.23555322310355148]], [[0.2763109744459895]]], "count": [100]}, "observation.state": {"min": [0.4902081787586212, 0.22162699699401855, 0.12981826066970825, -2.1872758865356445, -0.7372905611991882, 0.0745684877038002, -0.2762807607650757, -0.046158768236637115, 0.15636368095874786, 4.523850917816162, -0.5797486901283264, 0.6054443717002869], "max": [0.5461902618408203, 0.3208949863910675, 0.14618133008480072, 0.2291911095380783, 1.2086864709854126, 1.1776179075241089, -0.27626532316207886, -0.04614333063364029, 0.15636368095874786, 4.523850917816162, -0.5796120166778564, 0.6057191491127014], "mean": [0.5212104320526123, 0.28373411297798157, 0.13912008702754974, -1.008966088294983, 0.3702874183654785, 0.4234122335910797, -0.27626723051071167, -0.04615128040313721, 0.15636402368545532, 4.523860931396484, -0.5797446370124817, 0.605699360370636], "std": [0.01552928239107132, 0.02910085953772068, 0.005220593884587288, 0.8688692450523376, 0.8013328313827515, 0.32882851362228394, 3.764716666410095e-06, 7.662317329959478e-06, 3.427267074584961e-07, 1.0013580322265625e-05, 2.577272243797779e-05, 6.325897993519902e-05], "count": [217]}, "action": {"min": [-0.11729510873556137, -0.04449660703539848, 0.14790436625480652, -0.46503812074661255, -0.5859700441360474, -0.588165819644928, -0.4746875762939453, 0.154846653342247, -0.07577420026063919, 0.11941568553447723, -0.4147510528564453, -0.4922167658805847, 0.7611697316169739, 0.07953791320323944], "max": [-0.10203652083873749, -0.026520956307649612, 0.15639519691467285, 0.753246009349823, 0.6847048997879028, 0.7258377075195312, 0.6766258478164673, 0.15484966337680817, -0.0757712572813034, 0.11941751092672348, -0.41467055678367615, -0.4921322464942932, 0.7612606287002563, 0.07959837466478348], "mean": [-0.11005377024412155, -0.032870836555957794, 0.15265411138534546, 0.39149829745292664, 0.07721393555402756, 0.18011954426765442, 0.26017406582832336, 0.15484845638275146, -0.0757724940776825, 0.11941692978143692, -0.4147411286830902, -0.49220728874206543, 0.7611792087554932, 0.07954302430152893], "std": [0.004624833352863789, 0.004897203296422958, 0.002277971478179097, 0.36765575408935547, 0.4057621359825134, 0.5793405771255493, 0.32432129979133606, 5.462724743665603e-07, 9.986703162212507e-07, 6.24313088337658e-07, 1.3782987480226438e-05, 2.037866579485126e-05, 1.8191947674495168e-05, 1.3597184988611843e-05], "count": [217]}, "timestamp": {"min": [0.0], "max": [7.2], "mean": [3.6], "std": [2.08806130178211], "count": [217]}, "frame_index": {"min": [0], "max": [216], "mean": [108.0], "std": [62.6418390534633], "count": [217]}, "episode_index": {"min": [531], "max": [531], "mean": [531.0], "std": [0.0], "count": [217]}, "index": {"min": [297838], "max": [298054], "mean": [297946.0], "std": [62.6418390534633], "count": [217]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [217]}}} +{"episode_index": 532, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6627734395424837]], [[0.6076307461873639]], [[0.5406870806100218]]], "std": [[[0.24615116523954586]], [[0.23734869421416946]], [[0.28310498234780385]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6627734395424837]], [[0.6076307461873639]], [[0.5406870806100218]]], "std": [[[0.24615116523954586]], [[0.23734869421416946]], [[0.28310498234780385]]], "count": [100]}, "observation.state": {"min": [0.493976891040802, 0.23299485445022583, 0.13137121498584747, -2.5336835384368896, -0.8062919974327087, -0.3467099070549011, -0.2528577148914337, -0.06391333788633347, 0.15583349764347076, 4.4330549240112305, -0.7740457653999329, 0.6440060138702393], "max": [0.5562066435813904, 0.3252815008163452, 0.14362244307994843, 0.4149763882160187, 1.113587498664856, 0.8372644782066345, -0.2528422772884369, -0.06391333788633347, 0.1558360904455185, 4.433474540710449, -0.7740457653999329, 0.6443327069282532], "mean": [0.5189172029495239, 0.28236740827560425, 0.13738000392913818, -1.0403650999069214, 0.3183157742023468, 0.15007363259792328, -0.25284284353256226, -0.06391333788633347, 0.1558348834514618, 4.433266639709473, -0.774046778678894, 0.6440885066986084], "std": [0.017512470483779907, 0.03092244453728199, 0.004372301511466503, 1.0314619541168213, 0.7287387251853943, 0.35006508231163025, 2.96154848911101e-06, 0.0, 1.1775964594562538e-06, 0.00011763015208998695, 1.0132789611816406e-06, 8.966276072897017e-05], "count": [229]}, "action": {"min": [-0.11796197295188904, -0.042022012174129486, 0.14736706018447876, -0.14158527553081512, -0.5751562118530273, -0.6174758076667786, -0.6080995202064514, 0.1574164777994156, -0.07678679376840591, 0.11774623394012451, -0.4900023341178894, -0.47215527296066284, 0.7239931225776672, 0.11312131583690643], "max": [-0.10346037894487381, -0.025167886167764664, 0.15456479787826538, 0.7367596626281738, 0.5792072415351868, 0.7425656318664551, 0.6789581775665283, 0.1574186533689499, -0.07678405195474625, 0.11774968355894089, -0.4899798333644867, -0.47200819849967957, 0.724075973033905, 0.11332245916128159], "mean": [-0.11150859296321869, -0.033438790589571, 0.15197300910949707, 0.4031955897808075, 0.058803457766771317, 0.23130199313163757, 0.2085833102464676, 0.1574178785085678, -0.07678525894880295, 0.11774793267250061, -0.48998984694480896, -0.47206705808639526, 0.7240504622459412, 0.11320114880800247], "std": [0.004685912746936083, 0.0048595876432955265, 0.001965229632332921, 0.3095625936985016, 0.35259053111076355, 0.5967560410499573, 0.40087512135505676, 5.511741392183467e-07, 9.161460070572502e-07, 1.0403427950222977e-06, 6.0063653108954895e-06, 3.601143544074148e-05, 2.1535081032197922e-05, 6.0228994698263705e-05], "count": [229]}, "timestamp": {"min": [0.0], "max": [7.6], "mean": [3.8000000000000003], "std": [2.2035325174717877], "count": [229]}, "frame_index": {"min": [0], "max": [228], "mean": [114.0], "std": [66.10597552415364], "count": [229]}, "episode_index": {"min": [532], "max": [532], "mean": [532.0], "std": [0.0], "count": [229]}, "index": {"min": [298055], "max": [298283], "mean": [298169.0], "std": [66.10597552415364], "count": [229]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [229]}}} +{"episode_index": 533, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6566233224400871]], [[0.6016762772331155]], [[0.535815438453159]]], "std": [[[0.25702826097387427]], [[0.24553138115997172]], [[0.28760077844540305]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6566233224400871]], [[0.6016762772331155]], [[0.535815438453159]]], "std": [[[0.25702826097387427]], [[0.24553138115997172]], [[0.28760077844540305]]], "count": [100]}, "observation.state": {"min": [0.4853351414203644, 0.2381536364555359, 0.12990380823612213, -2.577299118041992, -0.7463085651397705, -0.4450461268424988, -0.24063262343406677, -0.07413051277399063, 0.1561601758003235, 4.328629493713379, -0.7178881764411926, 0.8010734915733337], "max": [0.5488160252571106, 0.3282933831214905, 0.14349670708179474, 0.07821434736251831, 1.0650814771652222, 0.8460188508033752, -0.24060173332691193, -0.07411506772041321, 0.15616275370121002, 4.329049110412598, -0.7174782752990723, 0.8017788529396057], "mean": [0.5214839577674866, 0.2829301059246063, 0.13673807680606842, -1.2169671058654785, 0.360474556684494, 0.22836102545261383, -0.24061430990695953, -0.07412350922822952, 0.1561623364686966, 4.328817844390869, -0.7176364064216614, 0.8013222813606262], "std": [0.01678328402340412, 0.029527142643928528, 0.004462799523025751, 0.9269845485687256, 0.6475343704223633, 0.427482545375824, 9.32762304728385e-06, 3.3136620913865045e-06, 9.73008354776539e-07, 0.0002067270688712597, 0.0001361668255412951, 0.0001312503154622391], "count": [214]}, "action": {"min": [-0.11777496337890625, -0.0431060865521431, 0.14668650925159454, -0.2125905156135559, -0.5834788680076599, -0.5883584022521973, -0.5703573822975159, 0.1595352739095688, -0.07833084464073181, 0.11829719692468643, -0.46860355138778687, -0.5300099849700928, 0.6947845220565796, 0.12987340986728668], "max": [-0.10512527078390121, -0.025368180125951767, 0.15451057255268097, 0.7227507829666138, 0.6217638850212097, 0.7829362750053406, 0.6370962858200073, 0.15954150259494781, -0.07832663506269455, 0.11830271780490875, -0.46840739250183105, -0.5296782851219177, 0.6949852108955383, 0.13024300336837769], "mean": [-0.1118834987282753, -0.03311756253242493, 0.15192849934101105, 0.42339447140693665, -0.14572863280773163, 0.5385306477546692, -0.09685790538787842, 0.15953843295574188, -0.07832903414964676, 0.11830128729343414, -0.46848782896995544, -0.5298146605491638, 0.6949039101600647, 0.13008731603622437], "std": [0.0041807182133197784, 0.004428499843925238, 0.002041000174358487, 0.28154823184013367, 0.3426226079463959, 0.3929365873336792, 0.3860629200935364, 1.84751343113021e-06, 1.219829528054106e-06, 1.364804575132439e-06, 5.803379463031888e-05, 7.385583012364805e-05, 3.031826054211706e-05, 0.00010651807679096237], "count": [214]}, "timestamp": {"min": [0.0], "max": [7.1], "mean": [3.5500000000000003], "std": [2.0591934774998144], "count": [214]}, "frame_index": {"min": [0], "max": [213], "mean": [106.5], "std": [61.775804324994425], "count": [214]}, "episode_index": {"min": [533], "max": [533], "mean": [533.0], "std": [0.0], "count": [214]}, "index": {"min": [298284], "max": [298497], "mean": [298390.5], "std": [61.775804324994425], "count": [214]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [214]}}} +{"episode_index": 534, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6576880201525055]], [[0.6027930555555556]], [[0.5357201334422658]]], "std": [[[0.2502567523995365]], [[0.23935645409641315]], [[0.2837128087673453]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6576880201525055]], [[0.6027930555555556]], [[0.5357201334422658]]], "std": [[[0.2502567523995365]], [[0.23935645409641315]], [[0.2837128087673453]]], "count": [100]}, "observation.state": {"min": [0.5087041258811951, 0.21446801722049713, 0.13322360813617706, -2.621753454208374, -0.5994243025779724, -0.2696036696434021, -0.25592362880706787, -0.07239290326833725, 0.15918830037117004, 4.251044273376465, -0.682499349117279, 0.8499224781990051], "max": [0.5723394751548767, 0.3341085910797119, 0.14542947709560394, -0.1396535038948059, 0.9871987104415894, 1.0096708536148071, -0.2558927536010742, -0.0723542794585228, 0.15919089317321777, 4.251463413238525, -0.682499349117279, 0.8499224781990051], "mean": [0.5405663847923279, 0.2746807932853699, 0.14011125266551971, -1.3303502798080444, 0.3123559057712555, 0.2937399744987488, -0.25591301918029785, -0.07237240672111511, 0.15919028222560883, 4.251202583312988, -0.6825008392333984, 0.8499235510826111], "std": [0.016910070553421974, 0.03635795786976814, 0.003923332784324884, 0.9726933240890503, 0.6622892618179321, 0.4132407009601593, 6.442729954869719e-06, 1.2478510143409949e-05, 1.2006440783807193e-06, 0.00012438243720680475, 1.4901161193847656e-06, 1.0728836059570312e-06], "count": [183]}, "action": {"min": [-0.11332245916128159, -0.0475880429148674, 0.14991115033626556, -0.355516254901886, -0.6088809370994568, -0.602946937084198, -0.5913509726524353, 0.15694428980350494, -0.07935140281915665, 0.12074044346809387, -0.4642810821533203, -0.5418215990066528, 0.6827523708343506, 0.15723228454589844], "max": [-0.1012810692191124, -0.025604398921132088, 0.15538033843040466, 0.6907437443733215, 0.6943923234939575, 0.7759330868721008, 0.6043770909309387, 0.156949982047081, -0.07934634387493134, 0.12074612826108932, -0.4642619788646698, -0.5417555570602417, 0.682762086391449, 0.15743602812290192], "mean": [-0.10730419307947159, -0.035093389451503754, 0.15273796021938324, 0.3615449070930481, -0.10119638592004776, 0.4703387916088104, 0.03304222226142883, 0.1569468230009079, -0.07934916764497757, 0.12074369192123413, -0.4642731845378876, -0.5417863726615906, 0.682756781578064, 0.15735863149166107], "std": [0.004110317677259445, 0.006189063191413879, 0.0016969414427876472, 0.3457082211971283, 0.38795462250709534, 0.4614684581756592, 0.392120361328125, 1.0448403600094025e-06, 1.4935201306798263e-06, 1.856625999607786e-06, 4.298714884498622e-06, 1.9739236449822783e-05, 2.6136654014408123e-06, 5.9080630308017135e-05], "count": [183]}, "timestamp": {"min": [0.0], "max": [6.066666666666666], "mean": [3.0333333333333337], "std": [1.760892029836225], "count": [183]}, "frame_index": {"min": [0], "max": [182], "mean": [91.0], "std": [52.82676089508675], "count": [183]}, "episode_index": {"min": [534], "max": [534], "mean": [534.0], "std": [0.0], "count": [183]}, "index": {"min": [298498], "max": [298680], "mean": [298589.0], "std": [52.82676089508675], "count": [183]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [183]}}} +{"episode_index": 535, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6439605228758171]], [[0.5915938017429194]], [[0.5244215223311547]]], "std": [[[0.24781338359867353]], [[0.23982885119596717]], [[0.2836089824058195]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6439605228758171]], [[0.5915938017429194]], [[0.5244215223311547]]], "std": [[[0.24781338359867353]], [[0.23982885119596717]], [[0.2836089824058195]]], "count": [100]}, "observation.state": {"min": [0.5104262828826904, 0.234863743185997, 0.1334802806377411, -2.9794843196868896, -0.7577860355377197, -0.6959397792816162, -0.2966996729373932, -0.04561818018555641, 0.1585414558649063, 4.402859687805176, -0.6073492169380188, 0.7459246516227722], "max": [0.5837382078170776, 0.3172498643398285, 0.1449226289987564, -0.04906744882464409, 1.0518277883529663, 0.7595885992050171, -0.29668423533439636, -0.04559500887989998, 0.1585414558649063, 4.4032793045043945, -0.6073492169380188, 0.7459246516227722], "mean": [0.5323532819747925, 0.2765270471572876, 0.1398550271987915, -1.1966274976730347, 0.19767503440380096, 0.28355690836906433, -0.2966868579387665, -0.04560675844550133, 0.15854120254516602, 4.403119087219238, -0.6073476672172546, 0.7459254860877991], "std": [0.019886605441570282, 0.025085220113396645, 0.0036416789516806602, 1.0054216384887695, 0.5900499820709229, 0.5055496096611023, 5.521886578208068e-06, 7.905066922830883e-06, 2.5331974029541016e-07, 0.00019884557696059346, 1.5497207641601562e-06, 8.344650268554688e-07], "count": [188]}, "action": {"min": [-0.11471126228570938, -0.04596782848238945, 0.15198196470737457, -0.17958158254623413, -0.5909889340400696, -0.5887870788574219, -0.5357943177223206, 0.1513182520866394, -0.07573182135820389, 0.12060757726430893, -0.44292643666267395, -0.5265998244285583, 0.7176697254180908, 0.10705873370170593], "max": [-0.10168859362602234, -0.028946485370397568, 0.15974664688110352, 0.7107686400413513, 0.6611087918281555, 0.7412067651748657, 0.6034107804298401, 0.15132108330726624, -0.07572682946920395, 0.12061135470867157, -0.44291365146636963, -0.5265470147132874, 0.7176817059516907, 0.10726669430732727], "mean": [-0.10943788290023804, -0.03482913225889206, 0.15452192723751068, 0.37070232629776, -0.1449040174484253, 0.5044142007827759, -0.0781521201133728, 0.15132038295269012, -0.07572966814041138, 0.12060952931642532, -0.4429172873497009, -0.5265797972679138, 0.7176772356033325, 0.1071356013417244], "std": [0.004467975348234177, 0.004712214227765799, 0.0017353774746879935, 0.2793940305709839, 0.3922916054725647, 0.4240718483924866, 0.4114009737968445, 8.883491773303831e-07, 1.2659201047426905e-06, 8.878739095052879e-07, 3.0510061606037198e-06, 2.01736966118915e-05, 2.455254389133188e-06, 9.731244790600613e-05], "count": [188]}, "timestamp": {"min": [0.0], "max": [6.233333333333333], "mean": [3.116666666666667], "std": [1.8090052515125543], "count": [188]}, "frame_index": {"min": [0], "max": [187], "mean": [93.5], "std": [54.270157545376634], "count": [188]}, "episode_index": {"min": [535], "max": [535], "mean": [535.0], "std": [0.0], "count": [188]}, "index": {"min": [298681], "max": [298868], "mean": [298774.5], "std": [54.270157545376634], "count": [188]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [188]}}} +{"episode_index": 536, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6623315604575163]], [[0.6060754656862745]], [[0.5375442973856208]]], "std": [[[0.24525860061139856]], [[0.23944333002299117]], [[0.2865159657486132]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6623315604575163]], [[0.6060754656862745]], [[0.5375442973856208]]], "std": [[[0.24525860061139856]], [[0.23944333002299117]], [[0.2865159657486132]]], "count": [100]}, "observation.state": {"min": [0.5085883140563965, 0.2351958304643631, 0.13423600792884827, -2.3455917835235596, -0.692337155342102, 0.08252126723527908, -0.27920767664909363, -0.03333131968975067, 0.16260142624378204, 4.537690162658691, -0.638775646686554, 0.7529204487800598], "max": [0.5600757598876953, 0.3392287492752075, 0.14472688734531403, -0.419799268245697, 0.9600080251693726, 1.0477453470230103, -0.2791922390460968, -0.03331587091088295, 0.16260403394699097, 4.53810977935791, -0.6383657455444336, 0.7539898157119751], "mean": [0.5297939777374268, 0.2974199652671814, 0.13894936442375183, -1.3132686614990234, 0.3256809115409851, 0.4844195544719696, -0.2792012691497803, -0.03332534804940224, 0.16260279715061188, 4.537906646728516, -0.6386781930923462, 0.7536749243736267], "std": [0.013286053203046322, 0.03282606601715088, 0.003506018314510584, 0.7114161252975464, 0.5663051009178162, 0.28674206137657166, 7.615775302838301e-06, 7.490126336051617e-06, 7.490538678212033e-07, 0.0002068445464828983, 0.0001312987442361191, 0.0002652660186868161], "count": [213]}, "action": {"min": [-0.11542711406946182, -0.043767742812633514, 0.1499153971672058, -0.2973589301109314, -0.6327894330024719, -0.6316202282905579, -0.5224839448928833, 0.15235255658626556, -0.07704661786556244, 0.12503781914710999, -0.44728028774261475, -0.533415675163269, 0.7169521450996399, 0.037421852350234985], "max": [-0.10268854349851608, -0.02245732583105564, 0.15814073383808136, 0.6601529717445374, 0.7293388247489929, 0.8265239596366882, 0.49344825744628906, 0.1523570716381073, -0.07703972607851028, 0.12504206597805023, -0.44705840945243835, -0.5331067442893982, 0.7172976136207581, 0.037751853466033936], "mean": [-0.10982450842857361, -0.030195144936442375, 0.15441258251667023, 0.38227707147598267, -0.18888616561889648, 0.574498176574707, -0.030231943354010582, 0.1523544192314148, -0.07704241573810577, 0.12504005432128906, -0.4472203254699707, -0.5333037972450256, 0.7170543670654297, 0.03759946674108505], "std": [0.004337513819336891, 0.006181594915688038, 0.001639608875848353, 0.2704298794269562, 0.35625147819519043, 0.41373059153556824, 0.3405928611755371, 1.1920382121388684e-06, 1.992281795537565e-06, 1.207980403705733e-06, 6.552945706062019e-05, 6.95050330250524e-05, 8.566557517042384e-05, 9.879348363028839e-05], "count": [213]}, "timestamp": {"min": [0.0], "max": [7.066666666666666], "mean": [3.5333333333333337], "std": [2.0495708674600013], "count": [213]}, "frame_index": {"min": [0], "max": [212], "mean": [106.0], "std": [61.48712602380003], "count": [213]}, "episode_index": {"min": [536], "max": [536], "mean": [536.0], "std": [0.0], "count": [213]}, "index": {"min": [298869], "max": [299081], "mean": [298975.0], "std": [61.48712602380003], "count": [213]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [213]}}} +{"episode_index": 537, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6618188834422658]], [[0.6066097739651416]], [[0.5389819253812635]]], "std": [[[0.24602837615879783]], [[0.23739938553589082]], [[0.28281440876405345]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6618188834422658]], [[0.6066097739651416]], [[0.5389819253812635]]], "std": [[[0.24602837615879783]], [[0.23739938553589082]], [[0.28281440876405345]]], "count": [100]}, "observation.state": {"min": [0.49831706285476685, 0.2320295125246048, 0.1323278844356537, -2.442678213119507, -0.795497715473175, -0.16570113599300385, -0.25239434838294983, -0.04095365107059479, 0.16210365295410156, 4.267609596252441, -0.7993234992027283, 1.034377932548523], "max": [0.5459585785865784, 0.3289961516857147, 0.1474374234676361, -0.24009498953819275, 1.211965799331665, 1.1298104524612427, -0.2523634731769562, -0.04093820974230766, 0.16210755705833435, 4.26802921295166, -0.7993234992027283, 1.0347046852111816], "mean": [0.5264002084732056, 0.2870757281780243, 0.13992974162101746, -1.2477511167526245, 0.4440401494503021, 0.41572386026382446, -0.2523789405822754, -0.040947843343019485, 0.16210605204105377, 4.268011569976807, -0.7993218898773193, 1.0346168279647827], "std": [0.012434730306267738, 0.028260907158255577, 0.0050452230498194695, 0.801185667514801, 0.7218989729881287, 0.3648569881916046, 5.435734237835277e-06, 7.439038199663628e-06, 1.3302519619173836e-06, 6.43659514025785e-05, 1.6093254089355469e-06, 0.00011706972145475447], "count": [220]}, "action": {"min": [-0.11573972553014755, -0.045939087867736816, 0.1503865271806717, -0.3925224244594574, -0.6108004450798035, -0.6195476651191711, -0.547774612903595, 0.15613064169883728, -0.07625695317983627, 0.12516334652900696, -0.524847149848938, -0.5656189322471619, 0.6300376057624817, 0.0876997783780098], "max": [-0.10215839743614197, -0.02678014151751995, 0.15606693923473358, 0.7585122585296631, 0.7148533463478088, 0.7757776975631714, 0.5464461445808411, 0.1561342030763626, -0.07625248283147812, 0.12516990303993225, -0.5248084664344788, -0.5655131340026855, 0.6301280856132507, 0.08789912611246109], "mean": [-0.10956837981939316, -0.032389264553785324, 0.15371134877204895, 0.4317701458930969, -0.1368328183889389, 0.47893476486206055, -0.03605665639042854, 0.15613238513469696, -0.0762551799416542, 0.1251663714647293, -0.5248162746429443, -0.5655871629714966, 0.6300657987594604, 0.0877293273806572], "std": [0.004886079113930464, 0.005305611528456211, 0.0014614287065342069, 0.32633233070373535, 0.37973663210868835, 0.42583146691322327, 0.36352109909057617, 7.174853635660838e-07, 7.612705985593493e-07, 1.666785465204157e-06, 6.748226951458491e-06, 3.577478855731897e-05, 3.1233324989443645e-05, 4.057623300468549e-05], "count": [220]}, "timestamp": {"min": [0.0], "max": [7.3], "mean": [3.65], "std": [2.116929117587287], "count": [220]}, "frame_index": {"min": [0], "max": [219], "mean": [109.5], "std": [63.50787352761861], "count": [220]}, "episode_index": {"min": [537], "max": [537], "mean": [537.0], "std": [0.0], "count": [220]}, "index": {"min": [299082], "max": [299301], "mean": [299191.5], "std": [63.50787352761861], "count": [220]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [220]}}} +{"episode_index": 538, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6623755010893245]], [[0.6060854983660131]], [[0.5396220506535948]]], "std": [[[0.24164362091974587]], [[0.23362394819776267]], [[0.27838411823415954]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6623755010893245]], [[0.6060854983660131]], [[0.5396220506535948]]], "std": [[[0.24164362091974587]], [[0.23362394819776267]], [[0.27838411823415954]]], "count": [100]}, "observation.state": {"min": [0.4963940978050232, 0.23011426627635956, 0.13189232349395752, -2.489858388900757, -0.715838611125946, -0.24767501652240753, -0.2687588334083557, -0.04784233123064041, 0.16133885085582733, 4.150183200836182, -0.6416450142860413, 1.0100237131118774], "max": [0.547727108001709, 0.32241636514663696, 0.14599725604057312, -0.27091941237449646, 1.2920347452163696, 1.131852149963379, -0.2687433660030365, -0.04782687872648239, 0.16134144365787506, 4.1506028175354, -0.6416450142860413, 1.0100237131118774], "mean": [0.5244123935699463, 0.2781321108341217, 0.13967899978160858, -1.180432677268982, 0.4583066403865814, 0.523391604423523, -0.26875507831573486, -0.04783858358860016, 0.16134026646614075, 4.150308132171631, -0.6416456699371338, 1.0100246667861938], "std": [0.014923762530088425, 0.0304193627089262, 0.004269699566066265, 0.7677798271179199, 0.7388592958450317, 0.4259970784187317, 4.118122888030484e-06, 6.093023330322467e-06, 1.1773348660426564e-06, 0.00017620890866965055, 6.556510925292969e-07, 9.5367431640625e-07], "count": [172]}, "action": {"min": [-0.11522845923900604, -0.04522598162293434, 0.14854368567466736, -0.42446810007095337, -0.5987991690635681, -0.5974617600440979, -0.5508977770805359, 0.15493100881576538, -0.07696850597858429, 0.12446869909763336, -0.47071269154548645, -0.5798864364624023, 0.6433359384536743, 0.16818784177303314], "max": [-0.10546427220106125, -0.028221623972058296, 0.15726125240325928, 0.7836166024208069, 0.7320089340209961, 0.7216179966926575, 0.534281313419342, 0.15493512153625488, -0.07696416974067688, 0.12447366118431091, -0.47068920731544495, -0.5798176527023315, 0.6433515548706055, 0.16839003562927246], "mean": [-0.1099361851811409, -0.03351466730237007, 0.15328644216060638, 0.4189242124557495, -0.11703423410654068, 0.4200552701950073, -0.015259836800396442, 0.1549326777458191, -0.07696636766195297, 0.12447123229503632, -0.470704048871994, -0.5798410773277283, 0.6433410048484802, 0.16832900047302246], "std": [0.0030412443447858095, 0.004957868717610836, 0.0020231606904417276, 0.3656797707080841, 0.41872623562812805, 0.451399564743042, 0.34829771518707275, 8.488469802614418e-07, 1.2035795862175291e-06, 1.149090508079098e-06, 7.8975854194141e-06, 2.6220384825137444e-05, 4.513043677434325e-06, 8.365153917111456e-05], "count": [172]}, "timestamp": {"min": [0.0], "max": [5.7], "mean": [2.85], "std": [1.655042799043779], "count": [172]}, "frame_index": {"min": [0], "max": [171], "mean": [85.5], "std": [49.65128397131337], "count": [172]}, "episode_index": {"min": [538], "max": [538], "mean": [538.0], "std": [0.0], "count": [172]}, "index": {"min": [299302], "max": [299473], "mean": [299387.5], "std": [49.65128397131337], "count": [172]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [172]}}} +{"episode_index": 539, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4582615904139433]], [[0.4184792401960784]], [[0.3528193899782135]]], "std": [[[0.18777884632288233]], [[0.18440284472984933]], [[0.18579505010899403]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47245060457516336]], [[0.4455279193899782]], [[0.3832978404139434]]], "std": [[[0.18977343758646387]], [[0.16977093051835856]], [[0.1815198172811126]]], "count": [100]}, "observation.state": {"min": [0.5669103860855103, -0.03483724966645241, 0.135111004114151, -4.537899971008301, -0.37725338339805603, -1.1317479610443115, -0.4698587954044342, -0.30912554264068604, 0.1680484414100647, 1.7079246044158936, 0.4096362292766571, 0.01338987983763218], "max": [0.6808670163154602, 0.026697490364313126, 0.17488767206668854, -3.3244242668151855, 0.33926841616630554, 0.2896278500556946, -0.43923816084861755, -0.2872779369354248, 0.17059564590454102, 1.820318341255188, 0.42288997769355774, 0.0793004110455513], "mean": [0.6117009520530701, -0.009758632630109787, 0.15915244817733765, -4.080331802368164, -0.12805460393428802, -0.4123133420944214, -0.44897958636283875, -0.3029365539550781, 0.1686447709798813, 1.746841311454773, 0.41750529408454895, 0.03345482796430588], "std": [0.03504208102822304, 0.018334321677684784, 0.011829061433672905, 0.4969302713871002, 0.21210257709026337, 0.5222508907318115, 0.009015507996082306, 0.007561701815575361, 0.0008473125053569674, 0.036670975387096405, 0.003844700986519456, 0.01944933459162712], "count": [335]}, "action": {"min": [-0.10030875355005264, -0.09520679712295532, 0.12613748013973236, 0.11374898254871368, 0.25368010997772217, 0.12783721089363098, 0.29470130801200867, 0.12605883181095123, -0.111229807138443, 0.09349635988473892, 0.329041987657547, -0.45275622606277466, -0.045953068882226944, 0.8237364888191223], "max": [-0.06983856111764908, -0.07218820601701736, 0.1534457951784134, 0.7666520476341248, 0.430458128452301, 0.5188524127006531, 0.8997489809989929, 0.13160006701946259, -0.10956546664237976, 0.09581286460161209, 0.3727622628211975, -0.42378976941108704, -0.0050415415316820145, 0.8287625908851624], "mean": [-0.08222594112157822, -0.08438204228878021, 0.14220164716243744, 0.43139898777008057, 0.3618142306804657, 0.3223523497581482, 0.6786158084869385, 0.129958376288414, -0.11071193963289261, 0.09426424652338028, 0.35980933904647827, -0.4335804581642151, -0.03123219683766365, 0.8253132104873657], "std": [0.009584514424204826, 0.007323625963181257, 0.008336400613188744, 0.23554855585098267, 0.05179142206907272, 0.1291491985321045, 0.20907007157802582, 0.0016648154705762863, 0.0005096107488498092, 0.0008090565679594874, 0.01351271104067564, 0.008884468115866184, 0.012833458371460438, 0.0015773633494973183], "count": [335]}, "timestamp": {"min": [0.0], "max": [11.133333333333333], "mean": [5.566666666666666], "std": [3.2235246409964224], "count": [335]}, "frame_index": {"min": [0], "max": [334], "mean": [167.0], "std": [96.70573922989266], "count": [335]}, "episode_index": {"min": [539], "max": [539], "mean": [539.0], "std": [0.0], "count": [335]}, "index": {"min": [299474], "max": [299808], "mean": [299641.0], "std": [96.70573922989266], "count": [335]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [335]}}} +{"episode_index": 540, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4613699612942104]], [[0.4215065324711445]], [[0.3541303933157187]]], "std": [[[0.1844647875824698]], [[0.18003828048574663]], [[0.18030825353333818]]], "count": [235]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47461177397673016]], [[0.44865848050804247]], [[0.3856579648171325]]], "std": [[[0.19064531008598712]], [[0.16937341606562437]], [[0.1806404648032077]]], "count": [235]}, "observation.state": {"min": [0.5624620914459229, -0.05521754175424576, 0.14114654064178467, -4.539577484130859, -1.2058171033859253, -1.2089565992355347, -0.5323125123977661, -0.27288275957107544, 0.1584831178188324, 0.7525771856307983, -0.5569303631782532, -0.7093366384506226], "max": [0.7153103947639465, 0.12327797710895538, 0.17001362144947052, -3.9388158321380615, 0.5002262592315674, 0.3568437099456787, -0.4473470151424408, -0.16402311623096466, 0.18438558280467987, 2.4636471271514893, 0.5681345462799072, 0.21630464494228363], "mean": [0.646056056022644, 0.047205954790115356, 0.1588057577610016, -4.448328018188477, -0.3219510316848755, -0.3398391306400299, -0.5009604096412659, -0.23610956966876984, 0.16937439143657684, 1.6050028800964355, 0.0830831527709961, 0.017601599916815758], "std": [0.03447990119457245, 0.04620518907904625, 0.0049179294146597385, 0.15474699437618256, 0.49986326694488525, 0.3657536506652832, 0.024460945278406143, 0.026222404092550278, 0.005227853078395128, 0.3357431888580322, 0.2283243089914322, 0.24576693773269653], "count": [1456]}, "action": {"min": [-0.09521856904029846, -0.09015405923128128, 0.12988147139549255, 0.05769966542720795, 0.07603790611028671, -0.0721859335899353, 0.4491979479789734, 0.11768382787704468, -0.11235632002353668, 0.09295815974473953, 0.14576396346092224, -0.45497918128967285, -0.3646541237831116, 0.634178102016449], "max": [-0.0668630450963974, -0.05565498396754265, 0.1515124887228012, 0.5398960113525391, 0.8057583570480347, 0.2876586318016052, 0.9583178162574768, 0.13223233819007874, -0.09089943021535873, 0.11479301750659943, 0.5620619654655457, -0.11834149807691574, 0.40973764657974243, 0.9392144680023193], "mean": [-0.07701017707586288, -0.07062471657991409, 0.142955020070076, 0.3313930034637451, 0.4354957342147827, 0.14926978945732117, 0.768878161907196, 0.12344265729188919, -0.10176049917936325, 0.10099248588085175, 0.3165492117404938, -0.2969682216644287, -0.03454729914665222, 0.8763594031333923], "std": [0.005707672331482172, 0.009186414070427418, 0.004499305039644241, 0.11629804223775864, 0.2202361673116684, 0.07572650909423828, 0.1389365792274475, 0.003810079302638769, 0.005795737262815237, 0.00350053608417511, 0.08154270797967911, 0.0700632780790329, 0.15450464189052582, 0.08355128020048141], "count": [1456]}, "timestamp": {"min": [0.0], "max": [48.5], "mean": [24.25], "std": [14.010363227903044], "count": [1456]}, "frame_index": {"min": [0], "max": [1455], "mean": [727.5], "std": [420.3108968370913], "count": [1456]}, "episode_index": {"min": [540], "max": [540], "mean": [540.0], "std": [0.0], "count": [1456]}, "index": {"min": [299809], "max": [301264], "mean": [300536.5], "std": [420.3108968370913], "count": [1456]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [1456]}}} +{"episode_index": 541, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43807587497364536]], [[0.3969573951085811]], [[0.32777489633846374]]], "std": [[[0.1837549838036104]], [[0.17737556175359406]], [[0.17528356915279342]]], "count": [155]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45277293906810034]], [[0.42595849497505095]], [[0.3604761631175768]]], "std": [[[0.18901658571415056]], [[0.16680784083420586]], [[0.17556821021438612]]], "count": [155]}, "observation.state": {"min": [0.5837690830230713, 0.01821793057024479, 0.15485091507434845, -4.53873872756958, -0.9347302913665771, -1.3915902376174927, -0.5200642943382263, -0.2615535259246826, 0.16205309331417084, 0.5493876338005066, -0.0797957181930542, -0.2697451412677765], "max": [0.7166696190834045, 0.14257709681987762, 0.17199434340000153, -3.8752799034118652, 0.472898930311203, 0.4376305043697357, -0.4032424986362457, -0.15803028643131256, 0.18532021343708038, 1.6919881105422974, 0.4601917266845703, 0.12027540802955627], "mean": [0.6356443762779236, 0.08328670263290405, 0.16152729094028473, -4.290713787078857, -0.12414784729480743, -0.5932542085647583, -0.48111167550086975, -0.21309925615787506, 0.17124998569488525, 0.7717123031616211, 0.29154932498931885, -0.11697225272655487], "std": [0.03885958716273308, 0.03270687907934189, 0.004068092908710241, 0.27803024649620056, 0.4375668466091156, 0.5523560643196106, 0.023460954427719116, 0.03025798313319683, 0.0050651137717068195, 0.22643327713012695, 0.09702244400978088, 0.0827995166182518], "count": [835]}, "action": {"min": [-0.08734583854675293, -0.08242172747850418, 0.14159750938415527, 0.034984033554792404, 0.09064006805419922, -0.03515255078673363, 0.39683815836906433, 0.11743693798780441, -0.11912087351083755, 0.0994192585349083, 0.32900092005729675, -0.35852378606796265, -0.5349523425102234, 0.6937651038169861], "max": [-0.07060264050960541, -0.052657775580883026, 0.15934109687805176, 0.8439944386482239, 0.6907063126564026, 0.28831782937049866, 0.969175398349762, 0.13804426789283752, -0.08819599449634552, 0.11760033667087555, 0.4364795386791229, -0.00877218134701252, -0.013815467245876789, 0.903343677520752], "mean": [-0.07807688415050507, -0.06707090139389038, 0.15013374388217926, 0.4539114832878113, 0.38635629415512085, 0.19396480917930603, 0.6884484887123108, 0.12409044802188873, -0.09936800599098206, 0.10642771422863007, 0.3926643133163452, -0.225124791264534, -0.4261336028575897, 0.7726486921310425], "std": [0.005383312702178955, 0.008447274565696716, 0.004636220633983612, 0.25504639744758606, 0.17469115555286407, 0.06551844626665115, 0.18234848976135254, 0.003372059902176261, 0.005855783354490995, 0.005327083636075258, 0.029873652383685112, 0.047099340707063675, 0.10558490455150604, 0.0479501411318779], "count": [835]}, "timestamp": {"min": [0.0], "max": [27.8], "mean": [13.9], "std": [8.03478548424149], "count": [835]}, "frame_index": {"min": [0], "max": [834], "mean": [417.0], "std": [241.04356452724474], "count": [835]}, "episode_index": {"min": [541], "max": [541], "mean": [541.0], "std": [0.0], "count": [835]}, "index": {"min": [301265], "max": [302099], "mean": [301682.0], "std": [241.04356452724474], "count": [835]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [835]}}} +{"episode_index": 542, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4204592567835215]], [[0.38032500990295104]], [[0.3113756313131313]]], "std": [[[0.19060893897990663]], [[0.18204004037933066]], [[0.17801590269002535]]], "count": [110]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4321696449792038]], [[0.40767417062784705]], [[0.3422798920578332]]], "std": [[[0.19802599639797847]], [[0.17444501714844118]], [[0.1814020627113107]]], "count": [110]}, "observation.state": {"min": [0.6135634183883667, 0.019862869754433632, 0.1451883763074875, -2.7941184043884277, 0.25072798132896423, -0.4285305440425873, -0.5422748327255249, -0.29296186566352844, 0.16551679372787476, 1.186845064163208, -0.10206747055053711, 0.011279569938778877], "max": [0.692960798740387, 0.11777939647436142, 0.16098496317863464, -1.1394551992416382, 0.6084423065185547, 0.5166721940040588, -0.5001705288887024, -0.213433176279068, 0.19011907279491425, 1.7936878204345703, 0.16177761554718018, 0.4431150257587433], "mean": [0.6356465816497803, 0.07071736454963684, 0.15307718515396118, -1.765527367591858, 0.39317479729652405, 0.16704107820987701, -0.5294745564460754, -0.23868100345134735, 0.17328494787216187, 1.4595839977264404, 0.03097418323159218, 0.2841706871986389], "std": [0.025739120319485664, 0.03605065867304802, 0.0036895417142659426, 0.589564323425293, 0.13413424789905548, 0.3420634865760803, 0.010603273287415504, 0.017557404935359955, 0.007524388376623392, 0.1986386626958847, 0.08937379717826843, 0.11969128996133804], "count": [533]}, "action": {"min": [-0.08462048321962357, -0.07527533918619156, 0.13450804352760315, 0.4168917238712311, -0.45981281995773315, 0.7474643588066101, -0.21559034287929535, 0.11045651882886887, -0.11486896872520447, 0.09424808621406555, 0.17821402847766876, -0.30308330059051514, -0.28439682722091675, 0.8933674097061157], "max": [-0.07612038403749466, -0.05576859414577484, 0.14764277637004852, 0.5860272645950317, 0.1304597109556198, 0.820700466632843, 0.3371240198612213, 0.12378636002540588, -0.09644630551338196, 0.11269129067659378, 0.3853222727775574, -0.179361030459404, 0.053749971091747284, 0.939803421497345], "mean": [-0.08130216598510742, -0.0666869655251503, 0.14170928299427032, 0.5092607140541077, -0.24343760311603546, 0.7718985080718994, -0.0044470238499343395, 0.11795501410961151, -0.103873610496521, 0.10134464502334595, 0.23738011717796326, -0.2298295646905899, -0.12659868597984314, 0.9263871908187866], "std": [0.0027477629482746124, 0.006830218248069286, 0.003110401565209031, 0.06925704330205917, 0.20707479119300842, 0.01721559837460518, 0.19383661448955536, 0.0033056731335818768, 0.005898576229810715, 0.004872468765825033, 0.050489071756601334, 0.028143493458628654, 0.11461491882801056, 0.011439364403486252], "count": [533]}, "timestamp": {"min": [0.0], "max": [17.733333333333334], "mean": [8.866666666666669], "std": [5.128785864553564], "count": [533]}, "frame_index": {"min": [0], "max": [532], "mean": [266.0], "std": [153.8635759366069], "count": [533]}, "episode_index": {"min": [542], "max": [542], "mean": [542.0], "std": [0.0], "count": [533]}, "index": {"min": [302100], "max": [302632], "mean": [302366.0], "std": [153.8635759366069], "count": [533]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [533]}}} +{"episode_index": 543, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4170604163727841]], [[0.3746842251688845]], [[0.3064391643547906]]], "std": [[[0.19139552675706406]], [[0.18401647238778857]], [[0.1809696548238552]]], "count": [139]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43175221783357626]], [[0.4046233973605429]], [[0.33973328396106645]]], "std": [[[0.20048463917361722]], [[0.17738887308127277]], [[0.18473368609884427]]], "count": [139]}, "observation.state": {"min": [0.591908872127533, -0.013584289699792862, 0.13619470596313477, -2.521731376647949, -0.2654847204685211, -0.29236024618148804, -0.526018500328064, -0.3336297869682312, 0.15791794657707214, 1.3189496994018555, 0.05369814112782478, -0.22515282034873962], "max": [0.6856396794319153, 0.14212918281555176, 0.16259105503559113, -0.686105489730835, 0.729502260684967, 1.1287230253219604, -0.4391918182373047, -0.1588566154241562, 0.18636631965637207, 2.0149106979370117, 0.38203564286231995, 0.2736387252807617], "mean": [0.6251145005226135, 0.043170016258955, 0.1544739305973053, -1.312617301940918, 0.24284598231315613, 0.5896239876747131, -0.49282437562942505, -0.23696482181549072, 0.1694413125514984, 1.58254873752594, 0.2447323501110077, 0.10512793809175491], "std": [0.023972928524017334, 0.04820609092712402, 0.009558722376823425, 0.5608963966369629, 0.39369136095046997, 0.4819430708885193, 0.019617553800344467, 0.03857279196381569, 0.0073107522912323475, 0.18399512767791748, 0.08033818006515503, 0.13454276323318481], "count": [724]}, "action": {"min": [-0.09426470845937729, -0.0873819962143898, 0.13159742951393127, -0.419366717338562, -0.6319504380226135, -0.6327925324440002, -0.13692688941955566, 0.11890620738267899, -0.12082738429307938, 0.08781798183917999, 0.18871983885765076, -0.41160646080970764, -0.24212120473384857, 0.8158047199249268], "max": [-0.07140270620584488, -0.051109638065099716, 0.1466967910528183, 0.6509304642677307, 0.782206654548645, 0.8105432987213135, 0.31862637400627136, 0.1310521811246872, -0.08907705545425415, 0.11121247708797455, 0.4981272518634796, -0.25064149498939514, 0.1322801262140274, 0.9071029424667358], "mean": [-0.08265595138072968, -0.07322608679533005, 0.14109168946743011, 0.2026766538619995, 0.17031952738761902, 0.2266080677509308, 0.11834907531738281, 0.12343244254589081, -0.10218043625354767, 0.10050328075885773, 0.3018758296966553, -0.3464207649230957, -0.09292595088481903, 0.8738547563552856], "std": [0.007294701877981424, 0.012086046859622002, 0.00389198143966496, 0.4211574196815491, 0.5156463980674744, 0.6222880482673645, 0.18452145159244537, 0.002813581144437194, 0.008839702233672142, 0.0047295731492340565, 0.08111082017421722, 0.032224852591753006, 0.09170506149530411, 0.02405206486582756], "count": [724]}, "timestamp": {"min": [0.0], "max": [24.1], "mean": [12.049999999999999], "std": [6.966686602842288], "count": [724]}, "frame_index": {"min": [0], "max": [723], "mean": [361.5], "std": [209.00059808526865], "count": [724]}, "episode_index": {"min": [543], "max": [543], "mean": [543.0], "std": [0.0], "count": [724]}, "index": {"min": [302633], "max": [303356], "mean": [302994.5], "std": [209.00059808526865], "count": [724]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [724]}}} +{"episode_index": 544, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45088630913174915]], [[0.4111686616507068]], [[0.34296945457769673]]], "std": [[[0.19489159539305834]], [[0.18964879839417076]], [[0.1895262646721449]]], "count": [129]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4694468489807637]], [[0.44350074732735467]], [[0.37912833341777713]]], "std": [[[0.19483826868316823]], [[0.17475227411969063]], [[0.18529802537542922]]], "count": [129]}, "observation.state": {"min": [0.5476267337799072, -0.02630363032221794, 0.13558155298233032, -1.4799916744232178, -0.14128214120864868, -0.6418003439903259, -0.4791029095649719, -0.289309024810791, 0.168122336268425, 1.672067642211914, -0.12966804206371307, 0.13957616686820984], "max": [0.6765654683113098, 0.0402894988656044, 0.16574105620384216, -0.3145349323749542, 0.6737545728683472, 0.8974818587303162, -0.4540349245071411, -0.24542072415351868, 0.1884014904499054, 2.4548401832580566, 0.16819952428340912, 0.3874545395374298], "mean": [0.6080554127693176, 0.01255783997476101, 0.1505935937166214, -0.9611989259719849, 0.22507736086845398, 0.0070593166165053844, -0.4663276970386505, -0.273171603679657, 0.17283406853675842, 1.7860254049301147, 0.11922870576381683, 0.3274299204349518], "std": [0.04198043793439865, 0.020073294639587402, 0.006489553023129702, 0.37805110216140747, 0.22644776105880737, 0.6166757345199585, 0.006641821004450321, 0.007514444645494223, 0.005096797831356525, 0.16604526340961456, 0.06405525654554367, 0.06294664740562439], "count": [657]}, "action": {"min": [-0.09484361112117767, -0.08780515193939209, 0.1244942843914032, -0.43419504165649414, -0.570806086063385, -0.5598863959312439, -0.5204067230224609, 0.12163460999727249, -0.12076444178819656, 0.09841906279325485, 0.15905004739761353, -0.3709108233451843, -0.07343579828739166, 0.8558182716369629], "max": [-0.07792969793081284, -0.06655726581811905, 0.1559024155139923, 0.5965249538421631, 0.6571434736251831, 0.9646791219711304, 0.5294362306594849, 0.12961743772029877, -0.10660283267498016, 0.11144053190946579, 0.24081502854824066, -0.2881010174751282, 0.3475015461444855, 0.9311555027961731], "mean": [-0.08800710737705231, -0.07610230892896652, 0.13930098712444305, 0.27099040150642395, -0.1276010423898697, 0.694621205329895, -0.2844838500022888, 0.1270768642425537, -0.11020272225141525, 0.10087624937295914, 0.20291224122047424, -0.3209134042263031, -0.006803417578339577, 0.920124888420105], "std": [0.005428063217550516, 0.004125318955630064, 0.008405051194131374, 0.22030995786190033, 0.2902389168739319, 0.39139318466186523, 0.24675707519054413, 0.002202989300712943, 0.0036233700811862946, 0.003286372171714902, 0.015418057329952717, 0.014914346858859062, 0.09214550256729126, 0.0145676638931036], "count": [657]}, "timestamp": {"min": [0.0], "max": [21.866666666666667], "mean": [10.933333333333332], "std": [6.3219781245593865], "count": [657]}, "frame_index": {"min": [0], "max": [656], "mean": [328.0], "std": [189.65934373678155], "count": [657]}, "episode_index": {"min": [544], "max": [544], "mean": [544.0], "std": [0.0], "count": [657]}, "index": {"min": [303357], "max": [304013], "mean": [303685.0], "std": [189.65934373678155], "count": [657]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [657]}}} +{"episode_index": 545, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43185600370752586]], [[0.39103870446814204]], [[0.32367251461988306]]], "std": [[[0.19949572814910116]], [[0.19129410118237067]], [[0.18882187227875588]]], "count": [114]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4482240138745556]], [[0.42118908620953255]], [[0.3586143336964415]]], "std": [[[0.20543412561252442]], [[0.1818413764832354]], [[0.1891620086173985]]], "count": [114]}, "observation.state": {"min": [0.5655434727668762, -0.04541739076375961, 0.14709003269672394, -2.47434139251709, -0.24007032811641693, -0.24154503643512726, -0.5157781839370728, -0.348596453666687, 0.17141102254390717, 1.1878935098648071, -0.19334064424037933, -0.04698260873556137], "max": [0.6438519358634949, 0.0896686464548111, 0.16323013603687286, -0.6213113069534302, 0.9809134006500244, 1.3971132040023804, -0.4282255470752716, -0.23353543877601624, 0.18945667147636414, 1.8719021081924438, 0.5457261800765991, 0.29515352845191956], "mean": [0.5999160408973694, -0.004509496036916971, 0.1556214988231659, -1.1457915306091309, 0.3789856731891632, 0.7484023571014404, -0.47974804043769836, -0.28912681341171265, 0.1778225302696228, 1.3633453845977783, 0.1366126835346222, 0.18133766949176788], "std": [0.0199726615101099, 0.0426236130297184, 0.004074705298990011, 0.5784645080566406, 0.457092821598053, 0.4659440517425537, 0.013456993736326694, 0.03471282124519348, 0.005078883375972509, 0.22575660049915314, 0.1322588175535202, 0.09816894680261612], "count": [557]}, "action": {"min": [-0.09311771392822266, -0.09260357916355133, 0.1357906460762024, -0.4678230881690979, -0.6008851528167725, -0.6017161011695862, -0.22744986414909363, 0.11563459783792496, -0.12687772512435913, 0.09278875589370728, 0.1997959017753601, -0.4497068524360657, -0.28929251432418823, 0.8082085847854614], "max": [-0.07807067036628723, -0.06428360939025879, 0.14526253938674927, 0.7148205637931824, 0.8338995575904846, 0.6988990902900696, 0.3626806139945984, 0.1282656192779541, -0.1066577285528183, 0.11139211058616638, 0.4463386535644531, -0.17797061800956726, 0.10234259068965912, 0.955974817276001], "mean": [-0.0858994573354721, -0.08201891928911209, 0.13987435400485992, 0.16767963767051697, 0.2029804289340973, 0.08070110529661179, 0.11869931221008301, 0.12322163581848145, -0.11445000022649765, 0.10131785273551941, 0.3091202676296234, -0.2386719286441803, -0.17025001347064972, 0.8930937647819519], "std": [0.004555767402052879, 0.00880124419927597, 0.0020733014680445194, 0.4979856610298157, 0.5362094044685364, 0.5763472318649292, 0.20589782297611237, 0.002706559607759118, 0.006514423061162233, 0.004068701062351465, 0.07576523721218109, 0.03966037556529045, 0.11337514221668243, 0.02667492814362049], "count": [557]}, "timestamp": {"min": [0.0], "max": [18.533333333333335], "mean": [9.266666666666666], "std": [5.359726361174297], "count": [557]}, "frame_index": {"min": [0], "max": [556], "mean": [278.0], "std": [160.7917908352289], "count": [557]}, "episode_index": {"min": [545], "max": [545], "mean": [545.0], "std": [0.0], "count": [557]}, "index": {"min": [304014], "max": [304570], "mean": [304292.0], "std": [160.7917908352289], "count": [557]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [557]}}} +{"episode_index": 546, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44116442555615515]], [[0.40229641122504045]], [[0.337542780975795]]], "std": [[[0.20460318258586457]], [[0.19806142119404005]], [[0.1991723416625831]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4595476229737563]], [[0.4341615573344526]], [[0.37235573944154626]]], "std": [[[0.20514186667992151]], [[0.18354245266047314]], [[0.19418414047787796]]], "count": [109]}, "observation.state": {"min": [0.557673990726471, -0.09044864773750305, 0.1402546912431717, -1.6116769313812256, 0.07433026283979416, -0.6362211108207703, -0.47745025157928467, -0.3025071620941162, 0.1675545573234558, 1.2801570892333984, 0.03251948952674866, -0.02038273960351944], "max": [0.6121270060539246, 0.022310979664325714, 0.16105754673480988, -0.10547403991222382, 0.5170325040817261, 0.8080661296844482, -0.3954734206199646, -0.271925151348114, 0.18634428083896637, 1.7387490272521973, 0.46442747116088867, 0.375968337059021], "mean": [0.5832200050354004, -0.05000516027212143, 0.15312460064888, -0.6862894892692566, 0.25103381276130676, 0.28001275658607483, -0.4514235854148865, -0.29589223861694336, 0.17547078430652618, 1.4791617393493652, 0.1882043182849884, 0.22759279608726501], "std": [0.01370316557586193, 0.03680197522044182, 0.007310221903026104, 0.5873037576675415, 0.14826765656471252, 0.5513801574707031, 0.027022263035178185, 0.005887045990675688, 0.005270042922347784, 0.10880320519208908, 0.15230730175971985, 0.10676135122776031], "count": [526]}, "action": {"min": [-0.09902306646108627, -0.09820268303155899, 0.13158437609672546, -0.36747899651527405, -0.385882169008255, -0.6023159623146057, -0.599351167678833, 0.12170863151550293, -0.12129352241754532, 0.09645501524209976, 0.21310508251190186, -0.3676266670227051, -0.2523811459541321, 0.8257666826248169], "max": [-0.08500652760267258, -0.07271414995193481, 0.1414480209350586, 0.4367401599884033, 0.601949155330658, 0.9120524525642395, 0.6314692497253418, 0.1380244791507721, -0.11005422472953796, 0.10772481560707092, 0.3811604082584381, -0.23775409162044525, 0.00939644780009985, 0.9369282722473145], "mean": [-0.09037033468484879, -0.08944611996412277, 0.1369648426771164, -0.01094015408307314, 0.27189621329307556, 0.10516791045665741, 0.18449606001377106, 0.12800435721874237, -0.11463119834661484, 0.10066044330596924, 0.2828372120857239, -0.2751196026802063, -0.13335059583187103, 0.9041910171508789], "std": [0.004218713846057653, 0.009144609794020653, 0.0030972568783909082, 0.3446071743965149, 0.34316036105155945, 0.6672059297561646, 0.4462924003601074, 0.004710444714874029, 0.0034423579927533865, 0.0026675290428102016, 0.04301252216100693, 0.04142344370484352, 0.06386563926935196, 0.03637049347162247], "count": [526]}, "timestamp": {"min": [0.0], "max": [17.5], "mean": [8.75], "std": [5.061428213020071], "count": [526]}, "frame_index": {"min": [0], "max": [525], "mean": [262.5], "std": [151.84284639060215], "count": [526]}, "episode_index": {"min": [546], "max": [546], "mean": [546.0], "std": [0.0], "count": [526]}, "index": {"min": [304571], "max": [305096], "mean": [304833.5], "std": [151.84284639060215], "count": [526]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [526]}}} +{"episode_index": 547, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4496854533586123]], [[0.411648651233182]], [[0.3495577737032048]]], "std": [[[0.2145807373772918]], [[0.21000846303508955]], [[0.2129073080332481]]], "count": [131]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.473602278018926]], [[0.4477073375575845]], [[0.3874358296329558]]], "std": [[[0.21369228852926525]], [[0.1940726620273265]], [[0.20777191217285945]]], "count": [131]}, "observation.state": {"min": [0.5236785411834717, -0.07641644030809402, 0.13923192024230957, -1.9685691595077515, 0.10643982887268066, -0.8402562737464905, -0.444783091545105, -0.3034570813179016, 0.16573716700077057, 1.4275691509246826, -0.19211092591285706, 0.21588732302188873], "max": [0.6341907978057861, -0.01472724974155426, 0.16997602581977844, -0.9408788084983826, 1.0113834142684937, 0.44447898864746094, -0.29540225863456726, -0.26028698682785034, 0.18642854690551758, 2.0547518730163574, 0.2111033946275711, 0.45382818579673767], "mean": [0.5817283391952515, -0.0376414880156517, 0.15389767289161682, -1.4863722324371338, 0.590522825717926, -0.32422924041748047, -0.4187485873699188, -0.2803426682949066, 0.17617245018482208, 1.7762236595153809, -0.02477257326245308, 0.3374229073524475], "std": [0.0361090749502182, 0.014668641611933708, 0.00810373667627573, 0.2726728320121765, 0.21729826927185059, 0.3650799095630646, 0.02131781354546547, 0.013575006276369095, 0.004504829179495573, 0.21463046967983246, 0.143048956990242, 0.0838000476360321], "count": [666]}, "action": {"min": [-0.10543154925107956, -0.0924205407500267, 0.13137875497341156, 0.2635536193847656, -0.38654300570487976, 0.6750715970993042, -0.4130687117576599, 0.12845101952552795, -0.12300340831279755, 0.1003388985991478, 0.11111960560083389, -0.2748802602291107, -0.1624707728624344, 0.9154815673828125], "max": [-0.06983763724565506, -0.08246846497058868, 0.1419600397348404, 0.6061161756515503, 0.12814126908779144, 0.9208040237426758, -0.16895821690559387, 0.15408295392990112, -0.1100073829293251, 0.1129625141620636, 0.29259777069091797, -0.21536396443843842, 0.18411649763584137, 0.9618590474128723], "mean": [-0.08802271634340286, -0.08677196502685547, 0.1360342800617218, 0.4867560565471649, -0.10332425683736801, 0.8001091480255127, -0.27024930715560913, 0.13385146856307983, -0.11487723886966705, 0.10568659752607346, 0.19303692877292633, -0.24277529120445251, 0.029665274545550346, 0.9404038190841675], "std": [0.010038706474006176, 0.002840347122400999, 0.0026337772142142057, 0.09198001027107239, 0.14818815886974335, 0.06520961970090866, 0.06716622412204742, 0.0038903176318854094, 0.00387056777253747, 0.002513291547074914, 0.07067205756902695, 0.01163834985345602, 0.11469242721796036, 0.016531027853488922], "count": [666]}, "timestamp": {"min": [0.0], "max": [22.166666666666668], "mean": [11.083333333333334], "std": [6.408580763898307], "count": [666]}, "frame_index": {"min": [0], "max": [665], "mean": [332.5], "std": [192.2574229169492], "count": [666]}, "episode_index": {"min": [547], "max": [547], "mean": [547.0], "std": [0.0], "count": [666]}, "index": {"min": [305097], "max": [305762], "mean": [305429.5], "std": [192.2574229169492], "count": [666]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [666]}}} +{"episode_index": 548, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43236982570806104]], [[0.39575745098039217]], [[0.33143636437908497]]], "std": [[[0.20472302929737815]], [[0.19868863726567548]], [[0.19896565279222705]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4503227178649237]], [[0.4273250571895425]], [[0.365645174291939]]], "std": [[[0.20145967452664568]], [[0.18155381339191187]], [[0.19201734964277878]]], "count": [100]}, "observation.state": {"min": [0.5116387605667114, -0.08083383738994598, 0.13968172669410706, -1.613564133644104, 0.4730355739593506, -0.6400663256645203, -0.46173447370529175, -0.2955567240715027, 0.17912134528160095, 1.3961156606674194, 0.26316189765930176, 0.3110533058643341], "max": [0.6215795874595642, 0.03913109004497528, 0.15925182402133942, -1.1816028356552124, 0.8946958184242249, -0.04673054814338684, -0.4019913971424103, -0.27368593215942383, 0.19225406646728516, 1.7668474912643433, 0.4640175402164459, 0.4218451976776123], "mean": [0.5653728246688843, -0.02782522700726986, 0.1499757617712021, -1.3614996671676636, 0.6616355180740356, -0.35012513399124146, -0.44335106015205383, -0.28488001227378845, 0.18373601138591766, 1.538138508796692, 0.37610286474227905, 0.34313735365867615], "std": [0.03603452816605568, 0.04270409792661667, 0.00610980624333024, 0.1375683695077896, 0.1378861367702484, 0.18650026619434357, 0.016545243561267853, 0.00777890020981431, 0.00375043461099267, 0.11533943563699722, 0.07306816428899765, 0.03272215276956558], "count": [340]}, "action": {"min": [-0.10485319793224335, -0.0948854386806488, 0.13115236163139343, 0.40580499172210693, -0.24291646480560303, 0.756500244140625, -0.41104087233543396, 0.11894232779741287, -0.12351449579000473, 0.10427171736955643, 0.18171323835849762, -0.4017288088798523, -0.2531408965587616, 0.8791515231132507], "max": [-0.0808856263756752, -0.07181783765554428, 0.14162501692771912, 0.5442754626274109, 0.061856601387262344, 0.8355249166488647, -0.24724148213863373, 0.13161829113960266, -0.11536691337823868, 0.11264002323150635, 0.2410368025302887, -0.3363952934741974, -0.049903638660907745, 0.9053362011909485], "mean": [-0.09241858869791031, -0.08341563493013382, 0.13556818664073944, 0.4713519811630249, -0.08285387605428696, 0.8012308478355408, -0.3376854956150055, 0.12427286058664322, -0.1186639666557312, 0.10661996155977249, 0.22108668088912964, -0.34995391964912415, -0.17465554177761078, 0.8905462622642517], "std": [0.008434396237134933, 0.007868998683989048, 0.002992437221109867, 0.036526210606098175, 0.10125157982110977, 0.02400941401720047, 0.0528935082256794, 0.0032419818453490734, 0.0026583950966596603, 0.002385893603786826, 0.017477545887231827, 0.013815553858876228, 0.06707455962896347, 0.00895483884960413], "count": [340]}, "timestamp": {"min": [0.0], "max": [11.3], "mean": [5.65], "std": [3.271637374635384], "count": [340]}, "frame_index": {"min": [0], "max": [339], "mean": [169.5], "std": [98.14912123906153], "count": [340]}, "episode_index": {"min": [548], "max": [548], "mean": [548.0], "std": [0.0], "count": [340]}, "index": {"min": [305763], "max": [306102], "mean": [305932.5], "std": [98.14912123906153], "count": [340]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [340]}}} +{"episode_index": 549, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46598968681917213]], [[0.4304150490196078]], [[0.36426882897603485]]], "std": [[[0.2053979194251105]], [[0.202303051926475]], [[0.2053560985101009]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48111318082788673]], [[0.4572589052287582]], [[0.3935809204793029]]], "std": [[[0.1957000333239044]], [[0.17992031904868483]], [[0.19433661111022785]]], "count": [100]}, "observation.state": {"min": [0.5169520378112793, -0.03066696971654892, 0.14657020568847656, -2.305750608444214, -0.012707189656794071, -0.17259790003299713, -0.4357474744319916, -0.2921355366706848, 0.18291300535202026, 1.0381748676300049, 0.5234544277191162, 0.027893099933862686], "max": [0.6381525993347168, 0.10480520874261856, 0.16578122973442078, -0.5923740863800049, 1.1650993824005127, 1.1288111209869385, -0.39470115303993225, -0.2619551122188568, 0.19164739549160004, 1.5301074981689453, 0.6323537230491638, 0.20145896077156067], "mean": [0.5972963571548462, 0.05127009004354477, 0.15786685049533844, -1.62554132938385, 0.7113479971885681, 0.3767528831958771, -0.41953709721565247, -0.2803541123867035, 0.18570280075073242, 1.3120250701904297, 0.5784329771995544, 0.10989068448543549], "std": [0.028900016099214554, 0.049077413976192474, 0.005174120422452688, 0.5891355276107788, 0.40946054458618164, 0.41669806838035583, 0.009767997078597546, 0.010616714134812355, 0.0019758970011025667, 0.1981886923313141, 0.04023240879178047, 0.058051303029060364], "count": [457]}, "action": {"min": [-0.09832227230072021, -0.09177859872579575, 0.13929235935211182, -0.5630332231521606, -0.5700335502624512, -0.5897520184516907, -0.20888030529022217, 0.1219976544380188, -0.12197791039943695, 0.10809452086687088, 0.270664244890213, -0.4302091896533966, -0.3854025602340698, 0.7909992337226868], "max": [-0.07651355117559433, -0.0626273974776268, 0.15011374652385712, 0.7629927396774292, 0.7023662328720093, 0.7985336780548096, 0.3569652736186981, 0.13060426712036133, -0.11596883833408356, 0.11528056114912033, 0.3162389099597931, -0.3556153178215027, -0.17138028144836426, 0.8501536250114441], "mean": [-0.08399050682783127, -0.07373150438070297, 0.14415468275547028, 0.421373575925827, 0.008612268604338169, 0.34375715255737305, 0.1282147616147995, 0.1260020136833191, -0.11868637055158615, 0.10973495244979858, 0.3005087673664093, -0.38811710476875305, -0.27185121178627014, 0.8226426243782043], "std": [0.005634920671582222, 0.010441508144140244, 0.002821217989549041, 0.474018394947052, 0.3996717631816864, 0.5344624519348145, 0.13297171890735626, 0.0018356055952608585, 0.0013616159558296204, 0.0017392245354130864, 0.014343857765197754, 0.026014141738414764, 0.0840073674917221, 0.021807704120874405], "count": [457]}, "timestamp": {"min": [0.0], "max": [15.2], "mean": [7.6000000000000005], "std": [4.397474022410795], "count": [457]}, "frame_index": {"min": [0], "max": [456], "mean": [228.0], "std": [131.92422067232386], "count": [457]}, "episode_index": {"min": [549], "max": [549], "mean": [549.0], "std": [0.0], "count": [457]}, "index": {"min": [306103], "max": [306559], "mean": [306331.0], "std": [131.92422067232386], "count": [457]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [457]}}} +{"episode_index": 550, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4724441033695031]], [[0.44060692302811094]], [[0.3737967563508683]]], "std": [[[0.1907872993853986]], [[0.18917684302673377]], [[0.19169207107364714]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4914036978869218]], [[0.4732543837383929]], [[0.4110983485627261]]], "std": [[[0.1962306959196269]], [[0.17746773289323126]], [[0.19033743133678624]]], "count": [103]}, "observation.state": {"min": [0.5257559418678284, -0.08409284055233002, 0.1331562101840973, -1.7104408740997314, -0.10684973746538162, -0.9039747714996338, -0.5094841122627258, -0.25731372833251953, 0.16898566484451294, 1.285399317741394, 0.20085564255714417, 0.1460290253162384], "max": [0.6633363962173462, 0.06969766318798065, 0.1625586450099945, -0.6162787675857544, 0.873653769493103, 0.36547037959098816, -0.45310819149017334, -0.2039342075586319, 0.19241221249103546, 1.3852118253707886, 0.4943508505821228, 0.5060489177703857], "mean": [0.5779970288276672, 0.015613311901688576, 0.14840823411941528, -1.0392838716506958, 0.6189613342285156, -0.20889884233474731, -0.4856910705566406, -0.22883428633213043, 0.1746794432401657, 1.349169135093689, 0.41642826795578003, 0.36901021003723145], "std": [0.04415018856525421, 0.03863783925771713, 0.007780871354043484, 0.2821989059448242, 0.24957133829593658, 0.3408125936985016, 0.014526310376822948, 0.014325359836220741, 0.006128203589469194, 0.015885427594184875, 0.07943416386842728, 0.10215912014245987], "count": [485]}, "action": {"min": [-0.10393491387367249, -0.0891554057598114, 0.127222940325737, 0.24110037088394165, -0.3224339485168457, 0.6902021169662476, -0.6249845623970032, 0.11786174029111862, -0.12096353620290756, 0.10012236982584, 0.11255871504545212, -0.35197651386260986, -0.32222843170166016, 0.8653063774108887], "max": [-0.0782703384757042, -0.06355322152376175, 0.14568810164928436, 0.5120956301689148, 0.21118038892745972, 0.9427159428596497, -0.13314767181873322, 0.12371159344911575, -0.0975031927227974, 0.11577670276165009, 0.31223928928375244, -0.2595655024051666, -0.1758512258529663, 0.8969273567199707], "mean": [-0.0923558846116066, -0.07368295639753342, 0.13893990218639374, 0.4212574362754822, -0.08763735741376877, 0.768220841884613, -0.4286348521709442, 0.12074758857488632, -0.10356775671243668, 0.10490309447050095, 0.18613624572753906, -0.33041006326675415, -0.2773537039756775, 0.8796483278274536], "std": [0.008963489904999733, 0.00780137162655592, 0.005034638103097677, 0.07507571578025818, 0.1366419941186905, 0.06832723319530487, 0.1095251739025116, 0.0010657231323421001, 0.006395449861884117, 0.0038444590754806995, 0.05662071332335472, 0.024181056767702103, 0.0405803881585598, 0.00610691262409091], "count": [485]}, "timestamp": {"min": [0.0], "max": [16.133333333333333], "mean": [8.066666666666666], "std": [4.666904755831214], "count": [485]}, "frame_index": {"min": [0], "max": [484], "mean": [242.0], "std": [140.0071426749364], "count": [485]}, "episode_index": {"min": [550], "max": [550], "mean": [550.0], "std": [0.0], "count": [485]}, "index": {"min": [306560], "max": [307044], "mean": [306802.0], "std": [140.0071426749364], "count": [485]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [485]}}} +{"episode_index": 551, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43976034041394335]], [[0.4017057080610022]], [[0.33653843409586054]]], "std": [[[0.2111069159738065]], [[0.20570012372291752]], [[0.20549769479791818]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46194518790849676]], [[0.4358032489106754]], [[0.37246444989106753]]], "std": [[[0.2062644650291489]], [[0.1884234358749234]], [[0.20031598469342024]]], "count": [100]}, "observation.state": {"min": [0.5484916567802429, -0.08175285160541534, 0.1439063400030136, -2.039025068283081, 0.15890824794769287, -0.45791110396385193, -0.4065787196159363, -0.297363817691803, 0.17691506445407867, 1.4688780307769775, 0.5222247242927551, 0.1730763018131256], "max": [0.6369709968566895, 0.06061572954058647, 0.16572807729244232, -0.622779130935669, 0.787982702255249, 0.7197165489196777, -0.37347134947776794, -0.2526569366455078, 0.18642595410346985, 1.7735575437545776, 0.643831193447113, 0.33380237221717834], "mean": [0.6122859120368958, -0.01126510463654995, 0.15541565418243408, -1.0904150009155273, 0.43222135305404663, 0.2671278715133667, -0.39061111211776733, -0.2795451581478119, 0.17978864908218384, 1.543023943901062, 0.5971933603286743, 0.2536213994026184], "std": [0.020715145394206047, 0.04438646510243416, 0.005573879461735487, 0.5275037884712219, 0.20529881119728088, 0.44285619258880615, 0.010268434882164001, 0.012373695150017738, 0.003406086005270481, 0.06771815568208694, 0.02901504933834076, 0.0453198067843914], "count": [379]}, "action": {"min": [-0.0961269736289978, -0.09311656653881073, 0.13078643381595612, 0.370199054479599, -0.5994875431060791, 0.600598931312561, -0.4270972013473511, 0.1276366114616394, -0.1224239245057106, 0.10370207577943802, 0.21575528383255005, -0.45187339186668396, -0.25212711095809937, 0.8336486220359802], "max": [-0.07399962097406387, -0.0688868835568428, 0.14429862797260284, 0.6038130521774292, -0.0011782851070165634, 0.8223235011100769, -0.03081226721405983, 0.1356465369462967, -0.11336313933134079, 0.11316122114658356, 0.29898685216903687, -0.40744709968566895, -0.10297731310129166, 0.8605996966362], "mean": [-0.08328928798437119, -0.08156564831733704, 0.13839900493621826, 0.47003623843193054, -0.3435553014278412, 0.6985145807266235, -0.30564746260643005, 0.13241459429264069, -0.11623648554086685, 0.10689087957143784, 0.2525365650653839, -0.4218177795410156, -0.2029539942741394, 0.8456193208694458], "std": [0.005441705696284771, 0.007967127487063408, 0.00393902650102973, 0.08514480292797089, 0.21938616037368774, 0.08326461166143417, 0.13183186948299408, 0.0023182511795312166, 0.0025908290408551693, 0.0025822585448622704, 0.024360671639442444, 0.010058158077299595, 0.03594233840703964, 0.006775651592761278], "count": [379]}, "timestamp": {"min": [0.0], "max": [12.6], "mean": [6.3], "std": [3.6469165057620936], "count": [379]}, "frame_index": {"min": [0], "max": [378], "mean": [189.0], "std": [109.40749517286281], "count": [379]}, "episode_index": {"min": [551], "max": [551], "mean": [551.0], "std": [0.0], "count": [379]}, "index": {"min": [307045], "max": [307423], "mean": [307234.0], "std": [109.40749517286281], "count": [379]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [379]}}} +{"episode_index": 552, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4565443108392455]], [[0.4229249203955086]], [[0.36141516302627413]]], "std": [[[0.2066037654909671]], [[0.20217939660834033]], [[0.20487900355454952]]], "count": [117]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.474011300579111]], [[0.452139999162058]], [[0.3919395587769771]]], "std": [[[0.2010201452855201]], [[0.18436764464060362]], [[0.19874561973659835]]], "count": [117]}, "observation.state": {"min": [0.5469703078269958, -0.08656410872936249, 0.1456226259469986, -2.3363654613494873, 0.10971911251544952, -0.2673088312149048, -0.4270748496055603, -0.35421860218048096, 0.17479823529720306, 1.1883128881454468, 0.33148014545440674, -0.11212704330682755], "max": [0.6025353670120239, 0.02994103915989399, 0.15646998584270477, -0.9490566849708557, 0.7505443096160889, 0.9094988703727722, -0.38006657361984253, -0.27438870072364807, 0.19386795163154602, 1.7058277130126953, 0.7515007257461548, 0.4391685724258423], "mean": [0.5653296709060669, -0.03903564438223839, 0.15355214476585388, -1.464126467704773, 0.3754367530345917, 0.511741042137146, -0.3994046747684479, -0.31725549697875977, 0.18330127000808716, 1.4416303634643555, 0.5979973077774048, 0.17011599242687225], "std": [0.009252489544451237, 0.03899601101875305, 0.002193222753703594, 0.5384833216667175, 0.26279139518737793, 0.43608754873275757, 0.013848175294697285, 0.02069295383989811, 0.00485721742734313, 0.1534053385257721, 0.0895354300737381, 0.1845003366470337], "count": [573]}, "action": {"min": [-0.0938313901424408, -0.09797771275043488, 0.13269852101802826, -0.3639279901981354, -0.6422708630561829, -0.6444777250289917, -0.2598259449005127, 0.123311847448349, -0.13111348450183868, 0.09845307469367981, 0.1813059002161026, -0.503991425037384, -0.295319527387619, 0.7635220289230347], "max": [-0.08975277841091156, -0.07464330643415451, 0.142946258187294, 0.6537415981292725, 0.6746839880943298, 0.7621838450431824, 0.18690483272075653, 0.1358146369457245, -0.11605297774076462, 0.10959451645612717, 0.4159812033176422, -0.3235054314136505, -0.12683112919330597, 0.9106360077857971], "mean": [-0.09236948937177658, -0.08966245502233505, 0.13832075893878937, 0.23021449148654938, -0.026865659281611443, 0.25808003544807434, 0.04559201002120972, 0.13056236505508423, -0.12259431928396225, 0.10418535023927689, 0.29887595772743225, -0.40844470262527466, -0.23064488172531128, 0.8235852718353271], "std": [0.0010693891672417521, 0.006667695473879576, 0.0018564584897831082, 0.4279508590698242, 0.5159798860549927, 0.6344063878059387, 0.16045771539211273, 0.0033588234800845385, 0.0044592865742743015, 0.0026497419457882643, 0.0777462050318718, 0.04804812744259834, 0.051644183695316315, 0.03654938563704491], "count": [573]}, "timestamp": {"min": [0.0], "max": [19.066666666666666], "mean": [9.533333333333333], "std": [5.513686674153759], "count": [573]}, "frame_index": {"min": [0], "max": [572], "mean": [286.0], "std": [165.41060022461278], "count": [573]}, "episode_index": {"min": [552], "max": [552], "mean": [552.0], "std": [0.0], "count": [573]}, "index": {"min": [307424], "max": [307996], "mean": [307710.0], "std": [165.41060022461278], "count": [573]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [573]}}} +{"episode_index": 553, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45878200676638176]], [[0.4254680377492877]], [[0.3657273519984917]]], "std": [[[0.21760110594815635]], [[0.21382474636891594]], [[0.21884268605967655]]], "count": [104]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4783920442642869]], [[0.45661878089911173]], [[0.39889397414948885]]], "std": [[[0.2174258214650795]], [[0.20098037948553915]], [[0.21783202499933996]]], "count": [104]}, "observation.state": {"min": [0.5555039048194885, -0.123695008456707, 0.14735576510429382, -2.1562416553497314, 0.1498902440071106, -0.20506179332733154, -0.3946084678173065, -0.3396921157836914, 0.17195676267147064, 1.1696505546569824, 0.1255689412355423, -0.009249740280210972], "max": [0.6000022888183594, -0.00532869016751647, 0.1659315973520279, -0.7620132565498352, 0.6580413579940796, 0.8049162030220032, -0.3716874122619629, -0.2802116274833679, 0.18905222415924072, 1.602869987487793, 0.5373913645744324, 0.5648579001426697], "mean": [0.5754915475845337, -0.07752557843923569, 0.15898790955543518, -1.2882109880447388, 0.36595118045806885, 0.39360272884368896, -0.3830927014350891, -0.30852365493774414, 0.18081770837306976, 1.3051989078521729, 0.35542747378349304, 0.27455568313598633], "std": [0.014466610737144947, 0.04451840743422508, 0.00573425879701972, 0.5801777243614197, 0.22623123228549957, 0.3955099284648895, 0.005393525119870901, 0.01628212444484234, 0.00431861262768507, 0.11347831040620804, 0.09237227588891983, 0.15631712973117828], "count": [495]}, "action": {"min": [-0.09121214598417282, -0.10852720588445663, 0.13101701438426971, -0.3660702407360077, -0.6184645295143127, -0.6163844466209412, -0.33150672912597656, 0.13267852365970612, -0.12551604211330414, 0.09927717596292496, 0.11842060834169388, -0.3531680405139923, -0.3462754786014557, 0.830890953540802], "max": [-0.08287478238344193, -0.08096106350421906, 0.14151446521282196, 0.6220859289169312, 0.6255043745040894, 0.778717041015625, 0.3305237889289856, 0.13837960362434387, -0.11177059262990952, 0.11495290696620941, 0.3966745436191559, -0.19918619096279144, -0.08064663410186768, 0.9444203972816467], "mean": [-0.08806277811527252, -0.09779833257198334, 0.13725876808166504, 0.38182955980300903, -0.3175801932811737, 0.5752979516983032, -0.11587999016046524, 0.13523612916469574, -0.12129244208335876, 0.10617116838693619, 0.2653372287750244, -0.25728222727775574, -0.24865742027759552, 0.8888213038444519], "std": [0.0027620296459645033, 0.009925462305545807, 0.002622187603265047, 0.27239009737968445, 0.36458632349967957, 0.3920747637748718, 0.21934206783771515, 0.0014809643616899848, 0.004229395184665918, 0.0030321115627884865, 0.07995257526636124, 0.03493400290608406, 0.058084163814783096, 0.024101560935378075], "count": [495]}, "timestamp": {"min": [0.0], "max": [16.466666666666665], "mean": [8.233333333333333], "std": [4.763130001102994], "count": [495]}, "frame_index": {"min": [0], "max": [494], "mean": [247.0], "std": [142.89390003308984], "count": [495]}, "episode_index": {"min": [553], "max": [553], "mean": [553.0], "std": [0.0], "count": [495]}, "index": {"min": [307997], "max": [308491], "mean": [308244.0], "std": [142.89390003308984], "count": [495]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [495]}}} +{"episode_index": 554, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45407527540586123]], [[0.42012935729847495]], [[0.36030843260243167]]], "std": [[[0.2204914906689413]], [[0.21607053558422115]], [[0.2199617506704186]]], "count": [124]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.473905637254902]], [[0.45142617190245277]], [[0.3930587598390611]]], "std": [[[0.2197870108612178]], [[0.20254620087913075]], [[0.2184490223412866]]], "count": [124]}, "observation.state": {"min": [0.5428926944732666, -0.12769539654254913, 0.15161149203777313, -2.0895602703094482, -0.48137038946151733, -0.2160695493221283, -0.40258607268333435, -0.33743709325790405, 0.1727863848209381, 1.0455141067504883, 0.2346048653125763, 0.18375550210475922], "max": [0.5764710903167725, -0.010665089823305607, 0.1661338210105896, -0.27532291412353516, 0.8330727219581604, 1.0170809030532837, -0.3486659526824951, -0.2997424304485321, 0.18886296451091766, 1.6966012716293335, 0.6491600275039673, 0.4129340946674347], "mean": [0.5636119246482849, -0.07656936347484589, 0.16140498220920563, -0.971104621887207, 0.18268811702728271, 0.539096474647522, -0.3742104470729828, -0.31387025117874146, 0.18225687742233276, 1.3691625595092773, 0.37919750809669495, 0.2817029654979706], "std": [0.006905016023665667, 0.03335103765130043, 0.0038892824668437243, 0.6756600141525269, 0.404464989900589, 0.4075317978858948, 0.011526123620569706, 0.00792774185538292, 0.005606499500572681, 0.18222646415233612, 0.13239774107933044, 0.08548972755670547], "count": [619]}, "action": {"min": [-0.09688173234462738, -0.11375407874584198, 0.13365422189235687, -0.2839556634426117, -0.6355109214782715, -0.6320962905883789, -0.34393545985221863, 0.1320280283689499, -0.12798094749450684, 0.09986243396997452, 0.1782829910516739, -0.4074707627296448, -0.4346707761287689, 0.8395900130271912], "max": [-0.08471591025590897, -0.08311177790164948, 0.14470110833644867, 0.6339157819747925, 0.8022319078445435, 0.7919313311576843, 0.5182585716247559, 0.14315955340862274, -0.1151030883193016, 0.1120474711060524, 0.3192916214466095, -0.18279479444026947, -0.06646131724119186, 0.9214059114456177], "mean": [-0.0893120989203453, -0.10023029148578644, 0.1400451511144638, 0.16673703491687775, 0.18674561381340027, 0.16852721571922302, 0.19091185927391052, 0.13612689077854156, -0.12324390560388565, 0.10664580762386322, 0.2638217806816101, -0.2768053412437439, -0.22782331705093384, 0.8872819542884827], "std": [0.003359442111104727, 0.007376938126981258, 0.0033036635722965, 0.3770994246006012, 0.5302358865737915, 0.5991907715797424, 0.30015382170677185, 0.0018528421642258763, 0.004724197555333376, 0.00440155528485775, 0.04811207205057144, 0.06872936338186264, 0.08465835452079773, 0.019987601786851883], "count": [619]}, "timestamp": {"min": [0.0], "max": [20.6], "mean": [10.299999999999999], "std": [5.956322504513819], "count": [619]}, "frame_index": {"min": [0], "max": [618], "mean": [309.0], "std": [178.68967513541457], "count": [619]}, "episode_index": {"min": [554], "max": [554], "mean": [554.0], "std": [0.0], "count": [619]}, "index": {"min": [308492], "max": [309110], "mean": [308801.0], "std": [178.68967513541457], "count": [619]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [619]}}} +{"episode_index": 555, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4406615995917177]], [[0.40788606050469184]], [[0.34827958116755015]]], "std": [[[0.21708817040663067]], [[0.2123930704743581]], [[0.21491124156364422]]], "count": [127]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4613693132108487]], [[0.44058416104849635]], [[0.382444890467123]]], "std": [[[0.21642365422132878]], [[0.19895208665741917]], [[0.2125414951483017]]], "count": [127]}, "observation.state": {"min": [0.5485457181930542, -0.12684589624404907, 0.15217925608158112, -2.0620908737182617, 0.130487859249115, -0.005662349984049797, -0.4261326789855957, -0.3433990478515625, 0.1710376888513565, 0.9771551489830017, 0.18664546310901642, -0.03986591100692749], "max": [0.6143742799758911, 0.015553579665720463, 0.16585642099380493, -0.6517163515090942, 1.0555169582366943, 1.2492179870605469, -0.38022103905677795, -0.27307581901550293, 0.19073480367660522, 1.7993494272232056, 0.6794933080673218, 0.5486416220664978], "mean": [0.5743097066879272, -0.050227630883455276, 0.15786077082157135, -1.183047890663147, 0.560934841632843, 0.7782443165779114, -0.397737592458725, -0.31815195083618164, 0.180580735206604, 1.251583456993103, 0.42403703927993774, 0.2554556429386139], "std": [0.017538897693157196, 0.04733530804514885, 0.004591960459947586, 0.474388986825943, 0.34563782811164856, 0.47150740027427673, 0.010814732871949673, 0.014050863683223724, 0.005081404000520706, 0.2435455322265625, 0.1150575652718544, 0.1480230838060379], "count": [643]}, "action": {"min": [-0.09325670450925827, -0.10593384504318237, 0.13164259493350983, -0.5364313721656799, -0.5957834720611572, -0.593822181224823, -0.17083553969860077, 0.1252484917640686, -0.1283685564994812, 0.09761860966682434, 0.10079298913478851, -0.4708954691886902, -0.45097821950912476, 0.8130240440368652], "max": [-0.08093011379241943, -0.07851801812648773, 0.14321641623973846, 0.7200004458427429, 0.7676433324813843, 0.7347440719604492, 0.29519161581993103, 0.13739030063152313, -0.11115703731775284, 0.1117454245686531, 0.39941680431365967, -0.17099767923355103, -0.051342952996492386, 0.9343873262405396], "mean": [-0.08790268003940582, -0.09123032540082932, 0.1385604292154312, 0.04990871623158455, 0.2462848573923111, 0.04083835333585739, 0.11309134215116501, 0.13297417759895325, -0.12128110229969025, 0.10396459698677063, 0.2698519825935364, -0.26975762844085693, -0.28118425607681274, 0.8643096685409546], "std": [0.003916676621884108, 0.009031932801008224, 0.0026425409596413374, 0.5697580575942993, 0.5055722594261169, 0.5677240490913391, 0.14091649651527405, 0.002820356283336878, 0.004297737497836351, 0.0035236794501543045, 0.0759454220533371, 0.07921275496482849, 0.12517768144607544, 0.024554479867219925], "count": [643]}, "timestamp": {"min": [0.0], "max": [21.4], "mean": [10.7], "std": [6.187262902303588], "count": [643]}, "frame_index": {"min": [0], "max": [642], "mean": [321.0], "std": [185.61788706910764], "count": [643]}, "episode_index": {"min": [555], "max": [555], "mean": [555.0], "std": [0.0], "count": [643]}, "index": {"min": [309111], "max": [309753], "mean": [309432.0], "std": [185.61788706910764], "count": [643]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [643]}}} +{"episode_index": 556, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4455400592868054]], [[0.4122609073322816]], [[0.35250109558510506]]], "std": [[[0.21664981860539978]], [[0.21267550025153872]], [[0.21590088397861398]]], "count": [174]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46621088761174967]], [[0.4446547044424411]], [[0.3859609956051386]]], "std": [[[0.2157176557959089]], [[0.19840068484573795]], [[0.21315689374968816]]], "count": [174]}, "observation.state": {"min": [0.550545871257782, -0.12512372434139252, 0.14415782690048218, -2.348527431488037, -0.0034159100614488125, -0.439420223236084, -0.4284726679325104, -0.4100385010242462, 0.16579937934875488, 1.1168086528778076, -0.4575956463813782, 0.2947259247303009], "max": [0.634793221950531, 0.01668882928788662, 0.16998250782489777, -0.34347212314605713, 1.133673071861267, 1.4077426195144653, -0.34834930300712585, -0.3127475082874298, 0.18796983361244202, 2.689692974090576, 0.5126601457595825, 0.6980771422386169], "mean": [0.5812939405441284, -0.053553853183984756, 0.15697982907295227, -1.3605585098266602, 0.5548754930496216, 0.5454365611076355, -0.3937667906284332, -0.35090044140815735, 0.17438946664333344, 1.6260483264923096, 0.12371855974197388, 0.4286474287509918], "std": [0.01923822984099388, 0.0388980358839035, 0.007078430615365505, 0.6717391610145569, 0.24158120155334473, 0.5878781080245972, 0.016742028295993805, 0.030589843168854713, 0.00528588006272912, 0.5877907276153564, 0.2951856851577759, 0.06625771522521973], "count": [978]}, "action": {"min": [-0.09484893083572388, -0.10809431225061417, 0.12842436134815216, -0.6178172826766968, -0.6152186989784241, -0.59867262840271, -0.3345562219619751, 0.12935756146907806, -0.12995800375938416, 0.08966291695833206, -0.07439804077148438, -0.38161155581474304, -0.3623869717121124, 0.8288023471832275], "max": [-0.0742276981472969, -0.07782398164272308, 0.1442888230085373, 0.7537044286727905, 0.8021566271781921, 0.8206617832183838, 0.37538695335388184, 0.15125437080860138, -0.11274496465921402, 0.1074625700712204, 0.27935534715652466, -0.15460489690303802, 0.43206116557121277, 0.9561595320701599], "mean": [-0.08738537132740021, -0.091474749147892, 0.1370902806520462, 0.3027118146419525, -0.02972985990345478, 0.36665767431259155, 0.06437229365110397, 0.13818299770355225, -0.1212104856967926, 0.09744013100862503, 0.1656118482351303, -0.24598722159862518, -0.08585226535797119, 0.8966518640518188], "std": [0.005258385557681322, 0.00850127637386322, 0.003858682932332158, 0.488433837890625, 0.46583104133605957, 0.5256235003471375, 0.19249331951141357, 0.00533964391797781, 0.0036925359163433313, 0.004456750117242336, 0.0974806696176529, 0.06427684426307678, 0.293680876493454, 0.028738372027873993], "count": [978]}, "timestamp": {"min": [0.0], "max": [32.56666666666667], "mean": [16.283333333333335], "std": [9.410804468308793], "count": [978]}, "frame_index": {"min": [0], "max": [977], "mean": [488.5], "std": [282.3241340492638], "count": [978]}, "episode_index": {"min": [556], "max": [556], "mean": [556.0], "std": [0.0], "count": [978]}, "index": {"min": [309754], "max": [310731], "mean": [310242.5], "std": [282.3241340492638], "count": [978]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [978]}}} +{"episode_index": 557, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4580415317503148]], [[0.4235916082029142]], [[0.3638713347724411]]], "std": [[[0.21383390214782017]], [[0.21016167528322774]], [[0.21488883676951884]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47498839969219087]], [[0.45247426345665687]], [[0.3947179648617857]]], "std": [[[0.21809658818780286]], [[0.20020565393587217]], [[0.21594145376012894]]], "count": [109]}, "observation.state": {"min": [0.5458968281745911, -0.13093121349811554, 0.1448085606098175, -1.9136303663253784, 0.26220545172691345, -0.2551235854625702, -0.3901602029800415, -0.35065069794654846, 0.1679525226354599, 0.9916237592697144, 0.2930852770805359, -0.1506596952676773], "max": [0.599647045135498, -0.020936330780386925, 0.17079786956310272, -0.6043264269828796, 0.574146568775177, 1.1773487329483032, -0.3360624313354492, -0.2870616912841797, 0.18931667506694794, 1.8073176145553589, 0.8491958379745483, 0.3045355975627899], "mean": [0.5734054446220398, -0.07874844968318939, 0.15768404304981232, -1.2103495597839355, 0.4226771593093872, 0.5813527703285217, -0.3662075102329254, -0.31150156259536743, 0.17758017778396606, 1.2307467460632324, 0.5553300380706787, 0.16041691601276398], "std": [0.011217535473406315, 0.04053141549229622, 0.008697311393916607, 0.4895835220813751, 0.11431635916233063, 0.561928927898407, 0.012646645307540894, 0.013660243712365627, 0.0056931739673018456, 0.2627061903476715, 0.1764533668756485, 0.0959223136305809], "count": [527]}, "action": {"min": [-0.09669376909732819, -0.11051783710718155, 0.13118527829647064, -0.5605173110961914, -0.5860217213630676, -0.5878019332885742, -0.24311240017414093, 0.132900670170784, -0.128362238407135, 0.09472689032554626, 0.16723723709583282, -0.467709481716156, -0.4763590693473816, 0.7439630627632141], "max": [-0.07815293222665787, -0.08289962261915207, 0.1434081345796585, 0.5568660497665405, 0.6878836154937744, 0.8399731516838074, 0.31441932916641235, 0.143427774310112, -0.10704176872968674, 0.11182866990566254, 0.3859025537967682, -0.25121980905532837, -0.052574750036001205, 0.9003753662109375], "mean": [-0.08859655261039734, -0.09653940051794052, 0.13669534027576447, -0.028266536071896553, 0.2662995755672455, 0.056335464119911194, 0.10261642932891846, 0.13804228603839874, -0.11840643733739853, 0.10446978360414505, 0.2820836901664734, -0.3228815197944641, -0.3039737045764923, 0.8357791304588318], "std": [0.005487336777150631, 0.009628678672015667, 0.003207143396139145, 0.49783948063850403, 0.45031046867370605, 0.6602699160575867, 0.16733810305595398, 0.0025764622259885073, 0.006145612336695194, 0.0033396505750715733, 0.053068820387125015, 0.05199539661407471, 0.13486464321613312, 0.0392613522708416], "count": [527]}, "timestamp": {"min": [0.0], "max": [17.533333333333335], "mean": [8.766666666666666], "std": [5.071050734863097], "count": [527]}, "frame_index": {"min": [0], "max": [526], "mean": [263.0], "std": [152.13152204589292], "count": [527]}, "episode_index": {"min": [557], "max": [557], "mean": [557.0], "std": [0.0], "count": [527]}, "index": {"min": [310732], "max": [311258], "mean": [310995.0], "std": [152.13152204589292], "count": [527]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [527]}}} +{"episode_index": 558, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48322282562262375]], [[0.4476337332863428]], [[0.3845528509334017]]], "std": [[[0.20095055653061858]], [[0.1974080297636681]], [[0.20081747151181747]]], "count": [102]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5021102594087744]], [[0.47843775898158825]], [[0.4180976707676535]]], "std": [[[0.20261773619924364]], [[0.18530880515083417]], [[0.20030711741187238]]], "count": [102]}, "observation.state": {"min": [0.5225587487220764, -0.10736916214227676, 0.1390426605939865, -2.669562578201294, -0.4145551323890686, -0.4534761309623718, -0.41119691729545593, -0.33811667561531067, 0.16669122874736786, 0.790321409702301, 0.2354246973991394, 0.1130727007985115], "max": [0.6359130144119263, 0.0344974510371685, 0.1667378842830658, -0.4009271562099457, 1.2022645473480225, 1.1780338287353516, -0.34956178069114685, -0.29696226119995117, 0.1886659413576126, 1.4101648330688477, 0.8344390988349915, 0.40121838450431824], "mean": [0.5599231719970703, -0.04080967232584953, 0.15470170974731445, -1.3402568101882935, 0.3369518518447876, 0.44360601902008057, -0.37089040875434875, -0.31815093755722046, 0.17011551558971405, 1.0044703483581543, 0.7246929407119751, 0.28121423721313477], "std": [0.030373284593224525, 0.04641703888773918, 0.007614918984472752, 0.8912978768348694, 0.5098716020584106, 0.6691311001777649, 0.020689602941274643, 0.010656182654201984, 0.005648838821798563, 0.152974471449852, 0.1431547999382019, 0.10367584228515625], "count": [480]}, "action": {"min": [-0.10241883248090744, -0.11015386879444122, 0.12383954972028732, -0.3998147249221802, -0.612223207950592, -0.6072903275489807, -0.2710871398448944, 0.12871360778808594, -0.12633103132247925, 0.09411300718784332, 0.1533016860485077, -0.3326650857925415, -0.5243015289306641, 0.7617024779319763], "max": [-0.08721040934324265, -0.0720914825797081, 0.1458701640367508, 0.7770358324050903, 0.8058929443359375, 0.7611497640609741, 0.44937950372695923, 0.14275117218494415, -0.10928810387849808, 0.11073357611894608, 0.2843153178691864, -0.19915665686130524, -0.18309727311134338, 0.9167150259017944], "mean": [-0.09357909858226776, -0.09193263947963715, 0.13818909227848053, 0.21529076993465424, 0.27969059348106384, 0.16378238797187805, 0.2306153029203415, 0.13944968581199646, -0.11190959066152573, 0.09920372813940048, 0.19521909952163696, -0.3032166063785553, -0.45056232810020447, 0.8114562630653381], "std": [0.005032944958657026, 0.011691071093082428, 0.0053300028666853905, 0.47788190841674805, 0.46005645394325256, 0.5608199834823608, 0.20217038691043854, 0.004128500819206238, 0.004286858253180981, 0.0035513145849108696, 0.03213820233941078, 0.02709602750837803, 0.07268679141998291, 0.03783372417092323], "count": [480]}, "timestamp": {"min": [0.0], "max": [15.966666666666667], "mean": [7.983333333333333], "std": [4.618792130063957], "count": [480]}, "frame_index": {"min": [0], "max": [479], "mean": [239.5], "std": [138.5637639019187], "count": [480]}, "episode_index": {"min": [558], "max": [558], "mean": [558.0], "std": [0.0], "count": [480]}, "index": {"min": [311259], "max": [311738], "mean": [311498.5], "std": [138.5637639019187], "count": [480]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [480]}}} +{"episode_index": 559, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47639871683967705]], [[0.4346695277457388]], [[0.3779730632449058]]], "std": [[[0.21940327198042608]], [[0.2167789637127951]], [[0.21604438942483073]]], "count": [170]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4953153530693323]], [[0.46635380783032165]], [[0.4135091823657568]]], "std": [[[0.2091009682094915]], [[0.194096271595697]], [[0.20265860045725168]]], "count": [170]}, "observation.state": {"min": [0.45392680168151855, -0.09386982023715973, 0.12322533130645752, -2.4391133785247803, 0.12187975645065308, -0.4001365005970001, -0.5686247944831848, -0.42084261775016785, 0.18071837723255157, 3.7876293659210205, -0.7017650604248047, -0.549930214881897], "max": [0.5813518762588501, -0.005297789815813303, 0.14315707981586456, -1.5781265497207642, 0.8929195404052734, 0.00665734987705946, -0.4458179175853729, -0.37840619683265686, 0.19730570912361145, 4.540626049041748, -0.1263887584209442, 0.4809035360813141], "mean": [0.5253080725669861, -0.05780111253261566, 0.13170409202575684, -1.9885175228118896, 0.4993138611316681, -0.17124168574810028, -0.5286187529563904, -0.3969382345676422, 0.19087599217891693, 4.122801780700684, -0.5065428614616394, -0.1086999922990799], "std": [0.030755238607525826, 0.01755574718117714, 0.004359810147434473, 0.21356473863124847, 0.19167597591876984, 0.10859943926334381, 0.02561795338988304, 0.010058630257844925, 0.004363271873444319, 0.2663722634315491, 0.12683039903640747, 0.22988972067832947], "count": [949]}, "action": {"min": [-0.1192149817943573, -0.09870672225952148, 0.11492800712585449, 0.2733798623085022, -0.26000168919563293, 0.6823687553405762, -0.16966336965560913, 0.104213185608387, -0.1372365802526474, 0.08587272465229034, -0.44187667965888977, -0.554597020149231, 0.6318174004554749, 0.1921447366476059], "max": [-0.10138029605150223, -0.07962989062070847, 0.1358073651790619, 0.6818562746047974, -0.0461251437664032, 0.9387090802192688, 0.258109450340271, 0.12439680844545364, -0.12514622509479523, 0.09484505653381348, -0.18040622770786285, -0.1882966011762619, 0.9349067211151123, 0.5388206839561462], "mean": [-0.10933995991945267, -0.08467642217874527, 0.12302214652299881, 0.5213290452957153, -0.17179790139198303, 0.8218274712562561, 0.03170933574438095, 0.11126905679702759, -0.13184820115566254, 0.09109605103731155, -0.3064064383506775, -0.35491734743118286, 0.7730019688606262, 0.39297452569007874], "std": [0.004156072158366442, 0.0034542493522167206, 0.005155986174941063, 0.08149872720241547, 0.060535065829753876, 0.05755599960684776, 0.09314659237861633, 0.004646600224077702, 0.003146868199110031, 0.0022594109177589417, 0.08474645763635635, 0.08728405833244324, 0.06037384271621704, 0.0987054854631424], "count": [949]}, "timestamp": {"min": [0.0], "max": [31.6], "mean": [15.8], "std": [9.131751687868483], "count": [949]}, "frame_index": {"min": [0], "max": [948], "mean": [474.0], "std": [273.95255063605447], "count": [949]}, "episode_index": {"min": [559], "max": [559], "mean": [559.0], "std": [0.0], "count": [949]}, "index": {"min": [311739], "max": [312687], "mean": [312213.0], "std": [273.95255063605447], "count": [949]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [949]}}} +{"episode_index": 560, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4967194604835799]], [[0.45057890252215405]], [[0.39318153461111777]]], "std": [[[0.22274035320867094]], [[0.21679348365487108]], [[0.21524795295559493]]], "count": [163]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5119646804870551]], [[0.477668314019541]], [[0.42422482858173943]]], "std": [[[0.21170324786922678]], [[0.19378145833311447]], [[0.20174914507768196]]], "count": [163]}, "observation.state": {"min": [0.42333704233169556, -0.11086755245923996, 0.11599203199148178, -2.4902777671813965, 0.08184526115655899, -0.47650980949401855, -0.6055781245231628, -0.45688459277153015, 0.18366095423698425, 3.3476998805999756, -0.8132604360580444, -0.6993829011917114], "max": [0.5802629590034485, 0.00873440969735384, 0.13477785885334015, -1.0222384929656982, 0.7363340854644775, 0.346495658159256, -0.5059625506401062, -0.38722553849220276, 0.20295363664627075, 4.554884910583496, -0.24936160445213318, 0.6219047904014587], "mean": [0.5214585661888123, -0.05887436121702194, 0.1265609711408615, -2.0428407192230225, 0.35657912492752075, -0.09472736716270447, -0.5406697392463684, -0.42593827843666077, 0.1941198855638504, 3.9147493839263916, -0.5366879105567932, -0.029408536851406097], "std": [0.0425930880010128, 0.03418257087469101, 0.003884187899529934, 0.39294856786727905, 0.16030821204185486, 0.15222899615764618, 0.03118983656167984, 0.01658787950873375, 0.004769002553075552, 0.3941456973552704, 0.13276253640651703, 0.403964638710022], "count": [893]}, "action": {"min": [-0.12715807557106018, -0.09115282446146011, 0.11074933409690857, 0.13153420388698578, -0.39718589186668396, 0.6987076997756958, -0.3632836937904358, 0.09712490439414978, -0.14362525939941406, 0.08330266922712326, -0.4755132794380188, -0.6021071672439575, -0.5296412110328674, -0.5691127181053162], "max": [-0.10161995142698288, -0.07230875641107559, 0.13282786309719086, 0.6160778999328613, -0.04021116718649864, 0.9353587031364441, 0.2999251186847687, 0.11594462394714355, -0.1289685070514679, 0.09387955814599991, 0.3092322051525116, 0.5803658962249756, 0.9229944348335266, 0.7093838453292847], "mean": [-0.11334418505430222, -0.08282660692930222, 0.12050061672925949, 0.4540601372718811, -0.19054225087165833, 0.8328909873962402, 0.10307175666093826, 0.10955663025379181, -0.1365911364555359, 0.08859455585479736, -0.26482895016670227, -0.35838696360588074, 0.7089110612869263, 0.44388678669929504], "std": [0.006479274947196245, 0.004470633342862129, 0.006039803382009268, 0.1153561919927597, 0.06939613074064255, 0.05891041457653046, 0.17776072025299072, 0.005778800696134567, 0.003730110125616193, 0.002697394462302327, 0.1462281048297882, 0.16803030669689178, 0.14600971341133118, 0.17577938735485077], "count": [893]}, "timestamp": {"min": [0.0], "max": [29.733333333333334], "mean": [14.866666666666664], "std": [8.592891118696766], "count": [893]}, "frame_index": {"min": [0], "max": [892], "mean": [446.0], "std": [257.78673356090303], "count": [893]}, "episode_index": {"min": [560], "max": [560], "mean": [560.0], "std": [0.0], "count": [893]}, "index": {"min": [312688], "max": [313580], "mean": [313134.0], "std": [257.78673356090303], "count": [893]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [893]}}} +{"episode_index": 561, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5062308170873714]], [[0.4589368027383367]], [[0.40115914938772446]]], "std": [[[0.2194798224178121]], [[0.2151441587469304]], [[0.21429637982335542]]], "count": [116]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5219282665652468]], [[0.4864439936894298]], [[0.4323175709939148]]], "std": [[[0.20802348514057512]], [[0.1918092708531394]], [[0.2011869940420743]]], "count": [116]}, "observation.state": {"min": [0.45499253273010254, -0.10946974158287048, 0.11843682825565338, -2.3042829036712646, -0.3454170823097229, -0.4129379093647003, -0.5964961647987366, -0.48996105790138245, 0.18963944911956787, 3.3437159061431885, -1.064944863319397, -0.9488890767097473], "max": [0.5725325345993042, 0.04852965101599693, 0.135442852973938, -1.4908955097198486, 1.0044149160385132, 0.2591724097728729, -0.48293337225914, -0.35392510890960693, 0.1995612531900406, 4.538528919219971, 0.3687819242477417, 0.7934131622314453], "mean": [0.5074033141136169, -0.0516573004424572, 0.12529395520687103, -1.911060094833374, 0.3743286430835724, -0.11271882802248001, -0.5368812680244446, -0.42234864830970764, 0.19412484765052795, 4.140620231628418, -0.47491663694381714, -0.21930234134197235], "std": [0.03328236937522888, 0.050248537212610245, 0.0044505107216537, 0.2660210430622101, 0.3541436791419983, 0.17041157186031342, 0.030417820438742638, 0.04535350948572159, 0.0027881700079888105, 0.494859904050827, 0.5213866233825684, 0.593997061252594], "count": [571]}, "action": {"min": [-0.12391744554042816, -0.09227362275123596, 0.11083244532346725, 0.18359653651714325, -0.3370816111564636, 0.6415455341339111, -0.21422135829925537, 0.10301769524812698, -0.14065435528755188, 0.07557185739278793, -0.5685721039772034, -0.5337811708450317, -0.5010042190551758, -0.5290505886077881], "max": [-0.10605112463235855, -0.06829672306776047, 0.1355048567056656, 0.6898533701896667, -0.053955014795064926, 0.9619860053062439, 0.30637890100479126, 0.1155538558959961, -0.1304372400045395, 0.1016206368803978, 0.4760632812976837, 0.5392234921455383, 0.9941691160202026, 0.624036967754364], "mean": [-0.11570955067873001, -0.08076388388872147, 0.12113602459430695, 0.44547581672668457, -0.17378126084804535, 0.8465989828109741, 0.03253442794084549, 0.11120984703302383, -0.13627642393112183, 0.08907895535230637, -0.3022611439228058, -0.2188701331615448, 0.7438810467720032, 0.3351844251155853], "std": [0.005014100112020969, 0.0067003583535552025, 0.006541798822581768, 0.13336840271949768, 0.07947961241006851, 0.0811065286397934, 0.15126441419124603, 0.002639000304043293, 0.0019842160400003195, 0.007132159546017647, 0.19407518208026886, 0.19280092418193817, 0.25099077820777893, 0.23914772272109985], "count": [571]}, "timestamp": {"min": [0.0], "max": [19.0], "mean": [9.5], "std": [5.494441635770544], "count": [571]}, "frame_index": {"min": [0], "max": [570], "mean": [285.0], "std": [164.83324907311632], "count": [571]}, "episode_index": {"min": [561], "max": [561], "mean": [561.0], "std": [0.0], "count": [571]}, "index": {"min": [313581], "max": [314151], "mean": [313866.0], "std": [164.83324907311632], "count": [571]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [571]}}} +{"episode_index": 562, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5178626409017714]], [[0.4703778180354267]], [[0.41155114615894667]]], "std": [[[0.21601515316190156]], [[0.21148628530024646]], [[0.21205415200741495]]], "count": [115]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5320513616557734]], [[0.4950483707492659]], [[0.44026417069243157]]], "std": [[[0.20048826492608093]], [[0.18494583521981564]], [[0.19591417188495786]]], "count": [115]}, "observation.state": {"min": [0.34364616870880127, -0.10991766303777695, 0.09707268327474594, -2.597219705581665, -0.00860810000449419, -0.8021395206451416, -0.5801317095756531, -0.4697043299674988, 0.18969908356666565, 3.6569926738739014, -0.9038504362106323, -0.7128971815109253], "max": [0.5627632737159729, 0.010981730185449123, 0.12826789915561676, -1.1790865659713745, 0.3105747699737549, 0.09403741359710693, -0.5210990905761719, -0.42878928780555725, 0.2034008651971817, 4.53810977935791, -0.3756137490272522, -0.08356963098049164], "mean": [0.4551357626914978, -0.06643979251384735, 0.11988892406225204, -1.7760210037231445, 0.12031455338001251, -0.21565096080303192, -0.5437636971473694, -0.4525681734085083, 0.19605141878128052, 4.1580119132995605, -0.6471713781356812, -0.40938863158226013], "std": [0.07422450184822083, 0.029622772708535194, 0.007544118445366621, 0.39806216955184937, 0.08256752789020538, 0.20340247452259064, 0.017683761194348335, 0.013365437276661396, 0.00475310767069459, 0.3771607279777527, 0.17607158422470093, 0.25672897696495056], "count": [565]}, "action": {"min": [-0.14351777732372284, -0.08917877823114395, 0.10182061791419983, 0.1606179177761078, -0.27815866470336914, 0.8458291292190552, -0.28033745288848877, 0.09956368058919907, -0.14566214382648468, 0.08160490542650223, -0.3678053319454193, -0.29561689496040344, 0.6732974052429199, 0.28893330693244934], "max": [-0.10797695070505142, -0.07035668194293976, 0.13349616527557373, 0.43974438309669495, 0.11880522966384888, 0.9657333493232727, 0.3659273087978363, 0.11290029436349869, -0.13720476627349854, 0.08637376129627228, -0.25397154688835144, -0.14163027703762054, 0.8875783085823059, 0.6353784799575806], "mean": [-0.12736797332763672, -0.0826173797249794, 0.12102051079273224, 0.2868198752403259, -0.15187403559684753, 0.9160540699958801, 0.0007069186540320516, 0.10853985697031021, -0.14040885865688324, 0.0844755545258522, -0.31058791279792786, -0.2191193699836731, 0.7863940596580505, 0.45485618710517883], "std": [0.01193189062178135, 0.005343886557966471, 0.008180095814168453, 0.10283982008695602, 0.09404575824737549, 0.04488333687186241, 0.1846046894788742, 0.004281096160411835, 0.002824445953592658, 0.0013378399889916182, 0.035691142082214355, 0.05832991749048233, 0.08725467324256897, 0.13387097418308258], "count": [565]}, "timestamp": {"min": [0.0], "max": [18.8], "mean": [9.4], "std": [5.436706519371611], "count": [565]}, "frame_index": {"min": [0], "max": [564], "mean": [282.0], "std": [163.10119558114832], "count": [565]}, "episode_index": {"min": [562], "max": [562], "mean": [562.0], "std": [0.0], "count": [565]}, "index": {"min": [314152], "max": [314716], "mean": [314434.0], "std": [163.10119558114832], "count": [565]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [565]}}} +{"episode_index": 563, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5031271443398007]], [[0.45474376854853926]], [[0.39701519050314793]]], "std": [[[0.22051507494408956]], [[0.2150427877905997]], [[0.21373394167084092]]], "count": [127]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5200413793251334]], [[0.482729948278524]], [[0.42852930883639545]]], "std": [[[0.20813751428274352]], [[0.19102345979371338]], [[0.19998517027668947]]], "count": [127]}, "observation.state": {"min": [0.47263896465301514, -0.13248348236083984, 0.11295352876186371, -2.4527432918548584, -0.029786759987473488, -0.384546160697937, -0.607462465763092, -0.4763922095298767, 0.18682131171226501, 3.4911279678344727, -0.7297755479812622, -1.0144973993301392], "max": [0.5824871063232422, 0.028427379205822945, 0.14438985288143158, -1.5288493633270264, 0.7085968852043152, 0.13800789415836334, -0.5180100202560425, -0.39751994609832764, 0.19763626158237457, 4.5383195877075195, 0.6104918718338013, 0.2885705828666687], "mean": [0.5075340270996094, -0.07749899476766586, 0.12571467459201813, -1.8989863395690918, 0.19673727452754974, -0.09672106057405472, -0.5429250597953796, -0.44841089844703674, 0.1918543577194214, 4.152835369110107, -0.1698065549135208, -0.42645326256752014], "std": [0.0278764758259058, 0.041217539459466934, 0.008571838960051537, 0.33579909801483154, 0.2220384180545807, 0.16418324410915375, 0.023342814296483994, 0.026070650666952133, 0.0029307007789611816, 0.4257256090641022, 0.4946381449699402, 0.5192951560020447], "count": [645]}, "action": {"min": [-0.12665779888629913, -0.09843043982982635, 0.1114196851849556, 0.2383783608675003, -0.3342790901660919, 0.736102819442749, -0.13736245036125183, 0.10626954585313797, -0.14252571761608124, 0.07813341170549393, -0.38263046741485596, -0.4961068332195282, 0.652021050453186, -0.055391859263181686], "max": [-0.1053326353430748, -0.06771218776702881, 0.13262039422988892, 0.5928930640220642, -0.01639210805296898, 0.9474248886108398, 0.298323392868042, 0.11716460436582565, -0.13346704840660095, 0.0947682186961174, -0.0046839057467877865, 0.004989232402294874, 0.999275267124176, 0.6170964241027832], "mean": [-0.11652088910341263, -0.08538980782032013, 0.12019769102334976, 0.3717762529850006, -0.2020927518606186, 0.8768894672393799, 0.055495452135801315, 0.11359953135251999, -0.1389436572790146, 0.08451879024505615, -0.18157298862934113, -0.21367228031158447, 0.8369073271751404, 0.2964729368686676], "std": [0.006186920218169689, 0.008031472563743591, 0.006573312915861607, 0.11310958117246628, 0.10108087211847305, 0.061373088508844376, 0.1488240510225296, 0.0022563752718269825, 0.0018483137246221304, 0.004063305910676718, 0.11443911492824554, 0.18894079327583313, 0.1542520821094513, 0.2459198236465454], "count": [645]}, "timestamp": {"min": [0.0], "max": [21.466666666666665], "mean": [10.733333333333333], "std": [6.20650793447819], "count": [645]}, "frame_index": {"min": [0], "max": [644], "mean": [322.0], "std": [186.19523803434572], "count": [645]}, "episode_index": {"min": [563], "max": [563], "mean": [563.0], "std": [0.0], "count": [645]}, "index": {"min": [314717], "max": [315361], "mean": [315039.0], "std": [186.19523803434572], "count": [645]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [645]}}} +{"episode_index": 564, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5148260620915033]], [[0.4674634232026144]], [[0.4098734722222222]]], "std": [[[0.21885328621925612]], [[0.215347640606788]], [[0.21567840154613047]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5323539515250545]], [[0.49553959422657956]], [[0.4420924863834423]]], "std": [[[0.20740807423331062]], [[0.19222473450130875]], [[0.20214556962646546]]], "count": [100]}, "observation.state": {"min": [0.4672871232032776, -0.08997756242752075, 0.11171816289424896, -2.4122731685638428, 0.004099090117961168, -0.4089241921901703, -0.5807186365127563, -0.45761826634407043, 0.18134190142154694, 4.263415813446045, -0.9198369383811951, -0.8400395512580872], "max": [0.5582222938537598, -0.027840450406074524, 0.14351356029510498, -1.4315532445907593, 0.4183809459209442, -0.043948348611593246, -0.43626490235328674, -0.34874317049980164, 0.19826756417751312, 4.53810977935791, -0.33612579107284546, -0.08358802646398544], "mean": [0.5139957070350647, -0.06749151647090912, 0.12409122288227081, -1.7851290702819824, 0.3027609884738922, -0.263546347618103, -0.5044946074485779, -0.41402360796928406, 0.1904117912054062, 4.376317977905273, -0.6198704242706299, -0.5139763355255127], "std": [0.028853002935647964, 0.022911563515663147, 0.010294062085449696, 0.36420488357543945, 0.08580334484577179, 0.12446817755699158, 0.04475376382470131, 0.03868997097015381, 0.004680021200329065, 0.09177473187446594, 0.21880799531936646, 0.2643650472164154], "count": [342]}, "action": {"min": [-0.1277347207069397, -0.08670683950185776, 0.11180596798658371, 0.3315320312976837, -0.2174159735441208, 0.8339840173721313, -0.2209276258945465, 0.10436419397592545, -0.13728727400302887, 0.07941694557666779, -0.4825536012649536, -0.34110480546951294, 0.7041738033294678, 0.3072528541088104], "max": [-0.10071206092834473, -0.07843434065580368, 0.13331592082977295, 0.48987865447998047, -0.07212889194488525, 0.9210233092308044, 0.3078930974006653, 0.12822210788726807, -0.1288907378911972, 0.10551505535840988, -0.2287035584449768, -0.035004377365112305, 0.9165405631065369, 0.4771747291088104], "mean": [-0.1152275949716568, -0.08215820789337158, 0.1193544790148735, 0.39194783568382263, -0.13042429089546204, 0.8859531283378601, -0.04895734041929245, 0.11493188887834549, -0.13385796546936035, 0.0890190601348877, -0.33855772018432617, -0.1843136101961136, 0.8239030241966248, 0.3825826346874237], "std": [0.008898799307644367, 0.002068010624498129, 0.007359628099948168, 0.05438034608960152, 0.03518480807542801, 0.028898637741804123, 0.1924217790365219, 0.0068181040696799755, 0.0018592177657410502, 0.008556167595088482, 0.09040981531143188, 0.09921257197856903, 0.07870311290025711, 0.044840045273303986], "count": [342]}, "timestamp": {"min": [0.0], "max": [11.366666666666667], "mean": [5.683333333333334], "std": [3.2908824663617824], "count": [342]}, "frame_index": {"min": [0], "max": [341], "mean": [170.5], "std": [98.72647399085346], "count": [342]}, "episode_index": {"min": [564], "max": [564], "mean": [564.0], "std": [0.0], "count": [342]}, "index": {"min": [315362], "max": [315703], "mean": [315532.5], "std": [98.72647399085346], "count": [342]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [342]}}} +{"episode_index": 565, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5493396877269426]], [[0.49811311786337864]], [[0.43664059433860225]]], "std": [[[0.18709558892868694]], [[0.19179187904945127]], [[0.19552901739675327]]], "count": [141]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5630589606607024]], [[0.520419179452711]], [[0.4633603791004188]]], "std": [[[0.1667264015334269]], [[0.15965898104864357]], [[0.1752281514990472]]], "count": [141]}, "observation.state": {"min": [0.29123198986053467, -0.22141075134277344, 0.10403375327587128, -2.832911252975464, -0.07747290283441544, -0.7193441987037659, -0.5434950590133667, -0.55599045753479, 0.1876431554555893, 2.9463534355163574, -1.1988486051559448, -0.8151446580886841], "max": [0.5246129631996155, 0.025145219638943672, 0.13029788434505463, -1.0371264219284058, 0.860126793384552, 0.2976101338863373, -0.47573578357696533, -0.5006261467933655, 0.2017843872308731, 4.538528919219971, -0.3698750138282776, 1.009177327156067], "mean": [0.4316461980342865, -0.13746313750743866, 0.11821355670690536, -1.6926922798156738, 0.49203523993492126, -0.3296623229980469, -0.5109807252883911, -0.5217220783233643, 0.19647523760795593, 3.79634690284729, -0.7470782995223999, 0.10585948824882507], "std": [0.06683333218097687, 0.07406362891197205, 0.006711010355502367, 0.45497220754623413, 0.251301646232605, 0.297897070646286, 0.02100951038300991, 0.011646394617855549, 0.0031455429270863533, 0.6239815950393677, 0.2611929178237915, 0.741085410118103], "count": [734]}, "action": {"min": [-0.15419520437717438, -0.10154063999652863, 0.09724410623311996, 0.16728569567203522, -0.38897693157196045, 0.6933644413948059, -0.36684665083885193, 0.11030630767345428, -0.15375752747058868, 0.0724722146987915, -0.48918417096138, -0.6352510452270508, -0.3408886790275574, -0.6318560838699341], "max": [-0.11701860278844833, -0.07344625145196915, 0.1308123916387558, 0.682536244392395, 0.08281207829713821, 0.9413859844207764, 0.31570881605148315, 0.1298394650220871, -0.14401346445083618, 0.08024903386831284, 0.29777294397354126, 0.6435237526893616, 0.8558304905891418, 0.6986106038093567], "mean": [-0.1301925778388977, -0.09069160372018814, 0.11257708072662354, 0.418942391872406, -0.14663943648338318, 0.8425968289375305, -0.11584452539682388, 0.11680637300014496, -0.14885176718235016, 0.07771580666303635, -0.26251623034477234, -0.12823434174060822, 0.4942818284034729, 0.3281213343143463], "std": [0.010077043436467648, 0.0070292092859745026, 0.01079255435615778, 0.16395562887191772, 0.11984855681657791, 0.09116284549236298, 0.17331698536872864, 0.004110637120902538, 0.002869049785658717, 0.00215164921246469, 0.25496336817741394, 0.3737468123435974, 0.40310826897621155, 0.4421239495277405], "count": [734]}, "timestamp": {"min": [0.0], "max": [24.433333333333334], "mean": [12.216666666666667], "std": [7.0629117382438125], "count": [734]}, "frame_index": {"min": [0], "max": [733], "mean": [366.5], "std": [211.88735214731435], "count": [734]}, "episode_index": {"min": [565], "max": [565], "mean": [565.0], "std": [0.0], "count": [734]}, "index": {"min": [315704], "max": [316437], "mean": [316070.5], "std": [211.88735214731435], "count": [734]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [734]}}} +{"episode_index": 566, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5380724866394802]], [[0.4877202297823213]], [[0.4275349095953671]]], "std": [[[0.1968330259387904]], [[0.19853101226769612]], [[0.2008256935384082]]], "count": [117]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5527868461724671]], [[0.5118051645159488]], [[0.4561009068394689]]], "std": [[[0.18048097159397597]], [[0.16992586749125527]], [[0.18295779717056807]]], "count": [117]}, "observation.state": {"min": [0.32315775752067566, -0.18101313710212708, 0.11466851830482483, -2.766439437866211, 0.32177895307540894, -0.5450640916824341, -0.5666787028312683, -0.5302505493164062, 0.19288405776023865, 2.9023184776306152, -1.1216490268707275, -0.7579498291015625], "max": [0.5475881099700928, 0.005869280081242323, 0.12595272064208984, 0.15097676217556, 0.9120486378669739, 0.6277899742126465, -0.46882393956184387, -0.4693799912929535, 0.2040191888809204, 4.53810977935791, -0.259062796831131, 1.1431587934494019], "mean": [0.444892942905426, -0.09795781224966049, 0.11967214941978455, -1.3665578365325928, 0.6603726148605347, 0.0014491728506982327, -0.5142110586166382, -0.5046600103378296, 0.19493423402309418, 3.6820530891418457, -0.6191520690917969, 0.3278706967830658], "std": [0.07011771202087402, 0.0562080442905426, 0.002784607233479619, 0.8644917011260986, 0.13514672219753265, 0.382892906665802, 0.028066325932741165, 0.01971181109547615, 0.002686861902475357, 0.6573168635368347, 0.2195359468460083, 0.8275722861289978], "count": [573]}, "action": {"min": [-0.1477074921131134, -0.09408549219369888, 0.10306040942668915, -0.3501785695552826, -0.45451611280441284, -0.6532953381538391, -0.663912296295166, 0.10859450697898865, -0.15123525261878967, 0.0768761858344078, -0.5066155195236206, -0.6055642366409302, -0.37480300664901733, -0.6158636808395386], "max": [-0.1121845543384552, -0.07386530190706253, 0.1365029364824295, 0.6089495420455933, 0.24317406117916107, 0.8741463422775269, 0.7438857555389404, 0.12316257506608963, -0.1387670636177063, 0.08652282506227493, 0.4277331531047821, 0.7069785594940186, 0.8490577936172485, 0.6867015957832336], "mean": [-0.1274094432592392, -0.08460219204425812, 0.11648593842983246, 0.35976648330688477, -0.11187469959259033, 0.50041663646698, 0.0669403001666069, 0.11682704091072083, -0.14677931368350983, 0.07972395420074463, -0.2250370979309082, -0.11502435058355331, 0.4234350919723511, 0.2780953049659729], "std": [0.012014633044600487, 0.0062688905745744705, 0.010194605216383934, 0.3428169786930084, 0.2154468148946762, 0.5380083918571472, 0.38698917627334595, 0.0036113152746111155, 0.002695558127015829, 0.0025307799223810434, 0.28053420782089233, 0.452936589717865, 0.4244309365749359, 0.4642203748226166], "count": [573]}, "timestamp": {"min": [0.0], "max": [19.066666666666666], "mean": [9.533333333333333], "std": [5.513686674153759], "count": [573]}, "frame_index": {"min": [0], "max": [572], "mean": [286.0], "std": [165.41060022461278], "count": [573]}, "episode_index": {"min": [566], "max": [566], "mean": [566.0], "std": [0.0], "count": [573]}, "index": {"min": [316438], "max": [317010], "mean": [316724.0], "std": [165.41060022461278], "count": [573]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [573]}}} +{"episode_index": 567, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5186293244642223]], [[0.4692296833232899]], [[0.4097992764875848]]], "std": [[[0.20838490412226093]], [[0.20635286068701517]], [[0.2062643106121737]]], "count": [141]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5341576623557224]], [[0.4946263442729337]], [[0.4391001830992444]]], "std": [[[0.19429833172975208]], [[0.180095522540968]], [[0.19078787304821607]]], "count": [141]}, "observation.state": {"min": [0.33851054310798645, -0.18216381967067719, 0.10902316868305206, -2.8108937740325928, -0.5789288282394409, -0.9503792524337769, -0.5171605348587036, -0.49321234226226807, 0.19166813790798187, 3.1034111976623535, -0.9198369383811951, -0.7409822344779968], "max": [0.6019020676612854, -0.025407789275050163, 0.12909752130508423, -0.6854764223098755, 0.8310232162475586, 0.6670008301734924, -0.46289288997650146, -0.4552319347858429, 0.20420585572719574, 4.538528919219971, -0.4086797833442688, 1.3808624744415283], "mean": [0.4946262240409851, -0.11432792991399765, 0.12117595225572586, -1.8283593654632568, 0.157284677028656, -0.29229190945625305, -0.4941259026527405, -0.4757657051086426, 0.1968005895614624, 3.823427200317383, -0.6236675381660461, 0.2551339864730835], "std": [0.06852889806032181, 0.04222344607114792, 0.0038307146169245243, 0.4708334505558014, 0.4588916301727295, 0.36598941683769226, 0.013131871819496155, 0.007604115176945925, 0.0037997474428266287, 0.5758154392242432, 0.12655878067016602, 0.8318646550178528], "count": [740]}, "action": {"min": [-0.14339599013328552, -0.10280416160821915, 0.10148933529853821, -0.008179238066077232, -0.5596169829368591, 0.6694532632827759, -0.4189262092113495, 0.11301395297050476, -0.15161310136318207, 0.08166574686765671, -0.5016616582870483, -0.5894849896430969, -0.3725939095020294, -0.5881363153457642], "max": [-0.11186638474464417, -0.07490084320306778, 0.12748096883296967, 0.6334212422370911, 0.21120736002922058, 0.9961434602737427, 0.3539268970489502, 0.12369528412818909, -0.13959287106990814, 0.09044033288955688, 0.49698901176452637, 0.6818464994430542, 0.8732656240463257, 0.6023744344711304], "mean": [-0.12170249223709106, -0.08807047456502914, 0.1140783429145813, 0.3535395860671997, -0.12580588459968567, 0.8577358722686768, 0.01600448600947857, 0.11723053455352783, -0.14592045545578003, 0.08615409582853317, -0.13719111680984497, -0.04473642259836197, 0.4560263156890869, 0.18708860874176025], "std": [0.009461333975195885, 0.006978410296142101, 0.006018929183483124, 0.21139095723628998, 0.1973327100276947, 0.10436956584453583, 0.16939964890480042, 0.0018721449887380004, 0.002829756820574403, 0.0027232388965785503, 0.3474203944206238, 0.4453902542591095, 0.4601055681705475, 0.4532600939273834], "count": [740]}, "timestamp": {"min": [0.0], "max": [24.633333333333333], "mean": [12.316666666666665], "std": [7.120646818310196], "count": [740]}, "frame_index": {"min": [0], "max": [739], "mean": [369.5], "std": [213.61940454930587], "count": [740]}, "episode_index": {"min": [567], "max": [567], "mean": [567.0], "std": [0.0], "count": [740]}, "index": {"min": [317011], "max": [317750], "mean": [317380.5], "std": [213.61940454930587], "count": [740]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [740]}}} +{"episode_index": 568, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5339529155144964]], [[0.48483676627702366]], [[0.4255168269230769]]], "std": [[[0.20153066945469442]], [[0.20266561475114053]], [[0.20400284390840118]]], "count": [104]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5491412141779789]], [[0.5098257106795709]], [[0.45455278772833924]]], "std": [[[0.18384330606742677]], [[0.17320284343255704]], [[0.18546200717695557]]], "count": [104]}, "observation.state": {"min": [0.3044610321521759, -0.20418132841587067, 0.11116723716259003, -2.425273895263672, 0.2169787585735321, -0.5833104848861694, -0.5512409210205078, -0.536027193069458, 0.19076721370220184, 2.924126148223877, -1.0691806077957153, -0.6421549916267395], "max": [0.5673969388008118, 0.00944489985704422, 0.12592031061649323, 0.3984108865261078, 0.9408789277076721, 0.6769539713859558, -0.48761335015296936, -0.45966479182243347, 0.19827532768249512, 4.538528919219971, -0.35416179895401, 1.0462816953659058], "mean": [0.46762406826019287, -0.10731648653745651, 0.1185932382941246, -1.4114060401916504, 0.5738838911056519, -0.042133089154958725, -0.5157199501991272, -0.5003453493118286, 0.19342368841171265, 3.6096389293670654, -0.657547652721405, 0.48161980509757996], "std": [0.07989977300167084, 0.05898714065551758, 0.0037507007364183664, 0.9286373257637024, 0.20424948632717133, 0.38096684217453003, 0.019696088507771492, 0.022937312722206116, 0.001826327876187861, 0.5711079835891724, 0.1794036477804184, 0.6606070399284363], "count": [491]}, "action": {"min": [-0.15174748003482819, -0.09716406464576721, 0.10125058144330978, -0.36903321743011475, -0.39157649874687195, -0.6418901085853577, -0.632686197757721, 0.11384391039609909, -0.149114191532135, 0.0760013684630394, -0.49410420656204224, -0.5944933891296387, -0.43325284123420715, -0.5909581780433655], "max": [-0.10817978531122208, -0.07273700833320618, 0.13399121165275574, 0.6163449883460999, 0.33731356263160706, 0.8601434826850891, 0.8303176760673523, 0.12169181555509567, -0.13526953756809235, 0.08752254396677017, 0.40755242109298706, 0.6945948004722595, 0.828984260559082, 0.6956628561019897], "mean": [-0.12498088926076889, -0.085261270403862, 0.11318410187959671, 0.38842344284057617, -0.08092741668224335, 0.5161505341529846, 0.11246517300605774, 0.11715549975633621, -0.14461421966552734, 0.08018370717763901, -0.14968083798885345, -0.052367910742759705, 0.28082144260406494, 0.18703694641590118], "std": [0.013642330653965473, 0.0066091204062104225, 0.01078975759446621, 0.3047032952308655, 0.2268531322479248, 0.5224088430404663, 0.38249242305755615, 0.0018848137697204947, 0.003134489059448242, 0.0030587457586079836, 0.3459645211696625, 0.4937061667442322, 0.48468300700187683, 0.5124987363815308], "count": [491]}, "timestamp": {"min": [0.0], "max": [16.333333333333332], "mean": [8.166666666666668], "std": [4.724639903973871], "count": [491]}, "frame_index": {"min": [0], "max": [490], "mean": [245.0], "std": [141.7391971192161], "count": [491]}, "episode_index": {"min": [568], "max": [568], "mean": [568.0], "std": [0.0], "count": [491]}, "index": {"min": [317751], "max": [318241], "mean": [317996.0], "std": [141.7391971192161], "count": [491]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [491]}}} +{"episode_index": 569, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5389089331180932]], [[0.488929784497467]], [[0.42781895720135443]]], "std": [[[0.19280693715302266]], [[0.19476198803302452]], [[0.19748327418328349]]], "count": [166]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5524259308475733]], [[0.5116687928183322]], [[0.4545761772580518]]], "std": [[[0.17337339982420505]], [[0.16458923269057837]], [[0.17921331684713532]]], "count": [166]}, "observation.state": {"min": [0.3467738628387451, -0.2815476655960083, 0.1151701807975769, -2.653416633605957, -0.7409797310829163, -0.8832255005836487, -0.517963707447052, -0.5197476744651794, 0.19170314073562622, 2.6448192596435547, -1.2854762077331543, -0.7817304730415344], "max": [0.5534341931343079, 0.02613372914493084, 0.13642026484012604, -0.8192586302757263, 1.1909236907958984, 0.8918038606643677, -0.45991963148117065, -0.4240475296974182, 0.20244808495044708, 4.543352127075195, -0.18063345551490784, 1.3954148292541504], "mean": [0.46041765809059143, -0.1495809704065323, 0.12627160549163818, -1.6942968368530273, 0.34557992219924927, -0.25739145278930664, -0.4924320876598358, -0.4898776113986969, 0.197441965341568, 3.601496696472168, -0.7050594687461853, 0.46381139755249023], "std": [0.06193435564637184, 0.08597816526889801, 0.005486777052283287, 0.5172361731529236, 0.6569235920906067, 0.5723621845245361, 0.016761288046836853, 0.017679978162050247, 0.002740583149716258, 0.7442662119865417, 0.32511240243911743, 0.9003274440765381], "count": [914]}, "action": {"min": [-0.13883168995380402, -0.11376350373029709, 0.10370726138353348, 0.11809980124235153, -0.43678200244903564, 0.5389449000358582, -0.2881752848625183, 0.11312943696975708, -0.15339745581150055, 0.0751371681690216, -0.6024840474128723, -0.6213281750679016, -0.5964911580085754, -0.6194286942481995], "max": [-0.11415380239486694, -0.07053180783987045, 0.1332855075597763, 0.7105250954627991, 0.2159138172864914, 0.9862522482872009, 0.305541068315506, 0.12476532906293869, -0.13849224150180817, 0.09055283665657043, 0.597136378288269, 0.632365345954895, 0.856012761592865, 0.7829975485801697], "mean": [-0.12408174574375153, -0.09434819221496582, 0.1159437820315361, 0.4253048598766327, -0.08000895380973816, 0.8098215460777283, -0.039569754153490067, 0.11832267045974731, -0.14754654467105865, 0.08414928615093231, -0.27875813841819763, -0.23289765417575836, 0.39994609355926514, 0.3922177255153656], "std": [0.007494385354220867, 0.011841106228530407, 0.008479762822389603, 0.20086327195167542, 0.21570013463497162, 0.14396856725215912, 0.21848945319652557, 0.0030423381831496954, 0.0036533933598548174, 0.0029477111529558897, 0.315514475107193, 0.38497185707092285, 0.3633253276348114, 0.4177364408969879], "count": [914]}, "timestamp": {"min": [0.0], "max": [30.433333333333334], "mean": [15.216666666666667], "std": [8.794963836701598], "count": [914]}, "frame_index": {"min": [0], "max": [913], "mean": [456.5], "std": [263.8489151010479], "count": [914]}, "episode_index": {"min": [569], "max": [569], "mean": [569.0], "std": [0.0], "count": [914]}, "index": {"min": [318242], "max": [319155], "mean": [318698.5], "std": [263.8489151010479], "count": [914]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [914]}}} +{"episode_index": 570, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5315122609537642]], [[0.48161135923505205]], [[0.4211354353263939]]], "std": [[[0.19702054143312883]], [[0.19882322987267817]], [[0.2003867948999038]]], "count": [135]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5440391430646332]], [[0.5039558722666021]], [[0.44723835027838293]]], "std": [[[0.18135147742148167]], [[0.1701994942090263]], [[0.18321808101458942]]], "count": [135]}, "observation.state": {"min": [0.3125390112400055, -0.19313782453536987, 0.1065291091799736, -2.5464746952056885, 0.12802839279174805, -0.43690699338912964, -0.5807108879089355, -0.5217169523239136, 0.1970905214548111, 3.035891056060791, -1.1433742046356201, -0.8715088963508606], "max": [0.5234004855155945, 0.017090409994125366, 0.12503105401992798, 0.4053306579589844, 1.017941951751709, 0.6617769002914429, -0.46168041229248047, -0.4548921287059784, 0.20895417034626007, 4.53810977935791, -0.4731721878051758, 1.176604151725769], "mean": [0.45810237526893616, -0.11561892926692963, 0.1180424615740776, -1.433329463005066, 0.5314261317253113, 0.009380076080560684, -0.5139246582984924, -0.5030458569526672, 0.20003996789455414, 3.7097508907318115, -0.8260139226913452, 0.4657500684261322], "std": [0.058623895049095154, 0.056224044412374496, 0.0032631242647767067, 0.845119833946228, 0.24012018740177155, 0.3025744557380676, 0.036231640726327896, 0.01825135014951229, 0.002359391888603568, 0.4866417348384857, 0.18077820539474487, 0.6812922358512878], "count": [697]}, "action": {"min": [-0.15018704533576965, -0.09612234681844711, 0.1037975549697876, -0.364890456199646, -0.39788618683815, -0.6394687294960022, -0.6407360434532166, 0.10436955094337463, -0.15653958916664124, 0.07649838924407959, -0.5343297719955444, -0.5739181041717529, -0.5256665349006653, -0.5813383460044861], "max": [-0.11702421307563782, -0.07010000944137573, 0.13269436359405518, 0.5417141914367676, 0.35069623589515686, 0.9073352813720703, 0.8310307860374451, 0.12254966795444489, -0.14239567518234253, 0.08870922029018402, 0.5388482809066772, 0.6774401664733887, 0.8564576506614685, 0.6542745232582092], "mean": [-0.126460000872612, -0.08619584888219833, 0.11343283206224442, 0.3811701536178589, -0.1335848718881607, 0.6005837917327881, 0.06084743142127991, 0.11411255598068237, -0.14869704842567444, 0.08258131146430969, -0.10582541674375534, -0.0007213049684651196, 0.2426259070634842, 0.1384781002998352], "std": [0.009999122470617294, 0.006190008483827114, 0.008625305257737637, 0.24874791502952576, 0.22397200763225555, 0.46645858883857727, 0.37793999910354614, 0.004650460556149483, 0.002802717499434948, 0.0027241890784353018, 0.43729329109191895, 0.4648486077785492, 0.5163962244987488, 0.4866029918193817], "count": [697]}, "timestamp": {"min": [0.0], "max": [23.2], "mean": [11.599999999999998], "std": [6.706878724281677], "count": [697]}, "frame_index": {"min": [0], "max": [696], "mean": [348.0], "std": [201.20636172845033], "count": [697]}, "episode_index": {"min": [570], "max": [570], "mean": [570.0], "std": [0.0], "count": [697]}, "index": {"min": [319156], "max": [319852], "mean": [319504.0], "std": [201.20636172845033], "count": [697]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [697]}}} +{"episode_index": 571, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5318937167947101]], [[0.4820317648014371]], [[0.4200619601154302]]], "std": [[[0.20331942992050572]], [[0.20285903017419388]], [[0.20487651917730682]]], "count": [114]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5428071775981347]], [[0.502426279478653]], [[0.44413025790238125]]], "std": [[[0.18685968070241035]], [[0.17473294746137555]], [[0.1885385320457818]]], "count": [114]}, "observation.state": {"min": [0.35118356347084045, -0.17473454773426056, 0.11148612946271896, -2.1562416553497314, -0.2354246973991394, -1.1304841041564941, -0.5367067456245422, -0.4954519271850586, 0.20035198330879211, 3.176173686981201, -0.9826897382736206, -0.665915310382843], "max": [0.5135926008224487, 0.03210340067744255, 0.13138028979301453, -0.9255713820457458, 0.5521481037139893, 0.1881302297115326, -0.4735656976699829, -0.4181936979293823, 0.21289488673210144, 4.545868396759033, -0.48137038946151733, 1.0040892362594604], "mean": [0.4354999363422394, -0.1175035685300827, 0.12286511063575745, -1.5704610347747803, 0.29662755131721497, -0.4549562335014343, -0.5024027228355408, -0.46289387345314026, 0.20482094585895538, 4.088743209838867, -0.654087483882904, -0.07050631195306778], "std": [0.047461654990911484, 0.06043330207467079, 0.004733758512884378, 0.443976491689682, 0.1630098521709442, 0.3834778368473053, 0.019357606768608093, 0.023113278672099113, 0.00404288899153471, 0.5772196650505066, 0.09501916915178299, 0.6770532727241516], "count": [556]}, "action": {"min": [-0.13834472000598907, -0.10306748747825623, 0.10573458671569824, 0.07103101909160614, -0.3826737701892853, 0.8220130801200867, -0.44435763359069824, 0.10121939331293106, -0.15591585636138916, 0.08713292330503464, -0.510236918926239, -0.5825808048248291, -0.44883599877357483, -0.5828544497489929], "max": [-0.11805307865142822, -0.0656999722123146, 0.13083508610725403, 0.5023611783981323, 0.21500396728515625, 0.9787391424179077, 0.12005393207073212, 0.11612974107265472, -0.14292864501476288, 0.09372014552354813, 0.3561564087867737, 0.5864970088005066, 0.8624122738838196, 0.6127678155899048], "mean": [-0.12832459807395935, -0.09126754850149155, 0.11901591718196869, 0.28991538286209106, -0.07662823796272278, 0.8904179930686951, -0.13748835027217865, 0.11142178624868393, -0.15050466358661652, 0.08995091170072556, -0.3240375518798828, -0.23379908502101898, 0.6312173008918762, 0.35544508695602417], "std": [0.006245097145438194, 0.009337905794382095, 0.006795578636229038, 0.153458833694458, 0.16795966029167175, 0.040128450840711594, 0.21203571557998657, 0.004499645438045263, 0.0038291062228381634, 0.0015637925826013088, 0.19284097850322723, 0.280132532119751, 0.3461109697818756, 0.2830311059951782], "count": [556]}, "timestamp": {"min": [0.0], "max": [18.5], "mean": [9.25], "std": [5.350103841152162], "count": [556]}, "frame_index": {"min": [0], "max": [555], "mean": [277.5], "std": [160.50311523456483], "count": [556]}, "episode_index": {"min": [571], "max": [571], "mean": [571.0], "std": [0.0], "count": [556]}, "index": {"min": [319853], "max": [320408], "mean": [320130.5], "std": [160.50311523456483], "count": [556]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [556]}}} +{"episode_index": 572, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5295029030501089]], [[0.4795506100217865]], [[0.4194100190631808]]], "std": [[[0.20842939705614483]], [[0.2075008590510718]], [[0.20958479553702947]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5452134694989107]], [[0.5040982734204793]], [[0.4477938480392157]]], "std": [[[0.1919235299799]], [[0.17910015715644903]], [[0.19312539939941656]]], "count": [100]}, "observation.state": {"min": [0.37920933961868286, -0.14670875668525696, 0.11393222212791443, -2.881559133529663, -0.05164859816431999, -0.4955892860889435, -0.5108433365821838, -0.5145425200462341, 0.19684292376041412, 3.1436715126037598, -1.022997498512268, -0.8907580971717834], "max": [0.5281577110290527, 0.019075149670243263, 0.13557378947734833, -1.645227313041687, 1.1853216886520386, 0.24133823812007904, -0.4708627462387085, -0.46202021837234497, 0.20322975516319275, 4.53810977935791, -0.4843764007091522, 1.0294653177261353], "mean": [0.4434571862220764, -0.08672352135181427, 0.12782013416290283, -2.1101698875427246, 0.48909953236579895, -0.1459728628396988, -0.4874376952648163, -0.49427682161331177, 0.19979608058929443, 3.839923143386841, -0.7124059796333313, 0.1439337432384491], "std": [0.04975401237607002, 0.046191371977329254, 0.006061358377337456, 0.3288663625717163, 0.426465779542923, 0.26359543204307556, 0.008243313990533352, 0.02016281522810459, 0.0018543149344623089, 0.5849171280860901, 0.16289328038692474, 0.737104594707489], "count": [461]}, "action": {"min": [-0.1347738653421402, -0.09829574823379517, 0.11275912076234818, 0.22053880989551544, -0.3776969611644745, 0.5706565976142883, -0.16408611834049225, 0.11479127407073975, -0.15457120537757874, 0.08352778106927872, -0.4812116026878357, -0.6133700609207153, -0.5190073847770691, -0.6125280261039734], "max": [-0.11321534961462021, -0.06812821328639984, 0.133337140083313, 0.7420104146003723, 0.04809769243001938, 0.972804605960846, 0.4586286246776581, 0.12103448808193207, -0.14487981796264648, 0.08668862283229828, 0.43802928924560547, 0.6181276440620422, 0.8679375052452087, 0.6485937237739563], "mean": [-0.1244942843914032, -0.09008033573627472, 0.12276817113161087, 0.49111881852149963, -0.17765448987483978, 0.7893335819244385, 0.11849817633628845, 0.11755077540874481, -0.14990699291229248, 0.08506593853235245, -0.30658936500549316, -0.26414498686790466, 0.5610208511352539, 0.4130403399467468], "std": [0.007904860191047192, 0.009171209298074245, 0.006565236486494541, 0.16945670545101166, 0.14925289154052734, 0.13466157019138336, 0.14500382542610168, 0.0021933214738965034, 0.00264540477655828, 0.0008304895600304008, 0.20865128934383392, 0.3175651729106903, 0.3304078280925751, 0.3119795620441437], "count": [461]}, "timestamp": {"min": [0.0], "max": [15.333333333333334], "mean": [7.666666666666667], "std": [4.435964131705505], "count": [461]}, "frame_index": {"min": [0], "max": [460], "mean": [230.0], "std": [133.07892395116517], "count": [461]}, "episode_index": {"min": [572], "max": [572], "mean": [572.0], "std": [0.0], "count": [461]}, "index": {"min": [320409], "max": [320869], "mean": [320639.0], "std": [133.07892395116517], "count": [461]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [461]}}} +{"episode_index": 573, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5268849004168596]], [[0.47661989647127445]], [[0.4161867912956959]]], "std": [[[0.19937176378537982]], [[0.20038696096716666]], [[0.2010457072152638]]], "count": [127]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5413439992795018]], [[0.5005573010481533]], [[0.44383146132468737]]], "std": [[[0.18402715730600744]], [[0.17281614801721654]], [[0.18486655490985843]]], "count": [127]}, "observation.state": {"min": [0.43639618158340454, -0.16259442269802094, 0.10614281892776489, -2.3741095066070557, -0.02705403044819832, -0.5228673219680786, -0.6381062269210815, -0.5736677646636963, 0.19280758500099182, 3.0245678424835205, -1.1350394487380981, -1.1889731884002686], "max": [0.5376026034355164, 0.023894140496850014, 0.12591512501239777, -1.2923191785812378, 0.6745743751525879, 0.27649810910224915, -0.48269397020339966, -0.4012114107608795, 0.20590141415596008, 4.542303562164307, 0.32929396629333496, 1.1630865335464478], "mean": [0.48381921648979187, -0.11591029912233353, 0.1162424087524414, -1.7625949382781982, 0.38376522064208984, -0.18737304210662842, -0.5343793034553528, -0.4832868278026581, 0.19926001131534576, 4.0215535163879395, -0.5071186423301697, -0.19149459898471832], "std": [0.029341934248805046, 0.050944436341524124, 0.006583412177860737, 0.33421212434768677, 0.20752596855163574, 0.30051538348197937, 0.045094240456819534, 0.056491244584321976, 0.0034182402305305004, 0.661133348941803, 0.4115774631500244, 0.8661659955978394], "count": [641]}, "action": {"min": [-0.13344168663024902, -0.09584463387727737, 0.10389797389507294, 0.163356751203537, -0.4003293812274933, 0.6909124255180359, -0.26994073390960693, 0.10191867500543594, -0.1537557989358902, 0.06615976989269257, -0.5711193084716797, -0.6123303174972534, -0.5091260671615601, -0.611389696598053], "max": [-0.11274173110723495, -0.0694594755768776, 0.12995897233486176, 0.5955553650856018, -0.011520292609930038, 0.9393343329429626, 0.23662294447422028, 0.11891912668943405, -0.13975271582603455, 0.09964309632778168, 0.5151457190513611, 0.6144224405288696, 0.9920415282249451, 0.6790769100189209], "mean": [-0.12348304688930511, -0.08575039356946945, 0.11054884642362595, 0.40369296073913574, -0.19468636810779572, 0.8509230017662048, -0.04758422076702118, 0.1117168664932251, -0.14738787710666656, 0.08272340893745422, -0.3110177218914032, -0.232088103890419, 0.6923426985740662, 0.40773525834083557], "std": [0.005937008187174797, 0.006440890021622181, 0.0076810759492218494, 0.10776429623365402, 0.1370297074317932, 0.06824888288974762, 0.19428478181362152, 0.004473627079278231, 0.0040295799262821674, 0.010121433064341545, 0.14403404295444489, 0.24990862607955933, 0.2672950029373169, 0.2217411994934082], "count": [641]}, "timestamp": {"min": [0.0], "max": [21.333333333333332], "mean": [10.666666666666666], "std": [6.168017869984201], "count": [641]}, "frame_index": {"min": [0], "max": [640], "mean": [320.0], "std": [185.04053609952604], "count": [641]}, "episode_index": {"min": [573], "max": [573], "mean": [573.0], "std": [0.0], "count": [641]}, "index": {"min": [320870], "max": [321510], "mean": [321190.0], "std": [185.04053609952604], "count": [641]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [641]}}} +{"episode_index": 574, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5412755580627312]], [[0.4904402341183387]], [[0.42894402730227893]]], "std": [[[0.19679000006737968]], [[0.19947733147137048]], [[0.20263028741568623]]], "count": [126]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.555048237196113]], [[0.513457911868451]], [[0.4559375561953177]]], "std": [[[0.17678894570841272]], [[0.1681417982490595]], [[0.18333371199746618]]], "count": [126]}, "observation.state": {"min": [0.3642658591270447, -0.2079036831855774, 0.10964927822351456, -2.4210801124572754, -0.37984946370124817, -1.0983718633651733, -0.5276402831077576, -0.5111522674560547, 0.1947040557861328, 3.019115924835205, -1.0643982887268066, -0.7655293941497803], "max": [0.5370079278945923, 0.002718399977311492, 0.12517623603343964, -1.2482842206954956, 0.608988881111145, -0.015738170593976974, -0.48216110467910767, -0.4419719874858856, 0.20507696270942688, 4.542513370513916, -0.4760415554046631, 1.1290971040725708], "mean": [0.44913411140441895, -0.11041843146085739, 0.11758958548307419, -1.8279838562011719, 0.07132293283939362, -0.575741171836853, -0.5024539828300476, -0.4957396686077118, 0.2012588381767273, 4.0842461585998535, -0.7392118573188782, -0.08377143740653992], "std": [0.056798651814460754, 0.06734831631183624, 0.0037677891086786985, 0.2865564525127411, 0.3223609924316406, 0.3008594512939453, 0.0125251654535532, 0.017140213400125504, 0.002517296699807048, 0.606157124042511, 0.12440560758113861, 0.7607547044754028], "count": [632]}, "action": {"min": [-0.14213652908802032, -0.09884826093912125, 0.09299947321414948, 0.00046315178042277694, -0.28890460729599, 0.7937326431274414, -0.20173557102680206, 0.10910840332508087, -0.15545691549777985, 0.07946255058050156, -0.5387348532676697, -0.5907685160636902, -0.3966718018054962, -0.5943520069122314], "max": [-0.1196071058511734, -0.07288426160812378, 0.13191767036914825, 0.5740259885787964, 0.1785031259059906, 0.987485945224762, 0.18861036002635956, 0.11751127988100052, -0.13965651392936707, 0.08703820407390594, 0.4092077612876892, 0.6526050567626953, 0.8185104727745056, 0.6662145256996155], "mean": [-0.13036896288394928, -0.08763287961483002, 0.11537658423185349, 0.2825237512588501, -0.010084602981805801, 0.9234969019889832, 0.007354434579610825, 0.11409705132246017, -0.1508551985025406, 0.08294457942247391, -0.27657440304756165, -0.1134832575917244, 0.5501633286476135, 0.2909418046474457], "std": [0.008299125358462334, 0.006706963758915663, 0.010992448776960373, 0.18939833343029022, 0.134624183177948, 0.07308857887983322, 0.08855104446411133, 0.0019371135858818889, 0.0035990446340292692, 0.002232428640127182, 0.2859758734703064, 0.3474704623222351, 0.4200652241706848, 0.37990671396255493], "count": [632]}, "timestamp": {"min": [0.0], "max": [21.033333333333335], "mean": [10.516666666666667], "std": [6.081415222718403], "count": [632]}, "frame_index": {"min": [0], "max": [631], "mean": [315.5], "std": [182.44245668155207], "count": [632]}, "episode_index": {"min": [574], "max": [574], "mean": [574.0], "std": [0.0], "count": [632]}, "index": {"min": [321511], "max": [322142], "mean": [321826.5], "std": [182.44245668155207], "count": [632]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [632]}}} +{"episode_index": 575, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5353803976034859]], [[0.4851944607843137]], [[0.42376631263616554]]], "std": [[[0.1998610443356388]], [[0.19878756896824776]], [[0.2007099104765589]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.549220438453159]], [[0.5084274346405229]], [[0.45206452614379083]]], "std": [[[0.1891858347428249]], [[0.17478032312567587]], [[0.18751394176184916]]], "count": [100]}, "observation.state": {"min": [0.3997286558151245, -0.13910186290740967, 0.11113741993904114, -2.7423250675201416, -0.28365737199783325, -0.5066593885421753, -0.6190001964569092, -0.5293006896972656, 0.18180985748767853, 4.142844200134277, -0.9683428406715393, -0.9117461442947388], "max": [0.4868178963661194, 0.05132528021931648, 0.1335243433713913, -0.6053748726844788, 1.0719133615493774, 1.1167879104614258, -0.4509303569793701, -0.34263449907302856, 0.2070123255252838, 4.538528919219971, 0.22790968418121338, -0.018519919365644455], "mean": [0.4337674379348755, -0.08822489529848099, 0.12212072312831879, -1.605119228363037, 0.5217692852020264, -0.21997974812984467, -0.539453387260437, -0.4622516930103302, 0.19726890325546265, 4.4497456550598145, -0.4513716995716095, -0.5816710591316223], "std": [0.025829963386058807, 0.0566771924495697, 0.008312293328344822, 0.5538420081138611, 0.3865121006965637, 0.374009907245636, 0.054184164851903915, 0.0703507736325264, 0.006528632715344429, 0.14225271344184875, 0.43280351161956787, 0.3185943365097046], "count": [400]}, "action": {"min": [-0.13505403697490692, -0.09779147058725357, 0.11004021763801575, 0.005213141441345215, -0.5249547362327576, 0.5287153124809265, -0.36618661880493164, 0.09946336597204208, -0.1561841368675232, 0.0725087895989418, -0.4990818202495575, -0.3717010021209717, 0.6623740196228027, 0.08247195184230804], "max": [-0.11613546311855316, -0.07439419627189636, 0.13372519612312317, 0.7300984859466553, -0.1045546680688858, 0.9657123684883118, 0.22255361080169678, 0.12065538763999939, -0.12081502377986908, 0.10362282395362854, -0.14609427750110626, -0.02012627013027668, 0.9779101014137268, 0.4587840735912323], "mean": [-0.1279222071170807, -0.08655232191085815, 0.11990337073802948, 0.4205642640590668, -0.18835313618183136, 0.8167301416397095, -0.14162610471248627, 0.11018386483192444, -0.14381296932697296, 0.08253183960914612, -0.31826451420783997, -0.17511266469955444, 0.843970537185669, 0.3055075407028198], "std": [0.005485587753355503, 0.005966740194708109, 0.008039142936468124, 0.21863366663455963, 0.10198193788528442, 0.12024590373039246, 0.1669825315475464, 0.006676124408841133, 0.010020202957093716, 0.01113793347030878, 0.12498359382152557, 0.1210528239607811, 0.11958953738212585, 0.13358581066131592], "count": [400]}, "timestamp": {"min": [0.0], "max": [13.3], "mean": [6.65], "std": [3.848989766448103], "count": [400]}, "frame_index": {"min": [0], "max": [399], "mean": [199.5], "std": [115.46969299344309], "count": [400]}, "episode_index": {"min": [575], "max": [575], "mean": [575.0], "std": [0.0], "count": [400]}, "index": {"min": [322143], "max": [322542], "mean": [322342.5], "std": [115.46969299344309], "count": [400]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [400]}}} +{"episode_index": 576, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5267432857115314]], [[0.47786203414502476]], [[0.41731262170551603]]], "std": [[[0.20065658090835214]], [[0.2010293197427614]], [[0.20207988721858453]]], "count": [113]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5382041375055431]], [[0.4995934818863632]], [[0.44270740306938905]]], "std": [[[0.18348337209871868]], [[0.17195260592344747]], [[0.1839343952015011]]], "count": [113]}, "observation.state": {"min": [0.2751995921134949, -0.2200438231229782, 0.10453931242227554, -2.4152088165283203, -0.746991753578186, -0.9600929021835327, -0.5712273716926575, -0.5369924902915955, 0.18652187287807465, 3.041762351989746, -1.2719491720199585, -0.716840922832489], "max": [0.5617902278900146, -0.04072197154164314, 0.14490707218647003, -1.0853551626205444, 1.322231411933899, 0.4948577284812927, -0.4728706479072571, -0.47656986117362976, 0.20053477585315704, 4.53810977935791, -0.6061195135116577, 1.0150538682937622], "mean": [0.46234381198883057, -0.12387857586145401, 0.12286999821662903, -1.8587779998779297, 0.2761105000972748, -0.29005905985832214, -0.5327154397964478, -0.5000895857810974, 0.19541577994823456, 3.6455345153808594, -0.8641179203987122, 0.4190305471420288], "std": [0.08703567087650299, 0.060519956052303314, 0.009217641316354275, 0.3578295111656189, 0.5896012783050537, 0.4778136610984802, 0.021360943093895912, 0.015618558041751385, 0.0036959759891033173, 0.47916024923324585, 0.19342146813869476, 0.5810079574584961], "count": [549]}, "action": {"min": [-0.15113182365894318, -0.10027696937322617, 0.09583625942468643, 0.17510336637496948, -0.46744588017463684, 0.5799008011817932, -0.3172900378704071, 0.10879655927419662, -0.14935928583145142, 0.0735386461019516, -0.5498884320259094, -0.5593174695968628, -0.49566829204559326, -0.5586417317390442], "max": [-0.10175137221813202, -0.07441550493240356, 0.1334267407655716, 0.7190886735916138, 0.26332053542137146, 0.9521100521087646, 0.3009878695011139, 0.12582039833068848, -0.13232740759849548, 0.08559972792863846, 0.4241943657398224, 0.6020353436470032, 0.8059219121932983, 0.6621859669685364], "mean": [-0.12448965013027191, -0.08955679833889008, 0.11584337055683136, 0.41754189133644104, -0.08235740661621094, 0.8295170068740845, 0.017958281561732292, 0.11353930830955505, -0.1435236930847168, 0.0800505056977272, -0.2706557512283325, -0.16082309186458588, 0.364685595035553, 0.31701529026031494], "std": [0.01375508401542902, 0.006659646052867174, 0.009370782412588596, 0.15871182084083557, 0.2509315609931946, 0.09302494674921036, 0.18342486023902893, 0.004113241098821163, 0.004172443877905607, 0.002790680853649974, 0.3417292833328247, 0.4005650579929352, 0.43903735280036926, 0.4442998468875885], "count": [549]}, "timestamp": {"min": [0.0], "max": [18.266666666666666], "mean": [9.133333333333335], "std": [5.282746199412519], "count": [549]}, "frame_index": {"min": [0], "max": [548], "mean": [274.0], "std": [158.48238598237555], "count": [549]}, "episode_index": {"min": [576], "max": [576], "mean": [576.0], "std": [0.0], "count": [549]}, "index": {"min": [322543], "max": [323091], "mean": [322817.0], "std": [158.48238598237555], "count": [549]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [549]}}} +{"episode_index": 577, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5308345890007654]], [[0.48106004092327626]], [[0.421394890478714]]], "std": [[[0.21376566313328377]], [[0.2115611116647123]], [[0.21301172661436807]]], "count": [185]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5485895204027557]], [[0.5080206500618266]], [[0.4526317052346464]]], "std": [[[0.19636638592711728]], [[0.1832574582166395]], [[0.1960004358163204]]], "count": [185]}, "observation.state": {"min": [0.2971089780330658, -0.14367371797561646, 0.11032205820083618, -3.0038084983825684, -0.891006588935852, -0.9007695913314819, -0.5143340229988098, -0.5069124698638916, 0.18879038095474243, 3.1885452270507812, -1.213332176208496, -0.6656232476234436], "max": [0.5758764743804932, 0.00825559999793768, 0.1331821233034134, -1.2224923372268677, 1.2056804895401, 0.2426706999540329, -0.4495866298675537, -0.44827374815940857, 0.2013280987739563, 4.538528919219971, -0.5539243817329407, 1.3393889665603638], "mean": [0.44214239716529846, -0.06815182417631149, 0.12251705676317215, -1.9481151103973389, 0.15759864449501038, -0.333577424287796, -0.48795995116233826, -0.4769165813922882, 0.1947954297065735, 4.111786842346191, -0.9050775170326233, -0.04699352756142616], "std": [0.08695880323648453, 0.043504029512405396, 0.0046037049032747746, 0.47258588671684265, 0.585124135017395, 0.24627704918384552, 0.01481418963521719, 0.0138553436845541, 0.0038027954287827015, 0.5157052278518677, 0.15089207887649536, 0.707802951335907], "count": [1059]}, "action": {"min": [-0.1473398208618164, -0.09450241178274155, 0.10823475569486618, -0.14835931360721588, -0.3659076690673828, 0.579434871673584, -0.2670356035232544, 0.11117763817310333, -0.1476731151342392, 0.07756458222866058, -0.5506877899169922, -0.554206132888794, -0.3862527906894684, -0.5561338663101196], "max": [-0.11069082468748093, -0.07091763615608215, 0.1343349814414978, 0.7636361718177795, 0.11637436598539352, 0.9953155517578125, 0.5181169509887695, 0.1298273503780365, -0.1390298753976822, 0.0909929871559143, 0.5104422569274902, 0.6435948610305786, 0.7784672975540161, 0.6276335716247559], "mean": [-0.12869800627231598, -0.0842970758676529, 0.12214372307062149, 0.32577431201934814, -0.08266128599643707, 0.8643285632133484, 0.07624544203281403, 0.11756621301174164, -0.14280851185321808, 0.08350811898708344, -0.30627310276031494, -0.10916246473789215, 0.5477287769317627, 0.31584632396698], "std": [0.012191439047455788, 0.006475348956882954, 0.006975535303354263, 0.2482644021511078, 0.1294325739145279, 0.12074743211269379, 0.20295922458171844, 0.002728197956457734, 0.0025491889100521803, 0.0049166991375386715, 0.33839231729507446, 0.32418397068977356, 0.3757632374763489, 0.3656661808490753], "count": [1059]}, "timestamp": {"min": [0.0], "max": [35.266666666666666], "mean": [17.633333333333333], "std": [10.19022770799263], "count": [1059]}, "frame_index": {"min": [0], "max": [1058], "mean": [529.0], "std": [305.7068312397789], "count": [1059]}, "episode_index": {"min": [577], "max": [577], "mean": [577.0], "std": [0.0], "count": [1059]}, "index": {"min": [323092], "max": [324150], "mean": [323621.0], "std": [305.7068312397789], "count": [1059]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1059]}}} +{"episode_index": 578, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5388898096275547]], [[0.48706348428260193]], [[0.42544639226060793]]], "std": [[[0.19513862634895848]], [[0.19710215246732285]], [[0.19941963973313298]]], "count": [105]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5516462003319846]], [[0.5091995538956323]], [[0.45137812532420374]]], "std": [[[0.1798945932164983]], [[0.16887578746993823]], [[0.183424742937343]]], "count": [105]}, "observation.state": {"min": [0.4150119423866272, -0.1604783833026886, 0.11439111083745956, -2.47455096244812, 0.23501478135585785, -0.5220178961753845, -0.5776218175888062, -0.5293006896972656, 0.1925068348646164, 2.5542333126068115, -1.1138607263565063, -0.48771676421165466], "max": [0.49021589756011963, 0.029902419075369835, 0.12976770102977753, -1.293157935142517, 0.7117395401000977, 0.3496905267238617, -0.47218331694602966, -0.4310597777366638, 0.20735973119735718, 4.4963812828063965, -0.6852320432662964, 1.2744152545928955], "mean": [0.43832457065582275, -0.10947908461093903, 0.11994678527116776, -1.6880245208740234, 0.5380536317825317, -0.19155606627464294, -0.5239763259887695, -0.5045764446258545, 0.20256388187408447, 3.3568313121795654, -0.8409437537193298, 0.3025397062301636], "std": [0.022167153656482697, 0.05717894434928894, 0.004868636839091778, 0.34889596700668335, 0.1605415642261505, 0.34110894799232483, 0.03382476419210434, 0.025941627100110054, 0.0050596375949680805, 0.5547965168952942, 0.11584044992923737, 0.4889639616012573], "count": [498]}, "action": {"min": [-0.13132260739803314, -0.09514912217855453, 0.10917241871356964, 0.29767942428588867, -0.45203280448913574, 0.7751496434211731, -0.25303247570991516, 0.1024697795510292, -0.15508513152599335, 0.07708588987588882, -0.5130041241645813, -0.42561638355255127, 0.3839331865310669, 0.40354689955711365], "max": [-0.11651203036308289, -0.07258012890815735, 0.13139714300632477, 0.5807891488075256, 0.00834951177239418, 0.8581457138061523, 0.20733341574668884, 0.12452932447195053, -0.13928937911987305, 0.09450066089630127, -0.21757060289382935, -0.20631097257137299, 0.7722920775413513, 0.8069478869438171], "mean": [-0.12739704549312592, -0.0878768190741539, 0.11608149111270905, 0.4530295133590698, -0.20260648429393768, 0.8280622959136963, -0.12357962131500244, 0.11322958767414093, -0.1504843682050705, 0.0838727056980133, -0.30399423837661743, -0.3245741128921509, 0.5796244144439697, 0.6543649435043335], "std": [0.004467566963285208, 0.005806272383779287, 0.007295832969248295, 0.07629752904176712, 0.16267572343349457, 0.01613924838602543, 0.1421637386083603, 0.007481403183192015, 0.005094644147902727, 0.005835757590830326, 0.08550046384334564, 0.047644153237342834, 0.12479004263877869, 0.11370217800140381], "count": [498]}, "timestamp": {"min": [0.0], "max": [16.566666666666666], "mean": [8.283333333333333], "std": [4.791997573115072], "count": [498]}, "frame_index": {"min": [0], "max": [497], "mean": [248.5], "std": [143.75992719345217], "count": [498]}, "episode_index": {"min": [578], "max": [578], "mean": [578.0], "std": [0.0], "count": [498]}, "index": {"min": [324151], "max": [324648], "mean": [324399.5], "std": [143.75992719345217], "count": [498]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [498]}}} +{"episode_index": 579, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5428206107730449]], [[0.49218460108181206]], [[0.4314864435429344]]], "std": [[[0.2025001525931075]], [[0.20178066842390419]], [[0.20430014868969765]]], "count": [145]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5551419127037789]], [[0.5139491322965968]], [[0.45729839794155214]]], "std": [[[0.1863934860908561]], [[0.1741033911204361]], [[0.18859312599705952]]], "count": [145]}, "observation.state": {"min": [0.2600630223751068, -0.19536970555782318, 0.11169611662626266, -2.7584712505340576, -0.42985841631889343, -1.0317168235778809, -0.55220627784729, -0.48816168308258057, 0.18737612664699554, 3.4980475902557373, -1.0018187761306763, -0.6043029427528381], "max": [0.5165041089057922, -0.0030736499466001987, 0.13720710575580597, -1.1327450275421143, 1.0432196855545044, 0.6063620448112488, -0.4305191934108734, -0.44254347681999207, 0.20193734765052795, 4.53810977935791, -0.6436945796012878, 0.790555477142334], "mean": [0.37856465578079224, -0.10005645453929901, 0.12294481694698334, -1.6475329399108887, 0.46064913272857666, -0.2822168469429016, -0.48710575699806213, -0.4621322751045227, 0.19864198565483093, 4.067095756530762, -0.7946561574935913, 0.03288367763161659], "std": [0.08833897113800049, 0.045563504099845886, 0.005694899242371321, 0.3873043656349182, 0.4288851022720337, 0.4673837423324585, 0.044670309871435165, 0.011752719059586525, 0.0029939410742372274, 0.4504491090774536, 0.136884868144989, 0.6020550727844238], "count": [766]}, "action": {"min": [-0.1534942388534546, -0.10208176076412201, 0.10973408818244934, 0.11208625137805939, -0.4115760624408722, 0.6385367512702942, -0.2152913212776184, 0.10608962923288345, -0.14841188490390778, 0.08256790786981583, -0.4966658055782318, -0.5070523619651794, -0.5119823813438416, -0.4950132369995117], "max": [-0.11500731855630875, -0.0814988985657692, 0.13107119500637054, 0.6929860711097717, 0.2217859923839569, 0.9837673902511597, 0.23552769422531128, 0.13065177202224731, -0.13720004260540009, 0.0937923714518547, 0.49538782238960266, 0.5406566262245178, 0.8489750623703003, 0.5898125171661377], "mean": [-0.1358727663755417, -0.08973472565412521, 0.12265606224536896, 0.403651624917984, -0.12415464967489243, 0.8465673327445984, -0.09337469190359116, 0.11599287390708923, -0.1447337567806244, 0.08855275064706802, -0.23268234729766846, -0.12317952513694763, 0.48997071385383606, 0.2506749629974365], "std": [0.013721332885324955, 0.005382684525102377, 0.005662861745804548, 0.17669479548931122, 0.18512658774852753, 0.11362069845199585, 0.1336182802915573, 0.006715515162795782, 0.0030174606945365667, 0.003017561277374625, 0.35878786444664, 0.3378424048423767, 0.5009006261825562, 0.36607134342193604], "count": [766]}, "timestamp": {"min": [0.0], "max": [25.5], "mean": [12.75], "std": [7.370832155643395], "count": [766]}, "frame_index": {"min": [0], "max": [765], "mean": [382.5], "std": [221.12496466930187], "count": [766]}, "episode_index": {"min": [579], "max": [579], "mean": [579.0], "std": [0.0], "count": [766]}, "index": {"min": [324649], "max": [325414], "mean": [325031.5], "std": [221.12496466930187], "count": [766]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [766]}}} +{"episode_index": 580, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5168141857298475]], [[0.467402151416122]], [[0.4071365223311547]]], "std": [[[0.21543024291348278]], [[0.21087173261322603]], [[0.21155922851380238]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5330357434640522]], [[0.4931654547930283]], [[0.4371420179738562]]], "std": [[[0.2039838596996182]], [[0.18707102025721806]], [[0.19895978486408195]]], "count": [100]}, "observation.state": {"min": [0.3747996687889099, -0.11762493848800659, 0.12066903710365295, -2.8060708045959473, -0.03101648949086666, -0.5035371780395508, -0.5176161527633667, -0.48586028814315796, 0.18193301558494568, 4.206799507141113, -0.9796836972236633, -0.9464710354804993], "max": [0.5631802678108215, -0.05996701866388321, 0.13766470551490784, -1.6798261404037476, 0.6867350339889526, -0.12198472023010254, -0.4186493456363678, -0.3578096628189087, 0.20606863498687744, 4.5383195877075195, -0.3851782977581024, -0.02099829912185669], "mean": [0.4544610381126404, -0.09239468723535538, 0.12892399728298187, -2.0511045455932617, 0.42026782035827637, -0.3074114918708801, -0.48223012685775757, -0.43423759937286377, 0.19649188220500946, 4.4079694747924805, -0.7015093564987183, -0.4561132788658142], "std": [0.0670677050948143, 0.014132712967693806, 0.004720751196146011, 0.38516291975975037, 0.2244851440191269, 0.06991226971149445, 0.031471673399209976, 0.04821249097585678, 0.007123711984604597, 0.12888070940971375, 0.22026404738426208, 0.34257054328918457], "count": [445]}, "action": {"min": [-0.13212589919567108, -0.09472616761922836, 0.11527468264102936, 0.386222779750824, -0.17374029755592346, 0.7854489088058472, -0.13987649977207184, 0.1077929139137268, -0.15070518851280212, 0.08394692093133926, -0.4619808793067932, -0.35831621289253235, 0.6947176456451416, 0.3063209652900696], "max": [-0.1037239208817482, -0.08335215598344803, 0.12955260276794434, 0.5445758700370789, 0.03622037172317505, 0.898027777671814, 0.4292135536670685, 0.1272604614496231, -0.12432139366865158, 0.10304048657417297, -0.24406708776950836, 0.01051685307174921, 0.9184669852256775, 0.43394735455513], "mean": [-0.12177014350891113, -0.09069118648767471, 0.12340933829545975, 0.47094663977622986, -0.10701042413711548, 0.8479809761047363, 0.04098750650882721, 0.11596646159887314, -0.1413564383983612, 0.09011310338973999, -0.37799111008644104, -0.20402467250823975, 0.7966112494468689, 0.3796237111091614], "std": [0.009463455528020859, 0.0032727534417062998, 0.005049859173595905, 0.027495944872498512, 0.06511562317609787, 0.032163672149181366, 0.19994236528873444, 0.006366543937474489, 0.007946779951453209, 0.005804302636533976, 0.08777076005935669, 0.13942617177963257, 0.08791044354438782, 0.04383458197116852], "count": [445]}, "timestamp": {"min": [0.0], "max": [14.8], "mean": [7.4], "std": [4.282003684673281], "count": [445]}, "frame_index": {"min": [0], "max": [444], "mean": [222.0], "std": [128.46011054019843], "count": [445]}, "episode_index": {"min": [580], "max": [580], "mean": [580.0], "std": [0.0], "count": [445]}, "index": {"min": [325415], "max": [325859], "mean": [325637.0], "std": [128.46011054019843], "count": [445]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [445]}}} +{"episode_index": 581, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5309791475780343]], [[0.48095006922810657]], [[0.4204518788304522]]], "std": [[[0.20383904802402394]], [[0.203459409989043]], [[0.2049169692128045]]], "count": [107]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5436799956223404]], [[0.502560437155132]], [[0.4464362210616334]]], "std": [[[0.18962714211471474]], [[0.17710949497379241]], [[0.18949797205684774]]], "count": [107]}, "observation.state": {"min": [0.33870363235473633, -0.15982967615127563, 0.11687351018190384, -2.7022743225097656, 0.14428813755512238, -0.5372464060783386, -0.5363746881484985, -0.502332866191864, 0.19149702787399292, 2.7731494903564453, -1.1126309633255005, -0.6533342599868774], "max": [0.5453407764434814, -0.0039385901764035225, 0.12762363255023956, 0.16209033131599426, 0.7942679524421692, 0.4367408752441406, -0.4584600329399109, -0.44880661368370056, 0.202590674161911, 4.53810977935791, -0.26411834359169006, 1.1114604473114014], "mean": [0.460536926984787, -0.10718806833028793, 0.12214242666959763, -1.3084394931793213, 0.4938869774341583, -0.03441344574093819, -0.48712366819381714, -0.4782867133617401, 0.19632171094417572, 3.7199018001556396, -0.740572988986969, 0.3130277991294861], "std": [0.06538214534521103, 0.049021076411008835, 0.0029672940727323294, 0.9037513732910156, 0.2235976755619049, 0.29246723651885986, 0.02570396289229393, 0.021274244412779808, 0.002032170770689845, 0.6069952845573425, 0.25687170028686523, 0.6833445429801941], "count": [513]}, "action": {"min": [-0.14267799258232117, -0.09504715353250504, 0.1065438985824585, -0.17955344915390015, -0.4049711525440216, -0.6334694027900696, -0.6420989036560059, 0.11178688704967499, -0.14969368278980255, 0.08196037262678146, -0.5057231783866882, -0.6125275492668152, -0.35129672288894653, -0.6121968030929565], "max": [-0.10973215103149414, -0.07571607083082199, 0.13176698982715607, 0.5851622223854065, 0.3760136365890503, 0.8668360710144043, 0.7672936320304871, 0.12304092943668365, -0.1394491344690323, 0.08949544280767441, 0.35654181241989136, 0.6954436302185059, 0.8219685554504395, 0.7469267845153809], "mean": [-0.12446866184473038, -0.08736690878868103, 0.11722936481237411, 0.36455827951431274, -0.08801814913749695, 0.5298725366592407, 0.03696831688284874, 0.11866411566734314, -0.1451488435268402, 0.08594765514135361, -0.2723827064037323, -0.13530272245407104, 0.44244584441185, 0.31960561871528625], "std": [0.01089509017765522, 0.006172545254230499, 0.008396204560995102, 0.24399670958518982, 0.24295394122600555, 0.5254864692687988, 0.4272250831127167, 0.0025607687421143055, 0.002767742844298482, 0.002436376176774502, 0.2777843475341797, 0.41514524817466736, 0.4003797173500061, 0.4469691514968872], "count": [513]}, "timestamp": {"min": [0.0], "max": [17.066666666666666], "mean": [8.533333333333333], "std": [4.936335422903047], "count": [513]}, "frame_index": {"min": [0], "max": [512], "mean": [256.0], "std": [148.09006268709143], "count": [513]}, "episode_index": {"min": [581], "max": [581], "mean": [581.0], "std": [0.0], "count": [513]}, "index": {"min": [325860], "max": [326372], "mean": [326116.0], "std": [148.09006268709143], "count": [513]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [513]}}} +{"episode_index": 582, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5176626879084967]], [[0.46760706427015253]], [[0.4087986819172113]]], "std": [[[0.2139253851267706]], [[0.21083302465035175]], [[0.21033213535183196]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.535580462962963]], [[0.4949076470588235]], [[0.440392848583878]]], "std": [[[0.2006085737650243]], [[0.18563326065258595]], [[0.1958223079277431]]], "count": [100]}, "observation.state": {"min": [0.3464263379573822, -0.19859008491039276, 0.11249593645334244, -2.4449846744537354, 0.08485127240419388, -0.4044817388057709, -0.523052990436554, -0.5004948973655701, 0.1876276135444641, 2.9553699493408203, -1.2025377750396729, -0.8231424689292908], "max": [0.5943492650985718, -0.030288560315966606, 0.13666008412837982, -1.488169550895691, 0.7527304887771606, 0.4095183312892914, -0.43679776787757874, -0.44791850447654724, 0.1982947736978531, 4.53810977935791, -0.5319259166717529, 1.3447142839431763], "mean": [0.49832049012184143, -0.0936179980635643, 0.1214330792427063, -1.9062074422836304, 0.41422539949417114, -0.10583826154470444, -0.49130117893218994, -0.48271337151527405, 0.1930013746023178, 3.6507747173309326, -0.8130613565444946, 0.44177526235580444], "std": [0.06693094223737717, 0.048372309654951096, 0.006193135865032673, 0.26319071650505066, 0.18134965002536774, 0.22627025842666626, 0.018707798793911934, 0.01727055385708809, 0.0025993555318564177, 0.5480028390884399, 0.1803707778453827, 0.7481688261032104], "count": [380]}, "action": {"min": [-0.14011462032794952, -0.09884993731975555, 0.10192517936229706, 0.3276604413986206, -0.45710891485214233, 0.71290522813797, -0.13718794286251068, 0.11531354486942291, -0.1456282138824463, 0.08175475895404816, -0.5303130149841309, -0.5917254090309143, -0.35201504826545715, -0.592695951461792], "max": [-0.10758043080568314, -0.07718797773122787, 0.13094879686832428, 0.6079962849617004, -0.04316477105021477, 0.9098013639450073, 0.21720010042190552, 0.12542612850666046, -0.13519027829170227, 0.08835601061582565, 0.46921414136886597, 0.6323040723800659, 0.8542481660842896, 0.6629682779312134], "mean": [-0.11896300315856934, -0.08516815304756165, 0.11482478678226471, 0.46954992413520813, -0.20959824323654175, 0.835680365562439, 0.028726879507303238, 0.11976514011621475, -0.14203433692455292, 0.08436514437198639, -0.290387898683548, -0.1992618888616562, 0.45753616094589233, 0.3550419509410858], "std": [0.009830845519900322, 0.004482342395931482, 0.01017241831868887, 0.08774536848068237, 0.11353038996458054, 0.07281351834535599, 0.10253752022981644, 0.0029844874516129494, 0.0023196518886834383, 0.0017264917260035872, 0.3194088637828827, 0.3798372745513916, 0.36076033115386963, 0.405128538608551], "count": [380]}, "timestamp": {"min": [0.0], "max": [12.633333333333333], "mean": [6.3166666666666655], "std": [3.6565390436555956], "count": [380]}, "frame_index": {"min": [0], "max": [379], "mean": [189.5], "std": [109.69617130966787], "count": [380]}, "episode_index": {"min": [582], "max": [582], "mean": [582.0], "std": [0.0], "count": [380]}, "index": {"min": [326373], "max": [326752], "mean": [326562.5], "std": [109.69617130966787], "count": [380]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [380]}}} +{"episode_index": 583, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5235095112924397]], [[0.47306128804178676]], [[0.4142540900418138]]], "std": [[[0.22070173384238506]], [[0.2169300335362318]], [[0.21662368407042143]]], "count": [161]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5421181545081801]], [[0.5009494005331602]], [[0.4460464096266526]]], "std": [[[0.20515940162323026]], [[0.19002117763330106]], [[0.20080726285044195]]], "count": [161]}, "observation.state": {"min": [0.31235364079475403, -0.16093403100967407, 0.1039002388715744, -2.25144100189209, -0.3943329453468323, -0.8725612759590149, -0.4924941062927246, -0.4765157997608185, 0.19119369983673096, 3.413961887359619, -1.0818878412246704, -0.5535097718238831], "max": [0.6369478106498718, 0.0031586000695824623, 0.13249638676643372, 0.12413644790649414, 0.7633880972862244, 0.33898255228996277, -0.45505431294441223, -0.446003258228302, 0.19560757279396057, 4.5383195877075195, -0.8765231370925903, 0.3834398686885834], "mean": [0.48104044795036316, -0.06977851688861847, 0.12078645825386047, -1.4168062210083008, 0.278717577457428, -0.12951882183551788, -0.4677569270133972, -0.4628908336162567, 0.1926559954881668, 4.041933059692383, -0.9652850031852722, -0.10908826440572739], "std": [0.0924774780869484, 0.05046756565570831, 0.007258182391524315, 0.7321216464042664, 0.3094237744808197, 0.2690716087818146, 0.013283430598676205, 0.009190566837787628, 0.001252243178896606, 0.45279985666275024, 0.053102947771549225, 0.3578547239303589], "count": [881]}, "action": {"min": [-0.14969946444034576, -0.09369408339262009, 0.1014074757695198, -0.19470393657684326, -0.3685636520385742, -0.6658578515052795, -0.6636524796485901, 0.11841268092393875, -0.14193014800548553, 0.08488735556602478, -0.4767691195011139, -0.34648844599723816, 0.5849344730377197, 0.4139593839645386], "max": [-0.10168197751045227, -0.06922804564237595, 0.13477128744125366, 0.5658313035964966, 0.33392247557640076, 0.9892511963844299, 0.7626724243164062, 0.12204304337501526, -0.1370718628168106, 0.08952713012695312, -0.31186431646347046, -0.18284821510314941, 0.7636985182762146, 0.6485148072242737], "mean": [-0.12284379452466965, -0.08150872588157654, 0.1187739372253418, 0.30078238248825073, -0.09180528670549393, 0.6507791876792908, 0.046091824769973755, 0.12091118097305298, -0.1396675407886505, 0.08659277111291885, -0.417635440826416, -0.26748889684677124, 0.683914840221405, 0.5176326632499695], "std": [0.014967560768127441, 0.006477981340140104, 0.0098258126527071, 0.21054530143737793, 0.18816126883029938, 0.524036705493927, 0.3480154573917389, 0.0008339484920725226, 0.0012180870398879051, 0.0016173450276255608, 0.05482390895485878, 0.054797057062387466, 0.0659477561712265, 0.08939706534147263], "count": [881]}, "timestamp": {"min": [0.0], "max": [29.333333333333332], "mean": [14.666666666666666], "std": [8.477420991472977], "count": [881]}, "frame_index": {"min": [0], "max": [880], "mean": [440.0], "std": [254.3226297441893], "count": [881]}, "episode_index": {"min": [583], "max": [583], "mean": [583.0], "std": [0.0], "count": [881]}, "index": {"min": [326753], "max": [327633], "mean": [327193.0], "std": [254.3226297441893], "count": [881]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [881]}}} +{"episode_index": 584, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5270244384790953]], [[0.47886065236279696]], [[0.41885103810042534]]], "std": [[[0.2107417672580307]], [[0.20612146093423742]], [[0.20681235494613415]]], "count": [168]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5379338802650689]], [[0.5003138632767922]], [[0.4450186789993775]]], "std": [[[0.19704505071088388]], [[0.18006028907406227]], [[0.19096406239508693]]], "count": [168]}, "observation.state": {"min": [0.3246559798717499, -0.09859613329172134, 0.10818318277597427, -2.9650158882141113, -0.06093987822532654, -0.9236518740653992, -0.6028133630752563, -0.49004602432250977, 0.18552890419960022, 3.0472142696380615, -0.7838835716247559, -0.5868952870368958], "max": [0.4914901554584503, 0.04767242819070816, 0.13016177713871002, -1.6693416833877563, 1.098694086074829, -0.030171679332852364, -0.5040009617805481, -0.4429064393043518, 0.20863009989261627, 4.5383195877075195, -0.22107785940170288, 0.8333755731582642], "mean": [0.41821205615997314, -0.05775250121951103, 0.11946485191583633, -2.142104148864746, 0.5640767812728882, -0.39836886525154114, -0.5592586398124695, -0.4664801061153412, 0.196085125207901, 3.8639166355133057, -0.4564781188964844, 0.05007006973028183], "std": [0.044131454080343246, 0.032915811985731125, 0.0048422543331980705, 0.26863721013069153, 0.37524208426475525, 0.15699642896652222, 0.030035629868507385, 0.014881894923746586, 0.0066367629915475845, 0.6327148675918579, 0.15907008945941925, 0.5291250944137573], "count": [929]}, "action": {"min": [-0.1427914947271347, -0.0904640480875969, 0.10616124421358109, 0.27140381932258606, -0.2319338172674179, 0.6845987439155579, -0.15205036103725433, 0.09992562979459763, -0.15463712811470032, 0.07364872843027115, -0.43933624029159546, -0.5819514989852905, 0.427977979183197, 0.21521882712841034], "max": [-0.11935340613126755, -0.06734902411699295, 0.13705262541770935, 0.7241805791854858, 0.0984027236700058, 0.9323059320449829, 0.3952418863773346, 0.11755894124507904, -0.13510513305664062, 0.08662641793489456, -0.09014035761356354, -0.19634254276752472, 0.9080350995063782, 0.6877995133399963], "mean": [-0.1311546117067337, -0.08280183374881744, 0.12051839381456375, 0.5237663984298706, -0.09448766708374023, 0.8121870160102844, 0.039162375032901764, 0.10814929753541946, -0.14279253780841827, 0.08198476582765579, -0.2873089909553528, -0.3957061171531677, 0.6701099276542664, 0.46001046895980835], "std": [0.006526743061840534, 0.004338521976023912, 0.007867551408708096, 0.1437591314315796, 0.07186926901340485, 0.08781493455171585, 0.14837591350078583, 0.005848821252584457, 0.005246112123131752, 0.0023344557266682386, 0.09112635999917984, 0.15108142793178558, 0.19535833597183228, 0.17583824694156647], "count": [929]}, "timestamp": {"min": [0.0], "max": [30.933333333333334], "mean": [15.466666666666667], "std": [8.939301488992925], "count": [929]}, "frame_index": {"min": [0], "max": [928], "mean": [464.0], "std": [268.17904466978774], "count": [929]}, "episode_index": {"min": [584], "max": [584], "mean": [584.0], "std": [0.0], "count": [929]}, "index": {"min": [327634], "max": [328562], "mean": [328098.0], "std": [268.17904466978774], "count": [929]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [929]}}} +{"episode_index": 585, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5263387196864173]], [[0.47773122924033]], [[0.4174497392764027]]], "std": [[[0.20931333437548785]], [[0.20486359394757436]], [[0.20548086526617595]]], "count": [122]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5376691578270653]], [[0.49987045965927357]], [[0.44424338369227473]]], "std": [[[0.1966501273208535]], [[0.17966289556588882]], [[0.19049816854129728]]], "count": [122]}, "observation.state": {"min": [0.35503721237182617, -0.11296813935041428, 0.11245445162057877, -2.840250253677368, 0.19252082705497742, -0.6467446684837341, -0.5860396027565002, -0.47884032130241394, 0.19055333733558655, 3.0124056339263916, -0.7448055744171143, -0.6622948050498962], "max": [0.5038619637489319, 0.04595797881484032, 0.13040028512477875, -1.6972304582595825, 1.1657825708389282, -0.043329279869794846, -0.5201414823532104, -0.34969305992126465, 0.2036030888557434, 4.540416240692139, -0.1751679927110672, 0.7655962109565735], "mean": [0.43607577681541443, -0.04137883335351944, 0.12282149493694305, -2.2208688259124756, 0.6010286808013916, -0.4394380748271942, -0.5559121370315552, -0.4506072402000427, 0.19663943350315094, 4.006657600402832, -0.47782468795776367, -0.051350001245737076], "std": [0.03767387196421623, 0.051895882934331894, 0.004892298486083746, 0.3272964060306549, 0.31520482897758484, 0.15990817546844482, 0.019561925902962685, 0.038694098591804504, 0.0037570956628769636, 0.6158038973808289, 0.15373563766479492, 0.518217921257019], "count": [610]}, "action": {"min": [-0.13989418745040894, -0.09135645627975464, 0.10971011966466904, 0.3656342327594757, -0.2319473922252655, 0.6678339242935181, -0.15098828077316284, 0.10292655229568481, -0.14831657707691193, 0.0789315328001976, -0.46335774660110474, -0.6376722455024719, 0.35111021995544434, 0.26541975140571594], "max": [-0.11576799303293228, -0.07122533023357391, 0.13748417794704437, 0.7073120474815369, 0.03825302794575691, 0.928740382194519, 0.2952832579612732, 0.11418676376342773, -0.12773092091083527, 0.0962158590555191, -0.15821856260299683, -0.16820478439331055, 0.8836663961410522, 0.6760686039924622], "mean": [-0.12713047862052917, -0.08204109221696854, 0.12318897992372513, 0.5590742826461792, -0.07518742233514786, 0.7952272295951843, 0.06287998706102371, 0.10725152492523193, -0.14155276119709015, 0.08399588614702225, -0.3110984265804291, -0.3687710165977478, 0.693790078163147, 0.4355035126209259], "std": [0.0055869887582957745, 0.005534665193408728, 0.007245512213557959, 0.12387686222791672, 0.07467438280582428, 0.09587053954601288, 0.12381234765052795, 0.003059252630919218, 0.005946955643594265, 0.004959133453667164, 0.09195706248283386, 0.16397540271282196, 0.1875571459531784, 0.16029761731624603], "count": [610]}, "timestamp": {"min": [0.0], "max": [20.3], "mean": [10.15], "std": [5.869719849457137], "count": [610]}, "frame_index": {"min": [0], "max": [609], "mean": [304.5], "std": [176.0915954837141], "count": [610]}, "episode_index": {"min": [585], "max": [585], "mean": [585.0], "std": [0.0], "count": [610]}, "index": {"min": [328563], "max": [329172], "mean": [328867.5], "std": [176.0915954837141], "count": [610]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [610]}}} +{"episode_index": 586, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5174200036559525]], [[0.469670688214403]], [[0.409876022174471]]], "std": [[[0.21244321708175143]], [[0.2076184532234915]], [[0.2073801738674693]]], "count": [146]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5280640164741696]], [[0.49152431021876025]], [[0.43634898491360014]]], "std": [[[0.2011606591234222]], [[0.18342017313450967]], [[0.19311647475676164]]], "count": [146]}, "observation.state": {"min": [0.3957977890968323, -0.11153171211481094, 0.11103761196136475, -3.0453269481658936, -0.07706298679113388, -0.627515971660614, -0.6068059802055359, -0.4945251941680908, 0.18918316066265106, 3.1679956912994385, -0.7997334003448486, -0.7304714918136597], "max": [0.5130751729011536, 0.04203483834862709, 0.131601944565773, -1.7938975095748901, 1.005371332168579, -0.2696264386177063, -0.5077928304672241, -0.4648853540420532, 0.2039491832256317, 4.53810977935791, -0.42097705602645874, 0.44559550285339355], "mean": [0.4645653963088989, -0.042593419551849365, 0.12108366191387177, -2.2728400230407715, 0.38514381647109985, -0.41717755794525146, -0.568682074546814, -0.4803709089756012, 0.19673661887645721, 4.012667655944824, -0.6071789860725403, -0.17769092321395874], "std": [0.025816744193434715, 0.05103902891278267, 0.004986107349395752, 0.38721412420272827, 0.23489736020565033, 0.0809117928147316, 0.024187739938497543, 0.009198908694088459, 0.004587232600897551, 0.4838430881500244, 0.0775756761431694, 0.38153761625289917], "count": [770]}, "action": {"min": [-0.13370342552661896, -0.09040284901857376, 0.10704980045557022, 0.30122604966163635, -0.15474092960357666, 0.6843580007553101, -0.13133777678012848, 0.09992773830890656, -0.14859993755817413, 0.07391629368066788, -0.4027860760688782, -0.5057846307754517, 0.516292154788971, 0.3039577305316925], "max": [-0.11892438679933548, -0.07190828025341034, 0.13885465264320374, 0.6556771397590637, 0.04220909625291824, 0.9411715269088745, 0.478676438331604, 0.11559596657752991, -0.13682183623313904, 0.08308954536914825, -0.21306192874908447, -0.14800836145877838, 0.8802632093429565, 0.6894481778144836], "mean": [-0.12446413934230804, -0.0804283395409584, 0.12170756608247757, 0.4903917908668518, -0.05073075741529465, 0.830062985420227, 0.1256571114063263, 0.10622557252645493, -0.14326177537441254, 0.07913175225257874, -0.31434160470962524, -0.32473811507225037, 0.7290169596672058, 0.4693964123725891], "std": [0.002669011242687702, 0.004879474639892578, 0.008860898204147816, 0.10007154941558838, 0.04910639300942421, 0.08754590898752213, 0.17904429137706757, 0.004362494684755802, 0.003295265370979905, 0.0019611436873674393, 0.052772387862205505, 0.10369600355625153, 0.11640782654285431, 0.12979744374752045], "count": [770]}, "timestamp": {"min": [0.0], "max": [25.633333333333333], "mean": [12.816666666666665], "std": [7.409322206218025], "count": [770]}, "frame_index": {"min": [0], "max": [769], "mean": [384.5], "std": [222.27966618654077], "count": [770]}, "episode_index": {"min": [586], "max": [586], "mean": [586.0], "std": [0.0], "count": [770]}, "index": {"min": [329173], "max": [329942], "mean": [329557.5], "std": [222.27966618654077], "count": [770]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [770]}}} +{"episode_index": 587, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5028835831267373]], [[0.45495001126887535]], [[0.39630866576515666]]], "std": [[[0.2150269581760289]], [[0.20964394081330812]], [[0.207774477431609]]], "count": [145]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5170660412440838]], [[0.4805158177447224]], [[0.4259137743219893]]], "std": [[[0.2043933287479553]], [[0.18654302280066462]], [[0.19489004757041709]]], "count": [145]}, "observation.state": {"min": [0.4286039471626282, -0.12455224245786667, 0.12194070219993591, -3.032116651535034, 0.274639368057251, -0.7251637578010559, -0.6054390668869019, -0.4985641837120056, 0.18283911049365997, 3.4017999172210693, -0.7551899552345276, -0.9571760296821594], "max": [0.5433251261711121, 0.041200779378414154, 0.1518149971961975, -1.5242362022399902, 0.9162843823432922, -0.11106333881616592, -0.4761373698711395, -0.44591832160949707, 0.1981871873140335, 4.53810977935791, 0.02432130090892315, 0.09310483932495117], "mean": [0.5029392242431641, -0.0594707690179348, 0.1292068362236023, -2.094517946243286, 0.6255778074264526, -0.37175554037094116, -0.5528436303138733, -0.4700816571712494, 0.19057728350162506, 4.219025611877441, -0.4473569393157959, -0.4551002085208893], "std": [0.01596682518720627, 0.0475621223449707, 0.0073957317508757114, 0.4471234381198883, 0.17203262448310852, 0.1621195524930954, 0.04092034697532654, 0.015191705897450447, 0.0044260574504733086, 0.36328741908073425, 0.19949239492416382, 0.29901906847953796], "count": [764]}, "action": {"min": [-0.1260158121585846, -0.09132758527994156, 0.1111203208565712, 0.31787577271461487, -0.2208196222782135, 0.6352357268333435, -0.25152453780174255, 0.10338503122329712, -0.14450378715991974, 0.07403291761875153, -0.4376857876777649, -0.4602397382259369, 0.6374765634536743, 0.24631772935390472], "max": [-0.10214237868785858, -0.07193782180547714, 0.14413732290267944, 0.7305564880371094, 0.0367484949529171, 0.9220961928367615, 0.4235735535621643, 0.12384504079818726, -0.13397344946861267, 0.08351662009954453, -0.07073453813791275, -0.07209885865449905, 0.9621206521987915, 0.6446886658668518], "mean": [-0.11397678405046463, -0.08486472070217133, 0.12180248647928238, 0.5620962381362915, -0.11129185557365417, 0.7823584079742432, 0.00851440615952015, 0.11114340275526047, -0.13934050500392914, 0.07853636145591736, -0.2605033218860626, -0.2525399625301361, 0.8236252665519714, 0.38190028071403503], "std": [0.00459960987791419, 0.004693715833127499, 0.008949888870120049, 0.10623176395893097, 0.07103101164102554, 0.08433528244495392, 0.18989692628383636, 0.006573652382940054, 0.002904323162510991, 0.0019729810301214457, 0.10664481669664383, 0.10567717254161835, 0.09380120784044266, 0.11320724338293076], "count": [764]}, "timestamp": {"min": [0.0], "max": [25.433333333333334], "mean": [12.716666666666669], "std": [7.351587130227958], "count": [764]}, "frame_index": {"min": [0], "max": [763], "mean": [381.5], "std": [220.54761390683873], "count": [764]}, "episode_index": {"min": [587], "max": [587], "mean": [587.0], "std": [0.0], "count": [764]}, "index": {"min": [329943], "max": [330706], "mean": [330324.5], "std": [220.54761390683873], "count": [764]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [764]}}} +{"episode_index": 588, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48962508424632845]], [[0.44182599606589235]], [[0.38291392572216737]]], "std": [[[0.22143630631602862]], [[0.2154262969175726]], [[0.21312840233877964]]], "count": [139]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5059548518048307]], [[0.4688632290246234]], [[0.4139868438582467]]], "std": [[[0.2105679460579665]], [[0.19316566111192982]], [[0.20063926450340827]]], "count": [139]}, "observation.state": {"min": [0.4455244541168213, -0.11475209146738052, 0.12424031645059586, -3.057069778442383, 0.12228967249393463, -0.5824012160301208, -0.5692735314369202, -0.4960156977176666, 0.18813574314117432, 3.3179240226745605, -1.015619158744812, -1.0111631155014038], "max": [0.5573264360427856, 0.03024994023144245, 0.1517670452594757, -1.65361487865448, 0.9391026496887207, 0.16204488277435303, -0.45398858189582825, -0.44023439288139343, 0.19994236528873444, 4.537899971008301, 0.2745027244091034, 0.05465487018227577], "mean": [0.5208659768104553, -0.062385618686676025, 0.13443495333194733, -2.2019269466400146, 0.6512866616249084, -0.21696561574935913, -0.5317083597183228, -0.47295090556144714, 0.19556699693202972, 3.978651523590088, -0.5732573866844177, -0.4912377893924713], "std": [0.017831550911068916, 0.04495983570814133, 0.005167949013411999, 0.4550198018550873, 0.21371904015541077, 0.1680430918931961, 0.03457628935575485, 0.01565477065742016, 0.0026946712750941515, 0.39298540353775024, 0.372344970703125, 0.2994993329048157], "count": [722]}, "action": {"min": [-0.11826842278242111, -0.09447404742240906, 0.11365558207035065, 0.32527419924736023, -0.30389508605003357, 0.5567933320999146, -0.17418475449085236, 0.10738200694322586, -0.14876361191272736, 0.07956244796514511, -0.45561763644218445, -0.3114203214645386, 0.6490759253501892, 0.09627705812454224], "max": [-0.10298117250204086, -0.07296289503574371, 0.1413155347108841, 0.7467688918113708, -0.025467710569500923, 0.9417599439620972, 0.4114379286766052, 0.12343049049377441, -0.13785849511623383, 0.08972222357988358, -0.04150442034006119, -0.021149346604943275, 0.9942482113838196, 0.7105972170829773], "mean": [-0.10913975536823273, -0.08748651295900345, 0.12367524206638336, 0.5885775089263916, -0.17584139108657837, 0.7465484142303467, 0.09118813276290894, 0.11231768131256104, -0.14288738369941711, 0.08300848305225372, -0.19584500789642334, -0.1887989044189453, 0.7881807088851929, 0.48188450932502747], "std": [0.0032955545466393232, 0.004884909838438034, 0.006384238135069609, 0.09421246498823166, 0.05962749943137169, 0.09921478480100632, 0.186364084482193, 0.004294469952583313, 0.002670722547918558, 0.0026933348271995783, 0.13534100353717804, 0.0850810557603836, 0.10912466794252396, 0.1873336136341095], "count": [722]}, "timestamp": {"min": [0.0], "max": [24.033333333333335], "mean": [12.016666666666666], "std": [6.94744157546103], "count": [722]}, "frame_index": {"min": [0], "max": [721], "mean": [360.5], "std": [208.42324726383092], "count": [722]}, "episode_index": {"min": [588], "max": [588], "mean": [588.0], "std": [0.0], "count": [722]}, "index": {"min": [330707], "max": [331428], "mean": [331067.5], "std": [208.42324726383092], "count": [722]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [722]}}} +{"episode_index": 589, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5244588200528438]], [[0.4755567163429596]], [[0.4159145111945487]]], "std": [[[0.21077753600360008]], [[0.20837000658452637]], [[0.2094154404690087]]], "count": [141]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5395896355784237]], [[0.5001623016424852]], [[0.44546582533722706]]], "std": [[[0.19466928617152562]], [[0.1808206547913812]], [[0.19172986395136912]]], "count": [141]}, "observation.state": {"min": [0.33843332529067993, -0.12781895697116852, 0.11387260258197784, -3.21349835395813, 0.01134082954376936, -0.948779284954071, -0.579004168510437, -0.5066112875938416, 0.1877753734588623, 3.3418285846710205, -1.0277796983718872, -0.7238807678222656], "max": [0.5512409210205078, 0.03693782910704613, 0.13436824083328247, -1.095420241355896, 1.2924447059631348, 0.2618049681186676, -0.4827866554260254, -0.4216998219490051, 0.19627515971660614, 4.5383195877075195, -0.5127967596054077, 0.705733597278595], "mean": [0.4670323431491852, -0.052354197949171066, 0.12767350673675537, -2.0908544063568115, 0.9329124689102173, -0.29284048080444336, -0.5259895920753479, -0.4715259373188019, 0.19193939864635468, 3.918260097503662, -0.792111337184906, 0.04007170721888542], "std": [0.05840986222028732, 0.05309499055147171, 0.005387898534536362, 0.7401736974716187, 0.2863176465034485, 0.36279016733169556, 0.023934287950396538, 0.024798916652798653, 0.002521284855902195, 0.45620012283325195, 0.15532104671001434, 0.5347580909729004], "count": [735]}, "action": {"min": [-0.13745757937431335, -0.09183908253908157, 0.10557175427675247, 0.49589329957962036, -0.3406449258327484, 0.559902012348175, -0.3420308232307434, 0.10465259104967117, -0.14455506205558777, 0.07251649349927902, -0.5076019167900085, -0.5535058975219727, 0.5009128451347351, 0.335443377494812], "max": [-0.10919781774282455, -0.07285690307617188, 0.1346452534198761, 0.7985733151435852, 0.13951461017131805, 0.7833596467971802, 0.4834977090358734, 0.1182066798210144, -0.13237211108207703, 0.08884554356336594, -0.2800368666648865, -0.15974174439907074, 0.8623902797698975, 0.5975410342216492], "mean": [-0.11989220976829529, -0.08262065052986145, 0.12219631671905518, 0.6713487505912781, -0.12212720513343811, 0.6558031439781189, -0.028856363147497177, 0.1139821782708168, -0.13872185349464417, 0.08193524181842804, -0.3915998935699463, -0.3350996673107147, 0.6634191870689392, 0.5010250210762024], "std": [0.007974471896886826, 0.005023705307394266, 0.007896225899457932, 0.08123312145471573, 0.133865088224411, 0.06730029731988907, 0.2727961540222168, 0.0035011456348001957, 0.0030784092377871275, 0.005676871165633202, 0.06502213329076767, 0.12206250429153442, 0.12436935305595398, 0.09279623627662659], "count": [735]}, "timestamp": {"min": [0.0], "max": [24.466666666666665], "mean": [12.233333333333333], "std": [7.0725342516484675], "count": [735]}, "frame_index": {"min": [0], "max": [734], "mean": [367.0], "std": [212.176027549454], "count": [735]}, "episode_index": {"min": [589], "max": [589], "mean": [589.0], "std": [0.0], "count": [735]}, "index": {"min": [331429], "max": [332163], "mean": [331796.0], "std": [212.176027549454], "count": [735]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [735]}}} +{"episode_index": 590, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5167096623093682]], [[0.4672325907770516]], [[0.4078011292665214]]], "std": [[[0.2122989768316512]], [[0.20905501909656724]], [[0.20925038973713753]]], "count": [150]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5340829575163399]], [[0.49408587145969496]], [[0.43911482752360204]]], "std": [[[0.19620391498138823]], [[0.18119793982161336]], [[0.19166137509914644]]], "count": [150]}, "observation.state": {"min": [0.35065069794654846, -0.12653698027133942, 0.12037867307662964, -3.0822324752807617, 0.5895864963531494, -0.2946860194206238, -0.5574654936790466, -0.5245434641838074, 0.1822013407945633, 3.1375906467437744, -0.986652135848999, -0.630978524684906], "max": [0.5661226511001587, 0.011769440025091171, 0.14833964407444, -0.596987247467041, 1.1905138492584229, 0.5683799386024475, -0.4530155062675476, -0.42494338750839233, 0.19791756570339203, 4.542303562164307, -0.26343515515327454, 0.7969033122062683], "mean": [0.47697895765304565, -0.06920221447944641, 0.128963902592659, -1.8709584474563599, 0.9132107496261597, 0.08370517939329147, -0.5241872668266296, -0.47955551743507385, 0.19199253618717194, 3.884859085083008, -0.6410067677497864, 0.12529534101486206], "std": [0.052847906947135925, 0.03877675533294678, 0.007814155891537666, 0.6435828804969788, 0.19208750128746033, 0.23673053085803986, 0.025595592334866524, 0.022577820345759392, 0.003457086393609643, 0.4760110676288605, 0.20808783173561096, 0.4909902513027191], "count": [800]}, "action": {"min": [-0.13634909689426422, -0.09277105331420898, 0.10885771363973618, 0.44153711199760437, -0.4091825783252716, 0.5483644008636475, -0.4489614963531494, 0.1111108586192131, -0.14874762296676636, 0.07513368874788284, -0.47343868017196655, -0.5788137912750244, -0.5687931776046753, -0.5813344717025757], "max": [-0.09900090098381042, -0.078489288687706, 0.13716144859790802, 0.753858745098114, -0.15675027668476105, 0.8054119944572449, 0.44239646196365356, 0.12522614002227783, -0.13148704171180725, 0.08809942752122879, 0.32741159200668335, 0.6641660928726196, 0.8528035879135132, 0.6819057464599609], "mean": [-0.11737142503261566, -0.08514868468046188, 0.12105563282966614, 0.6334035396575928, -0.2778322994709015, 0.6634483337402344, -0.006655945908278227, 0.11472032219171524, -0.1410384327173233, 0.08077025413513184, -0.23285788297653198, -0.11272874474525452, 0.43785521388053894, 0.2282308042049408], "std": [0.009252943098545074, 0.002698380034416914, 0.007887883111834526, 0.09506948292255402, 0.06896645575761795, 0.088751420378685, 0.2443980723619461, 0.0037830329965800047, 0.003693889593705535, 0.002770659513771534, 0.26273420453071594, 0.42570000886917114, 0.4935136139392853, 0.4421065151691437], "count": [800]}, "timestamp": {"min": [0.0], "max": [26.633333333333333], "mean": [13.316666666666665], "std": [7.697997575127356], "count": [800]}, "frame_index": {"min": [0], "max": [799], "mean": [399.5], "std": [230.9399272538207], "count": [800]}, "episode_index": {"min": [590], "max": [590], "mean": [590.0], "std": [0.0], "count": [800]}, "index": {"min": [332164], "max": [332963], "mean": [332563.5], "std": [230.9399272538207], "count": [800]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [800]}}} +{"episode_index": 591, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5127644547968911]], [[0.46414296419907597]], [[0.40277275413711583]]], "std": [[[0.20579662396202492]], [[0.20145512586737693]], [[0.20169523241362647]]], "count": [141]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5213638247655248]], [[0.4832019963225637]], [[0.4268603037747802]]], "std": [[[0.19680977908664335]], [[0.17906134909464141]], [[0.18910999238709802]]], "count": [141]}, "observation.state": {"min": [0.3017657995223999, -0.14540360867977142, 0.1190175712108612, -3.1245899200439453, 0.23665441572666168, -1.285460114479065, -0.5865106582641602, -0.5291153192520142, 0.19225017726421356, 3.2080464363098145, -1.0194449424743652, -0.6083551645278931], "max": [0.5256015062332153, -0.007606890052556992, 0.13592638075351715, -0.41141167283058167, 1.4719849824905396, 1.052109956741333, -0.5113993883132935, -0.45238223671913147, 0.21017268300056458, 4.53810977935791, -0.13581667840480804, 0.8323829174041748], "mean": [0.42985105514526367, -0.09284054487943649, 0.12749406695365906, -1.4554893970489502, 0.9724645614624023, 0.18998688459396362, -0.5593794584274292, -0.4848223328590393, 0.19837483763694763, 3.689354419708252, -0.6912102103233337, 0.2357138842344284], "std": [0.047834426164627075, 0.03652981296181679, 0.0036384519189596176, 0.7709795236587524, 0.3455875813961029, 0.5118384957313538, 0.01990055851638317, 0.01920142024755478, 0.0043912241235375404, 0.38124242424964905, 0.22766050696372986, 0.35720115900039673], "count": [734]}, "action": {"min": [-0.14488551020622253, -0.09126707166433334, 0.10964459180831909, 0.40673741698265076, -0.48222124576568604, 0.4976099133491516, -0.4606578052043915, 0.09827658534049988, -0.15147492289543152, 0.07319263368844986, -0.5024663805961609, -0.5616323947906494, -0.5271414518356323, -0.6022675037384033], "max": [-0.11069530993700027, -0.07920895516872406, 0.1320512443780899, 0.8066282868385315, -0.03689302131533623, 0.8332094550132751, 0.5808318257331848, 0.11617131531238556, -0.1400042027235031, 0.08910348266363144, 0.34466904401779175, 0.6818200349807739, 0.8113358616828918, 0.6378299593925476], "mean": [-0.12549173831939697, -0.08655551075935364, 0.12251076847314835, 0.6072764992713928, -0.21496134996414185, 0.6683067083358765, -0.15127135813236237, 0.10739151388406754, -0.14429134130477905, 0.0810139998793602, -0.2752530872821808, -0.23670098185539246, 0.48295143246650696, 0.37563732266426086], "std": [0.007346570957452059, 0.0024332161992788315, 0.004207651596516371, 0.10984253138303757, 0.10871681571006775, 0.09979233890771866, 0.28573867678642273, 0.00362778571434319, 0.0033428033348172903, 0.003868532134220004, 0.21433110535144806, 0.3763900101184845, 0.37746527791023254, 0.4046926498413086], "count": [734]}, "timestamp": {"min": [0.0], "max": [24.433333333333334], "mean": [12.216666666666667], "std": [7.0629117382438125], "count": [734]}, "frame_index": {"min": [0], "max": [733], "mean": [366.5], "std": [211.88735214731435], "count": [734]}, "episode_index": {"min": [591], "max": [591], "mean": [591.0], "std": [0.0], "count": [734]}, "index": {"min": [332964], "max": [333697], "mean": [333330.5], "std": [211.88735214731435], "count": [734]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [734]}}} +{"episode_index": 592, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.506846308499113]], [[0.45921865066609524]], [[0.39890779283783945]]], "std": [[[0.20938102058078606]], [[0.20467083531270017]], [[0.20391602202454018]]], "count": [183]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5170041965784492]], [[0.48059350482755336]], [[0.4248077699203543]]], "std": [[[0.19936348277497246]], [[0.1819622359765099]], [[0.19101482116414878]]], "count": [183]}, "observation.state": {"min": [0.389936238527298, -0.16781498491764069, 0.11728443205356598, -3.1646406650543213, 0.24403278529644012, -0.467060923576355, -0.6146600246429443, -0.49360617995262146, 0.1909486949443817, 3.108863115310669, -1.0001791715621948, -0.9989012479782104], "max": [0.565265417098999, -0.0220638494938612, 0.1339145302772522, -0.7257369160652161, 1.0779253244400024, 0.5726038813591003, -0.5064413547515869, -0.4022848904132843, 0.2157752513885498, 4.539158344268799, -0.21479257941246033, 1.2309669256210327], "mean": [0.46027979254722595, -0.10965560376644135, 0.12300346791744232, -1.7701106071472168, 0.8267998695373535, -0.009297390468418598, -0.5522413849830627, -0.45826005935668945, 0.20028354227542877, 3.963101387023926, -0.6024768948554993, 0.25606101751327515], "std": [0.05022413283586502, 0.03406425192952156, 0.0039620790630578995, 0.716647744178772, 0.2816406190395355, 0.3088997006416321, 0.027586571872234344, 0.0262564979493618, 0.005298043135553598, 0.5951244831085205, 0.22605352103710175, 0.6775432229042053], "count": [1043]}, "action": {"min": [-0.13214963674545288, -0.0956602543592453, 0.10783464461565018, 0.46652886271476746, -0.43724149465560913, 0.6210700273513794, -0.5479243397712708, 0.08732537925243378, -0.14899109303951263, 0.07671181857585907, -0.5821255445480347, -0.6040188074111938, -0.5189781785011292, -0.6046056151390076], "max": [-0.11117345094680786, -0.07892667502164841, 0.13053004443645477, 0.6594605445861816, -0.059971291571855545, 0.797886848449707, 0.5804616808891296, 0.11579319089651108, -0.13571183383464813, 0.0942496806383133, 0.5202134251594543, 0.66778963804245, 0.9343822002410889, 0.6115237474441528], "mean": [-0.12264493852853775, -0.087098129093647, 0.1155119389295578, 0.5833725333213806, -0.20490755140781403, 0.7007462382316589, -0.07454198598861694, 0.10615543276071548, -0.14430634677410126, 0.08495713025331497, -0.10703307390213013, 0.08367367088794708, 0.25788915157318115, -0.018813835456967354], "std": [0.006271461024880409, 0.004436257295310497, 0.0048875706270337105, 0.049197982996702194, 0.09819415211677551, 0.04649980366230011, 0.32689806818962097, 0.007478179410099983, 0.003067166544497013, 0.003557037329301238, 0.41094744205474854, 0.4656746983528137, 0.578249454498291, 0.44111084938049316], "count": [1043]}, "timestamp": {"min": [0.0], "max": [34.733333333333334], "mean": [17.366666666666667], "std": [10.03626756651429], "count": [1043]}, "frame_index": {"min": [0], "max": [1042], "mean": [521.0], "std": [301.0880269954287], "count": [1043]}, "episode_index": {"min": [592], "max": [592], "mean": [592.0], "std": [0.0], "count": [1043]}, "index": {"min": [333698], "max": [334740], "mean": [334219.0], "std": [301.0880269954287], "count": [1043]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1043]}}} +{"episode_index": 593, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5266583351045929]], [[0.4758202038719734]], [[0.4151843681917211]]], "std": [[[0.20230360538664902]], [[0.20161495521290237]], [[0.20289387113874136]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5421289875480454]], [[0.5004822276245638]], [[0.4448741940769081]]], "std": [[[0.18851325849610684]], [[0.17464762815609317]], [[0.18638151779926637]]], "count": [123]}, "observation.state": {"min": [0.30913326144218445, -0.1526629775762558, 0.1144637018442154, -3.247258424758911, -0.5524213910102844, -0.25485971570014954, -0.5875609517097473, -0.5350309014320374, 0.18928945064544678, 2.999824285507202, -1.022587537765503, -0.6520325541496277], "max": [0.5140791535377502, -0.04764154180884361, 0.13035622239112854, -0.60390704870224, 1.415280818939209, 1.10464608669281, -0.4932200610637665, -0.4843543469905853, 0.19863569736480713, 4.537899971008301, 0.18609890341758728, 1.2371916770935059], "mean": [0.44052132964134216, -0.10195422917604446, 0.1250171959400177, -1.913878321647644, 0.5824581980705261, 0.22691349685192108, -0.527681827545166, -0.5067602396011353, 0.1928410679101944, 3.8504269123077393, -0.6267098188400269, 0.29125773906707764], "std": [0.06294415891170502, 0.027843739837408066, 0.0041385977528989315, 0.9227482676506042, 0.7686581611633301, 0.4117150604724884, 0.02560427039861679, 0.013071269728243351, 0.002343465806916356, 0.624785304069519, 0.38527652621269226, 0.6904998421669006], "count": [613]}, "action": {"min": [-0.14369870722293854, -0.0935370922088623, 0.1092570498585701, 0.21299001574516296, -0.42766398191452026, 0.4503178298473358, -0.45053836703300476, 0.1083107441663742, -0.14826159179210663, 0.07279853522777557, -0.5009089708328247, -0.6540979146957397, -0.519706666469574, -0.6566400527954102], "max": [-0.11520379036664963, -0.07786060869693756, 0.13687357306480408, 0.8031883239746094, 0.18094386160373688, 0.8968245387077332, 0.6285275816917419, 0.11816339194774628, -0.1414204090833664, 0.07853478938341141, 0.47917628288269043, 0.778045654296875, 0.7935084104537964, 0.6590861082077026], "mean": [-0.1255480945110321, -0.08578845858573914, 0.12017834931612015, 0.5197689533233643, -0.15294747054576874, 0.6700435280799866, 0.08160947263240814, 0.11503268778324127, -0.14459659159183502, 0.0759330466389656, -0.2296009212732315, -0.017395200207829475, 0.39703378081321716, 0.1273396611213684], "std": [0.008319662883877754, 0.0030624736100435257, 0.008110135793685913, 0.21696466207504272, 0.2125798463821411, 0.11632975190877914, 0.38083115220069885, 0.002404014812782407, 0.001907798694446683, 0.0012217494659125805, 0.32642868161201477, 0.49516424536705017, 0.43479761481285095, 0.48201364278793335], "count": [613]}, "timestamp": {"min": [0.0], "max": [20.4], "mean": [10.2], "std": [5.898587401516852], "count": [613]}, "frame_index": {"min": [0], "max": [612], "mean": [306.0], "std": [176.95762204550556], "count": [613]}, "episode_index": {"min": [593], "max": [593], "mean": [593.0], "std": [0.0], "count": [613]}, "index": {"min": [334741], "max": [335353], "mean": [335047.0], "std": [176.95762204550556], "count": [613]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [613]}}} +{"episode_index": 594, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5275641636771667]], [[0.4762017625763756]], [[0.4130987087817583]]], "std": [[[0.19801214725870153]], [[0.19719564696264638]], [[0.1985266406051402]]], "count": [133]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5382766618343243]], [[0.4963813086638164]], [[0.43847209936606224]]], "std": [[[0.1868594922903132]], [[0.17234266324976394]], [[0.1842327365438241]]], "count": [133]}, "observation.state": {"min": [0.3448740839958191, -0.16090314090251923, 0.11780942976474762, -3.3393123149871826, 0.2996438443660736, -0.6356417536735535, -0.594936192035675, -0.5270301699638367, 0.19176147878170013, 3.143881320953369, -0.8027394413948059, -0.7348260879516602], "max": [0.5153533816337585, -0.03508438169956207, 0.1424233764410019, -1.3155946731567383, 0.7609286904335022, -0.0011380696669220924, -0.47325679659843445, -0.46962711215019226, 0.2097591757774353, 4.53810977935791, -0.16915598511695862, 0.47880539298057556], "mean": [0.42384660243988037, -0.11531464010477066, 0.1278119683265686, -1.9649103879928589, 0.4914957880973816, -0.26877108216285706, -0.550636887550354, -0.5011680126190186, 0.2000589519739151, 3.890815019607544, -0.5132906436920166, -0.18354955315589905], "std": [0.05081199109554291, 0.035087794065475464, 0.007111217360943556, 0.6452082395553589, 0.1477092206478119, 0.1316991001367569, 0.028651971369981766, 0.017484871670603752, 0.004584731999784708, 0.5843963623046875, 0.17783577740192413, 0.4710129499435425], "count": [680]}, "action": {"min": [-0.13621503114700317, -0.10375377535820007, 0.10875915735960007, 0.2681281566619873, -0.27717384696006775, 0.5693721771240234, -0.26437607407569885, 0.09903348982334137, -0.1560857743024826, 0.07710104435682297, -0.3415378928184509, -0.5448228716850281, 0.4920588731765747, 0.21890035271644592], "max": [-0.11022941023111343, -0.08872957527637482, 0.1346161961555481, 0.6605621576309204, -0.01767437718808651, 0.9277023077011108, 0.6491184234619141, 0.11995421350002289, -0.1440274566411972, 0.0842367559671402, -0.14845827221870422, -0.1502659171819687, 0.9330429434776306, 0.6856305599212646], "mean": [-0.1272651106119156, -0.09447845071554184, 0.12224552780389786, 0.44556039571762085, -0.15935377776622772, 0.8147615194320679, 0.003296508453786373, 0.10902457684278488, -0.14957283437252045, 0.07950977981090546, -0.24228538572788239, -0.31656578183174133, 0.7240314483642578, 0.48679086565971375], "std": [0.007868402637541294, 0.004362933803349733, 0.007406751159578562, 0.11215363442897797, 0.061574537307024, 0.1124444529414177, 0.28848108649253845, 0.004834975581616163, 0.00306070689111948, 0.0015611109556630254, 0.05848880857229233, 0.14078229665756226, 0.15849167108535767, 0.1775878518819809], "count": [680]}, "timestamp": {"min": [0.0], "max": [22.633333333333333], "mean": [11.316666666666666], "std": [6.543295975440987], "count": [680]}, "frame_index": {"min": [0], "max": [679], "mean": [339.5], "std": [196.29887926322962], "count": [680]}, "episode_index": {"min": [594], "max": [594], "mean": [594.0], "std": [0.0], "count": [680]}, "index": {"min": [335354], "max": [336033], "mean": [335693.5], "std": [196.29887926322962], "count": [680]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [680]}}} +{"episode_index": 595, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5173095348421292]], [[0.46598439786362306]], [[0.4041199639059604]]], "std": [[[0.2048626350191475]], [[0.20359316278801948]], [[0.20425545256122102]]], "count": [134]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5329401582772412]], [[0.4905868451858355]], [[0.43283653220823987]]], "std": [[[0.19072654627581936]], [[0.17643525676647961]], [[0.1885317549979382]]], "count": [134]}, "observation.state": {"min": [0.3503186106681824, -0.15443921089172363, 0.11236242204904556, -3.220627784729004, -0.052878331393003464, -0.8647639751434326, -0.5322893857955933, -0.5223038792610168, 0.19434238970279694, 3.61211895942688, -0.9537227749824524, -0.2334161102771759], "max": [0.5339574813842773, -0.01932227984070778, 0.1481776088476181, -1.692407488822937, 0.9709389805793762, -0.08710314333438873, -0.4770023226737976, -0.4893741309642792, 0.20349159836769104, 4.320032119750977, -0.5391676425933838, 0.41352277994155884], "mean": [0.4690350890159607, -0.10247597098350525, 0.13078413903713226, -2.235619306564331, 0.4299617111682892, -0.37847837805747986, -0.4953572154045105, -0.5072335600852966, 0.19993306696414948, 4.057783603668213, -0.7380269169807434, -0.03487256169319153], "std": [0.029522696509957314, 0.043647296726703644, 0.009043128229677677, 0.5189839005470276, 0.2217089831829071, 0.18304027616977692, 0.013599520549178123, 0.007408670149743557, 0.0035404623486101627, 0.21382801234722137, 0.12039118260145187, 0.1749822199344635], "count": [690]}, "action": {"min": [-0.13727694749832153, -0.10780537128448486, 0.11014575511217117, 0.4038543105125427, -0.2540239691734314, 0.6619486808776855, -0.21774275600910187, 0.11039149016141891, -0.15509016811847687, 0.07945932447910309, -0.4268420934677124, -0.5339662432670593, 0.6048021912574768, 0.4006839096546173], "max": [-0.11317074298858643, -0.07271528989076614, 0.13523848354816437, 0.58186274766922, 0.07349648326635361, 0.9052520990371704, 0.5850068926811218, 0.11927060782909393, -0.14573051035404205, 0.08505267649888992, -0.2675134837627411, -0.3133641481399536, 0.7722853422164917, 0.5901890397071838], "mean": [-0.11921317130327225, -0.09314019232988358, 0.12263571470975876, 0.5013291239738464, -0.07829336822032928, 0.804442286491394, 0.09579787403345108, 0.11560681462287903, -0.1507491171360016, 0.08169694244861603, -0.3549720346927643, -0.3827666938304901, 0.7142010927200317, 0.45485571026802063], "std": [0.00361720472574234, 0.008922531269490719, 0.007597910240292549, 0.04700852558016777, 0.09878557175397873, 0.07031221687793732, 0.26329243183135986, 0.0024550631642341614, 0.0034604889806360006, 0.0013654589420184493, 0.054076507687568665, 0.06163957342505455, 0.04110391065478325, 0.0457674078643322], "count": [690]}, "timestamp": {"min": [0.0], "max": [22.966666666666665], "mean": [11.483333333333333], "std": [6.639521122847697], "count": [690]}, "frame_index": {"min": [0], "max": [689], "mean": [344.5], "std": [199.1856336854309], "count": [690]}, "episode_index": {"min": [595], "max": [595], "mean": [595.0], "std": [0.0], "count": [690]}, "index": {"min": [336034], "max": [336723], "mean": [336378.5], "std": [199.1856336854309], "count": [690]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [690]}}} +{"episode_index": 596, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5095269891067538]], [[0.46174131154684095]], [[0.4005789193899782]]], "std": [[[0.21029947948602293]], [[0.20566515832595614]], [[0.2051817270252476]]], "count": [125]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5181561808278866]], [[0.4810472549019608]], [[0.42438058605664486]]], "std": [[[0.20008489347673297]], [[0.18249954918314903]], [[0.19254897151270423]]], "count": [125]}, "observation.state": {"min": [0.33749887347221375, -0.1439749151468277, 0.11765775829553604, -3.2998907566070557, 0.10630320012569427, -0.6211163401603699, -0.6150384545326233, -0.5022556781768799, 0.19677163660526276, 3.0528759956359863, -0.7581959366798401, -0.5065850615501404], "max": [0.5297485589981079, -0.027122240513563156, 0.1365537792444229, -0.9173935055732727, 1.2597885131835938, 0.3987027704715729, -0.4921543300151825, -0.42063409090042114, 0.2192402333021164, 4.537899971008301, 0.19935265183448792, 0.763465404510498], "mean": [0.43813613057136536, -0.10101083666086197, 0.12677936255931854, -2.000792980194092, 0.7556958198547363, -0.03337046131491661, -0.5480703711509705, -0.4666522741317749, 0.20334020256996155, 3.4408533573150635, -0.3022385239601135, 0.47366830706596375], "std": [0.06494693458080292, 0.03664984554052353, 0.004205390810966492, 0.8077806234359741, 0.3752273917198181, 0.22823597490787506, 0.025147587060928345, 0.019168302416801453, 0.006312687881290913, 0.39020055532455444, 0.3566971719264984, 0.349058598279953], "count": [630]}, "action": {"min": [-0.1383998990058899, -0.09759154170751572, 0.1124592125415802, 0.42664045095443726, -0.365532785654068, 0.5548015832901001, -0.35879579186439514, 0.09237878769636154, -0.1539916694164276, 0.08195681869983673, -0.42952898144721985, -0.649584174156189, -0.4539014399051666, -0.6480820775032043], "max": [-0.11150812357664108, -0.08347094804048538, 0.13289259374141693, 0.7418497204780579, -0.02910301648080349, 0.8508279323577881, 0.6137473583221436, 0.11403091251850128, -0.14642521739006042, 0.09650638699531555, 0.13707824051380157, 0.7449344992637634, 0.8185495734214783, 0.6615039706230164], "mean": [-0.1250416487455368, -0.08962881565093994, 0.12074245512485504, 0.5692682266235352, -0.1907540112733841, 0.7019876837730408, 0.03997974097728729, 0.10723549872636795, -0.14945651590824127, 0.08606072515249252, -0.10344088077545166, 0.19128170609474182, 0.05370901897549629, -0.08271894603967667], "std": [0.008713485673069954, 0.0031886331271380186, 0.005016051698476076, 0.0786222442984581, 0.07664822041988373, 0.0934651792049408, 0.3526599109172821, 0.007220905739814043, 0.0018712584860622883, 0.003338001435622573, 0.2203627973794937, 0.557477593421936, 0.5154096484184265, 0.5639113783836365], "count": [630]}, "timestamp": {"min": [0.0], "max": [20.966666666666665], "mean": [10.483333333333333], "std": [6.062170189577937], "count": [630]}, "frame_index": {"min": [0], "max": [629], "mean": [314.5], "std": [181.86510568733812], "count": [630]}, "episode_index": {"min": [596], "max": [596], "mean": [596.0], "std": [0.0], "count": [630]}, "index": {"min": [336724], "max": [337353], "mean": [337038.5], "std": [181.86510568733812], "count": [630]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [630]}}} +{"episode_index": 597, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5210104131247876]], [[0.47151091213620966]], [[0.4098371018927802]]], "std": [[[0.20513465911722428]], [[0.20227108470284852]], [[0.20296257791471572]]], "count": [173]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5334573431813316]], [[0.49354945250418725]], [[0.43651820525898216]]], "std": [[[0.19201607827059863]], [[0.17641046457680717]], [[0.18794268561843697]]], "count": [173]}, "observation.state": {"min": [0.3366107642650604, -0.16265620291233063, 0.1125490814447403, -3.1099114418029785, 0.26603126525878906, -0.8366410732269287, -0.5819156169891357, -0.5223115682601929, 0.19227610528469086, 2.9727742671966553, -0.9287182688713074, -0.6117604374885559], "max": [0.5157858729362488, 0.0027261245995759964, 0.13382768630981445, -0.6967996954917908, 1.0795649290084839, 0.9567502737045288, -0.49355214834213257, -0.43740788102149963, 0.22009319067001343, 4.538528919219971, 0.008334830403327942, 1.27108633518219], "mean": [0.43367037177085876, -0.09835635870695114, 0.12361478060483932, -1.7080203294754028, 0.7398772239685059, -0.021334251388907433, -0.5468483567237854, -0.49147945642471313, 0.1989295333623886, 3.587576389312744, -0.5522082448005676, 0.39427265524864197], "std": [0.04962104186415672, 0.041299328207969666, 0.0046273996122181416, 0.6531460285186768, 0.17669060826301575, 0.47366294264793396, 0.019616322591900826, 0.02482450380921364, 0.0066476911306381226, 0.49800094962120056, 0.28647053241729736, 0.55072420835495], "count": [966]}, "action": {"min": [-0.13988181948661804, -0.09541314095258713, 0.10947632044553757, 0.3504503667354584, -0.5121611952781677, 0.5683303475379944, -0.35335448384284973, 0.09143301099538803, -0.15859682857990265, 0.07516881078481674, -0.4449287950992584, -0.6598208546638489, -0.3825019299983978, -0.6614995002746582], "max": [-0.11361653357744217, -0.07698773592710495, 0.131538525223732, 0.7141261696815491, 0.006713570561259985, 0.8861278891563416, 0.5258157849311829, 0.12039665132761002, -0.14078418910503387, 0.09344176948070526, 0.3670826852321625, 0.7342879176139832, 0.84380042552948, 0.67738938331604], "mean": [-0.12621977925300598, -0.0876506119966507, 0.11921445280313492, 0.5436286926269531, -0.2275141030550003, 0.7358179688453674, -0.09321299195289612, 0.10971871763467789, -0.14710518717765808, 0.08120004832744598, -0.21246768534183502, -0.16020521521568298, 0.4417823553085327, 0.27728670835494995], "std": [0.00710575096309185, 0.004139090422540903, 0.004605801776051521, 0.07655569911003113, 0.1495225578546524, 0.08899419009685516, 0.25777825713157654, 0.005953392945230007, 0.0037449412047863007, 0.005138474050909281, 0.24105295538902283, 0.4716872572898865, 0.3714335560798645, 0.48844045400619507], "count": [966]}, "timestamp": {"min": [0.0], "max": [32.166666666666664], "mean": [16.083333333333332], "std": [9.295334353359257], "count": [966]}, "frame_index": {"min": [0], "max": [965], "mean": [482.5], "std": [278.8600306007777], "count": [966]}, "episode_index": {"min": [597], "max": [597], "mean": [597.0], "std": [0.0], "count": [966]}, "index": {"min": [337354], "max": [338319], "mean": [337836.5], "std": [278.8600306007777], "count": [966]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [966]}}} +{"episode_index": 598, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5278121492704826]], [[0.47735939253647586]], [[0.4158876468937744]]], "std": [[[0.20339994625450808]], [[0.20237553285582638]], [[0.20340959861106003]]], "count": [132]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.539163693718228]], [[0.4980557701194956]], [[0.44152745593186765]]], "std": [[[0.19153939026819236]], [[0.17730022786738175]], [[0.18893847863897184]]], "count": [132]}, "observation.state": {"min": [0.31392908096313477, -0.18282026052474976, 0.11688777059316635, -3.214966297149658, 0.18063345551490784, -0.6680107712745667, -0.6341985464096069, -0.5263660550117493, 0.19095517694950104, 3.387960433959961, -0.8359420895576477, -1.0398812294006348], "max": [0.5561835169792175, -0.022990580648183823, 0.13380305469036102, 0.09771551191806793, 1.1917434930801392, 0.4141894578933716, -0.46935680508613586, -0.46334853768348694, 0.20421622693538666, 4.542932510375977, 0.27108681201934814, 0.42082157731056213], "mean": [0.4474443793296814, -0.10397125780582428, 0.12618668377399445, -1.440409779548645, 0.712887704372406, 0.018807237967848778, -0.5328289270401001, -0.49922609329223633, 0.19638165831565857, 4.070866107940674, -0.45014065504074097, -0.23717032372951508], "std": [0.06514261662960052, 0.05610591918230057, 0.004403097089380026, 1.1213090419769287, 0.34751689434051514, 0.20637010037899017, 0.047326941043138504, 0.02510066330432892, 0.0031289500184357166, 0.4702690839767456, 0.32435059547424316, 0.5001969933509827], "count": [674]}, "action": {"min": [-0.1407792717218399, -0.09594125300645828, 0.1108730286359787, -0.445264995098114, -0.3135906457901001, -0.654177188873291, -0.6409155130386353, 0.10347070544958115, -0.1515975445508957, 0.07200958579778671, -0.4348549246788025, -0.5371628999710083, 0.5621727108955383, 0.08771558851003647], "max": [-0.10948671400547028, -0.07956647872924805, 0.13516348600387573, 0.5864825248718262, 0.1928595006465912, 0.8860676288604736, 0.7643306255340576, 0.11789613217115402, -0.13993628323078156, 0.0883086621761322, -0.12112267315387726, 0.007151289843022823, 0.9887462258338928, 0.6104723811149597], "mean": [-0.1252204328775406, -0.08772267401218414, 0.12171143293380737, 0.2935292720794678, -0.10919712483882904, 0.45156949758529663, 0.1403808295726776, 0.11327812820672989, -0.14744833111763, 0.07911375910043716, -0.2633513808250427, -0.31397613883018494, 0.759835958480835, 0.40551403164863586], "std": [0.008741470053792, 0.003749947529286146, 0.007097593974322081, 0.35105058550834656, 0.1279550939798355, 0.5429654121398926, 0.4938361942768097, 0.005186989437788725, 0.002443515695631504, 0.004356862977147102, 0.10237724334001541, 0.18399678170681, 0.13432146608829498, 0.16701549291610718], "count": [674]}, "timestamp": {"min": [0.0], "max": [22.433333333333334], "mean": [11.216666666666667], "std": [6.485560885536423], "count": [674]}, "frame_index": {"min": [0], "max": [673], "mean": [336.5], "std": [194.56682656609271], "count": [674]}, "episode_index": {"min": [598], "max": [598], "mean": [598.0], "std": [0.0], "count": [674]}, "index": {"min": [338320], "max": [338993], "mean": [338656.5], "std": [194.56682656609271], "count": [674]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [674]}}} +{"episode_index": 599, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.516490147368794]], [[0.46772500309970416]], [[0.40627380794232776]]], "std": [[[0.20739568746648207]], [[0.20362104951394136]], [[0.20370113488778258]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5266214619090636]], [[0.4882997502524045]], [[0.4317433799174593]]], "std": [[[0.19636585404070045]], [[0.17931865983050144]], [[0.1900672102916538]]], "count": [123]}, "observation.state": {"min": [0.35669758915901184, -0.14778994023799896, 0.11768758296966553, -3.2107725143432617, 0.12324611842632294, -0.20231583714485168, -0.617262601852417, -0.5037152767181396, 0.1927751749753952, 3.015760660171509, -0.8211853504180908, -0.3199913203716278], "max": [0.5234545469284058, -0.040413059294223785, 0.13365787267684937, -0.9001989364624023, 0.9859690070152283, 0.7558467984199524, -0.49393826723098755, -0.4446749687194824, 0.21694190800189972, 4.431587219238281, -0.08498790115118027, 0.9099340438842773], "mean": [0.43854427337646484, -0.10493607819080353, 0.12283281981945038, -1.6388347148895264, 0.5719927549362183, 0.1954420506954193, -0.5484567880630493, -0.48102253675460815, 0.20021159946918488, 3.5647120475769043, -0.5047030448913574, 0.4466416537761688], "std": [0.05961642786860466, 0.03200502321124077, 0.0047474512830376625, 0.7464206218719482, 0.3344108760356903, 0.3316554129123688, 0.027423255145549774, 0.01459202729165554, 0.006529830861836672, 0.5227306485176086, 0.21854183077812195, 0.42182812094688416], "count": [616]}, "action": {"min": [-0.13745874166488647, -0.0955796092748642, 0.11435174942016602, 0.3035777509212494, -0.6090309023857117, 0.6288103461265564, -0.48502016067504883, 0.0978492721915245, -0.1577528715133667, 0.07929074764251709, -0.4310568869113922, -0.6572889685630798, -0.3998165428638458, -0.6556395888328552], "max": [-0.11239263415336609, -0.08267492800951004, 0.1290818601846695, 0.5849707722663879, -0.060346972197294235, 0.8203516602516174, 0.6755533814430237, 0.11599455773830414, -0.14197753369808197, 0.09606782346963882, 0.275333970785141, 0.7003452181816101, 0.8182412981987, 0.6940772533416748], "mean": [-0.1263566017150879, -0.0876474529504776, 0.11903338134288788, 0.44932129979133606, -0.3020263910293579, 0.7311645150184631, -0.06866514682769775, 0.1085730716586113, -0.14751730859279633, 0.08305789530277252, -0.16465389728546143, -0.10441205650568008, 0.30543696880340576, 0.15586130321025848], "std": [0.008637521415948868, 0.002513048704713583, 0.004268590360879898, 0.08436021953821182, 0.18414324522018433, 0.041945550590753555, 0.3532539904117584, 0.00436466746032238, 0.004026882350444794, 0.004393868613988161, 0.26976847648620605, 0.5195412635803223, 0.46532052755355835, 0.5340237021446228], "count": [616]}, "timestamp": {"min": [0.0], "max": [20.5], "mean": [10.25], "std": [5.927454953200591], "count": [616]}, "frame_index": {"min": [0], "max": [615], "mean": [307.5], "std": [177.82364859601773], "count": [616]}, "episode_index": {"min": [599], "max": [599], "mean": [599.0], "std": [0.0], "count": [616]}, "index": {"min": [338994], "max": [339609], "mean": [339301.5], "std": [177.82364859601773], "count": [616]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [616]}}} +{"episode_index": 600, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5146184304772137]], [[0.46540366192138954]], [[0.4041837843584923]]], "std": [[[0.20886543464902046]], [[0.20523977023326528]], [[0.20548182893199515]]], "count": [146]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5278081240487063]], [[0.4882607291013818]], [[0.43199030986062614]]], "std": [[[0.19708416520842975]], [[0.18062037271085418]], [[0.19117064651791282]]], "count": [146]}, "observation.state": {"min": [0.38197410106658936, -0.11916176974773407, 0.11613331735134125, -3.304503917694092, 0.12871158123016357, -0.8162326812744141, -0.5854912996292114, -0.5183730125427246, 0.19072963297367096, 3.1950457096099854, -0.8804855942726135, -0.47945544123649597], "max": [0.5658600926399231, -0.025956109166145325, 0.13233564794063568, -0.9494760632514954, 1.0675410032272339, 0.24539749324321747, -0.5047810077667236, -0.41032424569129944, 0.21589450538158417, 4.53810977935791, -0.4866992235183716, 0.7135046720504761], "mean": [0.45583727955818176, -0.08593156188726425, 0.12332341820001602, -1.93142569065094, 0.6050655245780945, -0.2610819339752197, -0.5459509491920471, -0.4883195161819458, 0.19939585030078888, 3.882016658782959, -0.693742573261261, 0.11124470829963684], "std": [0.04646366834640503, 0.0330764539539814, 0.004989651497453451, 0.8379257321357727, 0.3234891891479492, 0.3363506495952606, 0.015316253527998924, 0.029277974739670753, 0.0053840521723032, 0.43067485094070435, 0.08778111636638641, 0.38112136721611023], "count": [773]}, "action": {"min": [-0.1327602118253708, -0.09096419811248779, 0.1113557517528534, 0.2498769760131836, -0.3535884618759155, 0.6172723770141602, -0.4854608178138733, 0.10044999420642853, -0.15268579125404358, 0.07225562632083893, -0.45979440212249756, -0.5636636018753052, 0.45316070318222046, 0.2847912013530731], "max": [-0.10804663598537445, -0.08047734200954437, 0.13013294339179993, 0.6351862549781799, 0.08798757195472717, 0.893896758556366, 0.671633243560791, 0.11482241004705429, -0.13909123837947845, 0.10000818967819214, -0.2561194598674774, -0.24367788434028625, 0.8191653490066528, 0.6415665149688721], "mean": [-0.12341976165771484, -0.08515112102031708, 0.11956121772527695, 0.45019739866256714, -0.09728460758924484, 0.7480630874633789, -0.044710058718919754, 0.10853762179613113, -0.14624549448490143, 0.08148152381181717, -0.3592489957809448, -0.4034138023853302, 0.6572311520576477, 0.4923752248287201], "std": [0.0065270764753222466, 0.0029279959853738546, 0.006017229985445738, 0.08533064275979996, 0.13042090833187103, 0.07150831818580627, 0.44368383288383484, 0.004207278601825237, 0.0023116334341466427, 0.006376990117132664, 0.0528542622923851, 0.10115642845630646, 0.10368849337100983, 0.10016664862632751], "count": [773]}, "timestamp": {"min": [0.0], "max": [25.733333333333334], "mean": [12.866666666666665], "std": [7.438189743927394], "count": [773]}, "frame_index": {"min": [0], "max": [772], "mean": [386.0], "std": [223.1456923178218], "count": [773]}, "episode_index": {"min": [600], "max": [600], "mean": [600.0], "std": [0.0], "count": [773]}, "index": {"min": [339610], "max": [340382], "mean": [339996.0], "std": [223.1456923178218], "count": [773]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [773]}}} +{"episode_index": 601, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5192577482605946]], [[0.46984288468971813]], [[0.40790840888326657]]], "std": [[[0.2084532325826148]], [[0.20475711518512]], [[0.20526836995508468]]], "count": [124]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5293456958500246]], [[0.4898195235083281]], [[0.4330339184060721]]], "std": [[[0.19873557504225184]], [[0.1819330285333673]], [[0.19267726357446202]]], "count": [124]}, "observation.state": {"min": [0.3514615595340729, -0.1459905356168747, 0.11817368865013123, -3.0686025619506836, 0.1662866175174713, -0.6907225847244263, -0.5658677816390991, -0.5049354434013367, 0.19752608239650726, 3.388170003890991, -0.7342845797538757, -0.590121328830719], "max": [0.5392089486122131, -0.004185719881206751, 0.13025639951229095, -0.5951000452041626, 0.8843114376068115, 0.7379050254821777, -0.500433087348938, -0.4066636562347412, 0.21438822150230408, 4.5383195877075195, -0.28679999709129333, 0.650866687297821], "mean": [0.4325808584690094, -0.08870462328195572, 0.124773308634758, -1.7915595769882202, 0.5502709150314331, 0.04164360091090202, -0.5473445057868958, -0.4832111895084381, 0.20269237458705902, 3.9350876808166504, -0.64460688829422, 0.047244299203157425], "std": [0.05693314969539642, 0.04436817765235901, 0.0032642453443259, 0.7654366493225098, 0.21791303157806396, 0.3580283224582672, 0.009188046678900719, 0.026027774438261986, 0.0033683597575873137, 0.28682389855384827, 0.12039172649383545, 0.3038633167743683], "count": [619]}, "action": {"min": [-0.1371045857667923, -0.09734582155942917, 0.11471030861139297, 0.3474698066711426, -0.47750216722488403, 0.6300995945930481, -0.4496786892414093, 0.09494492411613464, -0.15350905060768127, 0.07849179208278656, -0.4019056260585785, -0.5677657723426819, -0.5459436178207397, -0.5705793499946594], "max": [-0.11434298008680344, -0.07339926064014435, 0.12996865808963776, 0.5906394124031067, 0.000539434258826077, 0.8645744323730469, 0.633002519607544, 0.1143493726849556, -0.14331121742725372, 0.09682576358318329, 0.30843743681907654, 0.6382483243942261, 0.8619705438613892, 0.5714582800865173], "mean": [-0.12656502425670624, -0.08756960928440094, 0.12222271412611008, 0.446225106716156, -0.23243671655654907, 0.7656318545341492, -0.023171722888946533, 0.10632117092609406, -0.14850792288780212, 0.0832873284816742, -0.2965797483921051, -0.2980442941188812, 0.600273072719574, 0.3770933449268341], "std": [0.007222987711429596, 0.006283168215304613, 0.004045970272272825, 0.06254135817289352, 0.1256270557641983, 0.07344541698694229, 0.36747822165489197, 0.0033427223097532988, 0.001873394357971847, 0.004416497424244881, 0.1636694222688675, 0.2973548471927643, 0.34579139947891235, 0.2930923104286194], "count": [619]}, "timestamp": {"min": [0.0], "max": [20.6], "mean": [10.299999999999999], "std": [5.956322504513819], "count": [619]}, "frame_index": {"min": [0], "max": [618], "mean": [309.0], "std": [178.68967513541457], "count": [619]}, "episode_index": {"min": [601], "max": [601], "mean": [601.0], "std": [0.0], "count": [619]}, "index": {"min": [340383], "max": [341001], "mean": [340692.0], "std": [178.68967513541457], "count": [619]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [619]}}} +{"episode_index": 602, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.513630305152364]], [[0.46525429363664655]], [[0.40335860884757946]]], "std": [[[0.20519460656146712]], [[0.20139824651787935]], [[0.20129816463488057]]], "count": [154]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5221877776363071]], [[0.48424418378462497]], [[0.42721991094417566]]], "std": [[[0.1948031425094801]], [[0.17829310391228062]], [[0.18831540317743262]]], "count": [154]}, "observation.state": {"min": [0.36586445569992065, -0.15809206664562225, 0.11477740854024887, -3.293180465698242, 0.14620104432106018, -0.5383267998695374, -0.6130151152610779, -0.5283970832824707, 0.19244980812072754, 2.6911606788635254, -0.8695546984672546, -0.5133429765701294], "max": [0.5323511362075806, -0.0006178186158649623, 0.13208547234535217, -0.6420705914497375, 1.158267617225647, 0.5163760781288147, -0.5148050785064697, -0.4025474488735199, 0.21505451202392578, 4.539997100830078, 0.6078957915306091, 1.0120967626571655], "mean": [0.43957555294036865, -0.10721084475517273, 0.12421134114265442, -1.7845702171325684, 0.8086626529693604, -0.036300625652074814, -0.5570009350776672, -0.4684666395187378, 0.20137064158916473, 3.6883909702301025, -0.3266674280166626, 0.29814767837524414], "std": [0.03806304559111595, 0.04510592296719551, 0.004861020017415285, 0.7994219660758972, 0.2037617564201355, 0.3026283085346222, 0.026218749582767487, 0.02721983566880226, 0.005445025395601988, 0.6690630316734314, 0.49028220772743225, 0.5312868356704712], "count": [830]}, "action": {"min": [-0.1353210061788559, -0.09679349511861801, 0.10680713504552841, 0.43495404720306396, -0.4027283489704132, 0.5707492232322693, -0.5354283452033997, 0.08709041029214859, -0.15785177052021027, 0.06980640441179276, -0.4810817539691925, -0.7007576823234558, -0.2953105866909027, -0.705171525478363], "max": [-0.11427601426839828, -0.07915672659873962, 0.13078688085079193, 0.6615954637527466, 0.012661713175475597, 0.7948335409164429, 0.5807656049728394, 0.1148509532213211, -0.13628055155277252, 0.09343826025724411, 0.12059804052114487, 0.7594271898269653, 0.8622680306434631, 0.7112166881561279], "mean": [-0.12538212537765503, -0.0886944904923439, 0.11820519715547562, 0.5739893317222595, -0.2124161571264267, 0.7015990018844604, -0.07295121997594833, 0.10599574446678162, -0.14734086394309998, 0.08243610709905624, -0.2500607967376709, 0.0044591473415493965, 0.3683820366859436, 0.06347077339887619], "std": [0.004987271968275309, 0.0050507294945418835, 0.005208912771195173, 0.0537625253200531, 0.11215869337320328, 0.06145176291465759, 0.32955455780029297, 0.006050043739378452, 0.007322386372834444, 0.004125664010643959, 0.21864184737205505, 0.5393407344818115, 0.44319114089012146, 0.5124496221542358], "count": [830]}, "timestamp": {"min": [0.0], "max": [27.633333333333333], "mean": [13.816666666666665], "std": [7.98667292709827], "count": [830]}, "frame_index": {"min": [0], "max": [829], "mean": [414.5], "std": [239.6001878129481], "count": [830]}, "episode_index": {"min": [602], "max": [602], "mean": [602.0], "std": [0.0], "count": [830]}, "index": {"min": [341002], "max": [341831], "mean": [341416.5], "std": [239.6001878129481], "count": [830]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [830]}}} +{"episode_index": 603, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5133416492374728]], [[0.46413243790849673]], [[0.40351116557734207]]], "std": [[[0.2115334573796222]], [[0.20828666470177495]], [[0.20901159400107422]]], "count": [125]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5269824444444445]], [[0.48738325708061003]], [[0.4315213006535948]]], "std": [[[0.1995831753569777]], [[0.1842250508698939]], [[0.19502774773284337]]], "count": [125]}, "observation.state": {"min": [0.36540111899375916, -0.12040513008832932, 0.11637572944164276, -3.1698827743530273, 0.2511378824710846, -0.474944531917572, -0.5651650428771973, -0.5142490863800049, 0.19350886344909668, 2.878204107284546, -1.0542871952056885, -0.655838131904602], "max": [0.5322275757789612, 0.0074447100050747395, 0.13802507519721985, -0.6995256543159485, 1.4327703714370728, 0.788248598575592, -0.5073835253715515, -0.44070547819137573, 0.20305994153022766, 4.53810977935791, 0.029923390597105026, 1.0071252584457397], "mean": [0.45924413204193115, -0.06736546009778976, 0.12917760014533997, -1.713263988494873, 0.9271848797798157, 0.2146075963973999, -0.5282845497131348, -0.4821819067001343, 0.1990666389465332, 3.713421106338501, -0.5995692610740662, 0.3314642608165741], "std": [0.03157808631658554, 0.03772684931755066, 0.004122332204133272, 0.8034377694129944, 0.3837512731552124, 0.45418065786361694, 0.016532570123672485, 0.01816670410335064, 0.0028685687575489283, 0.5719249248504639, 0.3559401333332062, 0.5370907187461853], "count": [631]}, "action": {"min": [-0.13538065552711487, -0.09105247259140015, 0.11735391616821289, 0.4482065737247467, -0.5085257887840271, 0.5248381495475769, -0.3620384633541107, 0.1052013710141182, -0.15404297411441803, 0.07816340774297714, -0.5258725881576538, -0.6825761795043945, -0.5292079448699951, -0.6832413077354431], "max": [-0.11393635720014572, -0.07322914153337479, 0.1396268904209137, 0.7821909189224243, 0.06264959275722504, 0.8225272297859192, 0.5326170921325684, 0.11545788496732712, -0.14058364927768707, 0.08734952658414841, 0.3898550868034363, 0.6928120255470276, 0.8162273168563843, 0.697184681892395], "mean": [-0.12014518678188324, -0.08365125954151154, 0.12384433299303055, 0.641050398349762, -0.21949930489063263, 0.638112485408783, -0.018826192244887352, 0.11134538054466248, -0.14683689177036285, 0.08293677866458893, -0.2807711064815521, -0.16540594398975372, 0.43687957525253296, 0.23561644554138184], "std": [0.0038720089942216873, 0.0037738624960184097, 0.005043411627411842, 0.09536171704530716, 0.15829850733280182, 0.08331093192100525, 0.3037090003490448, 0.0025284970179200172, 0.0037699779495596886, 0.002176132518798113, 0.24037441611289978, 0.4637245535850525, 0.3787774443626404, 0.48076698184013367], "count": [631]}, "timestamp": {"min": [0.0], "max": [21.0], "mean": [10.499999999999998], "std": [6.07179270616732], "count": [631]}, "frame_index": {"min": [0], "max": [630], "mean": [315.0], "std": [182.1537811850196], "count": [631]}, "episode_index": {"min": [603], "max": [603], "mean": [603.0], "std": [0.0], "count": [631]}, "index": {"min": [341832], "max": [342462], "mean": [342147.0], "std": [182.1537811850196], "count": [631]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [631]}}} +{"episode_index": 604, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5105548300017493]], [[0.46150303738689313]], [[0.4001747232956443]]], "std": [[[0.20954905473959373]], [[0.20532779226432574]], [[0.20498262334809345]]], "count": [137]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5217775233369909]], [[0.4827353139958335]], [[0.42616134527614774]]], "std": [[[0.19888528899300614]], [[0.18231840753272907]], [[0.1924231406502914]]], "count": [137]}, "observation.state": {"min": [0.39159661531448364, -0.12164849042892456, 0.12189403921365738, -3.1252188682556152, 0.1673797070980072, -0.5183354616165161, -0.5706790685653687, -0.5016069412231445, 0.1955621987581253, 2.8551383018493652, -0.8192724585533142, -0.6373270153999329], "max": [0.5310845971107483, -0.021160289645195007, 0.135158970952034, -1.4699264764785767, 0.9613744020462036, -0.024017060175538063, -0.4696579873561859, -0.4044935703277588, 0.20792751014232635, 4.5383195877075195, -0.12037675827741623, 0.9517028331756592], "mean": [0.45060911774635315, -0.09361915290355682, 0.12828312814235687, -1.9411559104919434, 0.6106410026550293, -0.3241710364818573, -0.5327076315879822, -0.46811410784721375, 0.20008957386016846, 3.7698638439178467, -0.45922112464904785, 0.18516701459884644], "std": [0.033002402633428574, 0.03110395185649395, 0.0029416021425276995, 0.5566476583480835, 0.2277752161026001, 0.1162264496088028, 0.022692330181598663, 0.026060568168759346, 0.0027346848510205746, 0.7125179171562195, 0.20241786539554596, 0.6655862331390381], "count": [713]}, "action": {"min": [-0.13063794374465942, -0.09595555067062378, 0.11565642803907394, 0.3129781186580658, -0.1780068278312683, 0.6170765161514282, -0.2878170907497406, 0.10384131222963333, -0.15156087279319763, 0.07856538891792297, -0.44792598485946655, -0.6394385099411011, -0.5424962639808655, -0.5940552353858948], "max": [-0.11006318777799606, -0.08076341450214386, 0.1298961043357849, 0.5776422619819641, -0.043910350650548935, 0.9435415863990784, 0.5647100806236267, 0.11776334047317505, -0.14285887777805328, 0.09927531331777573, 0.3828723430633545, 0.6010993719100952, 0.8921749591827393, 0.7136653661727905], "mean": [-0.12202624976634979, -0.09014856070280075, 0.12223967909812927, 0.5004724264144897, -0.11587025970220566, 0.7991023063659668, -0.04259396344423294, 0.11022821813821793, -0.14733071625232697, 0.08527876436710358, -0.20393700897693634, -0.23248261213302612, 0.4523874521255493, 0.3144952058792114], "std": [0.004499037750065327, 0.00352151645347476, 0.003514283336699009, 0.0728657990694046, 0.03244786709547043, 0.08858967572450638, 0.2855028510093689, 0.0025531318970024586, 0.002457476919516921, 0.0047087287530303, 0.23772037029266357, 0.39734745025634766, 0.4566902816295624, 0.42170819640159607], "count": [713]}, "timestamp": {"min": [0.0], "max": [23.733333333333334], "mean": [11.866666666666667], "std": [6.860838950967374], "count": [713]}, "frame_index": {"min": [0], "max": [712], "mean": [356.0], "std": [205.82516852902125], "count": [713]}, "episode_index": {"min": [604], "max": [604], "mean": [604.0], "std": [0.0], "count": [713]}, "index": {"min": [342463], "max": [343175], "mean": [342819.0], "std": [205.82516852902125], "count": [713]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [713]}}} +{"episode_index": 605, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5026483432510649]], [[0.45318507340747244]], [[0.39265422479107726]]], "std": [[[0.2181688045726466]], [[0.2128853762712868]], [[0.21210284738108115]]], "count": [134]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5185333524371607]], [[0.47840802116866643]], [[0.4224545552466426]]], "std": [[[0.20707174435468367]], [[0.19027302957369]], [[0.19972627011872318]]], "count": [134]}, "observation.state": {"min": [0.3975508511066437, -0.12876112759113312, 0.11297815293073654, -3.1937875747680664, 0.020358840003609657, -0.41461607813835144, -0.5756911039352417, -0.5017459392547607, 0.19638533890247345, 4.1139068603515625, -0.928445041179657, -1.0592656135559082], "max": [0.5573264360427856, -0.008973820134997368, 0.14944279193878174, -1.4292466640472412, 0.8852678537368774, 0.025450589135289192, -0.4400181472301483, -0.4255766272544861, 0.2036069631576538, 4.540626049041748, 0.48820221424102783, -0.041316140443086624], "mean": [0.4922162890434265, -0.07406894117593765, 0.13291634619235992, -2.1080844402313232, 0.40383031964302063, -0.20532523095607758, -0.5049065947532654, -0.473112553358078, 0.19989706575870514, 4.464077949523926, -0.41444137692451477, -0.5512003898620605], "std": [0.02730705961585045, 0.03938857465982437, 0.008123517036437988, 0.613974928855896, 0.19228316843509674, 0.11321849375963211, 0.04633120074868202, 0.01771075837314129, 0.0024634641595184803, 0.10178858786821365, 0.4697842597961426, 0.2632673978805542], "count": [691]}, "action": {"min": [-0.12969869375228882, -0.09999541193246841, 0.1126621663570404, 0.33828866481781006, -0.24952277541160583, 0.6653256416320801, -0.22704152762889862, 0.10824650526046753, -0.15268148481845856, 0.07981164753437042, -0.48042789101600647, -0.35864368081092834, 0.6896358132362366, -0.013370885513722897], "max": [-0.10335326194763184, -0.07091367989778519, 0.13904479146003723, 0.6096535921096802, 0.027925565838813782, 0.9246580600738525, 0.6091969013214111, 0.1229882538318634, -0.14228631556034088, 0.08961150050163269, -0.02075919695198536, 0.00199639773927629, 0.9995670318603516, 0.4807809293270111], "mean": [-0.11444680392742157, -0.08890293538570404, 0.12582190334796906, 0.4573209285736084, -0.13152584433555603, 0.8117956519126892, 0.0867854654788971, 0.11435509473085403, -0.14898918569087982, 0.08493431657552719, -0.30079615116119385, -0.20555679500102997, 0.8544559478759766, 0.27632591128349304], "std": [0.004626115318387747, 0.007571125403046608, 0.006114431191235781, 0.05015040189027786, 0.055891383439302444, 0.08080674707889557, 0.3079705536365509, 0.005502679385244846, 0.002765373094007373, 0.0020767857786267996, 0.15179839730262756, 0.10036643594503403, 0.09906883537769318, 0.1337345540523529], "count": [691]}, "timestamp": {"min": [0.0], "max": [23.0], "mean": [11.5], "std": [6.649143637425132], "count": [691]}, "frame_index": {"min": [0], "max": [690], "mean": [345.0], "std": [199.47430912275394], "count": [691]}, "episode_index": {"min": [605], "max": [605], "mean": [605.0], "std": [0.0], "count": [691]}, "index": {"min": [343176], "max": [343866], "mean": [343521.0], "std": [199.47430912275394], "count": [691]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [691]}}} +{"episode_index": 606, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4993181454248366]], [[0.4493462173202614]], [[0.3894460239651416]]], "std": [[[0.22224067926572644]], [[0.21686269313096224]], [[0.2154884985020519]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.518551838235294]], [[0.4778775871459695]], [[0.42227464324618735]]], "std": [[[0.20844003255507068]], [[0.19205304445784663]], [[0.20118317285840914]]], "count": [100]}, "observation.state": {"min": [0.39144986867904663, -0.1333252638578415, 0.12401606142520905, -3.2759859561920166, 0.018445929512381554, -0.5722537636756897, -0.503838837146759, -0.4932277798652649, 0.1934194266796112, 3.810485601425171, -1.0067377090454102, -0.5185287594795227], "max": [0.5778457522392273, 0.024427000433206558, 0.14844724535942078, -1.4409892559051514, 0.9007077813148499, 0.01010986976325512, -0.47332629561424255, -0.4609776437282562, 0.20223939418792725, 4.53810977935791, -0.7245833873748779, 0.2300618588924408], "mean": [0.5143445134162903, -0.06358107924461365, 0.1321556121110916, -2.4005889892578125, 0.48067009449005127, -0.32918572425842285, -0.48259130120277405, -0.47686436772346497, 0.19903504848480225, 4.135624408721924, -0.7858704924583435, -0.29665839672088623], "std": [0.03679531067609787, 0.05229397118091583, 0.0060768271796405315, 0.6454761624336243, 0.281026691198349, 0.15995272994041443, 0.008671133778989315, 0.008426517248153687, 0.002875714097172022, 0.1941508799791336, 0.08246830850839615, 0.19411683082580566], "count": [462]}, "action": {"min": [-0.13065654039382935, -0.09382963180541992, 0.11055201292037964, 0.4132504165172577, -0.2469097524881363, 0.5607248544692993, -0.25424033403396606, 0.11452343314886093, -0.15020880103111267, 0.08328259736299515, -0.46282172203063965, -0.3653746247291565, 0.6200578212738037, 0.3693426251411438], "max": [-0.1044669821858406, -0.07455224543809891, 0.14010609686374664, 0.676750123500824, 0.051002487540245056, 0.9040887355804443, 0.5988478064537048, 0.11894392222166061, -0.14240829646587372, 0.08854374289512634, -0.2862854301929474, -0.21488934755325317, 0.7994586229324341, 0.5366336107254028], "mean": [-0.11222168803215027, -0.08671644330024719, 0.12398792803287506, 0.5543202757835388, -0.08294675499200821, 0.7441681027412415, 0.17207852005958557, 0.1163443848490715, -0.14699432253837585, 0.08645922690629959, -0.3365725576877594, -0.2644166052341461, 0.7606807947158813, 0.47733569145202637], "std": [0.005291988607496023, 0.0055864835157990456, 0.00764880608767271, 0.07897462695837021, 0.09168529510498047, 0.10929440706968307, 0.2754323482513428, 0.0012477285927161574, 0.002628349931910634, 0.001708202762529254, 0.06318219751119614, 0.039799660444259644, 0.05037086084485054, 0.04695361107587814], "count": [462]}, "timestamp": {"min": [0.0], "max": [15.366666666666667], "mean": [7.683333333333333], "std": [4.445586658782027], "count": [462]}, "frame_index": {"min": [0], "max": [461], "mean": [230.5], "std": [133.3675997634608], "count": [462]}, "episode_index": {"min": [606], "max": [606], "mean": [606.0], "std": [0.0], "count": [462]}, "index": {"min": [343867], "max": [344328], "mean": [344097.5], "std": [133.3675997634608], "count": [462]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [462]}}} +{"episode_index": 607, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5270246968445499]], [[0.4765368844118844]], [[0.414702095154301]]], "std": [[[0.20297532294630496]], [[0.2012482749142189]], [[0.2027435038108677]]], "count": [182]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5389634627355215]], [[0.4978368212669683]], [[0.4410135552084082]]], "std": [[[0.18917128649104786]], [[0.17566637343050526]], [[0.18721761065640374]]], "count": [182]}, "observation.state": {"min": [0.3688609004020691, -0.17082685232162476, 0.11642757803201675, -3.000872850418091, 0.3034696578979492, -0.4117814898490906, -0.5653967261314392, -0.5110363960266113, 0.18776242434978485, 3.633507251739502, -0.9636972546577454, -0.6077450513839722], "max": [0.5178323984146118, 0.03344716131687164, 0.14257505536079407, -0.9953981637954712, 0.8867709040641785, 0.19197441637516022, -0.4840686321258545, -0.4509844183921814, 0.20552289485931396, 4.53810977935791, -0.6801764965057373, 0.17741522192955017], "mean": [0.4496038258075714, -0.0777733102440834, 0.12767404317855835, -1.6229426860809326, 0.6713125705718994, -0.14709846675395966, -0.5259349942207336, -0.48032936453819275, 0.19673101603984833, 4.319314479827881, -0.7724242806434631, -0.37240344285964966], "std": [0.04129146784543991, 0.06476849317550659, 0.005332434084266424, 0.5563653111457825, 0.13783670961856842, 0.17390310764312744, 0.0262642502784729, 0.01856308989226818, 0.0047270930372178555, 0.3250618278980255, 0.07668083161115646, 0.28424131870269775], "count": [1038]}, "action": {"min": [-0.13228961825370789, -0.10171357542276382, 0.1105487197637558, 0.3861737549304962, -0.29905322194099426, 0.6152796745300293, -0.38392388820648193, 0.10522689670324326, -0.15278083086013794, 0.07720448821783066, -0.48526081442832947, -0.43678566813468933, 0.632306694984436, 0.36675018072128296], "max": [-0.11245213449001312, -0.07374268770217896, 0.14382076263427734, 0.6967619061470032, -0.08550846576690674, 0.8842803835868835, 0.4053066074848175, 0.11688429117202759, -0.1353219747543335, 0.08414706587791443, -0.2967447340488434, -0.17682015895843506, 0.8195525407791138, 0.5793026685714722], "mean": [-0.12231095135211945, -0.08637654781341553, 0.12357815355062485, 0.49393904209136963, -0.186396986246109, 0.7921688556671143, -0.15211167931556702, 0.11111810058355331, -0.14438122510910034, 0.08048313111066818, -0.3977169692516327, -0.2617587447166443, 0.7528875470161438, 0.4334374964237213], "std": [0.005181727930903435, 0.007216597441583872, 0.009672154672443867, 0.07625111192464828, 0.06391655653715134, 0.07510464638471603, 0.23467181622982025, 0.00433266069740057, 0.005043805576860905, 0.0014908983139321208, 0.05468335375189781, 0.08983654528856277, 0.05797161906957626, 0.06461513787508011], "count": [1038]}, "timestamp": {"min": [0.0], "max": [34.56666666666667], "mean": [17.28333333333333], "std": [9.988155021861683], "count": [1038]}, "frame_index": {"min": [0], "max": [1037], "mean": [518.5], "std": [299.64465065585046], "count": [1038]}, "episode_index": {"min": [607], "max": [607], "mean": [607.0], "std": [0.0], "count": [1038]}, "index": {"min": [344329], "max": [345366], "mean": [344847.5], "std": [299.64465065585046], "count": [1038]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1038]}}} +{"episode_index": 608, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.498298044336443]], [[0.44918235945850327]], [[0.3893384145206041]]], "std": [[[0.21825008173561364]], [[0.2124873661450592]], [[0.2107541622284846]]], "count": [117]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5154803712083125]], [[0.4760950296072845]], [[0.420514205444761]]], "std": [[[0.20508200779275454]], [[0.18822836423915026]], [[0.19667965659219397]]], "count": [117]}, "observation.state": {"min": [0.4362957775592804, -0.14177392423152924, 0.11950886249542236, -3.176173686981201, -0.21287967264652252, -0.7530691623687744, -0.5255551338195801, -0.48525792360305786, 0.19327424466609955, 4.034224987030029, -0.9498969316482544, -0.5232056975364685], "max": [0.5679143071174622, -0.006819169968366623, 0.14711853861808777, -1.5781265497207642, 1.1282075643539429, 0.18147410452365875, -0.4941236078739166, -0.4660669267177582, 0.20307031273841858, 4.53810977935791, -0.469073086977005, -0.1012163907289505], "mean": [0.5127522349357605, -0.07345698773860931, 0.1297014206647873, -2.256751775741577, 0.5069425106048584, -0.26867958903312683, -0.5115710496902466, -0.47854602336883545, 0.198104128241539, 4.247514724731445, -0.7185388803482056, -0.37124890089035034], "std": [0.028693895787000656, 0.04093518480658531, 0.005919246468693018, 0.47526612877845764, 0.3672172725200653, 0.223201721906662, 0.007445274852216244, 0.005730974953621626, 0.002458453644067049, 0.11818224936723709, 0.09816712141036987, 0.10364692658185959], "count": [576]}, "action": {"min": [-0.12191048264503479, -0.09595159441232681, 0.1091114804148674, 0.28717684745788574, -0.22263310849666595, 0.6690021753311157, -0.2645469605922699, 0.10940627753734589, -0.15043173730373383, 0.08059556782245636, -0.4535752236843109, -0.3295777142047882, 0.6937847137451172, 0.36222323775291443], "max": [-0.1067296490073204, -0.07342927157878876, 0.13959479331970215, 0.6913996338844299, 0.031459856778383255, 0.9482133984565735, 0.6265305876731873, 0.11641842871904373, -0.14242611825466156, 0.08663071691989899, -0.25563400983810425, -0.2197926640510559, 0.8563137054443359, 0.5061172842979431], "mean": [-0.11291125416755676, -0.08638152480125427, 0.12089508026838303, 0.5240981578826904, -0.10486369580030441, 0.7717826962471008, 0.11374451220035553, 0.11251311749219894, -0.1459612250328064, 0.08317673951387405, -0.3457874655723572, -0.2644825279712677, 0.7833672165870667, 0.4370821714401245], "std": [0.0030208996031433344, 0.005881864577531815, 0.0067621334455907345, 0.10776621848344803, 0.06189289689064026, 0.07413142174482346, 0.29120171070098877, 0.0017675341805443168, 0.0018747138092294335, 0.0013930484419688582, 0.0516585111618042, 0.02383236214518547, 0.03645686060190201, 0.03477523475885391], "count": [576]}, "timestamp": {"min": [0.0], "max": [19.166666666666668], "mean": [9.583333333333334], "std": [5.542554231345635], "count": [576]}, "frame_index": {"min": [0], "max": [575], "mean": [287.5], "std": [166.27662694036906], "count": [576]}, "episode_index": {"min": [608], "max": [608], "mean": [608.0], "std": [0.0], "count": [576]}, "index": {"min": [345367], "max": [345942], "mean": [345654.5], "std": [166.27662694036906], "count": [576]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [576]}}} +{"episode_index": 609, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4288645717094426]], [[0.39216819216394777]], [[0.3323800303771011]]], "std": [[[0.2177338939181949]], [[0.20979628780222492]], [[0.21051422511746548]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4485892249853871]], [[0.42603666507253307]], [[0.36841771835202014]]], "std": [[[0.21955308372633922]], [[0.19690341719917503]], [[0.20769012776013793]]], "count": [123]}, "observation.state": {"min": [0.541572093963623, -0.09593179076910019, 0.14346040785312653, -1.7410556077957153, 0.40362420678138733, -0.393662691116333, -0.4788789451122284, -0.36490684747695923, 0.17449229955673218, 0.17152637243270874, 0.482736736536026, -0.3746110498905182], "max": [0.6149535179138184, -0.05547238886356354, 0.1612558811903, -0.7190268039703369, 0.7486313581466675, 0.4538552463054657, -0.3738574981689453, -0.3080134689807892, 0.18681612610816956, 2.0023293495178223, 0.9083594679832458, 0.584677517414093], "mean": [0.5790284276008606, -0.07519719004631042, 0.15375806391239166, -1.1891202926635742, 0.612256646156311, -0.027453385293483734, -0.44094565510749817, -0.33262237906455994, 0.18018656969070435, 0.9718219637870789, 0.7102487683296204, 0.08376456052064896], "std": [0.01607789471745491, 0.011783639900386333, 0.003078143112361431, 0.3282727897167206, 0.07559645175933838, 0.21160253882408142, 0.031071843579411507, 0.012499846518039703, 0.0036114396061748266, 0.5340722799301147, 0.10446673631668091, 0.2403930276632309], "count": [614]}, "action": {"min": [-0.09528757631778717, -0.09619403630495071, 0.12355918437242508, 0.35158970952033997, -0.4187856912612915, 0.7095075249671936, -0.5153266787528992, 0.1195656955242157, -0.12595640122890472, 0.09442303329706192, -0.3259281516075134, -0.4819628596305847, -0.654167890548706, -0.6551555395126343], "max": [-0.08397236466407776, -0.08653797954320908, 0.1401655673980713, 0.578160285949707, -0.0859769955277443, 0.8203592300415039, -0.14581549167633057, 0.13878850638866425, -0.10949922353029251, 0.1061277985572815, 0.3894009590148926, 0.30861368775367737, 0.6840885281562805, 0.8664888143539429], "mean": [-0.08892759680747986, -0.09199453145265579, 0.13332782685756683, 0.4710069000720978, -0.23132863640785217, 0.7659367322921753, -0.3300805985927582, 0.1266564279794693, -0.1186438798904419, 0.09969381242990494, 0.25066548585891724, -0.349404901266098, -0.3868848979473114, 0.7088112831115723], "std": [0.002665651496499777, 0.0025021350011229515, 0.003811511443927884, 0.0742378905415535, 0.08584635704755783, 0.0265473872423172, 0.1242617815732956, 0.005493725650012493, 0.0028068674728274345, 0.0029180608689785004, 0.11389050632715225, 0.13451999425888062, 0.2659796178340912, 0.247341588139534], "count": [614]}, "timestamp": {"min": [0.0], "max": [20.433333333333334], "mean": [10.216666666666665], "std": [5.908209918786268], "count": [614]}, "frame_index": {"min": [0], "max": [613], "mean": [306.5], "std": [177.24629756358806], "count": [614]}, "episode_index": {"min": [609], "max": [609], "mean": [609.0], "std": [0.0], "count": [614]}, "index": {"min": [345943], "max": [346556], "mean": [346249.5], "std": [177.24629756358806], "count": [614]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [614]}}} +{"episode_index": 610, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44328800925925926]], [[0.4059753894335512]], [[0.345612559912854]]], "std": [[[0.2183675689228391]], [[0.21181719038909635]], [[0.21346785584098185]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46300273148148147]], [[0.4387891149237473]], [[0.380438545751634]]], "std": [[[0.21819381754029826]], [[0.1969844780767272]], [[0.2094129052425321]]], "count": [100]}, "observation.state": {"min": [0.5433328747749329, -0.10411787778139114, 0.15026983618736267, -1.3212562799453735, 0.3812158405780792, -0.3914934992790222, -0.4648853540420532, -0.37469154596328735, 0.1749589741230011, 0.1834786981344223, 0.5160760879516602, -0.8407900929450989], "max": [0.5965965390205383, -0.04015820845961571, 0.15804757177829742, -0.6185853481292725, 0.6931569576263428, 0.3797377943992615, -0.3725060224533081, -0.3097665309906006, 0.18256041407585144, 1.6670351028442383, 0.9045336246490479, 0.41721996665000916], "mean": [0.5746654272079468, -0.07643342018127441, 0.15364713966846466, -1.032889723777771, 0.5461968779563904, 0.02355695329606533, -0.4237915277481079, -0.32673943042755127, 0.17841602861881256, 0.9051216840744019, 0.6680633425712585, -0.046262096613645554], "std": [0.010619067586958408, 0.022264674305915833, 0.0021922956220805645, 0.1919156312942505, 0.08361827582120895, 0.24500498175621033, 0.029929274693131447, 0.01673244871199131, 0.001786516746506095, 0.45147705078125, 0.10460791736841202, 0.3935815691947937], "count": [465]}, "action": {"min": [-0.09576457738876343, -0.09793386608362198, 0.12900954484939575, 0.3730655908584595, -0.43489062786102295, 0.6853504180908203, -0.49538493156433105, 0.12358883768320084, -0.12265754491090775, 0.09717755764722824, -0.46460506319999695, -0.4626639187335968, -0.577220618724823, -0.5735422968864441], "max": [-0.08663932234048843, -0.08595836162567139, 0.14125153422355652, 0.5179481506347656, -0.09441230446100235, 0.8387036323547363, -0.25259554386138916, 0.13635540008544922, -0.11289257556200027, 0.1054205521941185, 0.46121782064437866, 0.4606623649597168, 0.5873838067054749, 0.8576852679252625], "mean": [-0.09000268578529358, -0.09226107597351074, 0.1343088448047638, 0.42576467990875244, -0.26025116443634033, 0.7673366665840149, -0.38375112414360046, 0.12989062070846558, -0.11758273094892502, 0.1006958931684494, 0.1819228231906891, -0.22365106642246246, -0.24781718850135803, 0.5811706781387329], "std": [0.0015699348878115416, 0.0039163497276604176, 0.0032055838964879513, 0.029365593567490578, 0.1047486811876297, 0.03912053629755974, 0.039473745971918106, 0.003807332366704941, 0.0027526849880814552, 0.002152424305677414, 0.2653486728668213, 0.2951648235321045, 0.36645567417144775, 0.4752783179283142], "count": [465]}, "timestamp": {"min": [0.0], "max": [15.466666666666667], "mean": [7.733333333333333], "std": [4.474454239428619], "count": [465]}, "frame_index": {"min": [0], "max": [464], "mean": [232.0], "std": [134.23362718285858], "count": [465]}, "episode_index": {"min": [610], "max": [610], "mean": [610.0], "std": [0.0], "count": [465]}, "index": {"min": [346557], "max": [347021], "mean": [346789.0], "std": [134.23362718285858], "count": [465]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [465]}}} +{"episode_index": 611, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.453441725634239]], [[0.41668240110552945]], [[0.35690080619024467]]], "std": [[[0.21666473166896158]], [[0.211276746978599]], [[0.21318428266197953]]], "count": [121]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47615458056500837]], [[0.4522279389257999]], [[0.3943027242118151]]], "std": [[[0.21544981468516447]], [[0.19545343954580396]], [[0.20855500101014457]]], "count": [121]}, "observation.state": {"min": [0.5638367533683777, -0.0881936103105545, 0.14576521515846252, -1.474329948425293, 0.5380745530128479, 0.02520206943154335, -0.46249130368232727, -0.3493300974369049, 0.17478397488594055, 0.017194580286741257, -0.17749081552028656, -1.0682836771011353], "max": [0.6055935621261597, -0.007993030361831188, 0.1606336534023285, -0.8922306895256042, 0.9315876364707947, 0.8603128790855408, -0.35132256150245667, -0.25786206126213074, 0.18764963746070862, 1.8886773586273193, 0.7774617075920105, 0.4042702913284302], "mean": [0.5885836482048035, -0.04858222231268883, 0.15282361209392548, -1.1432045698165894, 0.7232164144515991, 0.269490510225296, -0.40600916743278503, -0.2998657524585724, 0.18079692125320435, 0.9214208126068115, 0.5261808633804321, -0.10337204486131668], "std": [0.010137507691979408, 0.019398169592022896, 0.003850506152957678, 0.1727249026298523, 0.11982692778110504, 0.17073750495910645, 0.03440890461206436, 0.027056800201535225, 0.003272218396887183, 0.71355140209198, 0.21955981850624084, 0.49563390016555786], "count": [605]}, "action": {"min": [-0.09420941770076752, -0.09119217097759247, 0.1253635585308075, 0.44948822259902954, -0.5484941005706787, 0.5986416339874268, -0.44463542103767395, 0.12246545404195786, -0.12365946918725967, 0.09929002076387405, -0.6154142022132874, -0.5243908762931824, -0.624396026134491, -0.6236645579338074], "max": [-0.08218949288129807, -0.07981433719396591, 0.142404243350029, 0.6830345988273621, -0.2071036845445633, 0.7636971473693848, -0.12435095757246017, 0.13838471472263336, -0.11470798403024673, 0.11079669743776321, 0.7550632357597351, 0.29828208684921265, 0.67909836769104, 0.87457275390625], "mean": [-0.0874667689204216, -0.08557542413473129, 0.13408075273036957, 0.5533719658851624, -0.30938640236854553, 0.7045404314994812, -0.2833338677883148, 0.13159723579883575, -0.11842083930969238, 0.10574460029602051, 0.11521675437688828, -0.22425875067710876, -0.0890287235379219, 0.4417850077152252], "std": [0.0022120042704045773, 0.0026125682052224874, 0.004462492652237415, 0.07265153527259827, 0.06836222857236862, 0.03894971311092377, 0.09967635571956635, 0.00441529368981719, 0.002094134921208024, 0.003304707817733288, 0.3714951276779175, 0.2805819809436798, 0.4499564468860626, 0.5604795217514038], "count": [605]}, "timestamp": {"min": [0.0], "max": [20.133333333333333], "mean": [10.066666666666666], "std": [5.821607261840248], "count": [605]}, "frame_index": {"min": [0], "max": [604], "mean": [302.0], "std": [174.64821785520743], "count": [605]}, "episode_index": {"min": [611], "max": [611], "mean": [611.0], "std": [0.0], "count": [605]}, "index": {"min": [347022], "max": [347626], "mean": [347324.0], "std": [174.64821785520743], "count": [605]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [605]}}} +{"episode_index": 612, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4405497845379982]], [[0.4032698861815968]], [[0.3447809175957965]]], "std": [[[0.22547298567938942]], [[0.21768239930783165]], [[0.21967809247058415]]], "count": [136]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.464588525647187]], [[0.4410404571959503]], [[0.38569840526079713]]], "std": [[[0.231310360408976]], [[0.20885579365165335]], [[0.22044227326361424]]], "count": [136]}, "observation.state": {"min": [0.5500980019569397, -0.09193912893533707, 0.15078705549240112, -1.5368175506591797, 0.2247670441865921, -0.38086697459220886, -0.49637094140052795, -0.33512797951698303, 0.1700991690158844, -0.09498953819274902, 0.2042715698480606, -0.6034845113754272], "max": [0.6346696019172668, -0.051865868270397186, 0.1597094088792801, -0.553371787071228, 0.7991868853569031, 0.8111078143119812, -0.33737531304359436, -0.2597309648990631, 0.18277819454669952, 2.0256049633026123, 0.9176507592201233, 0.8612332344055176], "mean": [0.5915461778640747, -0.07622058689594269, 0.1556060016155243, -1.09502112865448, 0.49530017375946045, 0.12968933582305908, -0.44422629475593567, -0.293697714805603, 0.17627131938934326, 1.0108041763305664, 0.5266321897506714, 0.16906967759132385], "std": [0.02390623837709427, 0.008673842065036297, 0.0024214645382016897, 0.29147014021873474, 0.15910294651985168, 0.400980681180954, 0.040141135454177856, 0.015749616548419, 0.002574559533968568, 0.6294382810592651, 0.22813548147678375, 0.42152851819992065], "count": [700]}, "action": {"min": [-0.09441015124320984, -0.09666356444358826, 0.13014553487300873, 0.2646307349205017, -0.5139938592910767, 0.5676736235618591, -0.43262672424316406, 0.12171177566051483, -0.1202002689242363, 0.09612134844064713, -0.3663138747215271, -0.5241436958312988, -0.6575401425361633, -0.6513147950172424], "max": [-0.07771662622690201, -0.08561644703149796, 0.13759833574295044, 0.5809487104415894, -0.1261284351348877, 0.8919396996498108, -0.18461096286773682, 0.1404527723789215, -0.10975557565689087, 0.11368006467819214, 0.4211260974407196, 0.2825799286365509, 0.7703769207000732, 0.9211971163749695], "mean": [-0.08648572862148285, -0.09262838214635849, 0.13423354923725128, 0.44810250401496887, -0.2877356708049774, 0.7602802515029907, -0.3129729926586151, 0.12794899940490723, -0.11267311125993729, 0.10212229192256927, 0.14618924260139465, -0.25803226232528687, -0.13572430610656738, 0.588283896446228], "std": [0.004516398999840021, 0.0022837002761662006, 0.0019431618275120854, 0.08842088282108307, 0.11881402134895325, 0.11466654390096664, 0.07314851135015488, 0.0046202149242162704, 0.002101986203342676, 0.004811562597751617, 0.21438762545585632, 0.21965093910694122, 0.4188039004802704, 0.5272039175033569], "count": [700]}, "timestamp": {"min": [0.0], "max": [23.3], "mean": [11.65], "std": [6.735746267324637], "count": [700]}, "frame_index": {"min": [0], "max": [699], "mean": [349.5], "std": [202.0723880197391], "count": [700]}, "episode_index": {"min": [612], "max": [612], "mean": [612.0], "std": [0.0], "count": [700]}, "index": {"min": [347627], "max": [348326], "mean": [347976.5], "std": [202.0723880197391], "count": [700]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [700]}}} +{"episode_index": 613, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4482240546218487]], [[0.41144106948334885]], [[0.35174525365701836]]], "std": [[[0.22016058238247696]], [[0.21337643597791295]], [[0.21590400754226352]]], "count": [140]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4706174097416745]], [[0.44712510309679426]], [[0.39002665343915344]]], "std": [[[0.22339010985064714]], [[0.2021679886801849]], [[0.21474848978060096]]], "count": [140]}, "observation.state": {"min": [0.5393170714378357, -0.11050458252429962, 0.14726890623569489, -1.2703016996383667, 0.32246214151382446, -0.20954470336437225, -0.4997071623802185, -0.3257989287376404, 0.17476582527160645, -0.015307369641959667, -0.010111100040376186, -1.0188446044921875], "max": [0.6109376549720764, -0.0471627302467823, 0.1597755253314972, -0.09519922733306885, 0.8561643362045288, 1.005907416343689, -0.353423148393631, -0.25363773107528687, 0.1871531754732132, 1.9954094886779785, 0.9876086115837097, 0.6510826945304871], "mean": [0.5764968395233154, -0.07532397657632828, 0.15275871753692627, -0.6637141704559326, 0.6259979605674744, 0.4477789103984833, -0.425828754901886, -0.28886717557907104, 0.18152442574501038, 1.1687061786651611, 0.5978307723999023, -0.002804609714075923], "std": [0.02433045767247677, 0.013500041328370571, 0.00331102660857141, 0.33647897839546204, 0.14914365112781525, 0.33590248227119446, 0.0446443185210228, 0.017514368519186974, 0.002918558195233345, 0.621465802192688, 0.22471410036087036, 0.4939442276954651], "count": [731]}, "action": {"min": [-0.09831433743238449, -0.09556382894515991, 0.1279265284538269, -0.49946993589401245, -0.5404237508773804, -0.6619101166725159, -0.6656733751296997, 0.12035760283470154, -0.11987894028425217, 0.0968768298625946, -0.5211861729621887, -0.5029106736183167, -0.598738968372345, -0.6015101075172424], "max": [-0.08639045059680939, -0.08360254764556885, 0.1435496062040329, 0.5984159708023071, 0.5907794237136841, 0.7714866995811462, 0.7527605295181274, 0.13755665719509125, -0.10845276713371277, 0.11329590529203415, 0.39916449785232544, 0.49799299240112305, 0.6228888630867004, 0.9535427093505859], "mean": [-0.0911640003323555, -0.09024506062269211, 0.13468153774738312, 0.18544955551624298, -0.09455940127372742, 0.2510944604873657, -0.04840601980686188, 0.12783606350421906, -0.11616412550210953, 0.10628090798854828, 0.1057988703250885, -0.25915461778640747, -0.08125832676887512, 0.5629298686981201], "std": [0.0028846762143075466, 0.003488037269562483, 0.003998260013759136, 0.4365258812904358, 0.3775140345096588, 0.5800872445106506, 0.47085270285606384, 0.0054992372170090675, 0.002418042393401265, 0.00433262437582016, 0.2967902719974518, 0.33091533184051514, 0.35808414220809937, 0.5218611359596252], "count": [731]}, "timestamp": {"min": [0.0], "max": [24.333333333333332], "mean": [12.166666666666668], "std": [7.034044197883447], "count": [731]}, "frame_index": {"min": [0], "max": [730], "mean": [365.0], "std": [211.0213259365034], "count": [731]}, "episode_index": {"min": [613], "max": [613], "mean": [613.0], "std": [0.0], "count": [731]}, "index": {"min": [348327], "max": [349057], "mean": [348692.0], "std": [211.0213259365034], "count": [731]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [731]}}} +{"episode_index": 614, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4540604855130006]], [[0.4170460646875572]], [[0.3569067762099648]]], "std": [[[0.21724974374297754]], [[0.21097874248077053]], [[0.21353780152430582]]], "count": [107]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47584427748254027]], [[0.45125598110479914]], [[0.39382027670881437]]], "std": [[[0.22003763812858676]], [[0.19934481045422447]], [[0.2129606417730369]]], "count": [107]}, "observation.state": {"min": [0.5522371530532837, -0.1110992431640625, 0.1452544778585434, -1.3197884559631348, 0.4047172963619232, -0.1942647248506546, -0.4581511318683624, -0.34094321727752686, 0.17478784918785095, 0.09813489019870758, 0.41892752051353455, -1.3060585260391235], "max": [0.6182124614715576, -0.04805856943130493, 0.1572684943675995, -0.5321930646896362, 1.0601625442504883, 1.2057021856307983, -0.3610377609729767, -0.2661794424057007, 0.18148837983608246, 1.680455207824707, 1.0622121095657349, 0.17633378505706787], "mean": [0.5825698375701904, -0.08022473007440567, 0.15154917538166046, -1.0090303421020508, 0.6785497665405273, 0.5469265580177307, -0.40355050563812256, -0.29709383845329285, 0.17869322001934052, 0.8773301243782043, 0.7071819305419922, -0.45371997356414795], "std": [0.0202131737023592, 0.023299923166632652, 0.0034057432785630226, 0.21487510204315186, 0.23464109003543854, 0.4359302222728729, 0.03713398799300194, 0.020641159266233444, 0.0017283641500398517, 0.6691595315933228, 0.16145692765712738, 0.5915802717208862], "count": [512]}, "action": {"min": [-0.0943388119339943, -0.09492924809455872, 0.12412318587303162, 0.29933345317840576, -0.550788164138794, 0.4595993161201477, -0.5154538750648499, 0.12647667527198792, -0.11772061884403229, 0.09991110861301422, -0.5385646820068359, -0.5819015502929688, -0.5640572905540466, -0.5893505811691284], "max": [-0.08534598350524902, -0.08598345518112183, 0.14086130261421204, 0.7413972616195679, -0.22043415904045105, 0.8091697692871094, -0.014350366778671741, 0.1359497308731079, -0.11205260455608368, 0.1091248169541359, 0.6390599608421326, 0.5820372700691223, 0.5983953475952148, 0.8009710907936096], "mean": [-0.08980786055326462, -0.09042682498693466, 0.1310545653104782, 0.530624508857727, -0.4076913595199585, 0.6407150626182556, -0.24201898276805878, 0.13237082958221436, -0.11521998792886734, 0.10508895665407181, 0.2691434323787689, -0.33822256326675415, -0.17856712639331818, 0.42646390199661255], "std": [0.0022236232180148363, 0.0026773554272949696, 0.005830991547554731, 0.15799084305763245, 0.1050955280661583, 0.10644043236970901, 0.1892104148864746, 0.0028979575727134943, 0.0013420708710327744, 0.0026186765171587467, 0.3472694158554077, 0.33720770478248596, 0.3686191439628601, 0.47877421975135803], "count": [512]}, "timestamp": {"min": [0.0], "max": [17.033333333333335], "mean": [8.516666666666666], "std": [4.926712900098807], "count": [512]}, "frame_index": {"min": [0], "max": [511], "mean": [255.5], "std": [147.80138700296422], "count": [512]}, "episode_index": {"min": [614], "max": [614], "mean": [614.0], "std": [0.0], "count": [512]}, "index": {"min": [349058], "max": [349569], "mean": [349313.5], "std": [147.80138700296422], "count": [512]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [512]}}} +{"episode_index": 615, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43222701149425286]], [[0.39596848068729407]], [[0.3358677959689623]]], "std": [[[0.21837661282657017]], [[0.2105877167558434]], [[0.2130562016913027]]], "count": [203]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4562796706805327]], [[0.4331811847344302]], [[0.3755710676991103]]], "std": [[[0.22187207378971832]], [[0.2002291913938084]], [[0.21259110211386195]]], "count": [203]}, "observation.state": {"min": [0.5610565543174744, -0.09909810870885849, 0.1465028077363968, -1.4395214319229126, 0.15494579076766968, -0.05494609847664833, -0.45554083585739136, -0.35156968235969543, 0.17657284438610077, -0.0834565982222557, -0.3105747699737549, -1.405265212059021], "max": [0.6141812205314636, -0.04575718939304352, 0.15721404552459717, -0.5074496865272522, 0.6920638680458069, 1.112228512763977, -0.3475615978240967, -0.24931299686431885, 0.18991036713123322, 1.8576432466506958, 1.2436654567718506, 0.568606436252594], "mean": [0.5922318696975708, -0.07499723881483078, 0.15213723480701447, -0.83528071641922, 0.4627986252307892, 0.3160709738731384, -0.41744622588157654, -0.3019150197505951, 0.18196620047092438, 1.050919771194458, 0.6274787783622742, -0.16204792261123657], "std": [0.014233690686523914, 0.01158920768648386, 0.002479346003383398, 0.23263093829154968, 0.15131373703479767, 0.3248702585697174, 0.023458776995539665, 0.026989569887518883, 0.0028912127017974854, 0.5942432284355164, 0.3691460192203522, 0.5683295726776123], "count": [1195]}, "action": {"min": [-0.09420312941074371, -0.09755025804042816, 0.12782855331897736, -0.54973965883255, -0.5627998113632202, -0.5649264454841614, -0.5378026962280273, 0.12064960598945618, -0.12603148818016052, 0.0960233062505722, -0.6420541405677795, -0.6512841582298279, -0.6483684182167053, -0.6496894359588623], "max": [-0.08419395238161087, -0.08496405184268951, 0.13823848962783813, 0.5732539892196655, 0.7020731568336487, 0.7753357887268066, 0.3957196772098541, 0.13938890397548676, -0.11102383583784103, 0.11482010036706924, 0.7839879989624023, 0.6747653484344482, 0.6505987644195557, 0.897951602935791], "mean": [-0.08864720165729523, -0.09059954434633255, 0.1325601041316986, 0.3250126540660858, -0.2523747980594635, 0.5966991186141968, -0.3325403332710266, 0.12864020466804504, -0.11823689937591553, 0.10454688966274261, 0.23669366538524628, -0.2887977361679077, -0.23725087940692902, 0.5135298371315002], "std": [0.002715537091717124, 0.0030472450889647007, 0.0022499337792396545, 0.2684467136859894, 0.31192678213119507, 0.366743803024292, 0.24531005322933197, 0.00409083254635334, 0.003647630801424384, 0.0030461009591817856, 0.32307562232017517, 0.33453893661499023, 0.3140909671783447, 0.4749991297721863], "count": [1195]}, "timestamp": {"min": [0.0], "max": [39.8], "mean": [19.9], "std": [11.498888835206836], "count": [1195]}, "frame_index": {"min": [0], "max": [1194], "mean": [597.0], "std": [344.9666650562051], "count": [1195]}, "episode_index": {"min": [615], "max": [615], "mean": [615.0], "std": [0.0], "count": [1195]}, "index": {"min": [349570], "max": [350764], "mean": [350167.0], "std": [344.9666650562051], "count": [1195]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1195]}}} +{"episode_index": 616, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42805618401206635]], [[0.3916278531925591]], [[0.33105381473102063]]], "std": [[[0.21699702367936177]], [[0.20859062889389202]], [[0.2093280098847426]]], "count": [130]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44950850301659123]], [[0.4263400305848835]], [[0.36876946120328474]]], "std": [[[0.22084124106805225]], [[0.19777990223660674]], [[0.20879730047744166]]], "count": [130]}, "observation.state": {"min": [0.557141125202179, -0.12157897651195526, 0.14492781460285187, -1.9366962909698486, 0.3111213147640228, -0.8754027485847473, -0.46596652269363403, -0.3673086166381836, 0.17086917161941528, 0.3703124523162842, 0.4331377148628235, -0.42651620507240295], "max": [0.6324455142021179, -0.03194895014166832, 0.16026552021503448, -0.9691869020462036, 0.6062561273574829, 0.05759498104453087, -0.3568134307861328, -0.31633856892585754, 0.1827198565006256, 1.6754226684570312, 0.9370531439781189, 0.5078639388084412], "mean": [0.6034279465675354, -0.0792783796787262, 0.15143999457359314, -1.4094655513763428, 0.4919673800468445, -0.3354203701019287, -0.421728253364563, -0.33929213881492615, 0.1772453933954239, 0.9448150992393494, 0.616797685623169, -0.025644659996032715], "std": [0.017382144927978516, 0.023252179846167564, 0.00325018260627985, 0.3528701066970825, 0.04943415895104408, 0.22818487882614136, 0.034454770386219025, 0.011694192886352539, 0.002923105377703905, 0.5235034227371216, 0.1470806747674942, 0.33596596121788025], "count": [662]}, "action": {"min": [-0.09302900731563568, -0.09766015410423279, 0.12316815555095673, 0.31978848576545715, -0.27969399094581604, 0.7901370525360107, -0.4556278586387634, 0.12550047039985657, -0.12321383506059647, 0.09277427196502686, 0.1804884374141693, -0.42583537101745605, -0.595170795917511, 0.6294217705726624], "max": [-0.08369755744934082, -0.08358939737081528, 0.14141058921813965, 0.5410190224647522, 0.16397249698638916, 0.8629239797592163, -0.06455880403518677, 0.13952185213565826, -0.11238735169172287, 0.10279222577810287, 0.4883224666118622, -0.24336254596710205, -0.1520702987909317, 0.8839760422706604], "mean": [-0.0866415798664093, -0.09150655567646027, 0.12906506657600403, 0.43808090686798096, -0.11771407723426819, 0.8245397210121155, -0.2857997417449951, 0.13109274208545685, -0.11878009885549545, 0.09849733859300613, 0.3297367990016937, -0.34740570187568665, -0.4105846583843231, 0.7411975860595703], "std": [0.002393656875938177, 0.0034730129409581423, 0.004353053867816925, 0.06514179706573486, 0.11053062230348587, 0.020821459591388702, 0.12564922869205475, 0.004552769474685192, 0.0031853066757321358, 0.002836786676198244, 0.10151146352291107, 0.06564971804618835, 0.16915911436080933, 0.09695185720920563], "count": [662]}, "timestamp": {"min": [0.0], "max": [22.033333333333335], "mean": [11.016666666666666], "std": [6.370090702302092], "count": [662]}, "frame_index": {"min": [0], "max": [661], "mean": [330.5], "std": [191.10272106906274], "count": [662]}, "episode_index": {"min": [616], "max": [616], "mean": [616.0], "std": [0.0], "count": [662]}, "index": {"min": [350765], "max": [351426], "mean": [351095.5], "std": [191.10272106906274], "count": [662]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [662]}}} +{"episode_index": 617, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42860747480447015]], [[0.3931105527342832]], [[0.3345989776806006]]], "std": [[[0.2170248743466515]], [[0.2086472868271964]], [[0.20972412999359055]]], "count": [139]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.452559634645225]], [[0.4308176615570289]], [[0.37461585437532324]]], "std": [[[0.22044011733522167]], [[0.19712733034179034]], [[0.2085438316775304]]], "count": [139]}, "observation.state": {"min": [0.5404754877090454, -0.10466620326042175, 0.14221857488155365, -2.042170286178589, 0.5010460615158081, -0.5607039332389832, -0.4532240331172943, -0.3824142813682556, 0.17610618472099304, 0.4204283356666565, 0.4980400502681732, -0.374653160572052], "max": [0.623100996017456, -0.0404902882874012, 0.1532551795244217, -0.004403490107506514, 1.1663291454315186, 1.2278637886047363, -0.3618563711643219, -0.30362698435783386, 0.1854485422372818, 1.8647726774215698, 0.9448413848876953, 0.5807173252105713], "mean": [0.5919557809829712, -0.07797235250473022, 0.14844678342342377, -0.8548290133476257, 0.7078219056129456, 0.3431541621685028, -0.4190399944782257, -0.34964245557785034, 0.18068170547485352, 1.1067842245101929, 0.6935555338859558, 0.20071588456630707], "std": [0.02300843968987465, 0.015809984877705574, 0.002778206719085574, 0.5307585000991821, 0.16730083525180817, 0.5161416530609131, 0.028305286541581154, 0.01864648424088955, 0.0026545459404587746, 0.44959336519241333, 0.12002062052488327, 0.3737677037715912], "count": [723]}, "action": {"min": [-0.09690973907709122, -0.09463680535554886, 0.11860258132219315, -0.5917007327079773, -0.5911610722541809, -0.5724061727523804, -0.575401246547699, 0.12337454408407211, -0.12615466117858887, 0.09554378688335419, 0.11769610643386841, -0.49908095598220825, -0.5953487753868103, 0.6317662596702576], "max": [-0.08284793794155121, -0.0844716727733612, 0.1368951052427292, 0.7367755174636841, 0.5934880375862122, 0.8095155358314514, 0.6486428380012512, 0.1381942331790924, -0.11602934449911118, 0.1018911600112915, 0.40811049938201904, -0.19638893008232117, -0.16199177503585815, 0.8877137303352356], "mean": [-0.09066814929246902, -0.08803161233663559, 0.12880177795886993, 0.3643578886985779, -0.17379608750343323, 0.4449598491191864, -0.20059210062026978, 0.12969307601451874, -0.12228558212518692, 0.09855122864246368, 0.24752892553806305, -0.3648792505264282, -0.3904391825199127, 0.7792881727218628], "std": [0.0032359997276216745, 0.0020860203076153994, 0.0043551200069487095, 0.40268877148628235, 0.3093627691268921, 0.45038044452667236, 0.3716256320476532, 0.004572396166622639, 0.0021880907006561756, 0.0013608280569314957, 0.10029624402523041, 0.09405430406332016, 0.13864606618881226, 0.0879260003566742], "count": [723]}, "timestamp": {"min": [0.0], "max": [24.066666666666666], "mean": [12.033333333333331], "std": [6.95706408916439], "count": [723]}, "frame_index": {"min": [0], "max": [722], "mean": [361.0], "std": [208.71192267493169], "count": [723]}, "episode_index": {"min": [617], "max": [617], "mean": [617.0], "std": [0.0], "count": [723]}, "index": {"min": [351427], "max": [352149], "mean": [351788.0], "std": [208.71192267493169], "count": [723]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [723]}}} +{"episode_index": 618, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42979292035683436]], [[0.3938327999510126]], [[0.33391041433009755]]], "std": [[[0.21639275268701286]], [[0.20844185517635108]], [[0.20871694069197202]]], "count": [169]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.447328726263681]], [[0.4250675655206198]], [[0.36724990331438295]]], "std": [[[0.22148921714896397]], [[0.19835445810081972]], [[0.20863535973586203]]], "count": [169]}, "observation.state": {"min": [0.5184347629547119, -0.14039155840873718, 0.14289264380931854, -2.342026948928833, 0.12884822487831116, -0.4507283568382263, -0.4935830235481262, -0.3588831126689911, 0.17163267731666565, 0.38750702142715454, 0.546819269657135, -0.3165774941444397], "max": [0.6413497924804688, -0.03292972967028618, 0.1562846153974533, -0.021598059684038162, 0.7587424516677856, 0.9924945831298828, -0.3589062988758087, -0.29625949263572693, 0.18285855650901794, 1.6775195598602295, 0.954269289970398, 0.4776093661785126], "mean": [0.5922873616218567, -0.0876837819814682, 0.15155433118343353, -0.9945688843727112, 0.47494396567344666, 0.1746433526277542, -0.42780736088752747, -0.3292444348335266, 0.17935723066329956, 1.0635154247283936, 0.7836893200874329, 0.05398492515087128], "std": [0.029286794364452362, 0.031545065343379974, 0.002865798305720091, 0.6939024925231934, 0.21319228410720825, 0.4123140573501587, 0.03851907327771187, 0.01769806258380413, 0.002223110757768154, 0.43666014075279236, 0.11127828061580658, 0.26220008730888367], "count": [940]}, "action": {"min": [-0.10211441665887833, -0.10310176759958267, 0.1192166805267334, -0.3955109417438507, -0.5270565748214722, -0.6018293499946594, -0.600926399230957, 0.11933401972055435, -0.12481938302516937, 0.09547261893749237, 0.19432830810546875, -0.5020565986633301, -0.6402380466461182, 0.6514214873313904], "max": [-0.08184969425201416, -0.08519315719604492, 0.14123845100402832, 0.565036952495575, 0.620729923248291, 0.8736100196838379, 0.6776171326637268, 0.1382438838481903, -0.1116255447268486, 0.10594131052494049, 0.36028173565864563, -0.3165259063243866, -0.18719719350337982, 0.8715534806251526], "mean": [-0.08922957628965378, -0.09279765188694, 0.13021732866764069, 0.30317220091819763, -0.04863419383764267, 0.4808683693408966, -0.06854508817195892, 0.12829561531543732, -0.11774606257677078, 0.09971266984939575, 0.2769218981266022, -0.42075929045677185, -0.3986699879169464, 0.7454094886779785], "std": [0.004611401818692684, 0.005852900445461273, 0.005682895425707102, 0.34275662899017334, 0.335290789604187, 0.5149136781692505, 0.4180314540863037, 0.005552498158067465, 0.004156005568802357, 0.0024264289531856775, 0.051749106496572495, 0.04345569759607315, 0.14625005424022675, 0.07581372559070587], "count": [940]}, "timestamp": {"min": [0.0], "max": [31.3], "mean": [15.65], "std": [9.045149098949238], "count": [940]}, "frame_index": {"min": [0], "max": [939], "mean": [469.5], "std": [271.3544729684772], "count": [940]}, "episode_index": {"min": [618], "max": [618], "mean": [618.0], "std": [0.0], "count": [940]}, "index": {"min": [352150], "max": [353089], "mean": [352619.5], "std": [271.3544729684772], "count": [940]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [940]}}} +{"episode_index": 619, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4412034329111431]], [[0.4039844755855889]], [[0.34359415888138056]]], "std": [[[0.2145016741614152]], [[0.20705946953593157]], [[0.20910035485167838]]], "count": [177]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46258241325406496]], [[0.43867849845525153]], [[0.38111901794616154]]], "std": [[[0.21973889178033168]], [[0.19738744984943477]], [[0.2094082015673622]]], "count": [177]}, "observation.state": {"min": [0.547727108001709, -0.11893781274557114, 0.14198783040046692, -2.4833579063415527, -0.5759228467941284, -0.6746699213981628, -0.4639817774295807, -0.36855196952819824, 0.16917622089385986, -0.2906302511692047, 0.40512722730636597, -1.3314353227615356], "max": [0.643527626991272, -0.06706421077251434, 0.15089981257915497, -0.5783248543739319, 0.8333460092544556, 0.9774280786514282, -0.3439319133758545, -0.2777867019176483, 0.19220998883247375, 1.8851126432418823, 1.157311201095581, 0.518611490726471], "mean": [0.5830414891242981, -0.09425584226846695, 0.1472366452217102, -1.4066038131713867, 0.42013904452323914, -0.07881753891706467, -0.42187726497650146, -0.3281470537185669, 0.17980332672595978, 0.8198186159133911, 0.7167414426803589, -0.2533898949623108], "std": [0.03036709874868393, 0.013746670447289944, 0.0019940119236707687, 0.6503817439079285, 0.37236106395721436, 0.41592517495155334, 0.034536879509687424, 0.02372932992875576, 0.0050701843574643135, 0.6842242479324341, 0.17652763426303864, 0.5455416440963745], "count": [1001]}, "action": {"min": [-0.09798500686883926, -0.09752572327852249, 0.11728234589099884, 0.22968018054962158, -0.544939398765564, 0.5291054844856262, -0.5132660865783691, 0.11868637800216675, -0.12719446420669556, 0.09492749720811844, -0.5644199848175049, -0.6173468828201294, -0.6635720729827881, -0.6611809730529785], "max": [-0.08473283797502518, -0.0863364040851593, 0.13220497965812683, 0.6003997325897217, 0.2344302237033844, 0.9158772826194763, 0.3058139681816101, 0.13912278413772583, -0.10914313048124313, 0.11051744967699051, 0.6273003220558167, 0.6196349859237671, 0.7913357615470886, 0.8771282434463501], "mean": [-0.09317320585250854, -0.09207425266504288, 0.12752468883991241, 0.45226913690567017, -0.1707635223865509, 0.7713099122047424, -0.21250885725021362, 0.13013535737991333, -0.11864283680915833, 0.10134196281433105, 0.11197829991579056, -0.2453765720129013, -0.0419483408331871, 0.37212836742401123], "std": [0.0038424907252192497, 0.002408102387562394, 0.0034046657383441925, 0.09036500751972198, 0.20587848126888275, 0.08908998966217041, 0.2602419853210449, 0.005067840218544006, 0.004121377598494291, 0.004293607547879219, 0.35521799325942993, 0.35517260432243347, 0.47147336602211, 0.5589252710342407], "count": [1001]}, "timestamp": {"min": [0.0], "max": [33.333333333333336], "mean": [16.666666666666668], "std": [9.63212218453326], "count": [1001]}, "frame_index": {"min": [0], "max": [1000], "mean": [500.0], "std": [288.9636655359978], "count": [1001]}, "episode_index": {"min": [619], "max": [619], "mean": [619.0], "std": [0.0], "count": [1001]}, "index": {"min": [353090], "max": [354090], "mean": [353590.0], "std": [288.9636655359978], "count": [1001]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1001]}}} +{"episode_index": 620, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4478116062586651]], [[0.4105612670825906]], [[0.348878334818776]]], "std": [[[0.21204115744877788]], [[0.2057373036445375]], [[0.2088959844371841]]], "count": [110]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46515161665676374]], [[0.4400252525252525]], [[0.3809366359675183]]], "std": [[[0.21327224431623382]], [[0.1930586969191998]], [[0.20724430925650095]]], "count": [110]}, "observation.state": {"min": [0.5316329002380371, -0.12743282318115234, 0.1484394669532776, -1.4315532445907593, 0.5070580244064331, -0.1261470764875412, -0.4178539216518402, -0.3844222128391266, 0.17638617753982544, 0.21115776896476746, 0.5811150074005127, -1.16463303565979], "max": [0.5848734378814697, -0.03367884084582329, 0.15828219056129456, -0.7483834028244019, 0.8036959171295166, 0.9641578197479248, -0.34719860553741455, -0.28052055835723877, 0.18657632172107697, 1.6213226318359375, 1.0245004892349243, 0.3637819290161133], "mean": [0.5702328085899353, -0.09122594445943832, 0.1527092158794403, -1.0356900691986084, 0.6304623484611511, 0.40926840901374817, -0.3858835995197296, -0.31858953833580017, 0.1815570741891861, 1.0448143482208252, 0.8110145330429077, -0.5017161965370178], "std": [0.013697314076125622, 0.03016725555062294, 0.0024140621535480022, 0.17672762274742126, 0.08379342406988144, 0.3777432143688202, 0.021322838962078094, 0.029434815049171448, 0.002830260433256626, 0.3862159550189972, 0.12426164001226425, 0.5037826895713806], "count": [531]}, "action": {"min": [-0.098191037774086, -0.10278373211622238, 0.12743425369262695, -0.5456717014312744, -0.5794187784194946, -0.578033447265625, -0.44377368688583374, 0.12622669339179993, -0.12704014778137207, 0.0989762470126152, -0.6109743714332581, -0.6100037097930908, -0.580633282661438, -0.5848810076713562], "max": [-0.08815845102071762, -0.08412689715623856, 0.13812507688999176, 0.5842493176460266, 0.6028108596801758, 0.8016194701194763, 0.30176466703414917, 0.13950864970684052, -0.11056641489267349, 0.11005087196826935, 0.6141846179962158, 0.6467452049255371, 0.5969145894050598, 0.8140910863876343], "mean": [-0.09113077819347382, -0.09382829070091248, 0.13210825622081757, 0.2866455614566803, -0.12617166340351105, 0.4363972544670105, -0.19081318378448486, 0.13318927586078644, -0.11931522935628891, 0.10464424639940262, 0.08628804981708527, -0.11578082293272018, -0.11373820155858994, 0.3055652678012848], "std": [0.0023517569061368704, 0.005462449975311756, 0.0029645641334354877, 0.43389788269996643, 0.39129889011383057, 0.5287987589836121, 0.23249134421348572, 0.003727839794009924, 0.004129041451960802, 0.003707064315676689, 0.4622228443622589, 0.4971921443939209, 0.286452978849411, 0.5744014382362366], "count": [531]}, "timestamp": {"min": [0.0], "max": [17.666666666666668], "mean": [8.833333333333336], "std": [5.109540821581467], "count": [531]}, "frame_index": {"min": [0], "max": [530], "mean": [265.0], "std": [153.286224647444], "count": [531]}, "episode_index": {"min": [620], "max": [620], "mean": [620.0], "std": [0.0], "count": [531]}, "index": {"min": [354091], "max": [354621], "mean": [354356.0], "std": [153.286224647444], "count": [531]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [531]}}} +{"episode_index": 621, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43612452873190255]], [[0.39961002564934567]], [[0.339486116905391]]], "std": [[[0.21580717043834716]], [[0.20867024561436637]], [[0.20925515121969632]]], "count": [141]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4587791162564317]], [[0.43519751154993125]], [[0.3774196777607812]]], "std": [[[0.21579222850827998]], [[0.19459983989635568]], [[0.20637562812436888]]], "count": [141]}, "observation.state": {"min": [0.564578115940094, -0.11238893121480942, 0.14391282200813293, -2.612107515335083, -0.025141119956970215, -1.0068172216415405, -0.4375932216644287, -0.3775412440299988, 0.17777320742607117, 0.4653019905090332, 0.17544126510620117, -0.6390997767448425], "max": [0.6461378931999207, 0.0062940302304923534, 0.16154755651950836, -1.0794838666915894, 1.2134687900543213, -0.19344471395015717, -0.3634240925312042, -0.3287181258201599, 0.18516336381435394, 1.6689223051071167, 0.904806911945343, 0.44748130440711975], "mean": [0.603588342666626, -0.056479986757040024, 0.15289461612701416, -1.8567043542861938, 0.5362070798873901, -0.5781543254852295, -0.39886465668678284, -0.34633225202560425, 0.18041390180587769, 1.3160426616668701, 0.5272192358970642, 0.16514697670936584], "std": [0.018760161474347115, 0.034406185150146484, 0.003995173145085573, 0.4252798557281494, 0.38483232259750366, 0.22541794180870056, 0.01912027783691883, 0.013343654572963715, 0.002162209479138255, 0.36575907468795776, 0.17477193474769592, 0.297553688287735], "count": [735]}, "action": {"min": [-0.09191868454217911, -0.09794751554727554, 0.12147410959005356, 0.29504191875457764, -0.2140660285949707, 0.5638642311096191, -0.3765279948711395, 0.1287759691476822, -0.12837916612625122, 0.09644366055727005, 0.20385605096817017, -0.475570946931839, -0.5119855403900146, 0.5829602479934692], "max": [-0.0805768072605133, -0.08315134793519974, 0.1398323029279709, 0.8164065480232239, 0.11480879783630371, 0.9381565451622009, 0.04320676997303963, 0.13838541507720947, -0.12094081938266754, 0.10240695625543594, 0.46523475646972656, -0.1689385622739792, -0.18064869940280914, 0.8997973799705505], "mean": [-0.08650969713926315, -0.09017180651426315, 0.13098479807376862, 0.5161851644515991, -0.03368633985519409, 0.8037865161895752, -0.16616074740886688, 0.13310657441616058, -0.12403558194637299, 0.09966330230236053, 0.30241069197654724, -0.35744333267211914, -0.2652657926082611, 0.8233435153961182], "std": [0.003014178713783622, 0.003930625505745411, 0.005041474476456642, 0.16574129462242126, 0.071588434278965, 0.12201496958732605, 0.10607881844043732, 0.0024576480500400066, 0.0022517582401633263, 0.0014311920385807753, 0.07577091455459595, 0.09179595857858658, 0.10572949051856995, 0.08470649272203445], "count": [735]}, "timestamp": {"min": [0.0], "max": [24.466666666666665], "mean": [12.233333333333333], "std": [7.0725342516484675], "count": [735]}, "frame_index": {"min": [0], "max": [734], "mean": [367.0], "std": [212.176027549454], "count": [735]}, "episode_index": {"min": [621], "max": [621], "mean": [621.0], "std": [0.0], "count": [735]}, "index": {"min": [354622], "max": [355356], "mean": [354989.0], "std": [212.176027549454], "count": [735]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [735]}}} +{"episode_index": 622, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4369038503949637]], [[0.39981414317601616]], [[0.34000993758103104]]], "std": [[[0.21394420477180132]], [[0.20628135052428975]], [[0.20812942319038338]]], "count": [163]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4597579594209872]], [[0.4360374731010332]], [[0.3790370403785236]]], "std": [[[0.2172638936392482]], [[0.19484820816523948]], [[0.20708176294703012]]], "count": [163]}, "observation.state": {"min": [0.5454257130622864, -0.11306852847337723, 0.14356930553913116, -1.5145905017852783, -0.18746528029441833, -0.39422425627708435, -0.46564218401908875, -0.3475075364112854, 0.17330101132392883, 0.10379651933908463, 0.3008735775947571, -0.7375301122665405], "max": [0.6290397644042969, -0.06782104074954987, 0.1530594378709793, -0.12371706962585449, 0.7670773267745972, 1.2164846658706665, -0.35597938299179077, -0.2779797613620758, 0.18538762629032135, 1.842545509338379, 0.8945591449737549, 0.5395088195800781], "mean": [0.5875535607337952, -0.08935165405273438, 0.1475074142217636, -0.7862780094146729, 0.48302197456359863, 0.25580835342407227, -0.4150460660457611, -0.3185163736343384, 0.17835134267807007, 1.3151493072509766, 0.6434946656227112, -0.15158627927303314], "std": [0.022673537954688072, 0.011733117513358593, 0.0020045547280460596, 0.4108874499797821, 0.25504040718078613, 0.5341962575912476, 0.02472059614956379, 0.01918770745396614, 0.0027486805338412523, 0.5318894982337952, 0.1743667721748352, 0.38675567507743835], "count": [892]}, "action": {"min": [-0.09826084226369858, -0.09452235698699951, 0.12179701775312424, -0.4897330105304718, -0.5563977360725403, -0.6105139851570129, -0.6130784749984741, 0.12218853086233139, -0.12494653463363647, 0.09463749825954437, -0.39074382185935974, -0.5806873440742493, -0.5780524015426636, -0.5852528810501099], "max": [-0.08385393768548965, -0.08790385723114014, 0.13245365023612976, 0.5112217664718628, 0.7579442858695984, 0.8351885080337524, 0.6910139918327332, 0.13976845145225525, -0.10927580296993256, 0.11235250532627106, 0.603216826915741, 0.43527349829673767, 0.6284624338150024, 0.9156386256217957], "mean": [-0.09215199202299118, -0.09087104350328445, 0.12807078659534454, 0.1887127310037613, 0.021267514675855637, 0.39182764291763306, -0.1505139172077179, 0.1307787299156189, -0.11805225908756256, 0.10068807005882263, 0.29688018560409546, -0.363741934299469, -0.08315298706293106, 0.6122390031814575], "std": [0.004022587090730667, 0.0014859093353152275, 0.0021376204676926136, 0.37766924500465393, 0.3985616862773895, 0.5497699975967407, 0.4289749264717102, 0.0037945040967315435, 0.0035385233350098133, 0.004393554292619228, 0.2571881115436554, 0.2769688367843628, 0.27707189321517944, 0.4221095144748688], "count": [892]}, "timestamp": {"min": [0.0], "max": [29.7], "mean": [14.850000000000001], "std": [8.583268608170199], "count": [892]}, "frame_index": {"min": [0], "max": [891], "mean": [445.5], "std": [257.498058245106], "count": [892]}, "episode_index": {"min": [622], "max": [622], "mean": [622.0], "std": [0.0], "count": [892]}, "index": {"min": [355357], "max": [356248], "mean": [355802.5], "std": [257.498058245106], "count": [892]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [892]}}} +{"episode_index": 623, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45201996752579443]], [[0.41473923007358077]], [[0.352857831147833]]], "std": [[[0.21002484964951187]], [[0.20419623984712984]], [[0.20713050505558597]]], "count": [159]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46823651190035764]], [[0.44359961668105397]], [[0.38461894362916377]]], "std": [[[0.2135224358924091]], [[0.1929047381270577]], [[0.20689491609250038]]], "count": [159]}, "observation.state": {"min": [0.5480360388755798, -0.13882385194301605, 0.14237672090530396, -1.6389366388320923, 0.10766956210136414, -0.8132343292236328, -0.44940125942230225, -0.3595781624317169, 0.17310138046741486, 0.282662034034729, 0.5084244012832642, -0.9496457576751709], "max": [0.6251938343048096, -0.05680841952562332, 0.15676942467689514, -0.4558659493923187, 0.8323895335197449, 0.8005896806716919, -0.3572922348976135, -0.2720641493797302, 0.184716135263443, 1.8320610523223877, 1.0232707262039185, 0.2531889081001282], "mean": [0.5776798129081726, -0.10135877877473831, 0.14940202236175537, -1.0301103591918945, 0.5002709031105042, 0.1099613681435585, -0.40330424904823303, -0.31416046619415283, 0.17915047705173492, 1.168802261352539, 0.717766523361206, -0.2508434057235718], "std": [0.018259162083268166, 0.025414394214749336, 0.0036470445338636637, 0.3446597754955292, 0.19036662578582764, 0.3675785958766937, 0.02182122878730297, 0.026591792702674866, 0.003275938332080841, 0.4679628610610962, 0.10437386482954025, 0.3735247850418091], "count": [864]}, "action": {"min": [-0.09805244207382202, -0.10197024047374725, 0.12131213396787643, -0.4237949848175049, -0.5761150121688843, -0.5750689506530762, -0.6459099054336548, 0.12695719301700592, -0.12587185204029083, 0.09880480915307999, -0.40907710790634155, -0.602154016494751, -0.6088520288467407, -0.6109434366226196], "max": [-0.08435889333486557, -0.08639535307884216, 0.13791392743587494, 0.5952914953231812, 0.5813601613044739, 0.9205021858215332, 0.4187266528606415, 0.13864575326442719, -0.11081646382808685, 0.11071279644966125, 0.6810152530670166, 0.307099848985672, 0.6153169274330139, 0.8351574540138245], "mean": [-0.09244626015424728, -0.09447363018989563, 0.12858980894088745, 0.38492199778556824, -0.26558735966682434, 0.7069578766822815, -0.31450653076171875, 0.13165590167045593, -0.11772637069225311, 0.10251542925834656, 0.395547479391098, -0.45431816577911377, -0.263884961605072, 0.6847156882286072], "std": [0.002603540662676096, 0.0034947283565998077, 0.0044979555532336235, 0.20127162337303162, 0.20254451036453247, 0.25394096970558167, 0.19124308228492737, 0.003031762083992362, 0.004099494311958551, 0.0028453420381993055, 0.14712785184383392, 0.11292599141597748, 0.17932696640491486, 0.17918957769870758], "count": [864]}, "timestamp": {"min": [0.0], "max": [28.766666666666666], "mean": [14.383333333333335], "std": [8.31383830774976], "count": [864]}, "frame_index": {"min": [0], "max": [863], "mean": [431.5], "std": [249.4151492324928], "count": [864]}, "episode_index": {"min": [623], "max": [623], "mean": [623.0], "std": [0.0], "count": [864]}, "index": {"min": [356249], "max": [357112], "mean": [356680.5], "std": [249.4151492324928], "count": [864]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [864]}}} +{"episode_index": 624, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4584491515666791]], [[0.4215203916254849]], [[0.3603465757124891]]], "std": [[[0.2071170387015182]], [[0.20332175550880208]], [[0.20826836034743398]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47147231078519936]], [[0.44720327638733903]], [[0.38904417964114285]]], "std": [[[0.21256097610186667]], [[0.19288860105441136]], [[0.2079324383292495]]], "count": [123]}, "observation.state": {"min": [0.5214080214500427, -0.1424921452999115, 0.14464393258094788, -1.7370715141296387, 0.245125874876976, -0.5000671744346619, -0.44234269857406616, -0.372853547334671, 0.16969473659992218, 0.2300298660993576, 0.5682712197303772, -1.1274852752685547], "max": [0.6161814332008362, -0.0712808221578598, 0.15864385664463043, -0.8138066530227661, 1.2734521627426147, 0.6623525023460388, -0.3555932343006134, -0.29371869564056396, 0.18088042736053467, 1.7385393381118774, 1.0081040859222412, 0.21636348962783813], "mean": [0.5817667245864868, -0.11396510154008865, 0.15095534920692444, -1.2338813543319702, 0.5902880430221558, 0.1860164850950241, -0.40452995896339417, -0.3334885537624359, 0.17608898878097534, 0.7702034711837769, 0.7247901558876038, -0.5330588221549988], "std": [0.025883717462420464, 0.019404305145144463, 0.003900377079844475, 0.30677562952041626, 0.2959999740123749, 0.3339196443557739, 0.029490208253264427, 0.018375549465417862, 0.0027051405049860477, 0.5264883041381836, 0.09704752266407013, 0.4731849730014801], "count": [617]}, "action": {"min": [-0.0954618826508522, -0.1018090769648552, 0.11996227502822876, 0.283788800239563, -0.5153181552886963, 0.511920154094696, -0.45788297057151794, 0.1281377077102661, -0.1224835142493248, 0.09708389639854431, -0.5393937230110168, -0.5693219900131226, -0.5717921257019043, -0.5674570202827454], "max": [-0.08582504093647003, -0.09175145626068115, 0.1369357407093048, 0.7857862710952759, -0.10147290676832199, 0.879410982131958, -0.006445299368351698, 0.13982126116752625, -0.11081436276435852, 0.10403674840927124, 0.6062741279602051, 0.586844801902771, 0.5696399807929993, 0.8336226344108582], "mean": [-0.09069517254829407, -0.09709510207176208, 0.12663397192955017, 0.4861740171909332, -0.331657350063324, 0.7275660634040833, -0.23673224449157715, 0.13403339684009552, -0.11676528304815292, 0.10005441308021545, 0.3128472566604614, -0.3300724923610687, -0.25075411796569824, 0.47616899013519287], "std": [0.002638575155287981, 0.002449456602334976, 0.0052270060405135155, 0.15335078537464142, 0.1067681610584259, 0.10426829010248184, 0.14985322952270508, 0.003372180974110961, 0.003431051503866911, 0.0019470116822049022, 0.33494582772254944, 0.3177509605884552, 0.3386327624320984, 0.4192104637622833], "count": [617]}, "timestamp": {"min": [0.0], "max": [20.533333333333335], "mean": [10.266666666666666], "std": [5.937077470345902], "count": [617]}, "frame_index": {"min": [0], "max": [616], "mean": [308.0], "std": [178.11232411037705], "count": [617]}, "episode_index": {"min": [624], "max": [624], "mean": [624.0], "std": [0.0], "count": [617]}, "index": {"min": [357113], "max": [357729], "mean": [357421.0], "std": [178.11232411037705], "count": [617]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [617]}}} +{"episode_index": 625, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4376065160023321]], [[0.40078860198226396]], [[0.3389174472214551]]], "std": [[[0.20955025023104215]], [[0.2021190143785129]], [[0.20359811538513087]]], "count": [142]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4523408780570131]], [[0.42899653832581547]], [[0.3703317664702814]]], "std": [[[0.21453190415030063]], [[0.191557227642961]], [[0.20374524564512742]]], "count": [142]}, "observation.state": {"min": [0.5356796383857727, -0.1299581527709961, 0.1444922536611557, -1.4969764947891235, 0.3969290256500244, -0.15303556621074677, -0.4780217111110687, -0.3778964877128601, 0.17027677595615387, 0.379329115152359, 0.35470834374427795, -0.8093615770339966], "max": [0.6135170459747314, -0.04832113906741142, 0.1568407267332077, -0.5074496865272522, 0.6685624122619629, 0.47169169783592224, -0.3596399426460266, -0.3201613426208496, 0.18619650602340698, 1.7481850385665894, 0.9350035786628723, 0.8500679135322571], "mean": [0.5789148211479187, -0.10028686374425888, 0.1507430225610733, -0.8439655303955078, 0.5111129879951477, 0.15723048150539398, -0.42892441153526306, -0.3533973693847656, 0.17942602932453156, 0.9999028444290161, 0.6710934042930603, 0.13023869693279266], "std": [0.01626325212419033, 0.022047070786356926, 0.0030628202948719263, 0.23598816990852356, 0.07545746862888336, 0.17751778662204742, 0.03908867388963699, 0.01572117768228054, 0.003956365864723921, 0.45852944254875183, 0.17056825757026672, 0.4288521707057953], "count": [745]}, "action": {"min": [-0.09741780906915665, -0.10083921253681183, 0.1223435252904892, 0.261888712644577, -0.43347808718681335, 0.6456888914108276, -0.5636779069900513, 0.120779849588871, -0.1277671456336975, 0.09375517070293427, 0.041705675423145294, -0.5183503031730652, -0.6065508723258972, 0.5377368927001953], "max": [-0.08443401753902435, -0.08719035983085632, 0.13693761825561523, 0.5322033762931824, -0.1974925845861435, 0.8165993690490723, -0.19166751205921173, 0.13947243988513947, -0.1108785942196846, 0.10189768671989441, 0.4484795331954956, -0.03557009994983673, -0.11885816603899002, 0.8935979604721069], "mean": [-0.09159701317548752, -0.09430310875177383, 0.13012643158435822, 0.39584600925445557, -0.32333478331565857, 0.7312904596328735, -0.43008601665496826, 0.12924066185951233, -0.12131549417972565, 0.09727218747138977, 0.26597049832344055, -0.33973369002342224, -0.40109363198280334, 0.7664820551872253], "std": [0.003193037351593375, 0.0034339232370257378, 0.0033843843266367912, 0.06432973593473434, 0.07121291756629944, 0.04497510567307472, 0.08813716471195221, 0.005600923206657171, 0.004699549172073603, 0.0020726718939840794, 0.10642875730991364, 0.13972444832324982, 0.15551064908504486, 0.10215625166893005], "count": [745]}, "timestamp": {"min": [0.0], "max": [24.8], "mean": [12.4], "std": [7.168759384378243], "count": [745]}, "frame_index": {"min": [0], "max": [744], "mean": [372.0], "std": [215.06278153134727], "count": [745]}, "episode_index": {"min": [625], "max": [625], "mean": [625.0], "std": [0.0], "count": [745]}, "index": {"min": [357730], "max": [358474], "mean": [358102.0], "std": [215.06278153134727], "count": [745]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [745]}}} +{"episode_index": 626, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4257016172280878]], [[0.3891024907826378]], [[0.3293629022121669]]], "std": [[[0.21341345455942282]], [[0.2053034087249021]], [[0.20558786036511265]]], "count": [130]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4464792483660131]], [[0.42386116138763197]], [[0.3660533308195073]]], "std": [[[0.21471331792784104]], [[0.19229292036574447]], [[0.2036312913713641]]], "count": [130]}, "observation.state": {"min": [0.5587242841720581, -0.10744637995958328, 0.14499393105506897, -2.618398427963257, 0.1800869107246399, -0.7228797078132629, -0.4467523694038391, -0.37259867787361145, 0.17486433684825897, 0.027049999684095383, 0.4446151554584503, -0.6339511275291443], "max": [0.6260124444961548, -0.022280080243945122, 0.1576249748468399, -1.1402939558029175, 0.8460531830787659, 0.013954110443592072, -0.3727531433105469, -0.312616229057312, 0.18806445598602295, 1.701424241065979, 0.9571386575698853, 0.2813083231449127], "mean": [0.6038140654563904, -0.07458873838186264, 0.15042342245578766, -1.8924325704574585, 0.46774810552597046, -0.4559342861175537, -0.4123348891735077, -0.3436061143875122, 0.18005333840847015, 0.9343041181564331, 0.7188702821731567, -0.161965474486351], "std": [0.016956757754087448, 0.024396071210503578, 0.0028580776415765285, 0.49345070123672485, 0.19883938133716583, 0.1837616115808487, 0.024066664278507233, 0.01421554759144783, 0.004127900581806898, 0.4617357850074768, 0.154343843460083, 0.2358902096748352], "count": [659]}, "action": {"min": [-0.09604020416736603, -0.09678018093109131, 0.1236167848110199, 0.3882993459701538, -0.24763071537017822, 0.6911649107933044, -0.3932245373725891, 0.12419940531253815, -0.1277562975883484, 0.09567194432020187, -0.443419486284256, -0.5058426856994629, -0.6141082048416138, -0.6121965050697327], "max": [-0.08441589027643204, -0.0872490182518959, 0.13897642493247986, 0.7214999198913574, 0.07811471819877625, 0.9057192206382751, 0.19181868433952332, 0.1368333101272583, -0.11320006102323532, 0.10363414138555527, 0.4531319737434387, 0.3470778167247772, 0.6821157336235046, 0.8286093473434448], "mean": [-0.08769544959068298, -0.09177611023187637, 0.12823379039764404, 0.5201060175895691, -0.04892454668879509, 0.8118807673454285, -0.09796366840600967, 0.1309654414653778, -0.12087886780500412, 0.09980453550815582, 0.2682642936706543, -0.308267742395401, -0.22835299372673035, 0.5642355680465698], "std": [0.00220682960934937, 0.002612313022837043, 0.0036539286375045776, 0.10499966144561768, 0.09153449535369873, 0.06773419678211212, 0.18535761535167694, 0.003835963783785701, 0.004089124500751495, 0.0023849669378250837, 0.256443053483963, 0.2679649591445923, 0.3607544004917145, 0.44134610891342163], "count": [659]}, "timestamp": {"min": [0.0], "max": [21.933333333333334], "mean": [10.966666666666667], "std": [6.341223155757185], "count": [659]}, "frame_index": {"min": [0], "max": [658], "mean": [329.0], "std": [190.23669467271554], "count": [659]}, "episode_index": {"min": [626], "max": [626], "mean": [626.0], "std": [0.0], "count": [659]}, "index": {"min": [358475], "max": [359133], "mean": [358804.0], "std": [190.23669467271554], "count": [659]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [659]}}} +{"episode_index": 627, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4512081996893408]], [[0.4138484351044945]], [[0.35386867838699265]]], "std": [[[0.21228683819290634]], [[0.205331334392221]], [[0.20784754492905705]]], "count": [108]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4728381646897442]], [[0.4478538060800452]], [[0.3906083928427338]]], "std": [[[0.2145389254951365]], [[0.19265410838055488]], [[0.20492294282089987]]], "count": [108]}, "observation.state": {"min": [0.5484762191772461, -0.1102883517742157, 0.14415523409843445, -1.714634656906128, 0.6032501459121704, -0.19861119985580444, -0.46059152483940125, -0.3427117168903351, 0.16825585067272186, 1.4535707235336304, 0.05930024012923241, 0.1755390465259552], "max": [0.5884259343147278, -0.05504763871431351, 0.15184611082077026, -1.111566424369812, 0.9078128933906555, 0.3260772228240967, -0.3742050230503082, -0.27954748272895813, 0.1846565157175064, 2.6718692779541016, 0.6915173530578613, 0.6948015093803406], "mean": [0.5699731111526489, -0.07724453508853912, 0.1480109691619873, -1.3712538480758667, 0.7588559985160828, 0.08126643300056458, -0.4162295460700989, -0.3125874102115631, 0.17766502499580383, 1.8955047130584717, 0.4034522771835327, 0.42753949761390686], "std": [0.011552159674465656, 0.01529448851943016, 0.0016423194902017713, 0.19224607944488525, 0.08237602561712265, 0.16532237827777863, 0.02548937499523163, 0.01573110744357109, 0.005110050085932016, 0.3233909010887146, 0.20303690433502197, 0.14442074298858643], "count": [518]}, "action": {"min": [-0.09697115421295166, -0.09577961266040802, 0.12394020706415176, 0.49521687626838684, -0.3495916724205017, 0.686682939529419, -0.33926689624786377, 0.12430865317583084, -0.1253359019756317, 0.09364955872297287, -0.029705163091421127, -0.5467287302017212, -0.24160136282444, 0.7906190156936646], "max": [-0.08945923298597336, -0.08577298372983932, 0.13233526051044464, 0.6324517726898193, -0.16416595876216888, 0.8055687546730042, -0.04863112419843674, 0.13761721551418304, -0.11190998554229736, 0.10838676989078522, 0.3120962679386139, -0.33961737155914307, 0.27493417263031006, 0.9183727502822876], "mean": [-0.09280429780483246, -0.08966440707445145, 0.12852053344249725, 0.5726721286773682, -0.256542831659317, 0.7360485792160034, -0.2316213995218277, 0.13157117366790771, -0.11923840641975403, 0.10042554140090942, 0.17949897050857544, -0.44307032227516174, -0.04938970133662224, 0.8577275276184082], "std": [0.0017092482885345817, 0.0023531278129667044, 0.002539899433031678, 0.03448062762618065, 0.05190492421388626, 0.038571253418922424, 0.07379964739084244, 0.0036194792483001947, 0.004256914369761944, 0.003589519066736102, 0.09042994678020477, 0.06335827708244324, 0.1397550255060196, 0.04012090712785721], "count": [518]}, "timestamp": {"min": [0.0], "max": [17.233333333333334], "mean": [8.616666666666667], "std": [4.984448035863371], "count": [518]}, "frame_index": {"min": [0], "max": [517], "mean": [258.5], "std": [149.53344107590115], "count": [518]}, "episode_index": {"min": [627], "max": [627], "mean": [627.0], "std": [0.0], "count": [518]}, "index": {"min": [359134], "max": [359651], "mean": [359392.5], "std": [149.53344107590115], "count": [518]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [518]}}} +{"episode_index": 628, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4573100512518304]], [[0.41957785992356866]], [[0.36013881299332123]]], "std": [[[0.21287473576483482]], [[0.20579098772461715]], [[0.20842094987074386]]], "count": [122]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47995313895139113]], [[0.4543323065109468]], [[0.397190031340405]]], "std": [[[0.21498614805879346]], [[0.19337147268061258]], [[0.20650221949860237]]], "count": [122]}, "observation.state": {"min": [0.5605623126029968, -0.10906042903661728, 0.13675729930400848, -1.5338819026947021, 0.46196800470352173, -0.2630120515823364, -0.41552165150642395, -0.3857196271419525, 0.17189842462539673, 0.3994593322277069, 0.3816257417201996, -0.941426157951355], "max": [0.6020179390907288, -0.04728629067540169, 0.15319685637950897, -0.3625539243221283, 0.67730712890625, 0.7044045329093933, -0.35885223746299744, -0.29877710342407227, 0.18200300633907318, 2.069430112838745, 0.986788809299469, 0.6408396363258362], "mean": [0.5797942280769348, -0.08530919253826141, 0.14402596652507782, -1.0687527656555176, 0.5609473586082458, 0.15940463542938232, -0.391374409198761, -0.336007684469223, 0.17683523893356323, 1.450378656387329, 0.5996031761169434, 0.04971696436405182], "std": [0.011359069496393204, 0.0180844496935606, 0.0036979576107114553, 0.3031021058559418, 0.05957374349236488, 0.23996584117412567, 0.015388920903205872, 0.029671980068087578, 0.003020917298272252, 0.5245321393013, 0.16002894937992096, 0.5176782011985779], "count": [607]}, "action": {"min": [-0.09869991987943649, -0.09414321184158325, 0.12199538201093674, 0.2855486571788788, -0.5064521431922913, 0.643254816532135, -0.6179894208908081, 0.13108457624912262, -0.12651726603507996, 0.09359130263328552, 0.09588903188705444, -0.558429479598999, -0.4933472275733948, 0.5005854964256287], "max": [-0.08925624191761017, -0.08246160298585892, 0.13293282687664032, 0.5545455813407898, -0.14401288330554962, 0.8362140655517578, -0.14627796411514282, 0.13946247100830078, -0.11550439149141312, 0.10231476277112961, 0.6663446426391602, -0.34675368666648865, 0.036280352622270584, 0.9008985161781311], "mean": [-0.094438336789608, -0.08881191164255142, 0.12617091834545135, 0.4567297399044037, -0.3115488886833191, 0.7425775527954102, -0.3314429819583893, 0.1351115107536316, -0.12052606791257858, 0.098570816218853, 0.3246309161186218, -0.449270635843277, -0.20950821042060852, 0.7607823610305786], "std": [0.0027595744468271732, 0.003168749390169978, 0.0029292921535670757, 0.0752108171582222, 0.092666395008564, 0.05601762980222702, 0.12521280348300934, 0.0028227048460394144, 0.0034210397861897945, 0.002544314367696643, 0.17240382730960846, 0.05252721905708313, 0.1471792608499527, 0.12626934051513672], "count": [607]}, "timestamp": {"min": [0.0], "max": [20.2], "mean": [10.1], "std": [5.840852297015869], "count": [607]}, "frame_index": {"min": [0], "max": [606], "mean": [303.0], "std": [175.22556891047608], "count": [607]}, "episode_index": {"min": [628], "max": [628], "mean": [628.0], "std": [0.0], "count": [607]}, "index": {"min": [359652], "max": [360258], "mean": [359955.0], "std": [175.22556891047608], "count": [607]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [607]}}} +{"episode_index": 629, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.32951863834422657]], [[0.309082151416122]], [[0.27972119553376906]]], "std": [[[0.19781313959313682]], [[0.1898455944672062]], [[0.19182789451324725]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3345971051198257]], [[0.332132440087146]], [[0.3019493845315904]]], "std": [[[0.1985190812867635]], [[0.1791612888197807]], [[0.19162863960986387]]], "count": [100]}, "observation.state": {"min": [0.41524362564086914, 0.006548880133777857, 0.12240088731050491, -1.0373361110687256, -0.029786759987473488, 0.44748762249946594, -0.5396877527236938, -0.2484017014503479, 0.17967486381530762, -1.498863697052002, -0.42849206924438477, -0.8531433939933777], "max": [0.4220319092273712, 0.011213409714400768, 0.12245921790599823, -1.0287388563156128, -0.023501479998230934, 0.4490034580230713, -0.44286784529685974, -0.21662266552448273, 0.19476628303527832, -1.3759853839874268, 0.19142773747444153, -0.7119714617729187], "mean": [0.41997575759887695, 0.009418119676411152, 0.12243823707103729, -1.0311274528503418, -0.02798454649746418, 0.44794410467147827, -0.513902485370636, -0.23623961210250854, 0.18680919706821442, -1.422343134880066, 0.05977066233754158, -0.795689046382904], "std": [0.0020409803837537766, 0.001580535899847746, 1.5232894838845823e-05, 0.002171199070289731, 0.0019744436722248793, 0.0003805565647780895, 0.025268202647566795, 0.009299525991082191, 0.0059047420509159565, 0.03545264154672623, 0.15036582946777344, 0.043375179171562195], "count": [158]}, "action": {"min": [-0.13290148973464966, -0.07547157257795334, 0.13254526257514954, 0.1785717010498047, -0.4904378652572632, 0.8097302317619324, -0.2690475285053253, 0.11216045916080475, -0.11772076040506363, 0.1044207289814949, -0.3550790250301361, 0.006518928334116936, 0.9052404761314392, 0.018064357340335846], "max": [-0.13192160427570343, -0.07460061460733414, 0.13270273804664612, 0.17916463315486908, -0.48934057354927063, 0.8110514879226685, -0.26482558250427246, 0.1217937245965004, -0.10841996967792511, 0.11982229351997375, -0.1812218576669693, 0.07030297815799713, 0.9830877184867859, 0.23327234387397766], "mean": [-0.1322176307439804, -0.07491790503263474, 0.13263922929763794, 0.1789223700761795, -0.48970988392829895, 0.8101924657821655, -0.2678765058517456, 0.11444109678268433, -0.11283449828624725, 0.11137108504772186, -0.24535012245178223, 0.04024285450577736, 0.9639424085617065, 0.06055749952793121], "std": [0.0002919291437137872, 0.0002895686193369329, 4.181063195574097e-05, 0.00020205252803862095, 0.00029669003561139107, 0.0003070120874326676, 0.0010891633573919535, 0.001953538041561842, 0.0036698891781270504, 0.005726201925426722, 0.04103608429431915, 0.021074146032333374, 0.01763984188437462, 0.05378085374832153], "count": [158]}, "timestamp": {"min": [0.0], "max": [5.233333333333333], "mean": [2.6166666666666667], "std": [1.5203252575974948], "count": [158]}, "frame_index": {"min": [0], "max": [157], "mean": [78.5], "std": [45.609757727924844], "count": [158]}, "episode_index": {"min": [629], "max": [629], "mean": [629.0], "std": [0.0], "count": [158]}, "index": {"min": [360259], "max": [360416], "mean": [360337.5], "std": [45.609757727924844], "count": [158]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [158]}}} +{"episode_index": 630, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.32971185729847496]], [[0.3097051661220043]], [[0.28039586328976035]]], "std": [[[0.19661377049578965]], [[0.1888192141947697]], [[0.1907783532666039]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3345859068627451]], [[0.33255888888888885]], [[0.3024366448801743]]], "std": [[[0.1972774796201366]], [[0.1779852241610137]], [[0.19042850353768084]]], "count": [100]}, "observation.state": {"min": [0.42348378896713257, 0.018071189522743225, 0.121234230697155, -1.0239160060882568, -0.025277750566601753, 0.4434480667114258, -0.5579288601875305, -0.2578543424606323, 0.17718468606472015, -1.5076706409454346, -0.10329718887805939, -0.9332401156425476], "max": [0.425653874874115, 0.020040489733219147, 0.1219925582408905, -1.0205609798431396, -0.02445792965590954, 0.44869059324264526, -0.4636574387550354, -0.22344182431697845, 0.1939418464899063, -1.4103745222091675, 0.11532121151685715, -0.6609677076339722], "mean": [0.42530831694602966, 0.019359823316335678, 0.12176284939050674, -1.0214494466781616, -0.02469475381076336, 0.44524672627449036, -0.5227113962173462, -0.24321840703487396, 0.18394345045089722, -1.449664831161499, 0.06777262687683105, -0.7964021563529968], "std": [0.0005127057665959001, 0.000428421248216182, 0.0002576161059550941, 0.0005480963736772537, 0.0001949439465533942, 0.001704648369923234, 0.03062497265636921, 0.011708278208971024, 0.006293219048529863, 0.020889220759272575, 0.06081755831837654, 0.0711897611618042], "count": [150]}, "action": {"min": [-0.13216549158096313, -0.07304225116968155, 0.1321726143360138, 0.1827506572008133, -0.48636266589164734, 0.8096506595611572, -0.2743416130542755, 0.11235392838716507, -0.11937468498945236, 0.10026652365922928, -0.2815071642398834, -0.03391499072313309, 0.9495299458503723, 0.040570732206106186], "max": [-0.13152633607387543, -0.07284961640834808, 0.1327943056821823, 0.18374142050743103, -0.4836978614330292, 0.8106769919395447, -0.2722577154636383, 0.120394766330719, -0.10714716464281082, 0.1184801459312439, -0.20495638251304626, 0.08807823807001114, 0.9778563380241394, 0.11955802887678146], "mean": [-0.13166917860507965, -0.07297730445861816, 0.13259409368038177, 0.18348893523216248, -0.4845272898674011, 0.8102870583534241, -0.2738589942455292, 0.11475300788879395, -0.11166010797023773, 0.1082129180431366, -0.23870567977428436, 0.03354963660240173, 0.9671001434326172, 0.06868693977594376], "std": [0.00017927195585798472, 6.622406363021582e-05, 0.00020580300770234317, 0.00016693536599632353, 0.0008048726595006883, 0.0003566959348972887, 0.0004170598986092955, 0.0016721211140975356, 0.004048045724630356, 0.006993536837399006, 0.01782824471592903, 0.03385976329445839, 0.006652693264186382, 0.01962277665734291], "count": [150]}, "timestamp": {"min": [0.0], "max": [4.966666666666667], "mean": [2.483333333333333], "std": [1.4433435976027125], "count": [150]}, "frame_index": {"min": [0], "max": [149], "mean": [74.5], "std": [43.300307928081374], "count": [150]}, "episode_index": {"min": [630], "max": [630], "mean": [630.0], "std": [0.0], "count": [150]}, "index": {"min": [360417], "max": [360566], "mean": [360491.5], "std": [43.300307928081374], "count": [150]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [150]}}} +{"episode_index": 631, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.33031753812636167]], [[0.310442908496732]], [[0.2815926116557734]]], "std": [[[0.19654196643689018]], [[0.18906282191457818]], [[0.1908135749597418]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.33514636165577344]], [[0.3331775245098039]], [[0.3033286574074074]]], "std": [[[0.19691373748687008]], [[0.17796983287909005]], [[0.1903466607610914]]], "count": [100]}, "observation.state": {"min": [0.4253063499927521, 0.022635329514741898, 0.1210501492023468, -1.0119637250900269, -0.020222200080752373, 0.4402462840080261, -0.5535191893577576, -0.26676636934280396, 0.1769474744796753, -1.5051543712615967, -0.21356284618377686, -0.9314877986907959], "max": [0.42987048625946045, 0.02429571934044361, 0.12169182300567627, -1.005043864250183, -0.0189924705773592, 0.44660255312919617, -0.4631245732307434, -0.21972720324993134, 0.19529904425144196, -1.4227463006973267, 0.024867840111255646, -0.7355128526687622], "mean": [0.4291072487831116, 0.023815536871552467, 0.12146088480949402, -1.0071808099746704, -0.01940423995256424, 0.4424099624156952, -0.5125699639320374, -0.24554944038391113, 0.18525415658950806, -1.4510040283203125, -0.01974443905055523, -0.8535009622573853], "std": [0.0012958523584529757, 0.0005142363952472806, 0.00021564908092841506, 0.0016587679274380207, 0.0002671565453056246, 0.0020041821990162134, 0.03250249847769737, 0.015236607752740383, 0.0066730254329741, 0.01611667312681675, 0.050436120480298996, 0.06646811962127686], "count": [147]}, "action": {"min": [-0.13193204998970032, -0.07216410338878632, 0.13223125040531158, 0.1859983205795288, -0.48318150639533997, 0.8080281019210815, -0.2824521064758301, 0.11242818087339401, -0.11895321309566498, 0.09877990931272507, -0.309283584356308, 0.0063236178830266, 0.9367267489433289, 0.06955522298812866], "max": [-0.13099977374076843, -0.07188420742750168, 0.1326424926519394, 0.18784663081169128, -0.4803832173347473, 0.8092048764228821, -0.2787416875362396, 0.11865361779928207, -0.10880325734615326, 0.12050819396972656, -0.2289309948682785, 0.09513695538043976, 0.970454216003418, 0.1550578624010086], "mean": [-0.1311880648136139, -0.07203970849514008, 0.13248127698898315, 0.18735496699810028, -0.4813394844532013, 0.8086856603622437, -0.28148892521858215, 0.11504796147346497, -0.11308804899454117, 0.10911600291728973, -0.26209044456481934, 0.054055482149124146, 0.957315981388092, 0.10283777117729187], "std": [0.00027133518597111106, 8.20608765934594e-05, 0.00013931836292613298, 0.0004100295773241669, 0.0008526486344635487, 0.00037047723890282214, 0.0009328822488896549, 0.0016476582968607545, 0.003943619318306446, 0.007886596024036407, 0.014233481138944626, 0.02869366854429245, 0.006122668273746967, 0.01713210716843605], "count": [147]}, "timestamp": {"min": [0.0], "max": [4.866666666666666], "mean": [2.433333333333333], "std": [1.4144754295288202], "count": [147]}, "frame_index": {"min": [0], "max": [146], "mean": [73.0], "std": [42.43426288586461], "count": [147]}, "episode_index": {"min": [631], "max": [631], "mean": [631.0], "std": [0.0], "count": [147]}, "index": {"min": [360567], "max": [360713], "mean": [360640.0], "std": [42.43426288586461], "count": [147]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [147]}}} +{"episode_index": 632, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.32933087690631807]], [[0.31019264433551197]], [[0.2809438425925926]]], "std": [[[0.19650494438226568]], [[0.18874665156226775]], [[0.190601645540701]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.33453406862745094]], [[0.3327337418300654]], [[0.3030345125272331]]], "std": [[[0.19691480562195388]], [[0.17800888527736575]], [[0.19044252845584078]]], "count": [100]}, "observation.state": {"min": [0.4295770227909088, 0.023145029321312904, 0.12125497311353683, -1.0073504447937012, -0.021861840039491653, 0.4398604929447174, -0.5374326705932617, -0.26758497953414917, 0.17750228941440582, -1.5219296216964722, -0.14141878485679626, -1.055883526802063], "max": [0.4314381778240204, 0.023623840883374214, 0.12156996876001358, -1.0044147968292236, -0.020358840003609657, 0.4435364603996277, -0.4660360515117645, -0.22774338722229004, 0.19686107337474823, -1.4625873565673828, 0.08539780974388123, -0.8329048156738281], "mean": [0.430913507938385, 0.023514511063694954, 0.12149681895971298, -1.0058997869491577, -0.020910510793328285, 0.4408130347728729, -0.5135208964347839, -0.25386619567871094, 0.1846068799495697, -1.490389347076416, 0.047834064811468124, -0.9690008163452148], "std": [0.0004050388524774462, 0.00011452715989435092, 0.00011068239837186411, 0.0005610337248072028, 0.00048021398833952844, 0.001161574269644916, 0.0262187160551548, 0.014256415888667107, 0.007658079732209444, 0.011884923093020916, 0.0565972626209259, 0.09095843136310577], "count": [133]}, "action": {"min": [-0.13121935725212097, -0.07210797071456909, 0.13221611082553864, 0.18650412559509277, -0.48253414034843445, 0.8079438209533691, -0.28272107243537903, 0.11410391330718994, -0.12103522568941116, 0.10054031014442444, -0.2710341215133667, 0.042953088879585266, 0.949807345867157, 0.07286146283149719], "max": [-0.1308307647705078, -0.07195413112640381, 0.13243991136550903, 0.18748942017555237, -0.48084166646003723, 0.8088705539703369, -0.28111836314201355, 0.11810197681188583, -0.11015959084033966, 0.12120979279279709, -0.18973524868488312, 0.14367493987083435, 0.9769666194915771, 0.14615842700004578], "mean": [-0.1309109628200531, -0.07204577326774597, 0.1323784440755844, 0.18718186020851135, -0.4812530279159546, 0.8085574507713318, -0.28212347626686096, 0.11589246988296509, -0.11382884532213211, 0.10797274857759476, -0.22130459547042847, 0.10487311333417892, 0.9627607464790344, 0.10469359159469604], "std": [9.894829418044537e-05, 3.593455767259002e-05, 7.994801126187667e-05, 0.00023332565615419298, 0.0005624306504614651, 0.0003018150164280087, 0.00025831395760178566, 0.0009001685539260507, 0.0042872498743236065, 0.007993238978087902, 0.016939736902713776, 0.03981657698750496, 0.006478112656623125, 0.015598130412399769], "count": [133]}, "timestamp": {"min": [0.0], "max": [4.4], "mean": [2.2], "std": [1.2797569213634978], "count": [133]}, "frame_index": {"min": [0], "max": [132], "mean": [66.0], "std": [38.39270764090493], "count": [133]}, "episode_index": {"min": [632], "max": [632], "mean": [632.0], "std": [0.0], "count": [133]}, "index": {"min": [360714], "max": [360846], "mean": [360780.0], "std": [38.39270764090493], "count": [133]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [133]}}} +{"episode_index": 633, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.33045812363834426]], [[0.31065440359477126]], [[0.28171262527233115]]], "std": [[[0.19753731542854355]], [[0.18969636305623755]], [[0.1918568570556837]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.33568453976034857]], [[0.3333754357298475]], [[0.30391778594771246]]], "std": [[[0.19824368133891423]], [[0.17905713692976757]], [[0.19174105094947289]]], "count": [100]}, "observation.state": {"min": [0.42731425166130066, 0.020341679453849792, 0.12182144820690155, -1.0151090621948242, -0.015303290449082851, 0.4412021338939667, -0.5223038792610168, -0.2626346945762634, 0.18003004789352417, -1.598676085472107, -0.480960488319397, -0.9264712929725647], "max": [0.43033385276794434, 0.02143830992281437, 0.12237755209207535, -1.0065116882324219, -0.011887379921972752, 0.4447968304157257, -0.4536178708076477, -0.22833803296089172, 0.19631405174732208, -1.4644745588302612, 0.116824209690094, -0.6434993147850037], "mean": [0.42966344952583313, 0.02123396284878254, 0.12214790284633636, -1.009325385093689, -0.013971349224448204, 0.4432913362979889, -0.5021125674247742, -0.2508273422718048, 0.18619441986083984, -1.536003589630127, -0.14252910017967224, -0.7828235626220703], "std": [0.000677756208460778, 0.00031300901900976896, 0.00020542132551781833, 0.0027703267987817526, 0.001097853179089725, 0.0011749714612960815, 0.017464471980929375, 0.011257932521402836, 0.005956636741757393, 0.038484662771224976, 0.17466814815998077, 0.09673572331666946], "count": [135]}, "action": {"min": [-0.13126876950263977, -0.07273884862661362, 0.13254854083061218, 0.18885117769241333, -0.4826521873474121, 0.8073686957359314, -0.28155750036239624, 0.11241396516561508, -0.11987342685461044, 0.10249096900224686, -0.3747299611568451, -0.07651402056217194, 0.8846806883811951, 0.0696825236082077], "max": [-0.13065841794013977, -0.07254736870527267, 0.13297712802886963, 0.19105027616024017, -0.4804602563381195, 0.8095389008522034, -0.27794626355171204, 0.12117206305265427, -0.1101970300078392, 0.11876673251390457, -0.18441610038280487, 0.09037426114082336, 0.9773609638214111, 0.2744700014591217], "mean": [-0.13077613711357117, -0.07266336679458618, 0.1327882558107376, 0.19004018604755402, -0.4818716049194336, 0.8081346154212952, -0.28035715222358704, 0.11528275161981583, -0.11442030221223831, 0.10920792073011398, -0.2763032615184784, 0.004810679238289595, 0.942318320274353, 0.1584651917219162], "std": [0.00016833239351399243, 6.441101868404076e-05, 0.00015901084407232702, 0.0005483422428369522, 0.0007641139673069119, 0.0007088893908075988, 0.0011588390916585922, 0.0016928036930039525, 0.0036500804126262665, 0.006153983063995838, 0.056947480887174606, 0.058352258056402206, 0.02640627697110176, 0.05668560788035393], "count": [135]}, "timestamp": {"min": [0.0], "max": [4.466666666666667], "mean": [2.233333333333334], "std": [1.2990024662822652], "count": [135]}, "frame_index": {"min": [0], "max": [134], "mean": [67.0], "std": [38.97007398846795], "count": [135]}, "episode_index": {"min": [633], "max": [633], "mean": [633.0], "std": [0.0], "count": [135]}, "index": {"min": [360847], "max": [360981], "mean": [360914.0], "std": [38.97007398846795], "count": [135]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [135]}}} +{"episode_index": 634, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3304832298474945]], [[0.31047761982570804]], [[0.28143167755991283]]], "std": [[[0.19702450964418028]], [[0.1891991099642607]], [[0.1909636091834597]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.33563353758169934]], [[0.33357106481481485]], [[0.30362400326797384]]], "std": [[[0.19762861597232653]], [[0.17830460036756213]], [[0.19079949472935237]]], "count": [100]}, "observation.state": {"min": [0.4254607856273651, 0.020094549283385277, 0.12156867235898972, -1.014060616493225, -0.009701189585030079, 0.4414978623390198, -0.5475957989692688, -0.27309900522232056, 0.17608414590358734, -1.5393339395523071, -0.4146917760372162, -0.9238654375076294], "max": [0.43095940351486206, 0.022032959386706352, 0.12219478189945221, -1.0042051076889038, -0.007241730112582445, 0.44542598724365234, -0.4576723277568817, -0.22605983912944794, 0.19415313005447388, -1.4535707235336304, 0.1313076764345169, -0.7109733819961548], "mean": [0.429673969745636, 0.021673085168004036, 0.12198195606470108, -1.0074431896209717, -0.008372521959245205, 0.44304320216178894, -0.5093870759010315, -0.2505528926849365, 0.18391962349414825, -1.49033784866333, -0.03257037699222565, -0.8509713411331177], "std": [0.001301271142438054, 0.0005323838558979332, 0.00025086148525588214, 0.00279610650613904, 0.000818010768853128, 0.0011946690501645207, 0.02928033284842968, 0.014398355968296528, 0.006637379061430693, 0.021746378391981125, 0.11464443802833557, 0.07336566597223282], "count": [145]}, "action": {"min": [-0.13160620629787445, -0.07268376648426056, 0.13241468369960785, 0.19136160612106323, -0.48171302676200867, 0.8073575496673584, -0.28311774134635925, 0.11446232348680496, -0.11967232823371887, 0.09818371385335922, -0.3511058986186981, -0.010890161618590355, 0.9030121564865112, 0.05886545404791832], "max": [-0.13055552542209625, -0.07236918807029724, 0.13284528255462646, 0.1934826821088791, -0.4797673523426056, 0.8087055087089539, -0.2781289517879486, 0.1218516081571579, -0.10858236253261566, 0.11953068524599075, -0.17520879209041595, 0.0777989849448204, 0.9826732277870178, 0.24751220643520355], "mean": [-0.13080507516860962, -0.07249414920806885, 0.1326882541179657, 0.19260697066783905, -0.48070162534713745, 0.807807207107544, -0.28155529499053955, 0.11615739017724991, -0.11298445612192154, 0.1078299954533577, -0.25084003806114197, 0.044341858476400375, 0.9570793509483337, 0.11974253505468369], "std": [0.0002853702462743968, 6.826053140684962e-05, 0.0001733806129777804, 0.0005114024970680475, 0.0005001306417398155, 0.00034010535455308855, 0.0014131930656731129, 0.0017359949415549636, 0.0042718700133264065, 0.0075021767988801, 0.043370310217142105, 0.02962782233953476, 0.017421644181013107, 0.04137353599071503], "count": [145]}, "timestamp": {"min": [0.0], "max": [4.8], "mean": [2.4], "std": [1.39522996909709], "count": [145]}, "frame_index": {"min": [0], "max": [144], "mean": [72.0], "std": [41.8568990729127], "count": [145]}, "episode_index": {"min": [634], "max": [634], "mean": [634.0], "std": [0.0], "count": [145]}, "index": {"min": [360982], "max": [361126], "mean": [361054.0], "std": [41.8568990729127], "count": [145]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [145]}}} +{"episode_index": 635, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3277675980392157]], [[0.3077361111111111]], [[0.2789291503267974]]], "std": [[[0.19571792843519883]], [[0.1879691196735435]], [[0.18951304432797178]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3323084722222222]], [[0.330412440087146]], [[0.3006275816993464]]], "std": [[[0.19637674217675619]], [[0.17718311658176839]], [[0.18941892554468961]]], "count": [100]}, "observation.state": {"min": [0.42840316891670227, 0.020364850759506226, 0.12177348136901855, -1.0025275945663452, -0.012024009600281715, 0.4385654032230377, -0.5608943700790405, -0.28076767921447754, 0.1772417277097702, -1.6802455186843872, -0.7476749420166016, -1.0123975276947021], "max": [0.4307895004749298, 0.020642859861254692, 0.12268996238708496, -0.9979144334793091, -0.009154650382697582, 0.4447067975997925, -0.45164087414741516, -0.22969724237918854, 0.19570867717266083, -1.4063904285430908, 0.06995788961648941, -0.361808180809021], "mean": [0.4297477602958679, 0.020501403138041496, 0.12247654050588608, -1.000848412513733, -0.01005688775330782, 0.4400167167186737, -0.5230695009231567, -0.2564155161380768, 0.18518416583538055, -1.45964515209198, -0.04813942313194275, -0.8856989145278931], "std": [0.0005729091935791075, 7.209553587017581e-05, 0.00033789934241212904, 0.0013723558513447642, 0.0010227947495877743, 0.002080213278532028, 0.031789086759090424, 0.01700304076075554, 0.006660784129053354, 0.04639475420117378, 0.1875237077474594, 0.14337106049060822], "count": [126]}, "action": {"min": [-0.13100317120552063, -0.07299911230802536, 0.1324206292629242, 0.1901051253080368, -0.4826059639453888, 0.8057407140731812, -0.2857102155685425, 0.111531101167202, -0.11994820088148117, 0.09695688635110855, -0.46889206767082214, -0.18338678777217865, 0.8093695640563965, 0.05785149708390236], "max": [-0.13040730357170105, -0.07256487756967545, 0.1331658810377121, 0.19148288667201996, -0.47968295216560364, 0.8078399300575256, -0.28393226861953735, 0.11878041177988052, -0.11053270101547241, 0.11873317509889603, -0.21614260971546173, 0.1267572045326233, 0.9731849431991577, 0.3023747205734253], "mean": [-0.13059808313846588, -0.07288853824138641, 0.1329844444990158, 0.19098590314388275, -0.4804708659648895, 0.8072198629379272, -0.28472137451171875, 0.11358020454645157, -0.11383192986249924, 0.10683724284172058, -0.27345430850982666, 0.06454159319400787, 0.9462814927101135, 0.1189659982919693], "std": [0.00014242518227547407, 0.00015410958440043032, 0.00028112722793594003, 0.0002877381630241871, 0.0010410207323729992, 0.0007098940550349653, 0.0004946442786604166, 0.001223690458573401, 0.003431622637435794, 0.007867147214710712, 0.054711297154426575, 0.06761621683835983, 0.03162204101681709, 0.05376731604337692], "count": [126]}, "timestamp": {"min": [0.0], "max": [4.166666666666667], "mean": [2.0833333333333335], "std": [1.2123973801552888], "count": [126]}, "frame_index": {"min": [0], "max": [125], "mean": [62.5], "std": [36.37192140465866], "count": [126]}, "episode_index": {"min": [635], "max": [635], "mean": [635.0], "std": [0.0], "count": [126]}, "index": {"min": [361127], "max": [361252], "mean": [361189.5], "std": [36.37192140465866], "count": [126]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [126]}}} +{"episode_index": 636, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.32614715413943357]], [[0.3069272249455338]], [[0.27800456427015247]]], "std": [[[0.19490560166645052]], [[0.18736953605965992]], [[0.18878333026377422]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3309070887799564]], [[0.32954034586056646]], [[0.29936547385620915]]], "std": [[[0.19531592494510572]], [[0.17663106014472527]], [[0.188613702567211]]], "count": [100]}, "observation.state": {"min": [0.42676594853401184, 0.019036540761590004, 0.12202625721693039, -0.9987531900405884, -0.01134082954376936, 0.43911492824554443, -0.5681614875793457, -0.2843973636627197, 0.1752830445766449, -1.5336722135543823, -0.23405832052230835, -1.1207494735717773], "max": [0.428086519241333, 0.019337719306349754, 0.12270422279834747, -0.9970756769180298, -0.00942791998386383, 0.44386026263237, -0.4859375059604645, -0.23396019637584686, 0.1977529227733612, -1.4502156972885132, 0.12816503643989563, -0.8249530792236328], "mean": [0.4278090000152588, 0.01926373317837715, 0.1225447878241539, -0.9982117414474487, -0.010308898985385895, 0.4404510259628296, -0.5328544974327087, -0.261102557182312, 0.18386593461036682, -1.4896372556686401, 0.04723849520087242, -1.0111052989959717], "std": [0.00018059225112665445, 7.238046964630485e-05, 0.00022938396432437003, 0.00047884887317195535, 0.0007412244449369609, 0.0013880531769245863, 0.029059715569019318, 0.018063487485051155, 0.008025292307138443, 0.02087433449923992, 0.07445109635591507, 0.11047092825174332], "count": [105]}, "action": {"min": [-0.13124345242977142, -0.07325363159179688, 0.13265906274318695, 0.18916818499565125, -0.48271721601486206, 0.805910050868988, -0.2860691547393799, 0.11166337877511978, -0.12142352014780045, 0.09494036436080933, -0.3115732669830322, 0.037724316120147705, 0.9249697923660278, 0.05245366320014], "max": [-0.1307946741580963, -0.07297919690608978, 0.13318780064582825, 0.19003818929195404, -0.48042431473731995, 0.8071080446243286, -0.2853326201438904, 0.11512959003448486, -0.10942219942808151, 0.11925481259822845, -0.18592463433742523, 0.16887904703617096, 0.978887140750885, 0.19464924931526184], "mean": [-0.13086356222629547, -0.07316777855157852, 0.13305507600307465, 0.18973948061466217, -0.4811526834964752, 0.8067353963851929, -0.2857765555381775, 0.11357242614030838, -0.11343470215797424, 0.1052401214838028, -0.22666534781455994, 0.12130137532949448, 0.9574867486953735, 0.1150306984782219], "std": [9.926170605467632e-05, 9.104216587729752e-05, 0.0001888864062493667, 0.0002509040932636708, 0.0007027091342024505, 0.0004036174213979393, 0.00013566600682679564, 0.0007144329138100147, 0.0042822035029530525, 0.00891520082950592, 0.02621697448194027, 0.04543863236904144, 0.013029990717768669, 0.031213365495204926], "count": [105]}, "timestamp": {"min": [0.0], "max": [3.466666666666667], "mean": [1.7333333333333334], "std": [1.010317148592827], "count": [105]}, "frame_index": {"min": [0], "max": [104], "mean": [52.0], "std": [30.309514457784815], "count": [105]}, "episode_index": {"min": [636], "max": [636], "mean": [636.0], "std": [0.0], "count": [105]}, "index": {"min": [361253], "max": [361357], "mean": [361305.0], "std": [30.309514457784815], "count": [105]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [105]}}} +{"episode_index": 637, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.32765881263616553]], [[0.3078352968409586]], [[0.27901915849673203]]], "std": [[[0.1964643176006957]], [[0.18878920737043367]], [[0.19039152493228753]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3318462254901961]], [[0.3306389705882353]], [[0.3008855446623094]]], "std": [[[0.19732406527699678]], [[0.1780022473620493]], [[0.19029503191557967]]], "count": [100]}, "observation.state": {"min": [0.42692041397094727, 0.018580900505185127, 0.12257588654756546, -0.9840748906135559, -0.017489470541477203, 0.43417105078697205, -0.5658832788467407, -0.28199559450149536, 0.17725598812103271, -1.5584156513214111, -0.8060187101364136, -1.1589970588684082], "max": [0.4297546446323395, 0.01873534917831421, 0.12321624904870987, -0.9800907969474792, -0.014483469538390636, 0.4407133162021637, -0.46012815833091736, -0.23834669589996338, 0.19871996343135834, -1.3703237771987915, 0.2734096348285675, -0.5459553003311157], "mean": [0.42865967750549316, 0.01865147240459919, 0.12297185510396957, -0.9819924235343933, -0.01566864550113678, 0.43628188967704773, -0.5237840414047241, -0.2605644166469574, 0.1862277239561081, -1.4304349422454834, 0.012181418016552925, -0.9691169857978821], "std": [0.0007473780424334109, 3.97303665522486e-05, 0.0002699418109841645, 0.0008655419806018472, 0.0011148033663630486, 0.0021812557242810726, 0.030618129298090935, 0.015563908964395523, 0.007664219010621309, 0.039679545909166336, 0.27871033549308777, 0.15469402074813843], "count": [138]}, "action": {"min": [-0.13102613389492035, -0.07354850322008133, 0.13299956917762756, 0.18564704060554504, -0.4829275608062744, 0.8040134906768799, -0.29407256841659546, 0.11118467152118683, -0.12163805216550827, 0.09696139395236969, -0.4996708333492279, -0.11552485078573227, 0.800520658493042, -0.0012321427930146456], "max": [-0.13040898740291595, -0.07327906787395477, 0.13347329199314117, 0.18677125871181488, -0.4801691174507141, 0.8052944540977478, -0.29198750853538513, 0.11732596158981323, -0.11031592637300491, 0.11951658129692078, -0.14972564578056335, 0.2023027390241623, 0.9867202639579773, 0.3240874409675598], "mean": [-0.1305922567844391, -0.07344767451286316, 0.13329480588436127, 0.18622072041034698, -0.48118796944618225, 0.8047960996627808, -0.2933972179889679, 0.11359524726867676, -0.11503641307353973, 0.1070527508854866, -0.2588774561882019, 0.10801348090171814, 0.9432101249694824, 0.09801319986581802], "std": [0.00019576490740291774, 0.00010760073928395286, 0.00019770709332078695, 0.0003498205333016813, 0.0010034296428784728, 0.00044528680155053735, 0.0005102907889522612, 0.0014896413777023554, 0.004539285786449909, 0.007769497577100992, 0.08581912517547607, 0.076569102704525, 0.04158606380224228, 0.08429968357086182], "count": [138]}, "timestamp": {"min": [0.0], "max": [4.566666666666666], "mean": [2.283333333333333], "std": [1.327870754531758], "count": [138]}, "frame_index": {"min": [0], "max": [137], "mean": [68.5], "std": [39.83612263595275], "count": [138]}, "episode_index": {"min": [637], "max": [637], "mean": [637.0], "std": [0.0], "count": [138]}, "index": {"min": [361358], "max": [361495], "mean": [361426.5], "std": [39.83612263595275], "count": [138]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [138]}}} +{"episode_index": 638, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.32727521241830065]], [[0.30762338507625275]], [[0.27849219771241834]]], "std": [[[0.19578999534571814]], [[0.18804318992480107]], [[0.1894081393000394]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3316072576252724]], [[0.3302413534858388]], [[0.300231862745098]]], "std": [[[0.1967217888616014]], [[0.17743762919543535]], [[0.18938798284198496]]], "count": [100]}, "observation.state": {"min": [0.4273605942726135, 0.01985514909029007, 0.12426883727312088, -1.0201416015625, -0.05902697145938873, 0.4111032485961914, -0.5561294555664062, -0.27445048093795776, 0.17702524363994598, -1.5575768947601318, 0.06736178696155548, -1.0998371839523315], "max": [0.4321177899837494, 0.020673759281635284, 0.12531624734401703, -1.0071407556533813, -0.04263059049844742, 0.41395238041877747, -0.47548866271972656, -0.23671720921993256, 0.19627127051353455, -1.4950892925262451, 0.17079561948776245, -0.8532090783119202], "mean": [0.4307766258716583, 0.020243259146809578, 0.1250099539756775, -1.0153286457061768, -0.054587531834840775, 0.41242721676826477, -0.5341295599937439, -0.2596587538719177, 0.182868093252182, -1.5145334005355835, 0.10145637392997742, -1.0178958177566528], "std": [0.001118095708079636, 0.00030701293144375086, 0.00040602730587124825, 0.004460284486413002, 0.005620450247079134, 0.0005816683988086879, 0.025939658284187317, 0.014955766499042511, 0.007212819065898657, 0.018047191202640533, 0.028338532894849777, 0.09822730720043182], "count": [110]}, "action": {"min": [-0.13044589757919312, -0.07446419447660446, 0.1344558149576187, 0.16536450386047363, -0.4771728217601776, 0.8158127665519714, -0.2824915647506714, 0.11306162923574448, -0.12009958177804947, 0.09803958982229233, -0.21825449168682098, 0.05183664336800575, 0.9546464085578918, 0.06003393977880478], "max": [-0.12950469553470612, -0.0738600417971611, 0.13514812290668488, 0.1713935285806656, -0.4746083617210388, 0.8179444074630737, -0.2756234407424927, 0.1178794875741005, -0.1095067486166954, 0.11907093226909637, -0.1570497304201126, 0.16364194452762604, 0.9836689233779907, 0.12325342744588852], "mean": [-0.12970073521137238, -0.074248768389225, 0.1349317729473114, 0.16733834147453308, -0.4762785732746124, 0.8171618580818176, -0.2781936228275299, 0.11422667652368546, -0.1126740574836731, 0.10491827875375748, -0.20110101997852325, 0.12542620301246643, 0.964556872844696, 0.10372955352067947], "std": [0.00026861761580221355, 0.0002271074044983834, 0.00026658791466616094, 0.0021558497101068497, 0.0008691758848726749, 0.0007569784065708518, 0.0023951742332428694, 0.000847448012791574, 0.003900324460119009, 0.008013075217604637, 0.02056196518242359, 0.04231589660048485, 0.010545879602432251, 0.019291814416646957], "count": [110]}, "timestamp": {"min": [0.0], "max": [3.6333333333333333], "mean": [1.8166666666666664], "std": [1.0584317539538284], "count": [110]}, "frame_index": {"min": [0], "max": [109], "mean": [54.5], "std": [31.752952618614856], "count": [110]}, "episode_index": {"min": [638], "max": [638], "mean": [638.0], "std": [0.0], "count": [110]}, "index": {"min": [361496], "max": [361605], "mean": [361550.5], "std": [31.752952618614856], "count": [110]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [110]}}} +{"episode_index": 639, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3267658336885479]], [[0.30718567952543335]], [[0.27790809711565784]]], "std": [[[0.19493663225220348]], [[0.18745828375190948]], [[0.1888782102411308]]], "count": [92]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.330839247655584]], [[0.32977472885289383]], [[0.2995741895188027]]], "std": [[[0.19588023294469822]], [[0.17688053417065347]], [[0.18885621525501864]]], "count": [92]}, "observation.state": {"min": [0.4191204309463501, 0.0207818690687418, 0.12318255007266998, -1.0314648151397705, -0.06367260962724686, 0.42529645562171936, -0.5776604413986206, -0.2880347669124603, 0.1757393330335617, -1.537656307220459, -0.04290385916829109, -1.1970970630645752], "max": [0.4207576513290405, 0.021160289645195007, 0.12405495345592499, -1.021399736404419, -0.062032971531152725, 0.4311254024505615, -0.5074607729911804, -0.23422276973724365, 0.19834403693675995, -1.45399010181427, 0.2734096348285675, -0.8744985461235046], "mean": [0.4201156795024872, 0.020958835259079933, 0.12380944192409515, -1.0274113416671753, -0.06294191628694534, 0.42720189690589905, -0.5449474453926086, -0.2630212604999542, 0.18420477211475372, -1.5145930051803589, 0.17581409215927124, -1.0698848962783813], "std": [0.00041293815593235195, 0.00013314778334461153, 0.00032041838858276606, 0.0026792925782501698, 0.0004993745824322104, 0.0018242057412862778, 0.027355056256055832, 0.019811240956187248, 0.008832238614559174, 0.019245419651269913, 0.06755857169628143, 0.12448444962501526], "count": [92]}, "action": {"min": [-0.13231419026851654, -0.0741761103272438, 0.13422292470932007, 0.16016249358654022, -0.4833722710609436, 0.8166967630386353, -0.27387627959251404, 0.11130785942077637, -0.12149907648563385, 0.09445848315954208, -0.2567434310913086, 0.07326206564903259, 0.9360398054122925, 0.01901085674762726], "max": [-0.1317979097366333, -0.07374744862318039, 0.1348755657672882, 0.16174454987049103, -0.4813220202922821, 0.8181240558624268, -0.2688363492488861, 0.11483605951070786, -0.10962741076946259, 0.11899278312921524, -0.13358727097511292, 0.20551292598247528, 0.9878524541854858, 0.15477454662322998], "mean": [-0.1319006234407425, -0.07402905821800232, 0.13467441499233246, 0.16100715100765228, -0.48199376463890076, 0.8174909353256226, -0.27104368805885315, 0.11271974444389343, -0.11353512108325958, 0.10478883236646652, -0.17969952523708344, 0.15296316146850586, 0.9656887054443359, 0.0834030881524086], "std": [0.00012632808648049831, 0.00016346487973351032, 0.00025554790045134723, 0.0004605956200975925, 0.0006786298472434282, 0.0003330573090352118, 0.0013403710909187794, 0.0008124532760120928, 0.004697917029261589, 0.009496334940195084, 0.028948506340384483, 0.05103075131773949, 0.0147702656686306, 0.03375471010804176], "count": [92]}, "timestamp": {"min": [0.0], "max": [3.033333333333333], "mean": [1.5166666666666666], "std": [0.8852181149926335], "count": [92]}, "frame_index": {"min": [0], "max": [91], "mean": [45.5], "std": [26.556543449779003], "count": [92]}, "episode_index": {"min": [639], "max": [639], "mean": [639.0], "std": [0.0], "count": [92]}, "index": {"min": [361606], "max": [361697], "mean": [361651.5], "std": [26.556543449779003], "count": [92]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [92]}}} +{"episode_index": 640, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.32501897603485835]], [[0.3049649346405229]], [[0.27600016612200434]]], "std": [[[0.19503681564972078]], [[0.18710961823044991]], [[0.18850096585848225]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3290911165577342]], [[0.32756436002178646]], [[0.29748950708061]]], "std": [[[0.19598523342820734]], [[0.1765975218360733]], [[0.18856966450157733]]], "count": [100]}, "observation.state": {"min": [0.41907408833503723, 0.018071189522743225, 0.12470050901174545, -1.0476109981536865, -0.10575664788484573, 0.42426347732543945, -0.5828887224197388, -0.29216644167900085, 0.1775476634502411, -1.5523346662521362, -0.07856599241495132, -1.222293734550476], "max": [0.4216921031475067, 0.018194759264588356, 0.12609530985355377, -1.0258032083511353, -0.07897590100765228, 0.4333721101284027, -0.5008423924446106, -0.23810729384422302, 0.19915291666984558, -1.4399408102035522, 0.26821744441986084, -0.8488770723342896], "mean": [0.42066264152526855, 0.01813015528023243, 0.12567000091075897, -1.03612220287323, -0.08987904340028763, 0.42782312631607056, -0.5500555634498596, -0.2701816260814667, 0.18609872460365295, -1.5016697645187378, 0.20121228694915771, -1.053368330001831], "std": [0.0007734266109764576, 4.6594126615673304e-05, 0.0004951766459271312, 0.008294729515910149, 0.009018966928124428, 0.0026264654006808996, 0.03322596848011017, 0.02004121243953705, 0.008196898736059666, 0.030640825629234314, 0.09124791622161865, 0.14025171101093292], "count": [118]}, "action": {"min": [-0.13180802762508392, -0.07563023269176483, 0.13522005081176758, 0.14225894212722778, -0.49137043952941895, 0.8170108199119568, -0.27072271704673767, 0.1086844801902771, -0.12261056154966354, 0.0950804203748703, -0.2744666039943695, 0.049566734582185745, 0.9522075653076172, 0.021417371928691864], "max": [-0.13091348111629486, -0.07494993507862091, 0.13623696565628052, 0.15279290080070496, -0.48501861095428467, 0.8202121257781982, -0.25903216004371643, 0.11313044279813766, -0.11048121750354767, 0.1194242388010025, -0.14975768327713013, 0.22640179097652435, 0.9846157431602478, 0.12454712390899658], "mean": [-0.13125471770763397, -0.07538545876741409, 0.13590049743652344, 0.14860746264457703, -0.4872293770313263, 0.8186220526695251, -0.26522302627563477, 0.11143862456083298, -0.11545440554618835, 0.10473059862852097, -0.1825721710920334, 0.1459139585494995, 0.9673421382904053, 0.06645640730857849], "std": [0.00023589226475451142, 0.0002534575469326228, 0.00037615507608279586, 0.0036330674774944782, 0.0019758315756917, 0.0011012834729626775, 0.004463691730052233, 0.0011927952291443944, 0.0044206129387021065, 0.009290697053074837, 0.030963361263275146, 0.06230192258954048, 0.00826692208647728, 0.017340362071990967], "count": [118]}, "timestamp": {"min": [0.0], "max": [3.9], "mean": [1.9500000000000002], "std": [1.1354147553500733], "count": [118]}, "frame_index": {"min": [0], "max": [117], "mean": [58.5], "std": [34.0624426605022], "count": [118]}, "episode_index": {"min": [640], "max": [640], "mean": [640.0], "std": [0.0], "count": [118]}, "index": {"min": [361698], "max": [361815], "mean": [361756.5], "std": [34.0624426605022], "count": [118]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [118]}}} +{"episode_index": 641, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.32903273148148143]], [[0.3087439025054466]], [[0.27927973311546844]]], "std": [[[0.19603358944417074]], [[0.18842287845388345]], [[0.1898631575938008]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.33323626633986925]], [[0.3313613235294117]], [[0.3011541748366013]]], "std": [[[0.19684690880483224]], [[0.17764165216228564]], [[0.18977336236164277]]], "count": [100]}, "observation.state": {"min": [0.4110965132713318, 0.01296646986156702, 0.12195885181427002, -0.9826070666313171, -0.10548338294029236, 0.4287302494049072, -0.5682386755943298, -0.26556161046028137, 0.17644192278385162, -1.577078104019165, -0.11983021348714828, -1.1625268459320068], "max": [0.4149578809738159, 0.014047649689018726, 0.1232369914650917, -0.9761067032814026, -0.10206747055053711, 0.4378271698951721, -0.4650784134864807, -0.2267085462808609, 0.19618959724903107, -1.4816691875457764, 0.19675655663013458, -0.773695170879364], "mean": [0.4142754375934601, 0.013923422433435917, 0.12282107025384903, -0.9773391485214233, -0.10364899784326553, 0.4316983222961426, -0.529168426990509, -0.2520671784877777, 0.18514809012413025, -1.5351406335830688, 0.1272299587726593, -0.9948654770851135], "std": [0.0011145399184897542, 0.00019891647389158607, 0.000493413012009114, 0.0015486020129173994, 0.001469088951125741, 0.003224300453439355, 0.03845350071787834, 0.012536649592220783, 0.00813771691173315, 0.018602192401885986, 0.08684007078409195, 0.16251903772354126], "count": [115]}, "action": {"min": [-0.13431167602539062, -0.07521050423383713, 0.13302911818027496, 0.1354442685842514, -0.4975474774837494, 0.8063313961029053, -0.2916669249534607, 0.11209800094366074, -0.1210581511259079, 0.09815596789121628, -0.25045785307884216, 0.004549940582364798, 0.9550471305847168, 0.03839372098445892], "max": [-0.1331840455532074, -0.07482175529003143, 0.13392144441604614, 0.13736258447170258, -0.49352988600730896, 0.8078017830848694, -0.28791701793670654, 0.11905458569526672, -0.10804420709609985, 0.11833509802818298, -0.14737838506698608, 0.19557514786720276, 0.9854199290275574, 0.1518494337797165], "mean": [-0.1334661990404129, -0.07506430894136429, 0.1336134821176529, 0.13671503961086273, -0.494935005903244, 0.8072823286056519, -0.29092952609062195, 0.11401119083166122, -0.11341603100299835, 0.10761266201734543, -0.18471156060695648, 0.11667294800281525, 0.9674525260925293, 0.09569036960601807], "std": [0.00035617031971924007, 0.0001660108973737806, 0.0003600952622946352, 0.0005837506032548845, 0.0014621567679569125, 0.0005432650214061141, 0.0009609704138711095, 0.0018997828010469675, 0.005634159781038761, 0.008493187837302685, 0.02173544093966484, 0.07777754962444305, 0.008652967400848866, 0.023468665778636932], "count": [115]}, "timestamp": {"min": [0.0], "max": [3.8], "mean": [1.9], "std": [1.1065461781798556], "count": [115]}, "frame_index": {"min": [0], "max": [114], "mean": [57.0], "std": [33.19638534539566], "count": [115]}, "episode_index": {"min": [641], "max": [641], "mean": [641.0], "std": [0.0], "count": [115]}, "index": {"min": [361816], "max": [361930], "mean": [361873.0], "std": [33.19638534539566], "count": [115]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [115]}}} +{"episode_index": 642, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38420383709039174]], [[0.3650089758125472]], [[0.33745911420123603]]], "std": [[[0.20973307587172713]], [[0.20367265342478785]], [[0.20792020836529573]]], "count": [98]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39260844337735096]], [[0.38860556444800143]], [[0.36161787214885954]]], "std": [[[0.2095472131749963]], [[0.19062316431170653]], [[0.2050104799875202]]], "count": [98]}, "observation.state": {"min": [0.3367111384868622, 0.009043320082128048, 0.12745770812034607, -0.8106613159179688, 0.29035255312919617, 0.5950080752372742, -0.5226282477378845, -0.28333935141563416, 0.183456152677536, -1.485653281211853, -0.1430584192276001, -1.1209466457366943], "max": [0.3398774564266205, 0.011730830185115337, 0.1292427033185959, -0.7729171514511108, 0.32273539900779724, 0.6218438744544983, -0.4580507278442383, -0.2440847009420395, 0.19674052298069, -1.3518710136413574, -0.09769509732723236, -0.8378251791000366], "mean": [0.33926230669021606, 0.010549251921474934, 0.12852215766906738, -0.7858408689498901, 0.30406227707862854, 0.6106570363044739, -0.4967946410179138, -0.2676610052585602, 0.18946757912635803, -1.4130191802978516, -0.11251873522996902, -1.0073140859603882], "std": [0.0009169193217530847, 0.0008995473617687821, 0.0007284400635398924, 0.012451643124222755, 0.012111586518585682, 0.009947177954018116, 0.02535039186477661, 0.014348538592457771, 0.005713446065783501, 0.03972784802317619, 0.01385140884667635, 0.10940393060445786], "count": [98]}, "action": {"min": [-0.14146390557289124, -0.07835132628679276, 0.1413329690694809, 0.3062628507614136, -0.4796985983848572, 0.7339937686920166, -0.3745739161968231, 0.11346779018640518, -0.12583991885185242, 0.10225515812635422, -0.3156181871891022, 0.023976098746061325, 0.9244592189788818, 0.12191908806562424], "max": [-0.1405492126941681, -0.07705676555633545, 0.14260981976985931, 0.3162708580493927, -0.4637090563774109, 0.7455456256866455, -0.3599596917629242, 0.11816777288913727, -0.11594491451978683, 0.11822062730789185, -0.26374131441116333, 0.1637572944164276, 0.952755868434906, 0.15352915227413177], "mean": [-0.14081628620624542, -0.07771292328834534, 0.1420864462852478, 0.3104014992713928, -0.4721197485923767, 0.7377303242683411, -0.36934882402420044, 0.11522035300731659, -0.11925725638866425, 0.10963708162307739, -0.2916485667228699, 0.11251378804445267, 0.9379404187202454, 0.13969403505325317], "std": [0.0002952245413325727, 0.0005236878641881049, 0.0005190176889300346, 0.003740199375897646, 0.006008905824273825, 0.004269937053322792, 0.004586193710565567, 0.001243141246959567, 0.00352136860601604, 0.006726316176354885, 0.015415841713547707, 0.05091915652155876, 0.011210530065000057, 0.00889341626316309], "count": [98]}, "timestamp": {"min": [0.0], "max": [3.2333333333333334], "mean": [1.616666666666666], "std": [0.942956343987709], "count": [98]}, "frame_index": {"min": [0], "max": [97], "mean": [48.5], "std": [28.28869031963127], "count": [98]}, "episode_index": {"min": [642], "max": [642], "mean": [642.0], "std": [0.0], "count": [98]}, "index": {"min": [361931], "max": [362028], "mean": [361979.5], "std": [28.28869031963127], "count": [98]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [98]}}} +{"episode_index": 643, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3766741512844454]], [[0.3583523755656109]], [[0.33039797158179507]]], "std": [[[0.20964554277396186]], [[0.2034421786810447]], [[0.2074110985807173]]], "count": [91]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3849201201848261]], [[0.3818609644712586]], [[0.3545220259043788]]], "std": [[[0.2096154310475181]], [[0.1907617538995306]], [[0.20492744306323676]]], "count": [91]}, "observation.state": {"min": [0.36108410358428955, 0.0027261199429631233, 0.1289549320936203, -0.7764818668365479, 0.305655837059021, 0.6306530833244324, -0.5211531519889832, -0.3097897171974182, 0.18282225728034973, -1.4613292217254639, -0.16218753159046173, -1.3824204206466675], "max": [0.36275991797447205, 0.0033671099226921797, 0.1301112174987793, -0.7615938782691956, 0.30811530351638794, 0.6333408951759338, -0.4672253429889679, -0.2449650913476944, 0.20125162601470947, -1.2904318571090698, -0.10179419070482254, -1.0924060344696045], "mean": [0.36198145151138306, 0.003082899609580636, 0.1296415477991104, -0.7707303166389465, 0.30661070346832275, 0.6320578455924988, -0.5018606781959534, -0.2815043032169342, 0.19019797444343567, -1.3526796102523804, -0.13433468341827393, -1.2790639400482178], "std": [0.0004797821748070419, 0.00025717171956785023, 0.0005096252425573766, 0.005780019331723452, 0.0006633701268583536, 0.0006776986410841346, 0.02036726102232933, 0.023774590343236923, 0.006898959167301655, 0.062260374426841736, 0.015162595547735691, 0.11806980520486832], "count": [91]}, "action": {"min": [-0.1371592879295349, -0.07892163097858429, 0.14064161479473114, 0.3232002258300781, -0.48392996191978455, 0.7221832871437073, -0.37668895721435547, 0.11214543879032135, -0.12691450119018555, 0.09850041568279266, -0.32849210500717163, 0.15692448616027832, 0.8871601223945618, 0.1481364667415619], "max": [-0.13661660254001617, -0.07822471112012863, 0.14156338572502136, 0.3237781226634979, -0.4812930226325989, 0.7244369983673096, -0.36964112520217896, 0.11555128544569016, -0.11927805840969086, 0.12103069573640823, -0.25541597604751587, 0.2764744162559509, 0.940137505531311, 0.18747566640377045], "mean": [-0.13676533102989197, -0.07862519472837448, 0.14119195938110352, 0.3234214782714844, -0.4829648733139038, 0.7235237956047058, -0.3723541796207428, 0.11430206149816513, -0.12127213180065155, 0.1078479140996933, -0.30297014117240906, 0.23300185799598694, 0.9058307409286499, 0.1730770319700241], "std": [0.00016659690300002694, 0.000292603945126757, 0.0003978602180723101, 0.00016795274859759957, 0.0008570676436647773, 0.0009103154297918081, 0.002696901559829712, 0.0009280434460379183, 0.0026068517472594976, 0.008589190430939198, 0.025977352634072304, 0.0468185693025589, 0.0212186761200428, 0.010841013863682747], "count": [91]}, "timestamp": {"min": [0.0], "max": [3.0], "mean": [1.5], "std": [0.8755950357709131], "count": [91]}, "frame_index": {"min": [0], "max": [90], "mean": [45.0], "std": [26.267851073127396], "count": [91]}, "episode_index": {"min": [643], "max": [643], "mean": [643.0], "std": [0.0], "count": [91]}, "index": {"min": [362029], "max": [362119], "mean": [362074.0], "std": [26.267851073127396], "count": [91]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [91]}}} +{"episode_index": 644, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.37766506535947714]], [[0.3589790767973856]], [[0.33175921296296296]]], "std": [[[0.20993121025266032]], [[0.20397571130778208]], [[0.20797963055701094]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.385888575708061]], [[0.3825884940087146]], [[0.35542560185185185]]], "std": [[[0.21005903669075462]], [[0.1912891953737939]], [[0.20560263031659742]]], "count": [100]}, "observation.state": {"min": [0.3572072982788086, -0.000640986836515367, 0.12933345139026642, -0.7999671101570129, 0.2921288311481476, 0.6454837918281555, -0.5215161442756653, -0.30509427189826965, 0.18134579062461853, -1.4376342296600342, -0.23761087656021118, -1.3509188890457153], "max": [0.35906845331192017, -0.00030890930793248117, 0.12959788739681244, -0.7945151925086975, 0.29909729957580566, 0.6509432792663574, -0.4826399087905884, -0.24881872534751892, 0.2003856897354126, -1.2434613704681396, -0.047549501061439514, -1.0326200723648071], "mean": [0.3586243689060211, -0.0004489014681894332, 0.12947452068328857, -0.7962828278541565, 0.2965022623538971, 0.6474504470825195, -0.5033324360847473, -0.28120365738868713, 0.1899266093969345, -1.3325929641723633, -0.12812280654907227, -1.2107430696487427], "std": [0.0005111861391924322, 9.33902629185468e-05, 0.0001045159951900132, 0.0011569958878681064, 0.0019894992001354694, 0.0015248279087245464, 0.016639327630400658, 0.02029327303171158, 0.0076723224483430386, 0.06346336007118225, 0.04563523828983307, 0.1328146755695343], "count": [110]}, "action": {"min": [-0.13763046264648438, -0.07938719540834427, 0.14082090556621552, 0.31940117478370667, -0.4965963363647461, 0.7230081558227539, -0.35929977893829346, 0.11236847192049026, -0.1276916265487671, 0.09811725467443466, -0.35727664828300476, 0.12522326409816742, 0.8825724720954895, 0.11950824409723282], "max": [-0.13728639483451843, -0.07921335846185684, 0.14099131524562836, 0.32122936844825745, -0.4930322468280792, 0.7248353362083435, -0.35671156644821167, 0.11592777073383331, -0.1176314651966095, 0.11968424916267395, -0.2549733817577362, 0.25860846042633057, 0.9493874907493591, 0.17438919842243195], "mean": [-0.13736644387245178, -0.0792979747056961, 0.14091016352176666, 0.32061895728111267, -0.49446848034858704, 0.7240986824035645, -0.3583069443702698, 0.11422856152057648, -0.1210472360253334, 0.10761938244104385, -0.3149227499961853, 0.2033679485321045, 0.9111809730529785, 0.15537671744823456], "std": [0.00010177649528486654, 6.458695861510932e-05, 6.679236685158685e-05, 0.0004979744553565979, 0.001052707782946527, 0.00048430345486849546, 0.0005372701562009752, 0.0013478974578902125, 0.003739619627594948, 0.008261137641966343, 0.03275979310274124, 0.054842397570610046, 0.024443136528134346, 0.01986595243215561], "count": [110]}, "timestamp": {"min": [0.0], "max": [3.6333333333333333], "mean": [1.8166666666666664], "std": [1.0584317539538284], "count": [110]}, "frame_index": {"min": [0], "max": [109], "mean": [54.5], "std": [31.752952618614856], "count": [110]}, "episode_index": {"min": [644], "max": [644], "mean": [644.0], "std": [0.0], "count": [110]}, "index": {"min": [362120], "max": [362229], "mean": [362174.5], "std": [31.752952618614856], "count": [110]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [110]}}} +{"episode_index": 645, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3774515958605664]], [[0.3578114297385621]], [[0.33058299019607845]]], "std": [[[0.21168871606622505]], [[0.20526337876573433]], [[0.20935662959040377]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3852593355119826]], [[0.3817977559912854]], [[0.35476857570806103]]], "std": [[[0.21268946063038333]], [[0.19289178827814085]], [[0.20743186500645935]]], "count": [100]}, "observation.state": {"min": [0.3583656847476959, -0.000733659602701664, 0.12906251847743988, -0.7945151925086975, 0.2862534523010254, 0.6516717076301575, -0.5406531095504761, -0.3066156506538391, 0.1847303956747055, -1.4531513452529907, -0.07405698299407959, -1.194084644317627], "max": [0.36053577065467834, 0.0001235637319041416, 0.12909233570098877, -0.7905310988426208, 0.28953275084495544, 0.6550808548927307, -0.4996144771575928, -0.2509501874446869, 0.19814051687717438, -1.3539680242538452, 0.20454484224319458, -0.9087389707565308], "mean": [0.35963499546051025, -0.0001476629258831963, 0.1290721893310547, -0.7927855253219604, 0.28802788257598877, 0.653338611125946, -0.5283833742141724, -0.2826968729496002, 0.19088543951511383, -1.4091488122940063, 0.12581314146518707, -1.0869500637054443], "std": [0.0006363452994264662, 0.00027903798036277294, 9.521000720269512e-06, 0.0011555951787158847, 0.0009669851860962808, 0.0010365055641159415, 0.010049000382423401, 0.02042306587100029, 0.005137109663337469, 0.020296311005949974, 0.06177772581577301, 0.09983839839696884], "count": [141]}, "action": {"min": [-0.13760118186473846, -0.07918234914541245, 0.14046388864517212, 0.3174590766429901, -0.4990455210208893, 0.7214471697807312, -0.36000508069992065, 0.10833615064620972, -0.1261337250471115, 0.10063960403203964, -0.29740381240844727, 0.0777287632226944, 0.9308822751045227, 0.032628368586301804], "max": [-0.13724111020565033, -0.07903644442558289, 0.1406332552433014, 0.31903040409088135, -0.4976237714290619, 0.7225452661514282, -0.3583727777004242, 0.11500496417284012, -0.11762430518865585, 0.11439768970012665, -0.1930077224969864, 0.20693641901016235, 0.9718911051750183, 0.1250784695148468], "mean": [-0.13739246129989624, -0.07909242808818817, 0.14056822657585144, 0.3183501958847046, -0.4982750117778778, 0.7220743298530579, -0.3591419756412506, 0.1117623895406723, -0.12102528661489487, 0.10732084512710571, -0.23115193843841553, 0.16453510522842407, 0.955167293548584, 0.06709771603345871], "std": [0.00010561264207353815, 4.5337470510276034e-05, 5.139033237355761e-05, 0.0005074779037386179, 0.00045447953743860126, 0.00029878481291234493, 0.0004480893549043685, 0.0023345663212239742, 0.0025090700946748257, 0.005532868672162294, 0.02086634375154972, 0.040998004376888275, 0.010680606588721275, 0.020515870302915573], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [645], "max": [645], "mean": [645.0], "std": [0.0], "count": [141]}, "index": {"min": [362230], "max": [362370], "mean": [362300.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [141]}}} +{"episode_index": 646, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.37756630300829647]], [[0.3585965070090887]], [[0.3308620298849057]]], "std": [[[0.20960694431100135]], [[0.20354207686392242]], [[0.20768414845060865]]], "count": [99]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3854932219801501]], [[0.38234684535991725]], [[0.35496111166127503]]], "std": [[[0.21009716480878524]], [[0.19099713523217487]], [[0.20543775418629515]]], "count": [99]}, "observation.state": {"min": [0.35670530796051025, -0.0035524601116776466, 0.12773123383522034, -0.7842403650283813, 0.28871291875839233, 0.6480547785758972, -0.5337412357330322, -0.3094421923160553, 0.17954005300998688, -1.4546191692352295, -0.5321991443634033, -1.3106474876403809], "max": [0.3578096628189087, -0.003235829994082451, 0.12815770506858826, -0.781095027923584, 0.2926753759384155, 0.6512783765792847, -0.4766625165939331, -0.2644263803958893, 0.19914643466472626, -1.2749148607254028, 0.116824209690094, -0.9744605422019958], "mean": [0.35753679275512695, -0.0033766271080821753, 0.1281285434961319, -0.7829082012176514, 0.29180586338043213, 0.6491482853889465, -0.5144153833389282, -0.2893679141998291, 0.1876196265220642, -1.3738973140716553, 0.022466352209448814, -1.189990520477295], "std": [0.0003075335407629609, 7.009436376392841e-05, 6.784196011722088e-05, 0.000531741592567414, 0.0006784623255953193, 0.0009051637025550008, 0.019641747698187828, 0.016934340819716454, 0.007670314982533455, 0.04479348659515381, 0.12490876019001007, 0.12870463728904724], "count": [99]}, "action": {"min": [-0.13818193972110748, -0.07920891046524048, 0.1393376588821411, 0.3165290057659149, -0.49749520421028137, 0.7205047011375427, -0.3649861812591553, 0.11297043412923813, -0.12724445760250092, 0.09683741629123688, -0.4303891956806183, 0.10163605213165283, 0.8470728993415833, 0.05441481992602348], "max": [-0.1380087435245514, -0.07896419614553452, 0.1396874189376831, 0.31765928864479065, -0.4957127571105957, 0.7215621471405029, -0.36360788345336914, 0.11657844483852386, -0.11662217974662781, 0.1171610951423645, -0.20541374385356903, 0.25752875208854675, 0.9680643677711487, 0.27580955624580383], "mean": [-0.13805803656578064, -0.07915787398815155, 0.1396537572145462, 0.3174307942390442, -0.49618294835090637, 0.7212960124015808, -0.36437907814979553, 0.11494617164134979, -0.12024547159671783, 0.10519573092460632, -0.2641376852989197, 0.20265324413776398, 0.9328142404556274, 0.10638786852359772], "std": [5.5937627621460706e-05, 3.4711469197645783e-05, 5.354077075025998e-05, 0.0002165374462492764, 0.00039842844125814736, 0.00023827562108635902, 0.00024477654369547963, 0.0012618881883099675, 0.00391850620508194, 0.007870146073400974, 0.044540856033563614, 0.054982420057058334, 0.026493586599826813, 0.04464733228087425], "count": [99]}, "timestamp": {"min": [0.0], "max": [3.2666666666666666], "mean": [1.6333333333333329], "std": [0.9525793444156805], "count": [99]}, "frame_index": {"min": [0], "max": [98], "mean": [49.0], "std": [28.577380332470412], "count": [99]}, "episode_index": {"min": [646], "max": [646], "mean": [646.0], "std": [0.0], "count": [99]}, "index": {"min": [362371], "max": [362469], "mean": [362420.0], "std": [28.577380332470412], "count": [99]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [99]}}} +{"episode_index": 647, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38288337059970184]], [[0.3636049879600963]], [[0.3360164832014677]]], "std": [[[0.2092536506331508]], [[0.20356460040113628]], [[0.20761773844923861]]], "count": [95]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39146769865841075]], [[0.3877327399380805]], [[0.36034719642242863]]], "std": [[[0.20921050683956285]], [[0.19050430362335982]], [[0.20484540711225313]]], "count": [95]}, "observation.state": {"min": [0.3456772565841675, -0.007120360154658556, 0.1242792084813118, -0.7873857617378235, 0.31016483902931213, 0.6531649827957153, -0.5098239183425903, -0.3014028072357178, 0.17953097820281982, -1.452941656112671, -0.4028044044971466, -1.2462838888168335], "max": [0.34809446334838867, -0.006626099813729525, 0.12491309642791748, -0.7838209867477417, 0.31358078122138977, 0.6577398180961609, -0.44604188203811646, -0.2472587376832962, 0.20034940540790558, -1.346419095993042, -0.10370709747076035, -0.8446685671806335], "mean": [0.347464919090271, -0.006893230136483908, 0.12469383329153061, -0.7858297228813171, 0.3120894432067871, 0.6547999978065491, -0.49052542448043823, -0.27737483382225037, 0.1882839798927307, -1.3753734827041626, -0.14687708020210266, -1.0885931253433228], "std": [0.0006514741107821465, 0.0001652945065870881, 0.00025331444339826703, 0.0011611963855102658, 0.0014556045643985271, 0.0016933339647948742, 0.02304348349571228, 0.019767414778470993, 0.008150945417582989, 0.030360635370016098, 0.07170549035072327, 0.15305888652801514], "count": [95]}, "action": {"min": [-0.1411709189414978, -0.07833743840456009, 0.136796772480011, 0.3214159309864044, -0.4957941174507141, 0.7207773923873901, -0.36269718408584595, 0.11430235207080841, -0.12607291340827942, 0.09863393008708954, -0.3788174092769623, 0.02015085332095623, 0.9031420946121216, 0.10359898954629898], "max": [-0.14059530198574066, -0.07803746312856674, 0.137264221906662, 0.322834312915802, -0.49341464042663574, 0.7222161293029785, -0.3611089885234833, 0.11862378567457199, -0.11630823463201523, 0.12058498710393906, -0.27112460136413574, 0.2184215635061264, 0.9506224989891052, 0.1994210034608841], "mean": [-0.14074234664440155, -0.07820499688386917, 0.1370796263217926, 0.3223830461502075, -0.4942817986011505, 0.721595823764801, -0.36201176047325134, 0.11675320565700531, -0.1199108138680458, 0.10802055895328522, -0.3086167573928833, 0.1453114002943039, 0.9249066114425659, 0.14973308145999908], "std": [0.00015805791190359741, 0.00011709814862115309, 0.00019003610941581428, 0.00043488823575899005, 0.0008515894296579063, 0.0005087401368655264, 0.0004252626677043736, 0.0015267340932041407, 0.0038409216795116663, 0.008650999516248703, 0.02336255833506584, 0.0689067393541336, 0.012661917135119438, 0.017724255099892616], "count": [95]}, "timestamp": {"min": [0.0], "max": [3.1333333333333333], "mean": [1.5666666666666664], "std": [0.9140872800534725], "count": [95]}, "frame_index": {"min": [0], "max": [94], "mean": [47.0], "std": [27.422618401604176], "count": [95]}, "episode_index": {"min": [647], "max": [647], "mean": [647.0], "std": [0.0], "count": [95]}, "index": {"min": [362470], "max": [362564], "mean": [362517.0], "std": [27.422618401604176], "count": [95]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [95]}}} +{"episode_index": 648, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3856753267973856]], [[0.3665436574074074]], [[0.33821576797385616]]], "std": [[[0.20856778710087312]], [[0.20321498198476387]], [[0.2075408439883553]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39436402505446627]], [[0.3903975544662309]], [[0.36309699618736385]]], "std": [[[0.20858141287743584]], [[0.19024898729174508]], [[0.20445482801196974]]], "count": [100]}, "observation.state": {"min": [0.3388117253780365, -0.026326799765229225, 0.12046553194522858, -0.7464962005615234, 0.47358211874961853, 0.45781826972961426, -0.49939051270484924, -0.28556349873542786, 0.17629674077033997, -1.4032450914382935, -0.4176977872848511, -1.1989610195159912], "max": [0.3409586548805237, -0.025847990065813065, 0.12050052732229233, -0.7391570210456848, 0.47932085394859314, 0.4840974509716034, -0.4407363831996918, -0.23271682858467102, 0.19715145230293274, -1.2474454641342163, -0.13308395445346832, -0.8548420667648315], "mean": [0.34036868810653687, -0.025942573323845863, 0.12048669159412384, -0.7435573935508728, 0.4755786657333374, 0.4787164032459259, -0.477668434381485, -0.2637993395328522, 0.1859375387430191, -1.3224343061447144, -0.23134426772594452, -1.063476800918579], "std": [0.000618553429376334, 9.735027560964227e-05, 8.375832294404972e-06, 0.002468773163855076, 0.001818738761357963, 0.00666386540979147, 0.019927820190787315, 0.018236150965094566, 0.008153167553246021, 0.0379907600581646, 0.06426951289176941, 0.1235591322183609], "count": [117]}, "action": {"min": [-0.1428995430469513, -0.0778254047036171, 0.13228444755077362, 0.34498605132102966, -0.39408642053604126, 0.7456045150756836, -0.4140699803829193, 0.11659939587116241, -0.12617440521717072, 0.09867776930332184, -0.4163861870765686, 0.05647905543446541, 0.8900842070579529, 0.09473046660423279], "max": [-0.14256975054740906, -0.07770532369613647, 0.13236500322818756, 0.35027870535850525, -0.38289710879325867, 0.7503606081008911, -0.4074403643608093, 0.1204850822687149, -0.11261121183633804, 0.12080253660678864, -0.2936556339263916, 0.19067063927650452, 0.9459571242332458, 0.20517662167549133], "mean": [-0.14265844225883484, -0.07775590568780899, 0.13231083750724792, 0.3493645191192627, -0.39136067032814026, 0.7462539672851562, -0.40971851348876953, 0.11891590803861618, -0.11711286753416061, 0.10860658437013626, -0.3471962511539459, 0.133152574300766, 0.9122050404548645, 0.15804226696491241], "std": [9.525232599116862e-05, 2.98101131193107e-05, 2.3394295567413792e-05, 0.0012049409560859203, 0.0031457501463592052, 0.001137145678512752, 0.0021053801756352186, 0.0011436298955231905, 0.004800208378583193, 0.008084346540272236, 0.02894793264567852, 0.051283035427331924, 0.016567714512348175, 0.02978959120810032], "count": [117]}, "timestamp": {"min": [0.0], "max": [3.8666666666666667], "mean": [1.9333333333333336], "std": [1.125791902354697], "count": [117]}, "frame_index": {"min": [0], "max": [116], "mean": [58.0], "std": [33.77375707064091], "count": [117]}, "episode_index": {"min": [648], "max": [648], "mean": [648.0], "std": [0.0], "count": [117]}, "index": {"min": [362565], "max": [362681], "mean": [362623.0], "std": [33.77375707064091], "count": [117]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [117]}}} +{"episode_index": 649, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38138769849291376]], [[0.3622291456101341]], [[0.3338706960447409]]], "std": [[[0.20976900394479434]], [[0.20389968580827472]], [[0.20813129976719813]]], "count": [97]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38931077196055974]], [[0.38562699615928847]], [[0.3580169968330975]]], "std": [[[0.20983252918305098]], [[0.19103614000762723]], [[0.20544578512994544]]], "count": [97]}, "observation.state": {"min": [0.3386804461479187, -0.02238048054277897, 0.12014144659042358, -0.7878051400184631, 0.49189141392707825, 0.4402380883693695, -0.5548861026763916, -0.28265202045440674, 0.17973968386650085, -1.3678075075149536, -0.003142639994621277, -1.1024693250656128], "max": [0.33892756700515747, -0.022210579365491867, 0.1203358992934227, -0.7854985594749451, 0.4935310482978821, 0.4437507092952728, -0.4925481677055359, -0.23714196681976318, 0.19714497029781342, -1.280576467514038, 0.16410043835639954, -0.9135901927947998], "mean": [0.3387819230556488, -0.0222653578966856, 0.12025328725576401, -0.7868987917900085, 0.49254730343818665, 0.44180718064308167, -0.5288564562797546, -0.2648479640483856, 0.18739378452301025, -1.333016276359558, 0.09760211408138275, -1.0288270711898804], "std": [4.357408033683896e-05, 5.3481784561881796e-05, 8.5843050328549e-05, 0.0006475642439909279, 0.00040997614269144833, 0.001145147136412561, 0.02235034666955471, 0.015743529424071312, 0.006735527887940407, 0.0219790730625391, 0.04736367613077164, 0.06824146211147308], "count": [97]}, "action": {"min": [-0.14284011721611023, -0.0771658793091774, 0.1322728842496872, 0.35324013233184814, -0.3772833049297333, 0.758877158164978, -0.39711660146713257, 0.11039669066667557, -0.12352804094552994, 0.09901726245880127, -0.299207866191864, 0.10985243320465088, 0.9369460940361023, 0.0010605239076539874], "max": [-0.14274105429649353, -0.07705619186162949, 0.13243523240089417, 0.3536284565925598, -0.3753725290298462, 0.7594472765922546, -0.3957539200782776, 0.1145545244216919, -0.1126849427819252, 0.11762581765651703, -0.22745874524116516, 0.18228235840797424, 0.9665833711624146, 0.09684033691883087], "mean": [-0.14278841018676758, -0.0771181583404541, 0.1323673129081726, 0.3533504009246826, -0.3763209879398346, 0.75920170545578, -0.396406888961792, 0.11280280351638794, -0.11635500937700272, 0.10742457956075668, -0.2671777307987213, 0.15344516932964325, 0.9491854906082153, 0.04987967386841774], "std": [3.501421815599315e-05, 3.97530930058565e-05, 6.79281001794152e-05, 9.140020119957626e-05, 0.0005502841668203473, 0.00020635605324059725, 0.0003683359536807984, 0.0010951102012768388, 0.003893194952979684, 0.007155255414545536, 0.017522327601909637, 0.025828100740909576, 0.008293595165014267, 0.02422306500375271], "count": [97]}, "timestamp": {"min": [0.0], "max": [3.2], "mean": [1.5999999999999996], "std": [0.9333333333333333], "count": [97]}, "frame_index": {"min": [0], "max": [96], "mean": [48.0], "std": [28.0], "count": [97]}, "episode_index": {"min": [649], "max": [649], "mean": [649.0], "std": [0.0], "count": [97]}, "index": {"min": [362682], "max": [362778], "mean": [362730.0], "std": [28.0], "count": [97]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [97]}}} +{"episode_index": 650, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38183742748035543]], [[0.36224300812709603]], [[0.33463832586717585]]], "std": [[[0.21112206749960538]], [[0.204908587088458]], [[0.20895683733784928]]], "count": [89]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3898835463024161]], [[0.3857011823455974]], [[0.35859486303884847]]], "std": [[[0.2114662410901415]], [[0.1921940811793204]], [[0.2065464695468983]]], "count": [89]}, "observation.state": {"min": [0.3406497538089752, -0.023307209834456444, 0.12033071368932724, -0.8024834394454956, 0.48615267872810364, 0.4444791078567505, -0.5320499539375305, -0.2987384796142578, 0.18430651724338531, -1.452941656112671, 0.1401890516281128, -1.172910451889038], "max": [0.341846764087677, -0.0230755303055048, 0.12095682322978973, -0.7909504771232605, 0.4894319474697113, 0.44857853651046753, -0.49778419733047485, -0.25052544474601746, 0.19931624829769135, -1.3761950731277466, 0.2441694289445877, -0.9892916083335876], "mean": [0.34123873710632324, -0.02321462891995907, 0.12072844058275223, -0.7970666885375977, 0.4877553880214691, 0.44693201780319214, -0.5211480855941772, -0.2823314368724823, 0.18889860808849335, -1.4347314834594727, 0.21154555678367615, -1.129195213317871], "std": [0.0004291015793569386, 6.731064786436036e-05, 0.0002361737278988585, 0.0031173701863735914, 0.000844215857796371, 0.0014086492592468858, 0.012039643712341785, 0.01797635853290558, 0.005354393273591995, 0.018970882520079613, 0.02016436867415905, 0.0650082677602768], "count": [89]}, "action": {"min": [-0.14236615598201752, -0.07760420441627502, 0.13220590353012085, 0.3535316586494446, -0.38198304176330566, 0.7584360241889954, -0.3940282464027405, 0.11261705309152603, -0.12465618550777435, 0.10173038393259048, -0.2093295156955719, 0.14218996465206146, 0.9567462801933289, 0.0004428912070579827], "max": [-0.14218345284461975, -0.0772358775138855, 0.13275261223316193, 0.3552097976207733, -0.3797346353530884, 0.7600483298301697, -0.3887937068939209, 0.11592196673154831, -0.11880366504192352, 0.11900334805250168, -0.174224853515625, 0.20654305815696716, 0.9733639359474182, 0.07069138437509537], "mean": [-0.1422441303730011, -0.07747428119182587, 0.13253463804721832, 0.3542107045650482, -0.38124653697013855, 0.7591975331306458, -0.39089885354042053, 0.11455580592155457, -0.1200450211763382, 0.10710188746452332, -0.19221848249435425, 0.18840159475803375, 0.961714506149292, 0.04238836467266083], "std": [4.062752486788668e-05, 0.00013470333942677826, 0.0002062337298411876, 0.00042967352783307433, 0.000713367888238281, 0.00045530206989496946, 0.001428397954441607, 0.0011720318580046296, 0.001800092519260943, 0.006304278038442135, 0.006232679821550846, 0.020846053957939148, 0.005080963484942913, 0.019131027162075043], "count": [89]}, "timestamp": {"min": [0.0], "max": [2.933333333333333], "mean": [1.4666666666666666], "std": [0.8563488385776752], "count": [89]}, "frame_index": {"min": [0], "max": [88], "mean": [44.0], "std": [25.69046515733026], "count": [89]}, "episode_index": {"min": [650], "max": [650], "mean": [650.0], "std": [0.0], "count": [89]}, "index": {"min": [362779], "max": [362867], "mean": [362823.0], "std": [25.69046515733026], "count": [89]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [89]}}} +{"episode_index": 651, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3824868355119826]], [[0.3632956726579521]], [[0.3356063289760349]]], "std": [[[0.2102901453409162]], [[0.2042443529512576]], [[0.20821735386967546]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3906818600217865]], [[0.38646154411764705]], [[0.3594756862745098]]], "std": [[[0.210470224604774]], [[0.1916647262783098]], [[0.20579134822923492]]], "count": [100]}, "observation.state": {"min": [0.33871135115623474, -0.022998299449682236, 0.12095682322978973, -0.7989186644554138, 0.48697248101234436, 0.44908326864242554, -0.5233387351036072, -0.30091628432273865, 0.1832500398159027, -1.4554579257965088, -0.6516194939613342, -1.2497156858444214], "max": [0.3406265676021576, -0.022411370649933815, 0.12126533687114716, -0.7966120839118958, 0.48779231309890747, 0.4504495859146118, -0.45911645889282227, -0.24758309125900269, 0.19966107606887817, -1.2908512353897095, 0.049872320145368576, -0.8822619915008545], "mean": [0.33951565623283386, -0.02253883145749569, 0.12119898200035095, -0.7979525923728943, 0.48746544122695923, 0.4496505558490753, -0.5088645219802856, -0.2827757000923157, 0.18836726248264313, -1.4123121500015259, -0.019763754680752754, -1.1710357666015625], "std": [0.0007113624014891684, 0.00016114264144562185, 0.00010730938811320812, 0.0008177987765520811, 0.000315786455757916, 0.0003415016399230808, 0.015750756487250328, 0.0162885170429945, 0.0044812909327447414, 0.03862152621150017, 0.1471673548221588, 0.08733619004487991], "count": [107]}, "action": {"min": [-0.14245420694351196, -0.07771703600883484, 0.13276907801628113, 0.3539711534976959, -0.382363885641098, 0.7589229345321655, -0.3906461298465729, 0.11337287724018097, -0.12396233528852463, 0.10067157447338104, -0.4739116430282593, 0.0015232788864523172, 0.8399359583854675, 0.08530592918395996], "max": [-0.1422233283519745, -0.07755467295646667, 0.13313816487789154, 0.35421738028526306, -0.38166892528533936, 0.7595893144607544, -0.38934779167175293, 0.11726704984903336, -0.11843305826187134, 0.12015038728713989, -0.22140398621559143, 0.2271534949541092, 0.9625428318977356, 0.2644107937812805], "mean": [-0.14235050976276398, -0.07766324281692505, 0.13305383920669556, 0.35409313440322876, -0.38201382756233215, 0.7593564391136169, -0.38995012640953064, 0.11489582806825638, -0.12009712308645248, 0.10659676045179367, -0.26068010926246643, 0.18984287977218628, 0.9345438480377197, 0.12655963003635406], "std": [7.871432899264619e-05, 5.257487646304071e-05, 0.00012688689457718283, 6.542906339745969e-05, 0.0001904378441395238, 0.00023956358199939132, 0.00043721433030441403, 0.001011754502542317, 0.0014197347918525338, 0.00541554344817996, 0.05438073351979256, 0.04654665291309357, 0.02188100852072239, 0.03183436021208763], "count": [107]}, "timestamp": {"min": [0.0], "max": [3.533333333333333], "mean": [1.7666666666666666], "std": [1.0295630140987], "count": [107]}, "frame_index": {"min": [0], "max": [106], "mean": [53.0], "std": [30.886890422961002], "count": [107]}, "episode_index": {"min": [651], "max": [651], "mean": [651.0], "std": [0.0], "count": [107]}, "index": {"min": [362868], "max": [362974], "mean": [362921.0], "std": [30.886890422961002], "count": [107]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [107]}}} +{"episode_index": 652, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38163775054466226]], [[0.36262885620915036]], [[0.33511866557734205]]], "std": [[[0.21051260481990686]], [[0.2044464816622183]], [[0.20845928499649052]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39060218954248366]], [[0.3865309422657952]], [[0.35947402777777776]]], "std": [[[0.2106614290673265]], [[0.19166216424069032]], [[0.2060618115602704]]], "count": [100]}, "observation.state": {"min": [0.3455459475517273, -0.027917679399251938, 0.12175533175468445, -0.7997574210166931, 0.4795941114425659, 0.43170955777168274, -0.5106889009475708, -0.3054032027721405, 0.1828378140926361, -1.4422473907470703, -0.47426527738571167, -1.2402613162994385], "max": [0.3497316837310791, -0.024311160668730736, 0.12179163098335266, -0.7982895970344543, 0.48205357789993286, 0.4339672327041626, -0.45763370394706726, -0.259931743144989, 0.19896237552165985, -1.3061586618423462, -0.10971911251544952, -0.9998932480812073], "mean": [0.3476111888885498, -0.02530089020729065, 0.12177277356386185, -0.7988523840904236, 0.4802406132221222, 0.433428019285202, -0.4892429709434509, -0.2840379774570465, 0.1904902309179306, -1.3797519207000732, -0.1728208363056183, -1.1307085752487183], "std": [0.0011662084143608809, 0.0008757977630011737, 1.427074948878726e-05, 0.00041408254764974117, 0.0005683929193764925, 0.0004875133163295686, 0.01855221390724182, 0.016121363267302513, 0.006269967183470726, 0.03356773406267166, 0.09454229474067688, 0.09431061148643494], "count": [101]}, "action": {"min": [-0.14124584197998047, -0.07845048606395721, 0.13254381716251373, 0.35052934288978577, -0.3800610899925232, 0.7599844336509705, -0.39299145340919495, 0.11378386616706848, -0.12771821022033691, 0.10005328804254532, -0.40252068638801575, 0.09121368080377579, 0.8707124590873718, 0.12411987036466599], "max": [-0.14060835540294647, -0.07808490842580795, 0.13308511674404144, 0.3518505394458771, -0.37921246886253357, 0.7612780332565308, -0.39211320877075195, 0.1179535910487175, -0.11913586407899857, 0.11712482571601868, -0.2715698778629303, 0.2063475102186203, 0.9427534341812134, 0.25979968905448914], "mean": [-0.14093740284442902, -0.07816042006015778, 0.13288915157318115, 0.35088875889778137, -0.3796495199203491, 0.76066654920578, -0.3925930857658386, 0.11588414013385773, -0.12229061871767044, 0.10836389660835266, -0.31000828742980957, 0.15785904228687286, 0.920496940612793, 0.1664239913225174], "std": [0.0001752665702952072, 8.687399531481788e-05, 0.00013964033860247582, 0.0003364893200341612, 0.0003305588907096535, 0.0003734680649358779, 0.00021817165543325245, 0.0011698403395712376, 0.003261915873736143, 0.006674603559076786, 0.03491988778114319, 0.0412437804043293, 0.016423692926764488, 0.027813216671347618], "count": [101]}, "timestamp": {"min": [0.0], "max": [3.3333333333333335], "mean": [1.6666666666666665], "std": [0.97182531580755], "count": [101]}, "frame_index": {"min": [0], "max": [100], "mean": [50.0], "std": [29.154759474226502], "count": [101]}, "episode_index": {"min": [652], "max": [652], "mean": [652.0], "std": [0.0], "count": [101]}, "index": {"min": [362975], "max": [363075], "mean": [363025.0], "std": [29.154759474226502], "count": [101]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [101]}}} +{"episode_index": 653, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.382081841701327]], [[0.36315495333234304]], [[0.3354823108536344]]], "std": [[[0.20978081136733626]], [[0.2040251074042319]], [[0.20819087418030535]]], "count": [88]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3907119386264607]], [[0.3870210716230937]], [[0.35967743303129335]]], "std": [[[0.2098926010055637]], [[0.19097586556250398]], [[0.20549882005671596]]], "count": [88]}, "observation.state": {"min": [0.34281983971595764, -0.02212562970817089, 0.1219744086265564, -0.8073062896728516, 0.4722157418727875, 0.4274425506591797, -0.5168825387954712, -0.30239132046699524, 0.18262521922588348, -1.4367954730987549, -0.2852970063686371, -1.256781816482544], "max": [0.34364616870880127, -0.02068920060992241, 0.12242291867733002, -0.8052093982696533, 0.4730355739593506, 0.42965543270111084, -0.46646079421043396, -0.2626887559890747, 0.19865255057811737, -1.346419095993042, -0.11122211068868637, -0.9233202934265137], "mean": [0.3435455858707428, -0.021039001643657684, 0.12224440276622772, -0.8063278198242188, 0.47267258167266846, 0.4282819628715515, -0.49600765109062195, -0.2856003940105438, 0.18875408172607422, -1.384103536605835, -0.13850122690200806, -1.1417416334152222], "std": [0.00020260941528249532, 0.0004866508243139833, 0.00020761607447639108, 0.00051141093717888, 0.00019089694251306355, 0.0009700531954877079, 0.020873019471764565, 0.01562955603003502, 0.006569953635334969, 0.022039668634533882, 0.0364600345492363, 0.1294935643672943], "count": [88]}, "action": {"min": [-0.14161521196365356, -0.07802251726388931, 0.13352914154529572, 0.34625348448753357, -0.3791385293006897, 0.7645107507705688, -0.3901641070842743, 0.11505082994699478, -0.12697932124137878, 0.09976717084646225, -0.34813567996025085, 0.06925118714570999, 0.8957480788230896, 0.12372375279664993], "max": [-0.14134542644023895, -0.07784594595432281, 0.13399769365787506, 0.3466469943523407, -0.3776548504829407, 0.765184223651886, -0.38909852504730225, 0.11646075546741486, -0.11826559901237488, 0.11678996682167053, -0.27636298537254333, 0.21483410894870758, 0.9434412121772766, 0.21293990314006805], "mean": [-0.14141526818275452, -0.07797782868146896, 0.13382887840270996, 0.3464343845844269, -0.37815791368484497, 0.7648889422416687, -0.38977453112602234, 0.1159086748957634, -0.12111758440732956, 0.10687808692455292, -0.3006829619407654, 0.16593784093856812, 0.9236176013946533, 0.15844787657260895], "std": [8.614318358013406e-05, 5.96581885474734e-05, 0.00019743306620512158, 7.561525126220658e-05, 0.0005476766964420676, 0.0002532920043449849, 0.00023091520415619016, 0.00036465845187194645, 0.0033975725527852774, 0.007189908530563116, 0.016939803957939148, 0.05554725602269173, 0.011149407364428043, 0.019552771002054214], "count": [88]}, "timestamp": {"min": [0.0], "max": [2.9], "mean": [1.45], "std": [0.8467257197253691], "count": [88]}, "frame_index": {"min": [0], "max": [87], "mean": [43.5], "std": [25.401771591761076], "count": [88]}, "episode_index": {"min": [653], "max": [653], "mean": [653.0], "std": [0.0], "count": [88]}, "index": {"min": [363076], "max": [363163], "mean": [363119.5], "std": [25.401771591761076], "count": [88]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [88]}}} +{"episode_index": 654, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3812523965141612]], [[0.3593100925925926]], [[0.3303856209150327]]], "std": [[[0.20657300978308532]], [[0.20011317652632507]], [[0.20314788247870366]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38772403867102395]], [[0.38138615468409587]], [[0.35281087690631807]]], "std": [[[0.20632651928007972]], [[0.1872380286078188]], [[0.2004936796563672]]], "count": [100]}, "observation.state": {"min": [0.368382066488266, -0.06512580811977386, 0.12167108058929443, -0.47536709904670715, 0.3191828727722168, 0.2956772744655609, -0.5814986228942871, -0.2368175983428955, 0.17193731665611267, 1.424843192100525, -0.1654668003320694, 0.007938840426504612], "max": [0.37578046321868896, -0.05895534157752991, 0.12271200120449066, -0.4283965528011322, 0.34090808033943176, 0.35633066296577454, -0.511515200138092, -0.1951148509979248, 0.1939936876296997, 1.7483947277069092, 0.2549636960029602, 0.13797079026699066], "mean": [0.37321871519088745, -0.060037530958652496, 0.122035451233387, -0.4388138949871063, 0.33288612961769104, 0.34125885367393494, -0.5475170016288757, -0.2106502205133438, 0.1817653775215149, 1.6780134439468384, -0.03250979259610176, 0.07567555457353592], "std": [0.0025172787718474865, 0.0018215858144685626, 0.00037977652391418815, 0.015205329284071922, 0.006853508297353983, 0.02231549471616745, 0.02441883459687233, 0.007353148423135281, 0.0068050650879740715, 0.06796310842037201, 0.10177475214004517, 0.026817236095666885], "count": [141]}, "action": {"min": [-0.13905242085456848, -0.08434553444385529, 0.129283607006073, 0.21036577224731445, -0.3707406520843506, 0.7031896114349365, -0.5614076852798462, 0.10931400209665298, -0.1128491684794426, 0.10111810266971588, 0.28492802381515503, -0.3313463032245636, -0.16166792809963226, 0.8712135553359985], "max": [-0.13812512159347534, -0.0827711746096611, 0.13018211722373962, 0.23307295143604279, -0.3584141731262207, 0.725831925868988, -0.5472033619880676, 0.1194010004401207, -0.09977403283119202, 0.11956330388784409, 0.3263224959373474, -0.2055467665195465, 0.060723792761564255, 0.9316638708114624], "mean": [-0.13840889930725098, -0.0832064226269722, 0.12958884239196777, 0.22675566375255585, -0.3668164610862732, 0.7086538672447205, -0.5582762360572815, 0.11116231232881546, -0.104874387383461, 0.10858382284641266, 0.2942202389240265, -0.2695510983467102, 0.00041156195220537484, 0.914724588394165], "std": [0.000262024172116071, 0.0005523269064724445, 0.00028977051260881126, 0.008028179407119751, 0.004308566451072693, 0.007944646291434765, 0.004289783537387848, 0.0022097276523709297, 0.004735487513244152, 0.00619504926726222, 0.006941655185073614, 0.03752748668193817, 0.04935575649142265, 0.012757765129208565], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [654], "max": [654], "mean": [654.0], "std": [0.0], "count": [141]}, "index": {"min": [363164], "max": [363304], "mean": [363234.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [141]}}} +{"episode_index": 655, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38151623366013077]], [[0.3595538017429194]], [[0.3303651633986928]]], "std": [[[0.20552051135127142]], [[0.19919690655168987]], [[0.20212512016976983]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3878911982570806]], [[0.3815001062091503]], [[0.35265375]]], "std": [[[0.20535087566478324]], [[0.1863483728101688]], [[0.19969820515022443]]], "count": [100]}, "observation.state": {"min": [0.3698030710220337, -0.05037539079785347, 0.12361680716276169, -0.4418167173862457, 0.31877294182777405, 0.37382832169532776, -0.5858619809150696, -0.22180460393428802, 0.17418119311332703, 1.4080679416656494, -0.15617552399635315, -0.0527942068874836], "max": [0.3743054270744324, -0.04785778000950813, 0.12428957968950272, -0.4336388111114502, 0.32355523109436035, 0.377646267414093, -0.5185274481773376, -0.1855463832616806, 0.19263388216495514, 1.5791749954223633, 0.05233177915215492, 0.0255514495074749], "mean": [0.3726183772087097, -0.04875138774514198, 0.1238638162612915, -0.43797844648361206, 0.32119089365005493, 0.37576210498809814, -0.5554900765419006, -0.19997398555278778, 0.1813819259405136, 1.5268043279647827, -0.08310694992542267, -0.0039034842047840357], "std": [0.0018623369978740811, 0.0010623293928802013, 0.000273230456514284, 0.0026825452223420143, 0.0015295901102945209, 0.0008998596458695829, 0.022913295775651932, 0.005958525463938713, 0.006383227650076151, 0.04184515029191971, 0.0554167665541172, 0.015132356435060501], "count": [141]}, "action": {"min": [-0.13835111260414124, -0.0828608050942421, 0.131843701004982, 0.23353950679302216, -0.37915167212486267, 0.7023064494132996, -0.5563518404960632, 0.1088559627532959, -0.11089073121547699, 0.10245629400014877, 0.3280634880065918, -0.25440701842308044, -0.11925464868545532, 0.8827409744262695], "max": [-0.1374305635690689, -0.08238651603460312, 0.1323404163122177, 0.23478464782238007, -0.3759051561355591, 0.7050250768661499, -0.5530418157577515, 0.11766758561134338, -0.09743853658437729, 0.11836948990821838, 0.3825186789035797, -0.18463435769081116, -0.02628098614513874, 0.9153211712837219], "mean": [-0.13783936202526093, -0.08266682177782059, 0.13203471899032593, 0.2341918647289276, -0.37771591544151306, 0.7035319805145264, -0.5545485615730286, 0.11039856821298599, -0.103091761469841, 0.1090724989771843, 0.34963443875312805, -0.22537048161029816, -0.04933067783713341, 0.9073164463043213], "std": [0.00035937485517933965, 0.00016751984367147088, 0.00019598411745391786, 0.00048322719521820545, 0.0007545525440946221, 0.0009176747407764196, 0.0011290539987385273, 0.001721273991279304, 0.004730469547212124, 0.00554335443302989, 0.010426834225654602, 0.021496359258890152, 0.025947321206331253, 0.00794847123324871], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [655], "max": [655], "mean": [655.0], "std": [0.0], "count": [141]}, "index": {"min": [363305], "max": [363445], "mean": [363375.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [141]}}} +{"episode_index": 656, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3819771677559913]], [[0.35988470860566446]], [[0.33077840413943355]]], "std": [[[0.20607742859203323]], [[0.19957127990295673]], [[0.20272464013678854]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38837207244008715]], [[0.3815760811546841]], [[0.35293414760348585]]], "std": [[[0.2058934874369753]], [[0.18676807142473356]], [[0.20027939614414472]]], "count": [100]}, "observation.state": {"min": [0.3681272268295288, -0.04531700164079666, 0.1251256912946701, -0.49214228987693787, 0.3077054023742676, 0.3733026385307312, -0.5978090167045593, -0.250749409198761, 0.1717558354139328, 1.370952844619751, -0.2568766176700592, -0.07678171992301941], "max": [0.37744084000587463, -0.04306967929005623, 0.12628327310085297, -0.47536709904670715, 0.31863632798194885, 0.3822433054447174, -0.5045879483222961, -0.18639588356018066, 0.19306814670562744, 1.6108381748199463, -0.00027327300631441176, 0.045711640268564224], "mean": [0.375316321849823, -0.04352332651615143, 0.12570436298847198, -0.47847315669059753, 0.31509101390838623, 0.3773139715194702, -0.5494415163993835, -0.20462805032730103, 0.1809871345758438, 1.4948387145996094, -0.16501396894454956, -0.014575431123375893], "std": [0.0026981602422893047, 0.000707584957126528, 0.0003054592525586486, 0.003502791980281472, 0.0022126322146505117, 0.003013076726347208, 0.027053942903876305, 0.017061417922377586, 0.006455539260059595, 0.06958875805139542, 0.0626257136464119, 0.03950783237814903], "count": [175]}, "action": {"min": [-0.1379583477973938, -0.0831151157617569, 0.1334775984287262, 0.23924648761749268, -0.38675034046173096, 0.7114050984382629, -0.5394187569618225, 0.10867106914520264, -0.11169779300689697, 0.10158650577068329, 0.3137305974960327, -0.21931710839271545, -0.12800303101539612, 0.8912925124168396], "max": [-0.13623204827308655, -0.08262836933135986, 0.13411618769168854, 0.24065269529819489, -0.37985602021217346, 0.7161362767219543, -0.5313458442687988, 0.12396973371505737, -0.09624461084604263, 0.1186780333518982, 0.42556679248809814, -0.12995609641075134, 0.001636460074223578, 0.9272072911262512], "mean": [-0.1366562694311142, -0.0828377828001976, 0.13372565805912018, 0.23981697857379913, -0.38248512148857117, 0.71226966381073, -0.5374552607536316, 0.11220960319042206, -0.10387585312128067, 0.10896750539541245, 0.3630940318107605, -0.17998571693897247, -0.0472492016851902, 0.9112935066223145], "std": [0.0005166090559214354, 0.0001160707397502847, 0.00016088092525023967, 0.0003349638427607715, 0.0015288651920855045, 0.0008695216965861619, 0.0018185930093750358, 0.004280504304915667, 0.004651925526559353, 0.00544382818043232, 0.033501800149679184, 0.026698002591729164, 0.03296168893575668, 0.012566237710416317], "count": [175]}, "timestamp": {"min": [0.0], "max": [5.8], "mean": [2.9], "std": [1.6839107920420118], "count": [175]}, "frame_index": {"min": [0], "max": [174], "mean": [87.0], "std": [50.51732376126036], "count": [175]}, "episode_index": {"min": [656], "max": [656], "mean": [656.0], "std": [0.0], "count": [175]}, "index": {"min": [363446], "max": [363620], "mean": [363533.0], "std": [50.51732376126036], "count": [175]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [175]}}} +{"episode_index": 657, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38324190631808275]], [[0.3612851225490196]], [[0.3322172113289761]]], "std": [[[0.20608416603511687]], [[0.19944428589714777]], [[0.20271560709160588]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3905809667755991]], [[0.383353809912854]], [[0.3547064760348584]]], "std": [[[0.20560742123527537]], [[0.1867565208220017]], [[0.2005632975212665]]], "count": [100]}, "observation.state": {"min": [0.3763982653617859, -0.043471261858940125, 0.12627549469470978, -0.4871097505092621, 0.3015567362308502, 0.3785555958747864, -0.5908817648887634, -0.24447083473205566, 0.17301194369792938, 1.3826954364776611, -0.2686273455619812, -0.07211177796125412], "max": [0.3782362937927246, -0.04154830053448677, 0.12714660167694092, -0.48144811391830444, 0.30702221393585205, 0.38270026445388794, -0.5052443742752075, -0.17889711260795593, 0.19432035088539124, 1.502428412437439, -0.1468842327594757, 0.0602683387696743], "mean": [0.3771938979625702, -0.042664267122745514, 0.1265682429075241, -0.48480185866355896, 0.30539804697036743, 0.38106730580329895, -0.5401399731636047, -0.2123691886663437, 0.17824560403823853, 1.4468796253204346, -0.21105600893497467, -0.023856189101934433], "std": [0.0007757456041872501, 0.0007901017088443041, 0.0003525920328684151, 0.001079754438251257, 0.0016244177240878344, 0.0007665687589906156, 0.03300889581441879, 0.02561144158244133, 0.00671107554808259, 0.039077721536159515, 0.04435141012072563, 0.04171432554721832], "count": [231]}, "action": {"min": [-0.1362868845462799, -0.08331795036792755, 0.1340932846069336, 0.23818372189998627, -0.388844758272171, 0.7121192812919617, -0.5356146097183228, 0.10814884305000305, -0.11144174635410309, 0.10267572849988937, 0.32654327154159546, -0.16724659502506256, -0.09113392978906631, 0.8926137089729309], "max": [-0.13570758700370789, -0.08298543840646744, 0.13485945761203766, 0.23909784853458405, -0.3858412802219391, 0.7130557298660278, -0.532773494720459, 0.12324121594429016, -0.09622396528720856, 0.11982626467943192, 0.4221634268760681, -0.12648409605026245, -0.03362575173377991, 0.9321609735488892], "mean": [-0.13605494797229767, -0.08317504078149796, 0.13436028361320496, 0.23869775235652924, -0.3872409462928772, 0.7127154469490051, -0.533950924873352, 0.11542409658432007, -0.10371851176023483, 0.10710595548152924, 0.38054925203323364, -0.14649197459220886, -0.05712437257170677, 0.9103516936302185], "std": [0.0002419735537841916, 7.811574323568493e-05, 0.00030366386636160314, 0.00021205995290074497, 0.0005737326573580503, 0.00017586628382559866, 0.0005629348452202976, 0.006290581077337265, 0.004518966190516949, 0.005524360109120607, 0.03427790850400925, 0.007919041439890862, 0.016276270151138306, 0.01470100972801447], "count": [231]}, "timestamp": {"min": [0.0], "max": [7.666666666666667], "mean": [3.8333333333333335], "std": [2.222777708350689], "count": [231]}, "frame_index": {"min": [0], "max": [230], "mean": [115.0], "std": [66.68333125052067], "count": [231]}, "episode_index": {"min": [657], "max": [657], "mean": [657.0], "std": [0.0], "count": [231]}, "index": {"min": [363621], "max": [363851], "mean": [363736.0], "std": [66.68333125052067], "count": [231]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [231]}}} +{"episode_index": 658, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3787435103485839]], [[0.35704270697167756]], [[0.32755053376906323]]], "std": [[[0.2047866105104915]], [[0.19856305375354347]], [[0.20143586467688696]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3852775816993464]], [[0.37868498366013076]], [[0.3494804901960784]]], "std": [[[0.2045904853519128]], [[0.185840322133504]], [[0.19910686477392345]]], "count": [100]}, "observation.state": {"min": [0.3733014464378357, -0.04487679898738861, 0.1274823397397995, -0.5162566304206848, 0.27217990159988403, 0.4007219076156616, -0.6169922947883606, -0.21596622467041016, 0.17385712265968323, 1.3864699602127075, -0.3111213147640228, -0.0867152288556099], "max": [0.37718600034713745, -0.04381106048822403, 0.12793216109275818, -0.5122725367546082, 0.2735462784767151, 0.40463533997535706, -0.5389386415481567, -0.18417945504188538, 0.1946755349636078, 1.4890083074569702, -0.16997581720352173, 0.03749629855155945], "mean": [0.37588733434677124, -0.04406271502375603, 0.1277419775724411, -0.5137552618980408, 0.2729441225528717, 0.40248915553092957, -0.5730689167976379, -0.1950172781944275, 0.18269085884094238, 1.4472572803497314, -0.2629808485507965, -0.015612741000950336], "std": [0.001179782091639936, 0.0003541067417245358, 0.00018800712132360786, 0.0009818171383813024, 0.00044829800026491284, 0.0014970594784244895, 0.028752010315656662, 0.006039122585207224, 0.006817320827394724, 0.021673625335097313, 0.02780180238187313, 0.030852356925606728], "count": [126]}, "action": {"min": [-0.13636653125286102, -0.08437851816415787, 0.13499867916107178, 0.23318038880825043, -0.408354252576828, 0.7149276733398438, -0.5184035301208496, 0.10704165697097778, -0.11150331795215607, 0.10060219466686249, 0.3429786264896393, -0.17076155543327332, -0.09131015092134476, 0.898024320602417], "max": [-0.13559560477733612, -0.08420780301094055, 0.1352728307247162, 0.2340860664844513, -0.40652593970298767, 0.7158243656158447, -0.5162065029144287, 0.1142510250210762, -0.09574496746063232, 0.11966659128665924, 0.4110564589500427, -0.1070929616689682, -0.03660643845796585, 0.9259689450263977], "mean": [-0.13587182760238647, -0.08430547267198563, 0.1351621299982071, 0.2337697297334671, -0.4073048532009125, 0.7152345776557922, -0.5175836682319641, 0.10863202810287476, -0.10287454724311829, 0.1094636544585228, 0.37098363041877747, -0.13848215341567993, -0.05343322083353996, 0.9163028597831726], "std": [0.0002534344675950706, 4.402812919579446e-05, 0.00011382934462744743, 0.00024561493773944676, 0.000643766310531646, 0.00021604345238301903, 0.000585842237342149, 0.0015515752602368593, 0.0052305469289422035, 0.006366727873682976, 0.01761380210518837, 0.01565559208393097, 0.011140091344714165, 0.006945939268916845], "count": [126]}, "timestamp": {"min": [0.0], "max": [4.166666666666667], "mean": [2.0833333333333335], "std": [1.2123973801552888], "count": [126]}, "frame_index": {"min": [0], "max": [125], "mean": [62.5], "std": [36.37192140465866], "count": [126]}, "episode_index": {"min": [658], "max": [658], "mean": [658.0], "std": [0.0], "count": [126]}, "index": {"min": [363852], "max": [363977], "mean": [363914.5], "std": [36.37192140465866], "count": [126]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [126]}}} +{"episode_index": 659, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3794823447712419]], [[0.3578937391067538]], [[0.32823444444444444]]], "std": [[[0.2046242042497478]], [[0.19854081988634187]], [[0.20134761511411214]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38613427559912855]], [[0.3798211737472767]], [[0.35022307734204794]]], "std": [[[0.20440920701285548]], [[0.18565438267370626]], [[0.19905215080385158]]], "count": [100]}, "observation.state": {"min": [0.3753402531147003, -0.04369521886110306, 0.12772604823112488, -0.5168856978416443, 0.2687639892101288, 0.3991858959197998, -0.6102657914161682, -0.21793551743030548, 0.1724299043416977, 1.4030354022979736, -0.3648194372653961, -0.0778001919388771], "max": [0.38027510046958923, -0.04261403903365135, 0.12782974541187286, -0.5114337801933289, 0.2697204351425171, 0.40488874912261963, -0.5451245307922363, -0.17882759869098663, 0.19400924444198608, 1.4921536445617676, -0.18555237352848053, 0.08984003961086273], "mean": [0.3785238265991211, -0.043002039194107056, 0.12777893245220184, -0.513450562953949, 0.26930829882621765, 0.4018898010253906, -0.5767636299133301, -0.19177107512950897, 0.1814132183790207, 1.4701639413833618, -0.31799831986427307, 0.007196434307843447], "std": [0.0017451948951929808, 0.00042170696542598307, 4.640664337784983e-05, 0.001713149482384324, 0.0002902349515352398, 0.0021419995464384556, 0.02536969818174839, 0.009107840247452259, 0.007685105782002211, 0.020503191277384758, 0.04943037033081055, 0.05481748655438423], "count": [121]}, "action": {"min": [-0.1359708160161972, -0.08429533988237381, 0.1351083368062973, 0.23297418653964996, -0.4093061089515686, 0.7144030332565308, -0.5187874436378479, 0.10736168175935745, -0.11129885166883469, 0.101080022752285, 0.31545284390449524, -0.155755415558815, -0.07947897911071777, 0.9047350883483887], "max": [-0.13515284657478333, -0.08402340859174728, 0.13520656526088715, 0.23365716636180878, -0.40700775384902954, 0.7156351804733276, -0.5158117413520813, 0.1127343699336052, -0.09464574605226517, 0.11847080290317535, 0.39863234758377075, -0.09286413341760635, -0.020234690979123116, 0.9424486756324768], "mean": [-0.13544918596744537, -0.08411479741334915, 0.13513720035552979, 0.2334313988685608, -0.4080902934074402, 0.7148403525352478, -0.5176615118980408, 0.1091981753706932, -0.10160551220178604, 0.10887376964092255, 0.3557341992855072, -0.1181076169013977, -0.0360543355345726, 0.9256525635719299], "std": [0.0002919150865636766, 9.869258792605251e-05, 2.8586548069142736e-05, 0.00018587773956824094, 0.0008572485530748963, 0.000336840603267774, 0.000993772642686963, 0.0011197298299521208, 0.006206575781106949, 0.00618070038035512, 0.028221743181347847, 0.015308664180338383, 0.013642922043800354, 0.012415766716003418], "count": [121]}, "timestamp": {"min": [0.0], "max": [4.0], "mean": [2.0], "std": [1.164283279771532], "count": [121]}, "frame_index": {"min": [0], "max": [120], "mean": [60.0], "std": [34.92849839314596], "count": [121]}, "episode_index": {"min": [659], "max": [659], "mean": [659.0], "std": [0.0], "count": [121]}, "index": {"min": [363978], "max": [364098], "mean": [364038.0], "std": [34.92849839314596], "count": [121]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [121]}}} +{"episode_index": 660, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.37816860294117643]], [[0.35757308823529416]], [[0.3270417211328976]]], "std": [[[0.2051134456193934]], [[0.19851500893065366]], [[0.20170800768990074]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38452757352941175]], [[0.378564681372549]], [[0.3490288671023965]]], "std": [[[0.20530657887546713]], [[0.18631738739316916]], [[0.19968859524690988]]], "count": [100]}, "observation.state": {"min": [0.38163429498672485, -0.04634412005543709, 0.12761974334716797, -0.540580689907074, 0.2581063508987427, 0.3994409739971161, -0.5970212817192078, -0.20955635607242584, 0.17356805503368378, 1.3281761407852173, -0.2813345491886139, -0.04537330940365791], "max": [0.3866386115550995, -0.045255210250616074, 0.12810327112674713, -0.5313543081283569, 0.26029253005981445, 0.40612438321113586, -0.5409542918205261, -0.1792060136795044, 0.19442406296730042, 1.4063904285430908, -0.1810433566570282, 0.012093430384993553], "mean": [0.3849625587463379, -0.045920271426439285, 0.12788088619709015, -0.5325758457183838, 0.25894731283187866, 0.4029318392276764, -0.5680411458015442, -0.1886436939239502, 0.18232259154319763, 1.3748855590820312, -0.2354048490524292, -0.015099506825208664], "std": [0.001602250151336193, 0.00017690978711470962, 0.00020990121993236244, 0.0012507677311077714, 0.000582089473027736, 0.0019788264762610197, 0.02294996939599514, 0.006605945061892271, 0.007451924029737711, 0.01772361807525158, 0.021848255768418312, 0.014213679358363152], "count": [110]}, "action": {"min": [-0.13501901924610138, -0.08453624695539474, 0.1344219446182251, 0.23274652659893036, -0.4163934886455536, 0.7166368961334229, -0.5094654560089111, 0.10696922242641449, -0.11053347587585449, 0.10283279418945312, 0.36486566066741943, -0.1519976556301117, -0.11606018990278244, 0.9037971496582031], "max": [-0.13403423130512238, -0.08438563346862793, 0.13469451665878296, 0.23490436375141144, -0.41446003317832947, 0.7190549969673157, -0.5057682991027832, 0.11192789673805237, -0.09541648626327515, 0.11980132013559341, 0.3950568735599518, -0.10641863942146301, -0.07194834202528, 0.915795087814331], "mean": [-0.1343919336795807, -0.08448214083909988, 0.13455694913864136, 0.23360656201839447, -0.4153156578540802, 0.7170172333717346, -0.5087496042251587, 0.10917967557907104, -0.10210913419723511, 0.11017454415559769, 0.38010749220848083, -0.13657169044017792, -0.09038011729717255, 0.9101229310035706], "std": [0.0003306743165012449, 4.713544694823213e-05, 9.39452656893991e-05, 0.000389112567063421, 0.0006608127732761204, 0.0003231849696021527, 0.0006028295611031353, 0.0010674564400687814, 0.0056634326465427876, 0.006189998239278793, 0.008460166864097118, 0.014663456939160824, 0.008966173976659775, 0.0026856660842895508], "count": [110]}, "timestamp": {"min": [0.0], "max": [3.6333333333333333], "mean": [1.8166666666666664], "std": [1.0584317539538284], "count": [110]}, "frame_index": {"min": [0], "max": [109], "mean": [54.5], "std": [31.752952618614856], "count": [110]}, "episode_index": {"min": [660], "max": [660], "mean": [660.0], "std": [0.0], "count": [110]}, "index": {"min": [364099], "max": [364208], "mean": [364153.5], "std": [31.752952618614856], "count": [110]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [110]}}} +{"episode_index": 661, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.377899098583878]], [[0.35624560729847493]], [[0.32654088507625273]]], "std": [[[0.2045516377362086]], [[0.19868467472595608]], [[0.2013936582654978]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38456671023965144]], [[0.3785011628540305]], [[0.34888903867102394]]], "std": [[[0.20435671137279268]], [[0.18556517786971408]], [[0.19894900409702782]]], "count": [100]}, "observation.state": {"min": [0.3858354687690735, -0.04493086040019989, 0.1283664107322693, -0.5552589893341064, 0.22531358897686005, 0.4169444441795349, -0.6012302041053772, -0.20321598649024963, 0.17320507764816284, 1.3898249864578247, -0.33721888065338135, -0.07224056869745255], "max": [0.38703247904777527, -0.04462194815278053, 0.12838196754455566, -0.5521135926246643, 0.2266799509525299, 0.4188976287841797, -0.5419041514396667, -0.17346802353858948, 0.19326257705688477, 1.456296682357788, -0.20796075463294983, 0.0008137557888403535], "mean": [0.3866192400455475, -0.04468514025211334, 0.12837547063827515, -0.5533024668693542, 0.22622360289096832, 0.4174218773841858, -0.5743106007575989, -0.18473954498767853, 0.18182840943336487, 1.4158542156219482, -0.2640604078769684, -0.03374657779932022], "std": [0.0003566052473615855, 8.581246220273897e-05, 3.793924861383857e-06, 0.0008978773839771748, 0.0003403698792681098, 0.0004750455264002085, 0.022790798917412758, 0.007455636281520128, 0.007414499297738075, 0.013063807971775532, 0.023992663249373436, 0.024122631177306175], "count": [106]}, "action": {"min": [-0.13414447009563446, -0.08485008776187897, 0.13488434255123138, 0.2267429381608963, -0.4318101704120636, 0.7182052731513977, -0.4971100389957428, 0.10739423334598541, -0.10960789024829865, 0.10274779051542282, 0.3643120527267456, -0.14874671399593353, -0.08482521772384644, 0.9046410322189331], "max": [-0.13395383954048157, -0.08476133644580841, 0.13492923974990845, 0.2271261215209961, -0.4307318925857544, 0.7187927961349487, -0.49570876359939575, 0.10981276631355286, -0.09445510059595108, 0.11933641880750656, 0.40017640590667725, -0.10321114212274551, -0.03151651471853256, 0.9165600538253784], "mean": [-0.13402016460895538, -0.084780752658844, 0.13490673899650574, 0.22697380185127258, -0.4309886395931244, 0.7184305787086487, -0.49657729268074036, 0.10871491581201553, -0.10101601481437683, 0.1099100410938263, 0.3808841407299042, -0.1339075267314911, -0.06761018931865692, 0.9121085405349731], "std": [5.76143320358824e-05, 2.4734463295317255e-05, 1.4389681382454e-05, 0.00011625855404417962, 0.0002940963604487479, 0.00014582449512090534, 0.000429342791903764, 0.0006403810111805797, 0.005758300423622131, 0.006136590149253607, 0.01277295034378767, 0.013742773793637753, 0.010834623128175735, 0.003717828541994095], "count": [106]}, "timestamp": {"min": [0.0], "max": [3.5], "mean": [1.75], "std": [1.0199400853862828], "count": [106]}, "frame_index": {"min": [0], "max": [105], "mean": [52.5], "std": [30.598202561588483], "count": [106]}, "episode_index": {"min": [661], "max": [661], "mean": [661.0], "std": [0.0], "count": [106]}, "index": {"min": [364209], "max": [364314], "mean": [364261.5], "std": [30.598202561588483], "count": [106]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [106]}}} +{"episode_index": 662, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3777257189542484]], [[0.3558968110021787]], [[0.3262191149237473]]], "std": [[[0.2053260429424612]], [[0.19928596560268072]], [[0.202099533003997]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3842682107843137]], [[0.377956220043573]], [[0.3484548311546841]]], "std": [[[0.20529863566808262]], [[0.18640732542344143]], [[0.199738670435916]]], "count": [100]}, "observation.state": {"min": [0.3798966705799103, -0.04814352095127106, 0.12777790427207947, -0.5682597756385803, 0.22176103293895721, 0.4182890057563782, -0.5991450548171997, -0.207911416888237, 0.17423303425312042, 1.393180012702942, -0.364136278629303, -0.08665139228105545], "max": [0.3853180408477783, -0.04762608930468559, 0.12837937474250793, -0.5628077983856201, 0.22435712814331055, 0.4250616431236267, -0.5403828024864197, -0.17702047526836395, 0.19416609406471252, 1.461119532585144, -0.2413000613451004, 0.0028468300588428974], "mean": [0.38423529267311096, -0.04771808907389641, 0.12818893790245056, -0.5640188455581665, 0.22347426414489746, 0.4203231930732727, -0.5714980363845825, -0.18804967403411865, 0.1830192357301712, 1.4227168560028076, -0.3048919439315796, -0.03666364774107933], "std": [0.0014291350962594151, 0.00011222180182812735, 0.0002272177516715601, 0.0012493154499679804, 0.0008908578893169761, 0.002120990538969636, 0.020888349041342735, 0.008741302415728569, 0.006647998467087746, 0.013631807640194893, 0.0324115976691246, 0.02680283971130848], "count": [115]}, "action": {"min": [-0.1353142261505127, -0.08529160171747208, 0.13443589210510254, 0.22493910789489746, -0.4364864230155945, 0.7199033498764038, -0.4921087324619293, 0.10751460492610931, -0.11028498411178589, 0.10382641106843948, 0.36566007137298584, -0.13160580396652222, -0.07446061074733734, 0.904340922832489], "max": [-0.13422511518001556, -0.08513312041759491, 0.13471466302871704, 0.2263537049293518, -0.4336181581020355, 0.7210516333580017, -0.48893022537231445, 0.11128032207489014, -0.09490872174501419, 0.11997783184051514, 0.40865135192871094, -0.08792687207460403, -0.023364940658211708, 0.9204590320587158], "mean": [-0.13447006046772003, -0.08523787558078766, 0.1346060335636139, 0.22596745193004608, -0.434495747089386, 0.7202310562133789, -0.4913434088230133, 0.10887939482927322, -0.10234160721302032, 0.11057227104902267, 0.3837350606918335, -0.114784836769104, -0.05641133710741997, 0.9142733812332153], "std": [0.0003084478375967592, 5.813013922306709e-05, 0.00011695130524458364, 0.000352749862940982, 0.0009097126312553883, 0.00024061651492957026, 0.0007823528721928596, 0.0007443172507919371, 0.005467200186103582, 0.005298617761582136, 0.013045386411249638, 0.012490934692323208, 0.01203353051096201, 0.004786697216331959], "count": [115]}, "timestamp": {"min": [0.0], "max": [3.8], "mean": [1.9], "std": [1.1065461781798556], "count": [115]}, "frame_index": {"min": [0], "max": [114], "mean": [57.0], "std": [33.19638534539566], "count": [115]}, "episode_index": {"min": [662], "max": [662], "mean": [662.0], "std": [0.0], "count": [115]}, "index": {"min": [364315], "max": [364429], "mean": [364372.0], "std": [33.19638534539566], "count": [115]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [115]}}} +{"episode_index": 663, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3774578458605664]], [[0.3566480936819172]], [[0.3260707761437909]]], "std": [[[0.2041986958189407]], [[0.19799456003628318]], [[0.20119385568126358]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3843284068627451]], [[0.3779588453159041]], [[0.34816845588235296]]], "std": [[[0.20417956856548863]], [[0.18565362740978858]], [[0.19903588446420278]]], "count": [100]}, "observation.state": {"min": [0.38634514808654785, -0.04740985855460167, 0.1287889927625656, -0.5651143789291382, 0.22504031658172607, 0.4135361611843109, -0.6037787199020386, -0.19831205904483795, 0.17288359999656677, 1.4166653156280518, -0.36919182538986206, -0.055475641041994095], "max": [0.38957324624061584, -0.04662986099720001, 0.12892381846904755, -0.5615496635437012, 0.2266799509525299, 0.4169670641422272, -0.5407302975654602, -0.17413218319416046, 0.1934673935174942, 1.452941656112671, -0.29240211844444275, 0.056747570633888245], "mean": [0.3886865973472595, -0.04707099497318268, 0.12885087728500366, -0.562479555606842, 0.2259778082370758, 0.4151139557361603, -0.578230619430542, -0.18480047583580017, 0.1810666173696518, 1.4416148662567139, -0.3461652994155884, 0.004507889039814472], "std": [0.001036314875818789, 0.00023977288219612092, 4.4908199924975634e-05, 0.0010765960905700922, 0.0006646370165981352, 0.0013076153118163347, 0.022756364196538925, 0.005838537588715553, 0.007504279259592295, 0.006504498887807131, 0.021292440593242645, 0.027328433468937874], "count": [122]}, "action": {"min": [-0.13389484584331512, -0.08541499823331833, 0.13489511609077454, 0.2269182801246643, -0.4332175850868225, 0.7198907732963562, -0.49333876371383667, 0.10700847208499908, -0.10941914469003677, 0.10232887417078018, 0.3383801579475403, -0.1121826171875, -0.05889162793755531, 0.9168718457221985], "max": [-0.13333891332149506, -0.08524592965841293, 0.13499179482460022, 0.2279135137796402, -0.4313843250274658, 0.7208287119865417, -0.49137622117996216, 0.1122836098074913, -0.09455714374780655, 0.11898378282785416, 0.38706737756729126, -0.08840033411979675, -0.03460368141531944, 0.9345199465751648], "mean": [-0.13350321352481842, -0.08530810475349426, 0.13492950797080994, 0.2275879681110382, -0.4322504699230194, 0.7201250791549683, -0.49272894859313965, 0.10927308350801468, -0.10050013661384583, 0.10930889844894409, 0.36079803109169006, -0.10101277381181717, -0.04443282261490822, 0.9259698390960693], "std": [0.00018225950771011412, 5.2544859499903396e-05, 2.170422885683365e-05, 0.00032834571902640164, 0.0006714506889693439, 0.0002089546760544181, 0.0006397407851181924, 0.0010782427852973342, 0.00557974586263299, 0.006237476132810116, 0.012240156531333923, 0.00575688062235713, 0.004953842610120773, 0.0043681953102350235], "count": [122]}, "timestamp": {"min": [0.0], "max": [4.033333333333333], "mean": [2.0166666666666666], "std": [1.1739061101960222], "count": [122]}, "frame_index": {"min": [0], "max": [121], "mean": [60.5], "std": [35.21718330588067], "count": [122]}, "episode_index": {"min": [663], "max": [663], "mean": [663.0], "std": [0.0], "count": [122]}, "index": {"min": [364430], "max": [364551], "mean": [364490.5], "std": [35.21718330588067], "count": [122]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [122]}}} +{"episode_index": 664, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3760056917211329]], [[0.355184417211329]], [[0.3245190005446623]]], "std": [[[0.20497238051910696]], [[0.19833604708373906]], [[0.20164547417994896]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38252465958605664]], [[0.37628208333333335]], [[0.3470006481481482]]], "std": [[[0.20533392852207577]], [[0.18632031897821]], [[0.1994277337876578]]], "count": [100]}, "observation.state": {"min": [0.386298805475235, -0.050993211567401886, 0.12891344726085663, -0.574550449848175, 0.21670548617839813, 0.4186546504497528, -0.612111508846283, -0.21643730998039246, 0.17366397380828857, 1.3770338296890259, -0.3980221152305603, -0.039778709411621094], "max": [0.38956552743911743, -0.050282709300518036, 0.1292349249124527, -0.5707760453224182, 0.21779857575893402, 0.4229765236377716, -0.5480591654777527, -0.17939908802509308, 0.1940377652645111, 1.4726524353027344, -0.31207776069641113, 0.040602780878543854], "mean": [0.3885304629802704, -0.05044242739677429, 0.12906236946582794, -0.5722311735153198, 0.2172379344701767, 0.4207167327404022, -0.5826607942581177, -0.19138531386852264, 0.18250370025634766, 1.4434179067611694, -0.36075931787490845, 0.012369321659207344], "std": [0.0010637565283104777, 0.00024074030807241797, 0.00011506997543619946, 0.0009675192995928228, 0.00035117054358124733, 0.0015237245243042707, 0.023690897971391678, 0.007816825993359089, 0.007225534878671169, 0.021154461428523064, 0.023782340809702873, 0.021164800971746445], "count": [133]}, "action": {"min": [-0.1338869333267212, -0.0860755443572998, 0.1347004622220993, 0.2249755859375, -0.4397510588169098, 0.7203553915023804, -0.4880211353302002, 0.1053987517952919, -0.10986213386058807, 0.10167358070611954, 0.3478564918041229, -0.10747402161359787, -0.06934214383363724, 0.9177930951118469], "max": [-0.13324619829654694, -0.0859336107969284, 0.13486245274543762, 0.22570489346981049, -0.437904953956604, 0.7210515141487122, -0.48596811294555664, 0.11404512822628021, -0.09527510404586792, 0.11805376410484314, 0.3802432715892792, -0.085801862180233, -0.02307775430381298, 0.9318397045135498], "mean": [-0.13347464799880981, -0.08599179983139038, 0.13477389514446259, 0.2254980206489563, -0.4387417137622833, 0.7205954194068909, -0.4872347116470337, 0.10809224098920822, -0.10201221704483032, 0.109138123691082, 0.3597355782985687, -0.09665067493915558, -0.04025190323591232, 0.9270288348197937], "std": [0.00021141613251529634, 3.858160198433325e-05, 4.932776209898293e-05, 0.00019764811440836638, 0.0006232602754607797, 0.00016013266576919705, 0.0005926847225055099, 0.0018119129817932844, 0.00547605799511075, 0.005976734682917595, 0.009042243473231792, 0.005974115338176489, 0.010824436321854591, 0.0033676030579954386], "count": [133]}, "timestamp": {"min": [0.0], "max": [4.4], "mean": [2.2], "std": [1.2797569213634978], "count": [133]}, "frame_index": {"min": [0], "max": [132], "mean": [66.0], "std": [38.39270764090493], "count": [133]}, "episode_index": {"min": [664], "max": [664], "mean": [664.0], "std": [0.0], "count": [133]}, "index": {"min": [364552], "max": [364684], "mean": [364618.0], "std": [38.39270764090493], "count": [133]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [133]}}} +{"episode_index": 665, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3756690359477124]], [[0.3548539052287582]], [[0.32441144335511984]]], "std": [[[0.2055143912296729]], [[0.19891251241753352]], [[0.20217625578405932]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3819063888888889]], [[0.37612382080610024]], [[0.34654109204793027]]], "std": [[[0.20587066026927575]], [[0.1866130791786854]], [[0.1998522849690038]]], "count": [100]}, "observation.state": {"min": [0.3833564519882202, -0.05412090942263603, 0.12922455370426178, -0.5997132658958435, 0.173118457198143, 0.4415145814418793, -0.6095630526542664, -0.21123990416526794, 0.17460249364376068, 1.421278476715088, -0.40731340646743774, -0.06144832819700241], "max": [0.38777387142181396, -0.05301655828952789, 0.129385307431221, -0.5967775583267212, 0.1742115467786789, 0.4461183249950409, -0.5580987334251404, -0.18228739500045776, 0.19441887736320496, 1.4986540079116821, -0.31890958547592163, 0.05443492904305458], "mean": [0.38669508695602417, -0.05325229465961456, 0.12931522727012634, -0.5980844497680664, 0.17378613352775574, 0.44270452857017517, -0.5847432017326355, -0.19139717519283295, 0.18378061056137085, 1.47526216506958, -0.37898632884025574, 0.007073084358125925], "std": [0.0012975843856111169, 0.00038416252937167883, 5.734151272918098e-05, 0.0008172257803380489, 0.00017154340457636863, 0.0013420816976577044, 0.020010383799672127, 0.007052356377243996, 0.007424603682011366, 0.01419471949338913, 0.027560921385884285, 0.030956408008933067], "count": [107]}, "action": {"min": [-0.13439135253429413, -0.08714958280324936, 0.13469351828098297, 0.21291732788085938, -0.46202048659324646, 0.7209264636039734, -0.4717367887496948, 0.10497566312551498, -0.110288105905056, 0.10266995429992676, 0.33287522196769714, -0.10718724131584167, -0.05172685161232948, 0.9194464087486267], "max": [-0.1336219757795334, -0.08690284937620163, 0.1347818374633789, 0.21387870609760284, -0.46038374304771423, 0.7213759422302246, -0.47005489468574524, 0.11135513335466385, -0.09576670825481415, 0.11787990480661392, 0.3840984106063843, -0.07901251316070557, -0.007401816081255674, 0.937988817691803], "mean": [-0.13382183015346527, -0.08695783466100693, 0.13474367558956146, 0.21359197795391083, -0.4608277380466461, 0.7211544513702393, -0.47111809253692627, 0.10724518448114395, -0.10261055082082748, 0.10984643548727036, 0.3557015657424927, -0.09457911550998688, -0.023677943274378777, 0.9293079972267151], "std": [0.00022802993771620095, 7.487321272492409e-05, 1.6198744560824707e-05, 0.0002738026378210634, 0.0004873326688539237, 0.0001263488084077835, 0.0004560593224596232, 0.0015733296750113368, 0.0056990678422153, 0.005690189078450203, 0.013609074987471104, 0.007613904308527708, 0.009454360231757164, 0.004962595645338297], "count": [107]}, "timestamp": {"min": [0.0], "max": [3.533333333333333], "mean": [1.7666666666666666], "std": [1.0295630140987], "count": [107]}, "frame_index": {"min": [0], "max": [106], "mean": [53.0], "std": [30.886890422961002], "count": [107]}, "episode_index": {"min": [665], "max": [665], "mean": [665.0], "std": [0.0], "count": [107]}, "index": {"min": [364685], "max": [364791], "mean": [364738.0], "std": [30.886890422961002], "count": [107]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [107]}}} +{"episode_index": 666, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3773961410675381]], [[0.35568074346405226]], [[0.3259943273420479]]], "std": [[[0.20472558466566668]], [[0.1988243771691995]], [[0.20171148094968336]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3841832325708061]], [[0.3775623529411765]], [[0.3482223883442266]]], "std": [[[0.20445899420755348]], [[0.18593434329857803]], [[0.19911409092132815]]], "count": [100]}, "observation.state": {"min": [0.3848314881324768, -0.054306261241436005, 0.1292491853237152, -0.6022295355796814, 0.17557789385318756, 0.4391525983810425, -0.6186527013778687, -0.20867596566677094, 0.17380397021770477, 1.3946478366851807, -0.502139151096344, 0.007359850220382214], "max": [0.3869243562221527, -0.05306290090084076, 0.12931400537490845, -0.5997132658958435, 0.17653435468673706, 0.44140273332595825, -0.5644854307174683, -0.18034125864505768, 0.19357368350028992, 1.4607001543045044, -0.3708314597606659, 0.13694536685943604], "mean": [0.3864062428474426, -0.05344827100634575, 0.12929308414459229, -0.6003243923187256, 0.17613786458969116, 0.4400695860385895, -0.5965629816055298, -0.19166068732738495, 0.18133753538131714, 1.432892084121704, -0.45431214570999146, 0.08158634603023529], "std": [0.0006182169308885932, 0.0004137299256399274, 2.517034408811014e-05, 0.0006997776799835265, 0.0002493848733138293, 0.0006670489674434066, 0.020603230223059654, 0.005545116029679775, 0.007252722512930632, 0.011863243766129017, 0.0393909215927124, 0.037482310086488724], "count": [132]}, "action": {"min": [-0.13413459062576294, -0.08712572604417801, 0.13466089963912964, 0.21344636380672455, -0.4602438807487488, 0.7219719290733337, -0.47081589698791504, 0.10445529222488403, -0.10931260138750076, 0.1009238064289093, 0.30108168721199036, -0.07713273167610168, -0.054980676621198654, 0.9295088648796082], "max": [-0.13377277553081512, -0.08690085262060165, 0.13476580381393433, 0.2142394632101059, -0.45902636647224426, 0.7226471900939941, -0.46955981850624084, 0.11122121661901474, -0.09570498019456863, 0.11670935153961182, 0.36297816038131714, -0.038586318492889404, -0.00766731845214963, 0.9519041776657104], "mean": [-0.13386452198028564, -0.08696721494197845, 0.13472549617290497, 0.21401287615299225, -0.4594554007053375, 0.722280740737915, -0.47054147720336914, 0.10754915326833725, -0.10086872428655624, 0.1073688343167305, 0.331207275390625, -0.0577097162604332, -0.029939841479063034, 0.9410426020622253], "std": [0.00010831090912688524, 6.837854743935168e-05, 3.372014907654375e-05, 0.00023689100635237992, 0.00041325215715914965, 0.00014520820695906878, 0.00038233338273130357, 0.0017344082007184625, 0.0052121905609965324, 0.005875219125300646, 0.017761893570423126, 0.008656041696667671, 0.008706653490662575, 0.006871288176625967], "count": [132]}, "timestamp": {"min": [0.0], "max": [4.366666666666666], "mean": [2.1833333333333336], "std": [1.2701341428135615], "count": [132]}, "frame_index": {"min": [0], "max": [131], "mean": [65.5], "std": [38.10402428440685], "count": [132]}, "episode_index": {"min": [666], "max": [666], "mean": [666.0], "std": [0.0], "count": [132]}, "index": {"min": [364792], "max": [364923], "mean": [364857.5], "std": [38.10402428440685], "count": [132]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [132]}}} +{"episode_index": 667, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.37773073529411766]], [[0.3561466094771242]], [[0.3265176879084967]]], "std": [[[0.2048945960561557]], [[0.19904169730907098]], [[0.20177997595721492]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38459153322440087]], [[0.37821652505446623]], [[0.34872070261437904]]], "std": [[[0.20458032068823448]], [[0.18612477882566167]], [[0.19926006965088303]]], "count": [100]}, "observation.state": {"min": [0.37913212180137634, -0.05494723841547966, 0.12842993438243866, -0.6078911423683167, 0.17489472031593323, 0.4449668526649475, -0.6138646006584167, -0.20754072070121765, 0.17152509093284607, 1.3944381475448608, -0.470986008644104, -0.01759354956448078], "max": [0.3844839930534363, -0.05383516848087311, 0.12855178117752075, -0.6030682921409607, 0.17653435468673706, 0.4491768777370453, -0.5656206607818604, -0.17807850241661072, 0.19365665316581726, 1.4745396375656128, -0.3325732350349426, 0.09352623671293259], "mean": [0.3829096555709839, -0.05411737412214279, 0.12850576639175415, -0.6045279502868652, 0.17574186623096466, 0.4469811022281647, -0.5905640125274658, -0.1907462626695633, 0.18125368654727936, 1.4539856910705566, -0.41376179456710815, 0.04187197983264923], "std": [0.0014741853810846806, 0.00034663701080717146, 3.202199877705425e-05, 0.0014096105005592108, 0.00046279182424768806, 0.0013559891376644373, 0.019512848928570747, 0.0061566648073494434, 0.008568060584366322, 0.016108425334095955, 0.04931391403079033, 0.0364929661154747], "count": [125]}, "action": {"min": [-0.1353451907634735, -0.0869864821434021, 0.13418689370155334, 0.21343185007572174, -0.46278488636016846, 0.7216837406158447, -0.46879276633262634, 0.10468637198209763, -0.10956773161888123, 0.10000612586736679, 0.32077300548553467, -0.10071457922458649, -0.0616881400346756, 0.9213122129440308], "max": [-0.13445653021335602, -0.08672618120908737, 0.13432273268699646, 0.2144402414560318, -0.4614884853363037, 0.7230370044708252, -0.46633294224739075, 0.11066988855600357, -0.09456741064786911, 0.1173754408955574, 0.37190935015678406, -0.0605507455766201, -0.018357085064053535, 0.9450120329856873], "mean": [-0.1347171515226364, -0.08678408712148666, 0.13424807786941528, 0.2142120599746704, -0.4620898962020874, 0.7222127914428711, -0.46796801686286926, 0.10809303820133209, -0.10088160634040833, 0.10792742669582367, 0.3440594971179962, -0.07755198329687119, -0.027761323377490044, 0.9349687099456787], "std": [0.0002445956342853606, 7.680836279178038e-05, 3.937217115890235e-05, 0.0001806539366953075, 0.0004041951906401664, 0.00032076594652608037, 0.0007107694400474429, 0.0023493876215070486, 0.005868270993232727, 0.006699479650706053, 0.017677361145615578, 0.01297967229038477, 0.011404542252421379, 0.007774445228278637], "count": [125]}, "timestamp": {"min": [0.0], "max": [4.133333333333334], "mean": [2.0666666666666664], "std": [1.2027745701779144], "count": [125]}, "frame_index": {"min": [0], "max": [124], "mean": [62.0], "std": [36.08323710533743], "count": [125]}, "episode_index": {"min": [667], "max": [667], "mean": [667.0], "std": [0.0], "count": [125]}, "index": {"min": [364924], "max": [365048], "mean": [364986.0], "std": [36.08323710533743], "count": [125]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [125]}}} +{"episode_index": 668, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4784473910675381]], [[0.4489731345315904]], [[0.41852635620915035]]], "std": [[[0.20608438525852504]], [[0.2041246140071596]], [[0.20793333513779166]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49213310185185183]], [[0.47336385893246186]], [[0.44570143790849676]]], "std": [[[0.19466946054084192]], [[0.18062584362666215]], [[0.1944434175858644]]], "count": [100]}, "observation.state": {"min": [0.37160244584083557, -0.056468620896339417, 0.12175793200731277, -0.5412097573280334, 0.29431501030921936, 0.3402562439441681, -0.628576397895813, -0.22871646285057068, 0.1705152839422226, 0.8123388290405273, -0.43655362725257874, 0.0872807577252388], "max": [0.3752707540988922, -0.05121716111898422, 0.12222588807344437, -0.5290477275848389, 0.3044261336326599, 0.3598168194293976, -0.4889107644557953, -0.17546048760414124, 0.19380702078342438, 1.3204175233840942, 0.06121315062046051, 0.2660876512527466], "mean": [0.37392836809158325, -0.05233784019947052, 0.1220889538526535, -0.5342282652854919, 0.2975500226020813, 0.35253795981407166, -0.5763968229293823, -0.19332118332386017, 0.18179380893707275, 1.2467349767684937, -0.309479683637619, 0.16568614542484283], "std": [0.0014008763246238232, 0.0015365004073828459, 9.392078209202737e-05, 0.004279289394617081, 0.0023553851060569286, 0.007547599729150534, 0.03935926407575607, 0.012524150311946869, 0.007089432328939438, 0.11652553081512451, 0.14355647563934326, 0.04787737876176834], "count": [136]}, "action": {"min": [-0.1385418027639389, -0.08298782259225845, 0.12958543002605438, 0.22709521651268005, -0.3898710012435913, 0.7266265749931335, -0.5172715783119202, 0.10537759959697723, -0.11110054701566696, 0.10009843111038208, 0.29405900835990906, -0.1280379295349121, -0.39158377051353455, 0.8680472373962402], "max": [-0.1379283368587494, -0.08227313309907913, 0.13024379312992096, 0.23302197456359863, -0.3826751112937927, 0.732444703578949, -0.513780415058136, 0.12458475679159164, -0.09487900882959366, 0.11767931282520294, 0.35187187790870667, -0.048419367522001266, -0.09120343625545502, 0.949476957321167], "mean": [-0.13814246654510498, -0.08249621838331223, 0.13010534644126892, 0.2306641936302185, -0.3872886300086975, 0.7286736369132996, -0.5155767798423767, 0.10895589739084244, -0.10225959867238998, 0.10850697755813599, 0.32080766558647156, -0.07077451050281525, -0.13790099322795868, 0.9306291341781616], "std": [0.00020324895740486681, 0.0002459877578075975, 0.0001251965732080862, 0.00204656645655632, 0.0023954391945153475, 0.002441350370645523, 0.0010973153403028846, 0.004439866170287132, 0.00555214611813426, 0.005883629433810711, 0.019719425588846207, 0.02133174054324627, 0.07609821856021881, 0.018742144107818604], "count": [136]}, "timestamp": {"min": [0.0], "max": [4.5], "mean": [2.25], "std": [1.3086252328302401], "count": [136]}, "frame_index": {"min": [0], "max": [135], "mean": [67.5], "std": [39.2587569849072], "count": [136]}, "episode_index": {"min": [668], "max": [668], "mean": [668.0], "std": [0.0], "count": [136]}, "index": {"min": [365049], "max": [365184], "mean": [365116.5], "std": [39.2587569849072], "count": [136]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [136]}}} +{"episode_index": 669, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4777882162309368]], [[0.44923934912854036]], [[0.4180106508714597]]], "std": [[[0.20580954082485076]], [[0.20335704547279093]], [[0.20768887663922722]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49117152505446626]], [[0.4725963616557734]], [[0.44518805827886715]]], "std": [[[0.19432920327825706]], [[0.18048461925780143]], [[0.19396339140799693]]], "count": [100]}, "observation.state": {"min": [0.3607056736946106, -0.051387060433626175, 0.1222764402627945, -0.5711954236030579, 0.27860182523727417, 0.3824363648891449, -0.6246764063835144, -0.2268475592136383, 0.174616739153862, 1.1486815214157104, -0.5265970826148987, 0.07885047048330307], "max": [0.36815041303634644, -0.05103953927755356, 0.1227106973528862, -0.5646950006484985, 0.2892594635486603, 0.3895750641822815, -0.5441591739654541, -0.1759779155254364, 0.1947520226240158, 1.3961156606674194, -0.23897723853588104, 0.2283301204442978], "mean": [0.3660975396633148, -0.051141586154699326, 0.12252902239561081, -0.5675287842750549, 0.2833290696144104, 0.3860163688659668, -0.5912002921104431, -0.1962582767009735, 0.18335476517677307, 1.3409234285354614, -0.4353611469268799, 0.14528626203536987], "std": [0.002289386000484228, 0.00012168419198133051, 8.66703485371545e-05, 0.0020910794846713543, 0.0025429464876651764, 0.0019287137547507882, 0.02418820746243, 0.011475509032607079, 0.006894427351653576, 0.05827297642827034, 0.08938029408454895, 0.033144135028123856], "count": [139]}, "action": {"min": [-0.14007669687271118, -0.08304283767938614, 0.13081230223178864, 0.23341593146324158, -0.40759772062301636, 0.7302234768867493, -0.4979384243488312, 0.1046406552195549, -0.11010272055864334, 0.10058731585741043, 0.2968253493309021, -0.09081350266933441, -0.1837465465068817, 0.9246311783790588], "max": [-0.13880275189876556, -0.08285465836524963, 0.13106755912303925, 0.2349386215209961, -0.40123477578163147, 0.7335076332092285, -0.49533358216285706, 0.11661175638437271, -0.09634868800640106, 0.11825414001941681, 0.3365040719509125, -0.02421204000711441, -0.04006852209568024, 0.9517663717269897], "mean": [-0.13917072117328644, -0.08293668180704117, 0.1309145987033844, 0.23440156877040863, -0.4046343266963959, 0.7312070727348328, -0.4966473877429962, 0.10711278021335602, -0.10305188596248627, 0.10824950039386749, 0.3223181366920471, -0.04420682415366173, -0.07101378589868546, 0.9418295621871948], "std": [0.00036347529385238886, 6.332752673188224e-05, 8.4475010226015e-05, 0.00033427978632971644, 0.0015960546443238854, 0.0011260054307058454, 0.0008675873395986855, 0.002348432084545493, 0.005014230031520128, 0.0058683608658611774, 0.008883588016033173, 0.019531013444066048, 0.03957301378250122, 0.00668215099722147], "count": [139]}, "timestamp": {"min": [0.0], "max": [4.6], "mean": [2.3], "std": [1.3374935098492586], "count": [139]}, "frame_index": {"min": [0], "max": [138], "mean": [69.0], "std": [40.124805295477756], "count": [139]}, "episode_index": {"min": [669], "max": [669], "mean": [669.0], "std": [0.0], "count": [139]}, "index": {"min": [365185], "max": [365323], "mean": [365254.0], "std": [40.124805295477756], "count": [139]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [139]}}} +{"episode_index": 670, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4793215795206972]], [[0.4510086574074074]], [[0.4197288371459695]]], "std": [[[0.20540818538712952]], [[0.20302835834293068]], [[0.20750988302988335]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49279652505446625]], [[0.47423146241830066]], [[0.446810174291939]]], "std": [[[0.19369242116621319]], [[0.1800339779851457]], [[0.1936095109534463]]], "count": [100]}, "observation.state": {"min": [0.3524809777736664, -0.04605066031217575, 0.12492735683917999, -0.6101977229118347, 0.2989606559276581, 0.3776261508464813, -0.6186063289642334, -0.21273812651634216, 0.17408786714076996, 1.1203733682632446, -0.5615760087966919, 0.15029342472553253], "max": [0.3590839207172394, -0.045788079500198364, 0.12505699694156647, -0.6051651835441589, 0.3183630406856537, 0.3834286630153656, -0.5609947443008423, -0.1791519671678543, 0.19406497478485107, 1.3631943464279175, -0.20399828255176544, 0.34037306904792786], "mean": [0.35696953535079956, -0.04589880257844925, 0.12498336285352707, -0.6074540019035339, 0.30746906995773315, 0.3801679015159607, -0.5915495157241821, -0.19437718391418457, 0.18297185003757477, 1.282600998878479, -0.4560760259628296, 0.25643104314804077], "std": [0.001976216211915016, 7.48508027754724e-05, 4.194524444756098e-05, 0.0015409939223900437, 0.005069564562290907, 0.0015397166134789586, 0.02064676210284233, 0.009910070337355137, 0.006837394554167986, 0.0845300629734993, 0.10070091485977173, 0.0512852743268013], "count": [148]}, "action": {"min": [-0.1401924341917038, -0.08364716917276382, 0.13360492885112762, 0.24345648288726807, -0.39992234110832214, 0.7419831156730652, -0.482525110244751, 0.10458867996931076, -0.11098267883062363, 0.10107912123203278, 0.2341650426387787, -0.07776712626218796, -0.20998108386993408, 0.9218185544013977], "max": [-0.1392333209514618, -0.083487369120121, 0.13401135802268982, 0.24808906018733978, -0.3926635980606079, 0.7436369061470032, -0.4793267548084259, 0.11213364452123642, -0.0959528312087059, 0.11747654527425766, 0.3194386065006256, 0.017755607143044472, -0.04116545990109444, 0.9707494974136353], "mean": [-0.13954803347587585, -0.0835501030087471, 0.13373447954654694, 0.24504975974559784, -0.3958384096622467, 0.7427107095718384, -0.4812868535518646, 0.10739222168922424, -0.10275337845087051, 0.10803712904453278, 0.28168898820877075, -0.019572868943214417, -0.0904778242111206, 0.9527239203453064], "std": [0.00028235471108928323, 4.8918209358816966e-05, 0.0001257988769793883, 0.0012728252913802862, 0.0019393040565773845, 0.0005429591401480138, 0.0008351872093044221, 0.0018417765386402607, 0.005396037828177214, 0.0052802227437496185, 0.031211845576763153, 0.02118041180074215, 0.052448105067014694, 0.01501307263970375], "count": [148]}, "timestamp": {"min": [0.0], "max": [4.9], "mean": [2.4499999999999997], "std": [1.424098155168932], "count": [148]}, "frame_index": {"min": [0], "max": [147], "mean": [73.5], "std": [42.72294465506796], "count": [148]}, "episode_index": {"min": [670], "max": [670], "mean": [670.0], "std": [0.0], "count": [148]}, "index": {"min": [365324], "max": [365471], "mean": [365397.5], "std": [42.72294465506796], "count": [148]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [148]}}} +{"episode_index": 671, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4799145206971677]], [[0.4515121132897604]], [[0.420309272875817]]], "std": [[[0.2053214404036021]], [[0.20292810101070105]], [[0.2071476333292988]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4936122848583878]], [[0.4749663071895425]], [[0.44765198529411765]]], "std": [[[0.19337366637527514]], [[0.17981146301459316]], [[0.19318408039764823]]], "count": [100]}, "observation.state": {"min": [0.35441938042640686, -0.046583518385887146, 0.12431810051202774, -0.5659531354904175, 0.2908990979194641, 0.4165395498275757, -0.6239967942237854, -0.20869913697242737, 0.17552414536476135, 1.252687692642212, -0.6214228272438049, 0.18663901090621948], "max": [0.36001065373420715, -0.046413619071245193, 0.12456051260232925, -0.5594527721405029, 0.29431501030921936, 0.42117345333099365, -0.5560676455497742, -0.17877353727817535, 0.19583959877490997, 1.4420377016067505, -0.34992608428001404, 0.3324768841266632], "mean": [0.3576091527938843, -0.04645492509007454, 0.12437622249126434, -0.5614553093910217, 0.29272526502609253, 0.4187837839126587, -0.5904286503791809, -0.18980170786380768, 0.18420428037643433, 1.4165469408035278, -0.5493001341819763, 0.2641669809818268], "std": [0.001294818357564509, 3.853181260637939e-05, 3.442216257099062e-05, 0.001899945316836238, 0.0009047839557752013, 0.0015146028017625213, 0.026675332337617874, 0.008458755910396576, 0.0071334922686219215, 0.03336605429649353, 0.0728122889995575, 0.041734855622053146], "count": [120]}, "action": {"min": [-0.14032292366027832, -0.08346004039049149, 0.13317003846168518, 0.24289025366306305, -0.41099101305007935, 0.72512286901474, -0.49710550904273987, 0.1057833731174469, -0.11124946922063828, 0.10213768482208252, 0.21716676652431488, -0.0453234501183033, -0.12286577373743057, 0.9535592794418335], "max": [-0.1393759399652481, -0.0833442285656929, 0.1333574801683426, 0.2436622530221939, -0.4088267982006073, 0.7268940806388855, -0.4936439096927643, 0.11207722127437592, -0.09583430737257004, 0.11954428255558014, 0.2795512080192566, 0.009961004368960857, -0.00016597483772784472, 0.9760441780090332], "mean": [-0.13981010019779205, -0.08338537067174911, 0.1332370787858963, 0.24327775835990906, -0.4101385772228241, 0.7257300019264221, -0.49590012431144714, 0.10773078352212906, -0.10263799875974655, 0.10979240387678146, 0.24776236712932587, -0.006669893395155668, -0.017762189731001854, 0.9679654240608215], "std": [0.00021014470257796347, 3.125877628917806e-05, 4.746857666759752e-05, 0.00019340563449077308, 0.0007655636873096228, 0.0004423484206199646, 0.0010131741873919964, 0.0012682881206274033, 0.005718819331377745, 0.006104598753154278, 0.01952504925429821, 0.017104338854551315, 0.024299995973706245, 0.005682462826371193], "count": [120]}, "timestamp": {"min": [0.0], "max": [3.966666666666667], "mean": [1.9833333333333334], "std": [1.1546604439144612], "count": [120]}, "frame_index": {"min": [0], "max": [119], "mean": [59.5], "std": [34.63981331743384], "count": [120]}, "episode_index": {"min": [671], "max": [671], "mean": [671.0], "std": [0.0], "count": [120]}, "index": {"min": [365472], "max": [365591], "mean": [365531.5], "std": [34.63981331743384], "count": [120]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [120]}}} +{"episode_index": 672, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46463459694989107]], [[0.43304654956427013]], [[0.40105567265795206]]], "std": [[[0.1993759153711486]], [[0.19673760297921783]], [[0.19994620049531134]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4770141993464052]], [[0.45641606481481484]], [[0.4267534286492375]]], "std": [[[0.18702848290262805]], [[0.1724335520961315]], [[0.18584887507691847]]], "count": [100]}, "observation.state": {"min": [0.3677951395511627, -0.02840420976281166, 0.1315760314464569, -0.6573779582977295, 0.316996693611145, 0.3182114064693451, -0.5813287496566772, -0.19202575087547302, 0.17290304601192474, 1.0480303764343262, -0.41318878531455994, -0.17405110597610474], "max": [0.37710878252983093, -0.026481250301003456, 0.1325041651725769, -0.6200531721115112, 0.3336663246154785, 0.3379286229610443, -0.5226282477378845, -0.1780630499124527, 0.19458219408988953, 1.1876838207244873, 0.004099090117961168, 0.1367989182472229], "mean": [0.3747658133506775, -0.027359185740351677, 0.13192187249660492, -0.6374519467353821, 0.32412484288215637, 0.326665997505188, -0.5540482401847839, -0.1824018359184265, 0.1828562319278717, 1.0958274602890015, -0.28067803382873535, 0.021188369020819664], "std": [0.0023525964934378862, 0.0005953902145847678, 0.0002945375454146415, 0.011787489987909794, 0.0048030405305325985, 0.006531987804919481, 0.018920859321951866, 0.004164068028330803, 0.007616554386913776, 0.03696858882904053, 0.12870101630687714, 0.09028074145317078], "count": [154]}, "action": {"min": [-0.13515658676624298, -0.08390689641237259, 0.13964082300662994, 0.25280487537384033, -0.373828262090683, 0.751070499420166, -0.48287472128868103, 0.10769356787204742, -0.11157070845365524, 0.10379797220230103, 0.3728007376194, -0.18427281081676483, -0.26142504811286926, 0.8260771036148071], "max": [-0.1335333287715912, -0.08329837769269943, 0.14017559587955475, 0.2562848925590515, -0.36433640122413635, 0.7626105546951294, -0.46912503242492676, 0.11612115055322647, -0.0958506241440773, 0.11965994536876678, 0.4640011489391327, 0.006023898255079985, -0.17587511241436005, 0.9097825288772583], "mean": [-0.1340612769126892, -0.0836063027381897, 0.13984878361225128, 0.25433191657066345, -0.3684149384498596, 0.7564886808395386, -0.47672683000564575, 0.11107464879751205, -0.10272633284330368, 0.11176639050245285, 0.4087289869785309, -0.05943460017442703, -0.19846874475479126, 0.8859220147132874], "std": [0.0004141452081967145, 0.0002023308479692787, 0.00015281302330549806, 0.0010302021401003003, 0.0030924559105187654, 0.0037512886337935925, 0.004188543651252985, 0.0024015267845243216, 0.005275246221572161, 0.0057410853914916515, 0.02647663652896881, 0.06095092371106148, 0.018710756674408913, 0.019860241562128067], "count": [154]}, "timestamp": {"min": [0.0], "max": [5.1], "mean": [2.55], "std": [1.4818344486930155], "count": [154]}, "frame_index": {"min": [0], "max": [153], "mean": [76.5], "std": [44.45503346079047], "count": [154]}, "episode_index": {"min": [672], "max": [672], "mean": [672.0], "std": [0.0], "count": [154]}, "index": {"min": [365592], "max": [365745], "mean": [365668.5], "std": [44.45503346079047], "count": [154]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [154]}}} +{"episode_index": 673, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4614477559912854]], [[0.42972644335511984]], [[0.39744704248366014]]], "std": [[[0.19812234287165534]], [[0.19578258901523302]], [[0.19882495591558683]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4730723311546841]], [[0.4526245642701525]], [[0.4228002777777778]]], "std": [[[0.1861641513279253]], [[0.17166847476243288]], [[0.18496548602109003]]], "count": [100]}, "observation.state": {"min": [0.38103193044662476, -0.03191804885864258, 0.1330460160970688, -0.5768570303916931, 0.27764537930488586, 0.3730789124965668, -0.5962181687355042, -0.2005593627691269, 0.16876010596752167, 1.6154513359069824, -0.274639368057251, -0.20806704461574554], "max": [0.3862370252609253, -0.03167093172669411, 0.13356712460517883, -0.533660888671875, 0.2947249412536621, 0.4039802551269531, -0.5348842144012451, -0.18388599157333374, 0.19214777648448944, 1.706247091293335, 0.05943688005208969, -0.11883498728275299], "mean": [0.3844432830810547, -0.03177601099014282, 0.13334448635578156, -0.5649383068084717, 0.28740283846855164, 0.3834437429904938, -0.5644237995147705, -0.19111430644989014, 0.17953354120254517, 1.6654635667800903, -0.21405993402004242, -0.1627984344959259], "std": [0.001335466280579567, 5.507340392796323e-05, 0.0001906577090267092, 0.010937502607703209, 0.005195359233766794, 0.008506794460117817, 0.02444787696003914, 0.004022626671940088, 0.008368218317627907, 0.026511967182159424, 0.08313426375389099, 0.026557108387351036], "count": [155]}, "action": {"min": [-0.1328635811805725, -0.08500561863183975, 0.1399577260017395, 0.2450549304485321, -0.4046131670475006, 0.7184012532234192, -0.5097402930259705, 0.107912078499794, -0.10857260227203369, 0.09985049813985825, 0.3781466484069824, -0.2977759540081024, 0.00214960565790534, 0.8547922968864441], "max": [-0.13195939362049103, -0.08477466553449631, 0.14026720821857452, 0.24865993857383728, -0.39169183373451233, 0.7345052361488342, -0.4956342279911041, 0.11432617902755737, -0.09308109432458878, 0.11909782886505127, 0.4250352680683136, -0.1492733210325241, 0.06972421705722809, 0.9083847403526306], "mean": [-0.13224203884601593, -0.08488966524600983, 0.14012224972248077, 0.24722321331501007, -0.39698758721351624, 0.729392409324646, -0.4992232918739319, 0.11102009564638138, -0.10047493875026703, 0.10879473388195038, 0.3946073353290558, -0.18880414962768555, 0.04614612087607384, 0.8971864581108093], "std": [0.000245749979512766, 9.13297408260405e-05, 0.00011324221850372851, 0.0008897600928321481, 0.0038012824952602386, 0.0041238777339458466, 0.0034754632506519556, 0.0018337091896682978, 0.005675419699400663, 0.00696514081209898, 0.008673761039972305, 0.03096521459519863, 0.02115229330956936, 0.009125952608883381], "count": [155]}, "timestamp": {"min": [0.0], "max": [5.133333333333334], "mean": [2.5666666666666664], "std": [1.491457154746473], "count": [155]}, "frame_index": {"min": [0], "max": [154], "mean": [77.0], "std": [44.74371464239419], "count": [155]}, "episode_index": {"min": [673], "max": [673], "mean": [673.0], "std": [0.0], "count": [155]}, "index": {"min": [365746], "max": [365900], "mean": [365823.0], "std": [44.74371464239419], "count": [155]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [155]}}} +{"episode_index": 674, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4614920697167756]], [[0.42961335511982573]], [[0.3968759232026144]]], "std": [[[0.1973127933969678]], [[0.19553620607288294]], [[0.1988606214068678]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4741530392156863]], [[0.45300129901960784]], [[0.4230866993464052]]], "std": [[[0.1850097058156865]], [[0.17154700341574544]], [[0.18486642799876934]]], "count": [100]}, "observation.state": {"min": [0.3875807821750641, -0.0404902882874012, 0.1324821263551712, -0.5938419103622437, 0.272726446390152, 0.43347299098968506, -0.6091305613517761, -0.20711596310138702, 0.17141880095005035, 1.101501226425171, -0.5074679851531982, 0.09345339983701706], "max": [0.39132630825042725, -0.040304940193891525, 0.13270120322704315, -0.5584043264389038, 0.282154381275177, 0.45080605149269104, -0.5505922436714172, -0.17770008742809296, 0.19360090792179108, 1.2612850666046143, -0.22408385574817657, 0.2666260898113251], "mean": [0.3899211585521698, -0.04040044546127319, 0.13264557719230652, -0.5788304805755615, 0.2792253792285919, 0.43996042013168335, -0.5859071016311646, -0.18687979876995087, 0.18108101189136505, 1.2344783544540405, -0.4460754692554474, 0.14505068957805634], "std": [0.0009008015622384846, 3.746109359781258e-05, 6.118883902672678e-05, 0.008403830230236053, 0.0026334605645388365, 0.004451550543308258, 0.022031472995877266, 0.006722400430589914, 0.008242394775152206, 0.03629899024963379, 0.0664203092455864, 0.04541636258363724], "count": [131]}, "action": {"min": [-0.1320343017578125, -0.08577024936676025, 0.13840478658676147, 0.25804516673088074, -0.42960309982299805, 0.7120370864868164, -0.4928630292415619, 0.105843186378479, -0.1103847399353981, 0.10029373317956924, 0.3122756779193878, -0.09523364901542664, -0.1843070089817047, 0.9096298813819885], "max": [-0.13143713772296906, -0.08571292459964752, 0.13846436142921448, 0.2605562210083008, -0.4234025478363037, 0.7233760356903076, -0.4797469973564148, 0.11149421334266663, -0.09459876269102097, 0.11829224973917007, 0.3657680153846741, 0.02160455659031868, -0.09412182867527008, 0.9432889223098755], "mean": [-0.13162702322006226, -0.08574146777391434, 0.1384374350309372, 0.25960013270378113, -0.4253511428833008, 0.7183921933174133, -0.4853624999523163, 0.10902130603790283, -0.10109817981719971, 0.10801969468593597, 0.34342294931411743, -0.01729765720665455, -0.11109253764152527, 0.9317575693130493], "std": [0.00015029004134703428, 1.6394948033848777e-05, 1.5240851098496933e-05, 0.0007655253866687417, 0.0016801625024527311, 0.00282630929723382, 0.00298287789337337, 0.0017544003203511238, 0.005855316296219826, 0.006700438447296619, 0.014904447831213474, 0.02258918806910515, 0.021422650665044785, 0.007478884421288967], "count": [131]}, "timestamp": {"min": [0.0], "max": [4.333333333333333], "mean": [2.166666666666667], "std": [1.260511360079269], "count": [131]}, "frame_index": {"min": [0], "max": [130], "mean": [65.0], "std": [37.815340802378074], "count": [131]}, "episode_index": {"min": [674], "max": [674], "mean": [674.0], "std": [0.0], "count": [131]}, "index": {"min": [365901], "max": [366031], "mean": [365966.0], "std": [37.815340802378074], "count": [131]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [131]}}} +{"episode_index": 675, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46350348583878]], [[0.4308165332244009]], [[0.39783146241830064]]], "std": [[[0.19669220714713018]], [[0.1947642982240618]], [[0.19860938448251728]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4773236628540305]], [[0.45414752995642704]], [[0.4247041122004357]]], "std": [[[0.18368317888790603]], [[0.17083861938553357]], [[0.1842352044914191]]], "count": [100]}, "observation.state": {"min": [0.39416056871414185, -0.04713955894112587, 0.13255472481250763, -0.6093589663505554, 0.2654847204685211, 0.461841881275177, -0.6305765509605408, -0.2052856832742691, 0.17080305516719818, 1.10254967212677, -0.6516194939613342, 0.005310810171067715], "max": [0.39774391055107117, -0.04691559821367264, 0.1326104700565338, -0.6053748726844788, 0.2667144536972046, 0.4635722041130066, -0.5605236887931824, -0.16859498620033264, 0.19424517452716827, 1.2239601612091064, -0.2781919240951538, 0.24058377742767334], "mean": [0.3962094187736511, -0.0470295175909996, 0.13259217143058777, -0.6065810918807983, 0.26596227288246155, 0.4627555012702942, -0.6021789908409119, -0.17814944684505463, 0.18108132481575012, 1.1844953298568726, -0.5420145392417908, 0.102998286485672], "std": [0.0012203443329781294, 6.900873268023133e-05, 1.0905571798502933e-05, 0.0012807720340788364, 0.0003317621012683958, 0.0004993738839402795, 0.020833870396018028, 0.007282666862010956, 0.008034753613173962, 0.028377356007695198, 0.10637154430150986, 0.07814120501279831], "count": [141]}, "action": {"min": [-0.13098059594631195, -0.08669089525938034, 0.13726961612701416, 0.2627031207084656, -0.4434623420238495, 0.7161955833435059, -0.46993234753608704, 0.10259385406970978, -0.10821942239999771, 0.0990472286939621, 0.31616726517677307, -0.0624038390815258, -0.19489066302776337, 0.889228105545044], "max": [-0.1303887516260147, -0.0865749642252922, 0.1374521404504776, 0.26396286487579346, -0.4426330626010895, 0.7180065512657166, -0.46825936436653137, 0.11522073298692703, -0.09234946966171265, 0.11727217584848404, 0.42284050583839417, 0.061857182532548904, -0.08320184797048569, 0.9408196806907654], "mean": [-0.13063780963420868, -0.08662544190883636, 0.13736210763454437, 0.26347145438194275, -0.44313526153564453, 0.7168437242507935, -0.4694121778011322, 0.1072947084903717, -0.09945862740278244, 0.10741401463747025, 0.3758101761341095, 0.022581005468964577, -0.11066414415836334, 0.9177425503730774], "std": [0.00019687849271576852, 4.301407534512691e-05, 6.806565215811133e-05, 0.00037761125713586807, 0.0002550083736423403, 0.0005875197239220142, 0.0005038554081693292, 0.0028527341783046722, 0.005495143588632345, 0.006186933256685734, 0.033069465309381485, 0.03782179206609726, 0.03093780390918255, 0.016656167805194855], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [675], "max": [675], "mean": [675.0], "std": [0.0], "count": [141]}, "index": {"min": [366032], "max": [366172], "mean": [366102.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [141]}}} +{"episode_index": 676, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45768731481481484]], [[0.42725559912854033]], [[0.3946165332244009]]], "std": [[[0.201985953004202]], [[0.19864012431299682]], [[0.20188965272247758]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4689851851851852]], [[0.4499050490196078]], [[0.42004904411764704]]], "std": [[[0.19170639785250318]], [[0.17617875169338595]], [[0.1892525157462759]]], "count": [100]}, "observation.state": {"min": [0.397643506526947, -0.049711231142282486, 0.1328139752149582, -0.5957291126251221, 0.2597459852695465, 0.4739914834499359, -0.5724630355834961, -0.22561192512512207, 0.16878603398799896, 1.7565726041793823, -0.34978944063186646, -0.09289167076349258], "max": [0.40191417932510376, -0.048653218895196915, 0.13308879733085632, -0.5846155881881714, 0.2658946216106415, 0.4940027594566345, -0.521307647228241, -0.1838551014661789, 0.1942957192659378, 1.8794509172439575, -0.06490234285593033, 0.00972743984311819], "mean": [0.40041983127593994, -0.0493692085146904, 0.13297075033187866, -0.5906057953834534, 0.26270154118537903, 0.486497163772583, -0.5526987910270691, -0.1973625123500824, 0.17979057133197784, 1.8093373775482178, -0.2513200342655182, -0.0393814817070961], "std": [0.0012847862672060728, 0.0003817241813521832, 7.690702477702871e-05, 0.002782996743917465, 0.0018918472342193127, 0.0070384531281888485, 0.01671908237040043, 0.00980862695723772, 0.009691443294286728, 0.032883431762456894, 0.09341621398925781, 0.03617982193827629], "count": [141]}, "action": {"min": [-0.13029949367046356, -0.08707806468009949, 0.13697350025177002, 0.26274245977401733, -0.4563649296760559, 0.7045154571533203, -0.47509026527404785, 0.10747954994440079, -0.11185935884714127, 0.1022760421037674, 0.288578063249588, -0.2566174566745758, 0.059659406542778015, 0.903100848197937], "max": [-0.129646897315979, -0.08695411682128906, 0.13746137917041779, 0.26919418573379517, -0.44872379302978516, 0.7115408778190613, -0.47181981801986694, 0.1173827275633812, -0.09366702288389206, 0.11890729516744614, 0.3421679437160492, -0.15009668469429016, 0.14050105214118958, 0.9407567977905273], "mean": [-0.12985460460186005, -0.08703448623418808, 0.13720229268074036, 0.2673998475074768, -0.45269396901130676, 0.7069858908653259, -0.4729892909526825, 0.11289633065462112, -0.10178982466459274, 0.10939675569534302, 0.31265124678611755, -0.19019609689712524, 0.10481837391853333, 0.923474907875061], "std": [0.00018250416906084865, 4.005951632279903e-05, 0.00015897392586339265, 0.002268708311021328, 0.0024687261320650578, 0.0024074066895991564, 0.0007558987126685679, 0.0035248121712356806, 0.007188583258539438, 0.006316262297332287, 0.02063712105154991, 0.036766089498996735, 0.0169480312615633, 0.014704692177474499], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [676], "max": [676], "mean": [676.0], "std": [0.0], "count": [141]}, "index": {"min": [366173], "max": [366313], "mean": [366243.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [141]}}} +{"episode_index": 677, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45821258442265794]], [[0.42751029956427017]], [[0.39448]]], "std": [[[0.19967381638837564]], [[0.1968110907861045]], [[0.20016406049311963]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4712262663398693]], [[0.45084391067538127]], [[0.4211346840958606]]], "std": [[[0.18764978141297234]], [[0.17374018266507427]], [[0.1864269909018095]]], "count": [100]}, "observation.state": {"min": [0.3926623463630676, -0.0672418400645256, 0.12853233516216278, -0.5755988955497742, 0.26329854130744934, 0.5226112604141235, -0.6106519103050232, -0.2168775051832199, 0.1706293672323227, 1.5743521451950073, -0.5975114107131958, -0.01641370914876461], "max": [0.39665502309799194, -0.066701240837574, 0.1292828917503357, -0.5632271766662598, 0.2676708996295929, 0.5282617807388306, -0.5297640562057495, -0.19062794744968414, 0.19490757584571838, 1.7949459552764893, -0.3406347930431366, 0.11738915741443634], "mean": [0.3952302634716034, -0.06682243943214417, 0.1291988492012024, -0.5660265684127808, 0.26591917872428894, 0.5261719226837158, -0.5858228802680969, -0.20060308277606964, 0.18047018349170685, 1.7017333507537842, -0.5043425559997559, 0.05123872309923172], "std": [0.001067048404365778, 0.0001560825912747532, 0.00014047863078303635, 0.003235824406147003, 0.0014697989681735635, 0.0017710505053400993, 0.02391795814037323, 0.007842758670449257, 0.008993280120193958, 0.04369409754872322, 0.08374660462141037, 0.0478031188249588], "count": [161]}, "action": {"min": [-0.1328917294740677, -0.08789697289466858, 0.13259732723236084, 0.2674688994884491, -0.470749169588089, 0.6903256773948669, -0.47927093505859375, 0.10527541488409042, -0.11158675700426102, 0.10037319362163544, 0.2510434091091156, -0.1197110190987587, 0.019317908212542534, 0.9372133612632751], "max": [-0.13197734951972961, -0.08765069395303726, 0.13307176530361176, 0.27085283398628235, -0.46924889087677, 0.6944143176078796, -0.474083811044693, 0.11928654462099075, -0.09352606534957886, 0.11817194521427155, 0.3324962258338928, -0.04082689434289932, 0.12908296287059784, 0.9631822109222412], "mean": [-0.13223528861999512, -0.08782167732715607, 0.13301102817058563, 0.2697194218635559, -0.4699903130531311, 0.691280722618103, -0.4780031740665436, 0.11009162664413452, -0.10120447725057602, 0.10744626820087433, 0.28209060430526733, -0.07532238960266113, 0.0901079848408699, 0.9511236548423767], "std": [0.00021436202223412693, 4.167702718405053e-05, 8.258088200818747e-05, 0.001076502026990056, 0.0005205937777645886, 0.0011615328257903457, 0.001291434746235609, 0.003111426718533039, 0.006871039047837257, 0.006379265338182449, 0.026160258799791336, 0.028023118153214455, 0.02067587897181511, 0.009924146346747875], "count": [161]}, "timestamp": {"min": [0.0], "max": [5.333333333333333], "mean": [2.666666666666666], "std": [1.5491933384829668], "count": [161]}, "frame_index": {"min": [0], "max": [160], "mean": [80.0], "std": [46.475800154489], "count": [161]}, "episode_index": {"min": [677], "max": [677], "mean": [677.0], "std": [0.0], "count": [161]}, "index": {"min": [366314], "max": [366474], "mean": [366394.0], "std": [46.475800154489], "count": [161]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [161]}}} +{"episode_index": 678, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45658643790849673]], [[0.4255909586056645]], [[0.3922995043572985]]], "std": [[[0.19788032246338738]], [[0.19563121180843349]], [[0.19892865111992813]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.470464970043573]], [[0.4493239950980392]], [[0.4194631181917211]]], "std": [[[0.18505439029746784]], [[0.1719543671303047]], [[0.1844834202878696]]], "count": [100]}, "observation.state": {"min": [0.3961993455886841, -0.06829213351011276, 0.12931658327579498, -0.5688888430595398, 0.2527775168418884, 0.533134400844574, -0.6334185600280762, -0.2236040085554123, 0.17260749638080597, 1.4713943004608154, -0.6451975703239441, 0.04882382974028587], "max": [0.39846983551979065, -0.06765885651111603, 0.12967048585414886, -0.5621787309646606, 0.2596093416213989, 0.5391137003898621, -0.5669258236885071, -0.18356935679912567, 0.19801867008209229, 1.623000144958496, -0.46005508303642273, 0.16392286121845245], "mean": [0.3978566825389862, -0.06777022033929825, 0.12957599759101868, -0.566839337348938, 0.25611749291419983, 0.536476731300354, -0.6047108769416809, -0.19684159755706787, 0.18238495290279388, 1.5798871517181396, -0.5939065217971802, 0.12055712938308716], "std": [0.0006131556001491845, 0.00017575122183188796, 9.615824092179537e-05, 0.0017207521013915539, 0.002384189749136567, 0.0019492522114887834, 0.02606380358338356, 0.010805430822074413, 0.009364205412566662, 0.027958214282989502, 0.05179781839251518, 0.0339551717042923], "count": [115]}, "action": {"min": [-0.13205964863300323, -0.08827802538871765, 0.13295519351959229, 0.26850461959838867, -0.47931209206581116, 0.6871103048324585, -0.4778582751750946, 0.10330012440681458, -0.1123490184545517, 0.09996992349624634, 0.2579914927482605, -0.05684608221054077, -0.004951077047735453, 0.9512754678726196], "max": [-0.13158686459064484, -0.08803194761276245, 0.13310952484607697, 0.26968857645988464, -0.474799782037735, 0.6895663142204285, -0.47446590662002563, 0.11444330960512161, -0.09347330033779144, 0.11943616718053818, 0.2995239794254303, -0.008730730041861534, 0.07493387907743454, 0.9643726944923401], "mean": [-0.13170938193798065, -0.08814775198698044, 0.13304664194583893, 0.2690354287624359, -0.4770587980747223, 0.6881833076477051, -0.4758518934249878, 0.10720503330230713, -0.10132197290658951, 0.10731527954339981, 0.27611061930656433, -0.02400253713130951, 0.05410545691847801, 0.958950936794281], "std": [0.00012568524107336998, 6.638721970375627e-05, 3.5405202652327716e-05, 0.00043469504453241825, 0.001420502900145948, 0.0007695909589529037, 0.0007708646589890122, 0.0022837903816252947, 0.007309656590223312, 0.007100597023963928, 0.015368489548563957, 0.013905717991292477, 0.014833827503025532, 0.004828084725886583], "count": [115]}, "timestamp": {"min": [0.0], "max": [3.8], "mean": [1.9], "std": [1.1065461781798556], "count": [115]}, "frame_index": {"min": [0], "max": [114], "mean": [57.0], "std": [33.19638534539566], "count": [115]}, "episode_index": {"min": [678], "max": [678], "mean": [678.0], "std": [0.0], "count": [115]}, "index": {"min": [366475], "max": [366589], "mean": [366532.0], "std": [33.19638534539566], "count": [115]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [115]}}} +{"episode_index": 679, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47687394607843137]], [[0.44822809095860566]], [[0.41131256535947713]]], "std": [[[0.23469567864612678]], [[0.22742702908839396]], [[0.23226287058299758]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49037808006535943]], [[0.47350730119825707]], [[0.4371671568627451]]], "std": [[[0.227181456486477]], [[0.2062701075632693]], [[0.22126853246042605]]], "count": [100]}, "observation.state": {"min": [0.4192439913749695, -0.08366037160158157, 0.13768543303012848, -4.53810977935791, -0.5760594606399536, 0.009023720398545265, -0.5969440937042236, -0.2219822257757187, 0.16618826985359192, 2.336784839630127, -0.2852970063686371, -0.32251936197280884], "max": [0.4247734844684601, -0.07570595294237137, 0.1390945166349411, -4.537690162658691, -0.5352051854133606, 0.10919710993766785, -0.4945638179779053, -0.12951794266700745, 0.18983778357505798, 2.5192148685455322, 0.06353597342967987, 0.24575291574001312], "mean": [0.42243534326553345, -0.07943620532751083, 0.13785287737846375, -4.537872791290283, -0.5553977489471436, 0.054208047688007355, -0.5449326038360596, -0.1684938222169876, 0.1788048893213272, 2.4077107906341553, -0.14371249079704285, -0.17815141379833221], "std": [0.0015127368969842792, 0.0019298078259453177, 0.0001745502813719213, 0.00020792867871932685, 0.017154891043901443, 0.03981747105717659, 0.026490071788430214, 0.02460670657455921, 0.005372962448745966, 0.045804306864738464, 0.08888562768697739, 0.12158823013305664], "count": [216]}, "action": {"min": [-0.12246951460838318, -0.0937126949429512, 0.1337256133556366, 0.21507982909679413, 0.4055049419403076, 0.21046753227710724, 0.839509129524231, 0.10718907415866852, -0.10786239057779312, 0.09899461269378662, 0.09863065928220749, -0.4081871211528778, 0.28017306327819824, 0.820563793182373], "max": [-0.12118905037641525, -0.09227896481752396, 0.1348850429058075, 0.2546980381011963, 0.43140214681625366, 0.22667434811592102, 0.8587633371353149, 0.1220165565609932, -0.08788060396909714, 0.1210278570652008, 0.3294866681098938, -0.23709136247634888, 0.4132258892059326, 0.8923718929290771], "mean": [-0.12177852541208267, -0.09295223653316498, 0.13396619260311127, 0.23737503588199615, 0.41965872049331665, 0.21794526278972626, 0.8482688069343567, 0.11276479065418243, -0.09699615836143494, 0.11221814900636673, 0.2428576797246933, -0.28148531913757324, 0.36321815848350525, 0.8507396578788757], "std": [0.0003144797228742391, 0.00033638736931607127, 0.00015640292258467525, 0.01566356234252453, 0.011356434784829617, 0.006028368137776852, 0.008319072425365448, 0.00359932379797101, 0.00536862388253212, 0.004806362092494965, 0.06171000003814697, 0.0330863781273365, 0.02651139721274376, 0.022239577025175095], "count": [216]}, "timestamp": {"min": [0.0], "max": [7.166666666666667], "mean": [3.5833333333333335], "std": [2.0784386946473563], "count": [216]}, "frame_index": {"min": [0], "max": [215], "mean": [107.5], "std": [62.353160839420696], "count": [216]}, "episode_index": {"min": [679], "max": [679], "mean": [679.0], "std": [0.0], "count": [216]}, "index": {"min": [366590], "max": [366805], "mean": [366697.5], "std": [62.353160839420696], "count": [216]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [216]}}} +{"episode_index": 680, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4623833578431373]], [[0.4400627995642702]], [[0.40529631808278865]]], "std": [[[0.22958145261942037]], [[0.22151338917354144]], [[0.22498072111733933]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4689159694989107]], [[0.46110960511982574]], [[0.42691556372549017]]], "std": [[[0.2234226769850039]], [[0.20202990958957445]], [[0.21547505567571942]]], "count": [100]}, "observation.state": {"min": [0.3852871358394623, -0.09698980301618576, 0.12870992720127106, -4.537899971008301, -0.4756316542625427, 0.2783145308494568, -0.5781083106994629, -0.26980140805244446, 0.17202545702457428, 2.2776522636413574, -0.315083771944046, -0.15247595310211182], "max": [0.38851526379585266, -0.08898904919624329, 0.12915067374706268, -4.53748083114624, -0.424392968416214, 0.3251826763153076, -0.4881230592727661, -0.19777919352054596, 0.19234609603881836, 2.4806320667266846, 0.13294731080532074, 0.3061041235923767], "mean": [0.3871130347251892, -0.09156844764947891, 0.12882740795612335, -4.537787437438965, -0.4445783793926239, 0.3131714165210724, -0.5263828039169312, -0.24338264763355255, 0.1816016286611557, 2.3481452465057373, -0.08531782031059265, 0.07861845940351486], "std": [0.001247572130523622, 0.0025212750770151615, 9.498638974037021e-05, 0.00015641856589354575, 0.014284659177064896, 0.011323175393044949, 0.029031354933977127, 0.020573752000927925, 0.005749859381467104, 0.049820736050605774, 0.1537165492773056, 0.1428307592868805], "count": [234]}, "action": {"min": [-0.1320376992225647, -0.09259174764156342, 0.12830789387226105, 0.13187910616397858, 0.31858524680137634, 0.2388729304075241, 0.8936294913291931, 0.105904221534729, -0.11690033227205276, 0.09908898174762726, 0.09143572300672531, -0.4602578580379486, 0.23645757138729095, 0.8399308919906616], "max": [-0.1313786804676056, -0.09132254868745804, 0.12915430963039398, 0.15478450059890747, 0.3443099856376648, 0.24564817547798157, 0.9069475531578064, 0.12284933030605316, -0.09755229949951172, 0.11445436626672745, 0.2921344041824341, -0.262146532535553, 0.3909964859485626, 0.9125173687934875], "mean": [-0.13165584206581116, -0.09176912903785706, 0.12880170345306396, 0.13859215378761292, 0.32808738946914673, 0.24256744980812073, 0.9023393988609314, 0.11511114984750748, -0.10960127413272858, 0.10659206658601761, 0.18974429368972778, -0.34914687275886536, 0.2973412275314331, 0.8622449040412903], "std": [0.00022334714594762772, 0.0003364746808074415, 0.0003117125597782433, 0.00540915597230196, 0.006997272837907076, 0.0020619763527065516, 0.0036337331403046846, 0.004912987817078829, 0.005307207815349102, 0.0038784921634942293, 0.059193890541791916, 0.06790251284837723, 0.03990858048200607, 0.022544370964169502], "count": [234]}, "timestamp": {"min": [0.0], "max": [7.766666666666667], "mean": [3.8833333333333337], "std": [2.251645488838642], "count": [234]}, "frame_index": {"min": [0], "max": [233], "mean": [116.5], "std": [67.54936466515926], "count": [234]}, "episode_index": {"min": [680], "max": [680], "mean": [680.0], "std": [0.0], "count": [234]}, "index": {"min": [366806], "max": [367039], "mean": [366922.5], "std": [67.54936466515926], "count": [234]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [234]}}} +{"episode_index": 681, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46198250272331154]], [[0.4401878976034858]], [[0.4058999319172113]]], "std": [[[0.23021692837661487]], [[0.2230186634629043]], [[0.22711444096905598]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4647141448801743]], [[0.45861832244008716]], [[0.425528809912854]]], "std": [[[0.22804526720248935]], [[0.20672783954579177]], [[0.21990672254282623]]], "count": [100]}, "observation.state": {"min": [0.3883530795574188, -0.09509000927209854, 0.13072824478149414, -4.53810977935791, -0.525640606880188, 0.18897925317287445, -0.585460364818573, -0.2946068048477173, 0.17221860587596893, 2.2222940921783447, -0.47836437821388245, -0.49124792218208313], "max": [0.40567517280578613, -0.08760668337345123, 0.13154232501983643, -4.53748083114624, -0.37493056058883667, 0.41216567158699036, -0.48759791254997253, -0.20850606262683868, 0.19272592663764954, 4.5383195877075195, 0.6085789799690247, 0.5273502469062805], "mean": [0.4008444547653198, -0.08943211287260056, 0.130972221493721, -4.537810325622559, -0.425924152135849, 0.35690632462501526, -0.5396171808242798, -0.25324615836143494, 0.18152017891407013, 2.94242000579834, -0.14938998222351074, 0.03935743123292923], "std": [0.0037173638120293617, 0.0013294025557115674, 0.00020263173792045563, 0.0001382035989081487, 0.03319286182522774, 0.0432223305106163, 0.025876175612211227, 0.026639508083462715, 0.0056762401945889, 0.8854712247848511, 0.2821354866027832, 0.1965065449476242], "count": [242]}, "action": {"min": [-0.13018618524074554, -0.09329000115394592, 0.12964822351932526, 0.09633021056652069, 0.2949334979057312, 0.23516105115413666, 0.8754366040229797, 0.10906646400690079, -0.1195160299539566, 0.0978235974907875, -0.2719985246658325, -0.4164607524871826, 0.25747165083885193, -0.005062441807240248], "max": [-0.12836836278438568, -0.0919933170080185, 0.1302158534526825, 0.18948768079280853, 0.3765507936477661, 0.24981741607189178, 0.9183040857315063, 0.12119864672422409, -0.09674537926912308, 0.11288357526063919, 0.2565808594226837, -0.15274640917778015, 0.9740880727767944, 0.9144847989082336], "mean": [-0.128770112991333, -0.09222766757011414, 0.1298798769712448, 0.11911968886852264, 0.32110217213630676, 0.24780894815921783, 0.9058695435523987, 0.11445122957229614, -0.10974951088428497, 0.10528232157230377, 0.06862413138151169, -0.3056999444961548, 0.4917086362838745, 0.6813868284225464], "std": [0.00038418752956204116, 0.00024949232465587556, 0.00016162953397724777, 0.017863307148218155, 0.0171617791056633, 0.0024625221267342567, 0.008711310103535652, 0.0030750760342925787, 0.006226190831512213, 0.004136105999350548, 0.1451370269060135, 0.04842673987150192, 0.2509484887123108, 0.33073851466178894], "count": [242]}, "timestamp": {"min": [0.0], "max": [8.033333333333333], "mean": [4.016666666666667], "std": [2.328626204439004], "count": [242]}, "frame_index": {"min": [0], "max": [241], "mean": [120.5], "std": [69.85878613317011], "count": [242]}, "episode_index": {"min": [681], "max": [681], "mean": [681.0], "std": [0.0], "count": [242]}, "index": {"min": [367040], "max": [367281], "mean": [367160.5], "std": [69.85878613317011], "count": [242]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [242]}}} +{"episode_index": 682, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4588424210239651]], [[0.43746995098039215]], [[0.40212203703703703]]], "std": [[[0.2300823562493371]], [[0.2226864661918637]], [[0.22611536045824077]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46425690904139433]], [[0.45792763616557736]], [[0.42350770424836603]]], "std": [[[0.22639281622897653]], [[0.20496047624901087]], [[0.21753535988472092]]], "count": [100]}, "observation.state": {"min": [0.3893261253833771, -0.09807097911834717, 0.13189361989498138, -4.53810977935791, -0.5069214105606079, 0.2588464617729187, -0.5675668120384216, -0.2843587398529053, 0.16675086319446564, 2.139676094055176, -0.3086618483066559, 0.07732702791690826], "max": [0.39348867535591125, -0.09678129106760025, 0.13215027749538422, -4.537690162658691, -0.5010460615158081, 0.2653648257255554, -0.49873408675193787, -0.19809581339359283, 0.1925327628850937, 2.539135456085205, 0.09701190888881683, 0.6149694323539734], "mean": [0.39171504974365234, -0.09741228073835373, 0.1320149302482605, -4.537888526916504, -0.5030835270881653, 0.2628219425678253, -0.5225728154182434, -0.24771851301193237, 0.18076610565185547, 2.3466317653656006, -0.1495637148618698, 0.2993594706058502], "std": [0.0014837555354461074, 0.0004718271957244724, 8.672717376612127e-05, 0.00018711491429712623, 0.0018161048647016287, 0.0020821832586079836, 0.01782660000026226, 0.03097948245704174, 0.007943017408251762, 0.10925529152154922, 0.12118012458086014, 0.15163326263427734], "count": [177]}, "action": {"min": [-0.12979792058467865, -0.09403233975172043, 0.1299796849489212, 0.15880431234836578, 0.35901904106140137, 0.24581784009933472, 0.8849802613258362, 0.10819363594055176, -0.11815766245126724, 0.0949791967868805, -0.013521979562938213, -0.4308859407901764, 0.08168752491474152, 0.8422205448150635], "max": [-0.12910090386867523, -0.0937311202287674, 0.13010036945343018, 0.1618683785200119, 0.3607681691646576, 0.24671714007854462, 0.8859962821006775, 0.12516401708126068, -0.10127410292625427, 0.11374475061893463, 0.17248250544071198, -0.27683910727500916, 0.3820241689682007, 0.9077406525611877], "mean": [-0.1294127255678177, -0.09388402104377747, 0.13005006313323975, 0.1600916087627411, 0.35975149273872375, 0.24623623490333557, 0.8856160640716553, 0.11647489666938782, -0.10950528085231781, 0.10636339336633682, 0.08187195658683777, -0.3511205017566681, 0.2697441577911377, 0.8860570788383484], "std": [0.0002503775176592171, 0.00010358937288401648, 2.7186750230612233e-05, 0.0009814804652705789, 0.0004895861493423581, 0.00026261326274834573, 0.0003040179726667702, 0.005014034919440746, 0.005947107449173927, 0.006007550749927759, 0.05394613370299339, 0.04607858881354332, 0.08223547786474228, 0.01886756159365177], "count": [177]}, "timestamp": {"min": [0.0], "max": [5.866666666666666], "mean": [2.9333333333333336], "std": [1.7031561116764198], "count": [177]}, "frame_index": {"min": [0], "max": [176], "mean": [88.0], "std": [51.094683350292584], "count": [177]}, "episode_index": {"min": [682], "max": [682], "mean": [682.0], "std": [0.0], "count": [177]}, "index": {"min": [367282], "max": [367458], "mean": [367370.0], "std": [51.094683350292584], "count": [177]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [177]}}} +{"episode_index": 683, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46272946078431376]], [[0.44078414488017426]], [[0.40540995370370375]]], "std": [[[0.23165251324538225]], [[0.22443542520727836]], [[0.22822770100786594]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46908971677559913]], [[0.46147214869281045]], [[0.4270321922657952]]], "std": [[[0.22706326387027018]], [[0.2061782207836499]], [[0.21924611346177203]]], "count": [100]}, "observation.state": {"min": [0.38754990696907043, -0.09841851145029068, 0.13186120986938477, -4.537899971008301, -0.5147097110748291, 0.23421882092952728, -0.590696394443512, -0.3075732886791229, 0.16346475481987, 2.2956855297088623, -0.4703028202056885, -0.07549160718917847], "max": [0.39107146859169006, -0.09771574288606644, 0.13190658390522003, -4.53748083114624, -0.5062382221221924, 0.258222758769989, -0.5030279159545898, -0.19572493433952332, 0.19104592502117157, 2.528650999069214, -0.17161543667316437, 0.42288804054260254], "mean": [0.3899281919002533, -0.09802477061748505, 0.1318850964307785, -4.537814617156982, -0.5090904831886292, 0.24886909127235413, -0.5424904823303223, -0.24865087866783142, 0.17974413931369781, 2.382589101791382, -0.3382834494113922, 0.16460858285427094], "std": [0.0012720372760668397, 0.00021146380458958447, 1.3556013072957285e-05, 0.00016857229638844728, 0.0033078875858336687, 0.00973549485206604, 0.03082735277712345, 0.03804609924554825, 0.008802727796137333, 0.05908577889204025, 0.09942686557769775, 0.14367800951004028], "count": [163]}, "action": {"min": [-0.13006506860256195, -0.09404180943965912, 0.12988080084323883, 0.16203303635120392, 0.3612467050552368, 0.24261251091957092, 0.8815597295761108, 0.1073714941740036, -0.11711695045232773, 0.08929510414600372, 0.00022553472081199288, -0.3515990674495697, 0.2899315357208252, 0.8703028559684753], "max": [-0.12954479455947876, -0.09386270493268967, 0.13008089363574982, 0.17226925492286682, 0.36642730236053467, 0.2459385097026825, 0.884736955165863, 0.12424883991479874, -0.09616224467754364, 0.11489683389663696, 0.18970432877540588, -0.20163719356060028, 0.41949838399887085, 0.9223150014877319], "mean": [-0.1297171413898468, -0.09393379837274551, 0.12997028231620789, 0.1660909503698349, 0.3631010353565216, 0.24461857974529266, 0.883577287197113, 0.11525874584913254, -0.10725308209657669, 0.10527750849723816, 0.09808854758739471, -0.26812997460365295, 0.33074313402175903, 0.8959780931472778], "std": [0.00018329139857087284, 5.744828740716912e-05, 5.540253914659843e-05, 0.004133879207074642, 0.0020252917893230915, 0.0013389989035204053, 0.0012448221677914262, 0.005327655002474785, 0.007331079803407192, 0.00783463940024376, 0.05706550180912018, 0.040840793401002884, 0.03300860524177551, 0.017413534224033356], "count": [163]}, "timestamp": {"min": [0.0], "max": [5.4], "mean": [2.6999999999999993], "std": [1.5684387141358123], "count": [163]}, "frame_index": {"min": [0], "max": [162], "mean": [81.0], "std": [47.05316142407437], "count": [163]}, "episode_index": {"min": [683], "max": [683], "mean": [683.0], "std": [0.0], "count": [163]}, "index": {"min": [367459], "max": [367621], "mean": [367540.0], "std": [47.05316142407437], "count": [163]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [163]}}} +{"episode_index": 684, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4736877832244009]], [[0.4521951879084967]], [[0.41709537037037037]]], "std": [[[0.23647004376355124]], [[0.23018976484722745]], [[0.2358497521042925]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48014154411764703]], [[0.4725257298474945]], [[0.43893823529411763]]], "std": [[[0.23248570150355147]], [[0.21271566961132737]], [[0.22725989315542608]]], "count": [100]}, "observation.state": {"min": [0.38925662636756897, -0.10411787778139114, 0.1318676918745041, -4.53810977935791, -0.5321991443634033, 0.18844644725322723, -0.5352317094802856, -0.30630674958229065, 0.16038218140602112, 2.0763497352600098, -0.49175477027893066, 0.12298242747783661], "max": [0.39535757899284363, -0.09827949851751328, 0.13264286518096924, -4.53748083114624, -0.5117036700248718, 0.23789353668689728, -0.4583982527256012, -0.18990199267864227, 0.19149832427501678, 2.6416738033294678, 0.6169137954711914, 0.9569351077079773], "mean": [0.3927863836288452, -0.09942066669464111, 0.1322782337665558, -4.5378217697143555, -0.5151659846305847, 0.22926686704158783, -0.497984379529953, -0.2455313801765442, 0.17782868444919586, 2.320485830307007, -0.1427306979894638, 0.5070879459381104], "std": [0.0018011991633102298, 0.0016520434292033315, 0.000323960353853181, 0.0002401788515271619, 0.0059190732426941395, 0.01334109716117382, 0.01734539493918419, 0.03868434205651283, 0.009082709439098835, 0.15564946830272675, 0.35140034556388855, 0.2882721722126007], "count": [178]}, "action": {"min": [-0.1297948956489563, -0.0948096364736557, 0.12904797494411469, 0.17104385793209076, 0.3668239414691925, 0.238102987408638, 0.8716513514518738, 0.11465570330619812, -0.11673483997583389, 0.09078607708215714, -0.14527341723442078, -0.5491379499435425, -0.16510294377803802, 0.8179129362106323], "max": [-0.12863147258758545, -0.09391114860773087, 0.13022863864898682, 0.19385629892349243, 0.3817377984523773, 0.24383066594600677, 0.8813405632972717, 0.13059724867343903, -0.10089586675167084, 0.11605745553970337, 0.10906066745519638, -0.24266085028648376, 0.4436663091182709, 0.9167473912239075], "mean": [-0.12908674776554108, -0.09421651065349579, 0.12991765141487122, 0.17499326169490814, 0.3691013753414154, 0.2425830066204071, 0.8799039721488953, 0.12137946486473083, -0.10779275745153427, 0.10638875514268875, -0.009661051444709301, -0.3479447662830353, 0.21242859959602356, 0.8850669264793396], "std": [0.00035578085226006806, 0.00024182828201446682, 0.00033362238900735974, 0.006176631432026625, 0.004171416629105806, 0.0013340957229956985, 0.002687720349058509, 0.005037576425820589, 0.00475932564586401, 0.007880812510848045, 0.0890558660030365, 0.09610627591609955, 0.1804509162902832, 0.02533869259059429], "count": [178]}, "timestamp": {"min": [0.0], "max": [5.9], "mean": [2.95], "std": [1.7127787688756277], "count": [178]}, "frame_index": {"min": [0], "max": [177], "mean": [88.5], "std": [51.383363066268835], "count": [178]}, "episode_index": {"min": [684], "max": [684], "mean": [684.0], "std": [0.0], "count": [178]}, "index": {"min": [367622], "max": [367799], "mean": [367710.5], "std": [51.383363066268835], "count": [178]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [178]}}} +{"episode_index": 685, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4623145343137255]], [[0.4411727233115469]], [[0.4053410049019608]]], "std": [[[0.22884887898761314]], [[0.2219501338094731]], [[0.22593578795167113]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4683458496732026]], [[0.46144887254901956]], [[0.42720879357298475]]], "std": [[[0.22522646817566425]], [[0.20435900210737243]], [[0.2169518304228336]]], "count": [100]}, "observation.state": {"min": [0.39623796939849854, -0.10199412703514099, 0.13159936666488647, -4.53810977935791, -0.5271435976028442, 0.2068597674369812, -0.6150615811347961, -0.30772775411605835, 0.16547530889511108, 2.246408462524414, -0.5051451325416565, -0.31098905205726624], "max": [0.40257835388183594, -0.09656505286693573, 0.132334366440773, -4.53748083114624, -0.5122502446174622, 0.2469971477985382, -0.5204272270202637, -0.19757840037345886, 0.19485312700271606, 2.457775831222534, -0.30005374550819397, 0.4771144986152649], "mean": [0.39983880519866943, -0.1006268784403801, 0.1319473683834076, -4.537881851196289, -0.5225982069969177, 0.21793265640735626, -0.5671213865280151, -0.24259403347969055, 0.1789434403181076, 2.333933115005493, -0.42134684324264526, 0.018956338986754417], "std": [0.0017468375153839588, 0.0012360987020656466, 0.00028866881621070206, 0.0002053060452453792, 0.002912950934842229, 0.008227243088185787, 0.031174764037132263, 0.03592521324753761, 0.008704185485839844, 0.05784153565764427, 0.05045711621642113, 0.24241550266742706], "count": [191]}, "action": {"min": [-0.12863028049468994, -0.09414037317037582, 0.12875694036483765, 0.1661107987165451, 0.3688777685165405, 0.24117174744606018, 0.8742172718048096, 0.10381045192480087, -0.11592106521129608, 0.0924551859498024, -0.02274048700928688, -0.33088093996047974, 0.2772965431213379, 0.8549100160598755], "max": [-0.12759430706501007, -0.0932026281952858, 0.1294563263654709, 0.1852129101753235, 0.37853407859802246, 0.24635440111160278, 0.8807233572006226, 0.12549377977848053, -0.09268162399530411, 0.11598676443099976, 0.2940926253795624, -0.12614956498146057, 0.40858954191207886, 0.9290145635604858], "mean": [-0.12805794179439545, -0.09391971677541733, 0.1290750354528427, 0.1800837516784668, 0.37645286321640015, 0.24283835291862488, 0.8757057189941406, 0.11247988045215607, -0.10460277646780014, 0.10397110879421234, 0.15410369634628296, -0.20706647634506226, 0.3305704891681671, 0.9005810022354126], "std": [0.0003269588341936469, 0.00023352385323960334, 0.00023636144760530442, 0.003952288068830967, 0.002045290544629097, 0.0010468494147062302, 0.0013719096314162016, 0.006647892761975527, 0.006464400328695774, 0.007094826083630323, 0.09001114219427109, 0.05324271321296692, 0.040212325751781464, 0.022347962483763695], "count": [191]}, "timestamp": {"min": [0.0], "max": [6.333333333333333], "mean": [3.166666666666667], "std": [1.837873166945363], "count": [191]}, "frame_index": {"min": [0], "max": [190], "mean": [95.0], "std": [55.136195008360886], "count": [191]}, "episode_index": {"min": [685], "max": [685], "mean": [685.0], "std": [0.0], "count": [191]}, "index": {"min": [367800], "max": [367990], "mean": [367895.0], "std": [55.136195008360886], "count": [191]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [191]}}} +{"episode_index": 686, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5012262608932462]], [[0.4854941857298475]], [[0.45314498638344225]]], "std": [[[0.23982462047216707]], [[0.23745241889694418]], [[0.24237720318073283]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5151888834422659]], [[0.5113332706971678]], [[0.4808097630718954]]], "std": [[[0.23200909033925768]], [[0.21656522415862378]], [[0.23118194062287237]]], "count": [100]}, "observation.state": {"min": [0.33966124057769775, -0.09318248927593231, 0.12469273060560226, -4.5383195877075195, -0.8582138419151306, -0.1399831771850586, -0.6495590806007385, -0.31474769115448, 0.1690206527709961, 2.4045145511627197, -0.7103731632232666, -0.361758291721344], "max": [0.35238057374954224, -0.0864405483007431, 0.1278803050518036, -4.53748083114624, -0.8069751858711243, -0.001808213535696268, -0.5213771462440491, -0.19157010316848755, 0.19491535425186157, 2.597848653793335, -0.1751679927110672, 0.3565232455730438], "mean": [0.34510645270347595, -0.09160306304693222, 0.12707924842834473, -4.5379157066345215, -0.8264482617378235, -0.10292457044124603, -0.5802326202392578, -0.24468861520290375, 0.17933759093284607, 2.5080957412719727, -0.44832947850227356, 0.03691290691494942], "std": [0.003961709327995777, 0.0014633414102718234, 0.0007945967372506857, 0.00015776307554915547, 0.019285716116428375, 0.03180849179625511, 0.03742837905883789, 0.03450840711593628, 0.008339307270944118, 0.06220926344394684, 0.168499156832695, 0.22636917233467102], "count": [211]}, "action": {"min": [-0.13820858299732208, -0.09098472446203232, 0.12657016515731812, 0.2373022735118866, 0.49975618720054626, 0.20045588910579681, 0.7712409496307373, 0.10431799292564392, -0.11673232167959213, 0.09162686765193939, -0.06494887173175812, -0.36502811312675476, 0.34383901953697205, 0.8421820402145386], "max": [-0.1356683224439621, -0.08831535279750824, 0.12847119569778442, 0.289132684469223, 0.5306938290596008, 0.2314867377281189, 0.8002157807350159, 0.11678712069988251, -0.08867675065994263, 0.11455243825912476, 0.2676929831504822, -0.11231527477502823, 0.4624558091163635, 0.918376088142395], "mean": [-0.1370154172182083, -0.09020134061574936, 0.12772703170776367, 0.2785354256629944, 0.5148100852966309, 0.20736008882522583, 0.7836108207702637, 0.11040614545345306, -0.10409818589687347, 0.10297775268554688, 0.0894390270113945, -0.22877997159957886, 0.38923701643943787, 0.875554084777832], "std": [0.0007614745991304517, 0.0006177634932100773, 0.00045779335778206587, 0.011692982167005539, 0.009759513661265373, 0.00700359046459198, 0.007969657890498638, 0.0034467484802007675, 0.009763676673173904, 0.006366709712892771, 0.11391275376081467, 0.08185073733329773, 0.03500660881400108, 0.025661956518888474], "count": [211]}, "timestamp": {"min": [0.0], "max": [7.0], "mean": [3.5], "std": [2.030325644378808], "count": [211]}, "frame_index": {"min": [0], "max": [210], "mean": [105.0], "std": [60.909769331364245], "count": [211]}, "episode_index": {"min": [686], "max": [686], "mean": [686.0], "std": [0.0], "count": [211]}, "index": {"min": [367991], "max": [368201], "mean": [368096.0], "std": [60.909769331364245], "count": [211]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [211]}}} +{"episode_index": 687, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49470730664488016]], [[0.4786635403050109]], [[0.4461856345315904]]], "std": [[[0.24310236150431366]], [[0.23995968730589018]], [[0.24419509628321834]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5085923720043573]], [[0.5046858578431372]], [[0.4742856018518518]]], "std": [[[0.23560942610612848]], [[0.21934861644727405]], [[0.23281071509711776]]], "count": [100]}, "observation.state": {"min": [0.3491756319999695, -0.08518174290657043, 0.12511402368545532, -4.53810977935791, -0.7260863780975342, 0.0618482306599617, -0.587120771408081, -0.2771534323692322, 0.16971546411514282, 2.09899640083313, -0.5647186636924744, -0.39570730924606323], "max": [0.36000290513038635, -0.08073344826698303, 0.12878641486167908, -4.5370612144470215, -0.6594077348709106, 0.14550411701202393, -0.48525792360305786, -0.18424895405769348, 0.19879643619060516, 2.8844947814941406, 0.48984184861183167, 0.8847710490226746], "mean": [0.3541176915168762, -0.08348843455314636, 0.12761850655078888, -4.537786960601807, -0.6911829113960266, 0.11505333334207535, -0.5428362488746643, -0.23482730984687805, 0.18216407299041748, 2.4223389625549316, -0.17496822774410248, 0.2733227014541626], "std": [0.0025735925883054733, 0.0010783373145386577, 0.0011212319368496537, 0.0002471126208547503, 0.027120262384414673, 0.034707389771938324, 0.032826896756887436, 0.030837692320346832, 0.007876131683588028, 0.21188755333423615, 0.34276172518730164, 0.39725542068481445], "count": [210]}, "action": {"min": [-0.136727437376976, -0.09048321843147278, 0.1269449144601822, 0.1874019205570221, 0.42230263352394104, 0.23333945870399475, 0.8285549283027649, 0.10427482426166534, -0.11834080517292023, 0.09392940253019333, -0.11697954684495926, -0.5460394024848938, -0.09545121341943741, 0.7802864909172058], "max": [-0.13561181724071503, -0.08794669061899185, 0.13062246143817902, 0.22256280481815338, 0.45786193013191223, 0.25324785709381104, 0.8518101572990417, 0.11833370476961136, -0.10182350128889084, 0.11901844292879105, 0.24665841460227966, -0.0941942110657692, 0.4863700568675995, 0.9150019884109497], "mean": [-0.1359313726425171, -0.08981282263994217, 0.12924236059188843, 0.2010154128074646, 0.4395289123058319, 0.2429506778717041, 0.8407660126686096, 0.1124897375702858, -0.10714729130268097, 0.10709647834300995, 0.05267748236656189, -0.3330404758453369, 0.2716473639011383, 0.8612919449806213], "std": [0.0002449914172757417, 0.0007931574946269393, 0.001067416393198073, 0.013033485971391201, 0.014402735978364944, 0.005558587610721588, 0.009321517311036587, 0.004546985495835543, 0.004956403747200966, 0.006519610527902842, 0.12369225919246674, 0.13844077289104462, 0.18839497864246368, 0.02711108699440956], "count": [210]}, "timestamp": {"min": [0.0], "max": [6.966666666666667], "mean": [3.4833333333333334], "std": [2.0207030313088414], "count": [210]}, "frame_index": {"min": [0], "max": [209], "mean": [104.5], "std": [60.621090939265244], "count": [210]}, "episode_index": {"min": [687], "max": [687], "mean": [687.0], "std": [0.0], "count": [210]}, "index": {"min": [368202], "max": [368411], "mean": [368306.5], "std": [60.621090939265244], "count": [210]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [210]}}} +{"episode_index": 688, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5512724782135077]], [[0.5220848583877996]], [[0.4855974346405229]]], "std": [[[0.22066019154428065]], [[0.21758372374647053]], [[0.22190957082306673]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5627278540305011]], [[0.5442279330065359]], [[0.5109649210239652]]], "std": [[[0.20947071896228317]], [[0.19258185630131508]], [[0.20569612666952453]]], "count": [100]}, "observation.state": {"min": [0.34915247559547424, -0.105909563601017, 0.13241083920001984, -4.544190883636475, -0.8099811673164368, -0.20599612593650818, -0.6269546151161194, -0.2956880033016205, 0.17010435461997986, 2.090818405151367, -0.45404309034347534, -0.14705273509025574], "max": [0.38336417078971863, -0.08257146179676056, 0.13512785732746124, -4.1074066162109375, -0.6640533804893494, 0.3090115189552307, -0.5178632736206055, -0.18892894685268402, 0.19404424726963043, 2.5380871295928955, -0.04372368007898331, 0.5324130654335022], "mean": [0.3632698059082031, -0.09035792201757431, 0.13431556522846222, -4.476176738739014, -0.7016897797584534, 0.15447929501533508, -0.5631112456321716, -0.22437319159507751, 0.1806466430425644, 2.2974395751953125, -0.22685718536376953, 0.033196523785591125], "std": [0.010059080086648464, 0.0034409044310450554, 0.0006514432025142014, 0.0960247740149498, 0.03504578769207001, 0.15364709496498108, 0.03208019956946373, 0.0274424459785223, 0.007884519174695015, 0.1374596506357193, 0.07847455888986588, 0.12393791228532791], "count": [165]}, "action": {"min": [-0.13468030095100403, -0.09464971721172333, 0.13038840889930725, 0.12333233654499054, 0.4026113450527191, 0.2415769249200821, 0.7654189467430115, 0.10303005576133728, -0.11696099489927292, 0.09501619637012482, -0.09984822571277618, -0.39655572175979614, 0.20206569135189056, 0.8348971605300903], "max": [-0.12908266484737396, -0.09131872653961182, 0.13399291038513184, 0.28140223026275635, 0.48617997765541077, 0.375130295753479, 0.8629595637321472, 0.11976560205221176, -0.09250935912132263, 0.1146894246339798, 0.24662071466445923, -0.248795285820961, 0.41773703694343567, 0.9322338104248047], "mean": [-0.13220147788524628, -0.09378104656934738, 0.13333484530448914, 0.1792314052581787, 0.43090224266052246, 0.2812696397304535, 0.8356762528419495, 0.1108480766415596, -0.10464826971292496, 0.10628849267959595, 0.18306966125965118, -0.286937415599823, 0.2975985109806061, 0.8865922689437866], "std": [0.0018088060896843672, 0.0004998535732738674, 0.0005101963761262596, 0.05383218079805374, 0.024792566895484924, 0.021679678931832314, 0.027370348572731018, 0.0035920864902436733, 0.008086398243904114, 0.0054594906978309155, 0.05912192165851593, 0.037226200103759766, 0.061457645148038864, 0.029714757576584816], "count": [165]}, "timestamp": {"min": [0.0], "max": [5.466666666666667], "mean": [2.7333333333333325], "std": [1.587684080899201], "count": [165]}, "frame_index": {"min": [0], "max": [164], "mean": [82.0], "std": [47.63052242697603], "count": [165]}, "episode_index": {"min": [688], "max": [688], "mean": [688.0], "std": [0.0], "count": [165]}, "index": {"min": [368412], "max": [368576], "mean": [368494.0], "std": [47.63052242697603], "count": [165]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [165]}}} +{"episode_index": 689, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5532488807189543]], [[0.5262749509803921]], [[0.49109066176470584]]], "std": [[[0.22408420042373864]], [[0.2207781243976496]], [[0.2245040959793213]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5628929711328976]], [[0.547060114379085]], [[0.5149410811546841]]], "std": [[[0.2136518986580089]], [[0.19622406062154404]], [[0.20830344854729718]]], "count": [100]}, "observation.state": {"min": [0.3490520715713501, -0.09939929097890854, 0.13386528193950653, -4.5383195877075195, -0.8008265495300293, 0.026447640731930733, -0.5893526673316956, -0.24465617537498474, 0.17449748516082764, 1.9490680694580078, -0.4164680540561676, -0.4813850522041321], "max": [0.3585664927959442, -0.08807776868343353, 0.13416731357574463, -4.537690162658691, -0.7140623331069946, 0.2933722734451294, -0.41916677355766296, -0.1629033237695694, 0.1977386772632599, 2.6762728691101074, 0.5496886372566223, 0.5972619652748108], "mean": [0.3543227016925812, -0.0945497527718544, 0.13398553431034088, -4.537935256958008, -0.7614313960075378, 0.15319177508354187, -0.5108329653739929, -0.20528312027454376, 0.1829782873392105, 2.272907257080078, -0.009782154113054276, 0.02063150517642498], "std": [0.003581924829632044, 0.004443361423909664, 0.00010524347453610972, 0.00028249542810954154, 0.0394749641418457, 0.11886574327945709, 0.06481795012950897, 0.033120933920145035, 0.007894225418567657, 0.2601591944694519, 0.41377323865890503, 0.45590466260910034], "count": [152]}, "action": {"min": [-0.13422958552837372, -0.0950966328382492, 0.13191477954387665, 0.1269640326499939, 0.42638495564460754, 0.238515242934227, 0.8037547469139099, 0.10437824577093124, -0.11754503846168518, 0.10377825796604156, 0.057790372520685196, -0.5123080015182495, -0.09293431788682938, 0.8041141033172607], "max": [-0.1328728049993515, -0.09361637383699417, 0.13329191505908966, 0.2333822101354599, 0.49248602986335754, 0.2865349054336548, 0.8485122919082642, 0.1290823370218277, -0.09919699281454086, 0.1175873652100563, 0.33133161067962646, -0.13582934439182281, 0.5087366700172424, 0.9060256481170654], "mean": [-0.1334574669599533, -0.0944627895951271, 0.13259637355804443, 0.18297642469406128, 0.4616309702396393, 0.2617925703525543, 0.8251648545265198, 0.11526265740394592, -0.1053805723786354, 0.11189710348844528, 0.19703924655914307, -0.305667906999588, 0.22397533059120178, 0.851711094379425], "std": [0.0004887921386398375, 0.0004991731257177889, 0.000553174177184701, 0.04764391481876373, 0.02954855188727379, 0.021084044128656387, 0.01989978365600109, 0.009935412555932999, 0.006040223408490419, 0.0033622444607317448, 0.10488936305046082, 0.15534570813179016, 0.2369169145822525, 0.030042828992009163], "count": [152]}, "timestamp": {"min": [0.0], "max": [5.033333333333333], "mean": [2.5166666666666666], "std": [1.4625890286292547], "count": [152]}, "frame_index": {"min": [0], "max": [151], "mean": [75.5], "std": [43.877670858877636], "count": [152]}, "episode_index": {"min": [689], "max": [689], "mean": [689.0], "std": [0.0], "count": [152]}, "index": {"min": [368577], "max": [368728], "mean": [368652.5], "std": [43.877670858877636], "count": [152]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [152]}}} +{"episode_index": 690, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5404845642701525]], [[0.5158375462962963]], [[0.480648924291939]]], "std": [[[0.21863074636354327]], [[0.213979724150008]], [[0.2164110653001191]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5467745969498911]], [[0.5338743055555555]], [[0.5020860430283225]]], "std": [[[0.20847585742919852]], [[0.18976164933126902]], [[0.20063328280329917]]], "count": [100]}, "observation.state": {"min": [0.3418622314929962, -0.08554471284151077, 0.1277623325586319, -4.53810977935791, -0.638775646686554, 0.2511231303215027, -0.6163899302482605, -0.2903129756450653, 0.16926047205924988, 3.8859739303588867, -0.032929401844739914, -0.8867998123168945], "max": [0.3518168330192566, -0.07796099036931992, 0.12868399918079376, -4.537690162658691, -0.6267516016960144, 0.3190702497959137, -0.524427592754364, -0.20235104858875275, 0.19720588624477386, 4.540835857391357, 0.5229078531265259, -0.3153707683086395], "mean": [0.3466462194919586, -0.08170575648546219, 0.1280723512172699, -4.537984848022461, -0.6299896836280823, 0.3090517520904541, -0.5868330001831055, -0.2444506585597992, 0.18312862515449524, 4.294306755065918, 0.24027389287948608, -0.6902933716773987], "std": [0.004337577614933252, 0.0027278242632746696, 0.0003253498871345073, 0.00018994728452526033, 0.0026821529027074575, 0.012640954926609993, 0.020389674231410027, 0.026111403480172157, 0.010443714447319508, 0.1976293921470642, 0.17585517466068268, 0.1570555716753006], "count": [184]}, "action": {"min": [-0.13807211816310883, -0.09105020761489868, 0.13003429770469666, 0.11602883785963058, 0.3839530348777771, 0.2625747323036194, 0.8658053278923035, 0.10285216569900513, -0.1216306984424591, 0.09003909677267075, -0.1408226490020752, -0.3390498459339142, 0.8728949427604675, 0.012362450361251831], "max": [-0.13627047836780548, -0.08984483033418655, 0.13093778491020203, 0.14808642864227295, 0.3993821442127228, 0.2730794847011566, 0.8745607733726501, 0.1138760969042778, -0.0943213403224945, 0.11145646125078201, 0.07741012424230576, 0.002412805100902915, 0.9976984262466431, 0.3623575270175934], "mean": [-0.13723187148571014, -0.09036599099636078, 0.13051898777484894, 0.1221219152212143, 0.38704684376716614, 0.2715985178947449, 0.8726181983947754, 0.10724325478076935, -0.10930924117565155, 0.10233031958341599, -0.0321417860686779, -0.1048646941781044, 0.9609110355377197, 0.19753339886665344], "std": [0.0007653685170225799, 0.0004240982816554606, 0.0002868729061447084, 0.006061825901269913, 0.002968480344861746, 0.0019099987111985683, 0.001750171766616404, 0.0026491645257920027, 0.010442535392940044, 0.005120731890201569, 0.04710569232702255, 0.0867801308631897, 0.029686735942959785, 0.12234985083341599], "count": [184]}, "timestamp": {"min": [0.0], "max": [6.1], "mean": [3.0500000000000003], "std": [1.7705146772117486], "count": [184]}, "frame_index": {"min": [0], "max": [183], "mean": [91.5], "std": [53.115440316352455], "count": [184]}, "episode_index": {"min": [690], "max": [690], "mean": [690.0], "std": [0.0], "count": [184]}, "index": {"min": [368729], "max": [368912], "mean": [368820.5], "std": [53.115440316352455], "count": [184]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [184]}}} +{"episode_index": 691, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5570558061002179]], [[0.5313215005446623]], [[0.4962729765795207]]], "std": [[[0.22038515483520166]], [[0.21872004252835422]], [[0.22291105892378635]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5677625762527233]], [[0.5529053267973856]], [[0.5209071323529412]]], "std": [[[0.2091457104651731]], [[0.19392264031667397]], [[0.207043561904437]]], "count": [100]}, "observation.state": {"min": [0.35621878504753113, -0.09468071162700653, 0.12967178225517273, -4.5383195877075195, -0.7141990065574646, 0.1430012732744217, -0.6094394326210022, -0.31096357107162476, 0.16833621263504028, 2.043428421020508, -0.6441044807434082, -0.2761792540550232], "max": [0.36377933621406555, -0.08174513280391693, 0.13008010387420654, -4.53748083114624, -0.6416450142860413, 0.34815874695777893, -0.4602903127670288, -0.1842644065618515, 0.19564126431941986, 3.429269313812256, 0.36427292227745056, 0.8796987533569336], "mean": [0.3609012961387634, -0.08939342200756073, 0.1299745887517929, -4.537926197052002, -0.6833428144454956, 0.23411452770233154, -0.5182110071182251, -0.22933319211006165, 0.17849946022033691, 2.3742027282714844, -0.06944864988327026, 0.3620947301387787], "std": [0.0022881287150084972, 0.005364479962736368, 0.00010918806947302073, 0.00020090029283892363, 0.032847341150045395, 0.09571453183889389, 0.04657891392707825, 0.04190056398510933, 0.008916483260691166, 0.34570789337158203, 0.3539007306098938, 0.4449992775917053], "count": [179]}, "action": {"min": [-0.13470838963985443, -0.09246323257684708, 0.12954163551330566, 0.10562717169523239, 0.39271223545074463, 0.25379493832588196, 0.8361840844154358, 0.10776843130588531, -0.11776522547006607, 0.0928400307893753, -0.28665459156036377, -0.47953543066978455, -0.0813501626253128, 0.6354026198387146], "max": [-0.13382069766521454, -0.0905655100941658, 0.13087671995162964, 0.1926232874393463, 0.4463903307914734, 0.285160630941391, 0.8681899905204773, 0.1268112063407898, -0.09752888232469559, 0.11642567813396454, 0.24999919533729553, -0.18251948058605194, 0.6192299723625183, 0.9128933548927307], "mean": [-0.13410358130931854, -0.09174208343029022, 0.13013683259487152, 0.15379005670547485, 0.42331230640411377, 0.2679109275341034, 0.8501102924346924, 0.11688309162855148, -0.1054641455411911, 0.10631962865591049, 0.03110910952091217, -0.3548358678817749, 0.21613158285617828, 0.8552829027175903], "std": [0.00024755849153734744, 0.0007009651162661612, 0.0005477247177623212, 0.040730588138103485, 0.02464842051267624, 0.014369306154549122, 0.014777963049709797, 0.0074859182350337505, 0.006772204302251339, 0.006074088625609875, 0.14410154521465302, 0.11188363283872604, 0.24185779690742493, 0.05588711053133011], "count": [179]}, "timestamp": {"min": [0.0], "max": [5.933333333333334], "mean": [2.9666666666666663], "std": [1.7224014243685084], "count": [179]}, "frame_index": {"min": [0], "max": [178], "mean": [89.0], "std": [51.67204273105525], "count": [179]}, "episode_index": {"min": [691], "max": [691], "mean": [691.0], "std": [0.0], "count": [179]}, "index": {"min": [368913], "max": [369091], "mean": [369002.0], "std": [51.67204273105525], "count": [179]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [179]}}} +{"episode_index": 692, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5746751062091503]], [[0.5432631644880175]], [[0.5081139433551198]]], "std": [[[0.23096092542488714]], [[0.2281321268631384]], [[0.2347023904162593]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5883694662309369]], [[0.5664943736383442]], [[0.5349820016339869]]], "std": [[[0.21921560672725016]], [[0.20275212628476555]], [[0.21739914555133902]]], "count": [100]}, "observation.state": {"min": [0.3761357069015503, -0.09696663171052933, 0.13040676712989807, -4.53810977935791, -0.8552078604698181, 0.1469915807247162, -0.5474645495414734, -0.3052719235420227, 0.1633429080247879, 2.093334674835205, -0.4887487590312958, -0.1520090401172638], "max": [0.38554972410202026, -0.09148348867893219, 0.13110287487506866, -4.537690162658691, -0.6294843554496765, 0.3314485251903534, -0.4621824026107788, -0.1630423367023468, 0.18775983154773712, 2.576460361480713, 0.5216781497001648, 0.8768801093101501], "mean": [0.38267889618873596, -0.09216339141130447, 0.13048405945301056, -4.53775691986084, -0.6389786601066589, 0.319400429725647, -0.5161709189414978, -0.22248509526252747, 0.175093874335289, 2.382542371749878, -0.1648118942975998, 0.3313089609146118], "std": [0.0016347013879567385, 0.0008732998976483941, 9.990033868234605e-05, 0.00015326240099966526, 0.036116138100624084, 0.032982923090457916, 0.025660617277026176, 0.04422002658247948, 0.006589082069694996, 0.16995586454868317, 0.36315664649009705, 0.3365056812763214], "count": [164]}, "action": {"min": [-0.13114288449287415, -0.09208526462316513, 0.12813293933868408, 0.11836492270231247, 0.3980056345462799, 0.269985169172287, 0.7955222725868225, 0.11303996294736862, -0.10920602083206177, 0.09117413312196732, -0.1154182031750679, -0.5321024656295776, -0.10799518972635269, 0.8385998606681824], "max": [-0.1302427500486374, -0.09164167940616608, 0.1293506622314453, 0.18026243150234222, 0.507712185382843, 0.282626211643219, 0.8647201657295227, 0.12734191119670868, -0.09622795879840851, 0.11579913645982742, 0.19993461668491364, -0.18134522438049316, 0.4378912150859833, 0.9134924411773682], "mean": [-0.1306931972503662, -0.09191349893808365, 0.12923380732536316, 0.12270139902830124, 0.40297093987464905, 0.2815099060535431, 0.8618157505989075, 0.11961434781551361, -0.1022450253367424, 0.1060292199254036, 0.036984868347644806, -0.3256188631057739, 0.25589460134506226, 0.8760998249053955], "std": [0.00022017754963599145, 0.0001073284656740725, 0.00018905947217717767, 0.011255677789449692, 0.018074968829751015, 0.0018132879631593823, 0.011290236376225948, 0.004144733771681786, 0.004053764510899782, 0.007003204897046089, 0.08332809805870056, 0.12155197560787201, 0.1936006098985672, 0.01929629221558571], "count": [164]}, "timestamp": {"min": [0.0], "max": [5.433333333333334], "mean": [2.7166666666666663], "std": [1.5780613986083616], "count": [164]}, "frame_index": {"min": [0], "max": [163], "mean": [81.5], "std": [47.341841958250846], "count": [164]}, "episode_index": {"min": [692], "max": [692], "mean": [692.0], "std": [0.0], "count": [164]}, "index": {"min": [369092], "max": [369255], "mean": [369173.5], "std": [47.341841958250846], "count": [164]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [164]}}} +{"episode_index": 693, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5435789569716776]], [[0.5174355038126361]], [[0.48204647603485834]]], "std": [[[0.22662405959919912]], [[0.22142619933661406]], [[0.22505869259840536]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.552607908496732]], [[0.5383138235294118]], [[0.5066468954248367]]], "std": [[[0.21594546735803616]], [[0.1969906239781844]], [[0.20803563570452496]]], "count": [100]}, "observation.state": {"min": [0.3740428388118744, -0.08732865750789642, 0.13097065687179565, -4.53810977935791, -0.7689902186393738, 0.2607651948928833, -0.5913296341896057, -0.28806567192077637, 0.1619843989610672, 2.8779945373535156, -0.6267516016960144, -0.8314878344535828], "max": [0.3795646131038666, -0.08558332920074463, 0.13182492554187775, -4.537690162658691, -0.7428926229476929, 0.334227055311203, -0.47817617654800415, -0.2199743241071701, 0.20333993434906006, 4.544190883636475, 0.8297934532165527, 0.5255981683731079], "mean": [0.3773617744445801, -0.08640723675489426, 0.1314951628446579, -4.53786563873291, -0.7504268884658813, 0.32392290234565735, -0.5358770489692688, -0.25128230452537537, 0.18269653618335724, 4.456717491149902, 0.15530019998550415, -0.5846337080001831], "std": [0.0016023849602788687, 0.0005910979816690087, 0.00022139339125715196, 0.0001321441523032263, 0.0067237745970487595, 0.01148817129433155, 0.02655787020921707, 0.018476342782378197, 0.01142370980232954, 0.23194259405136108, 0.4337905943393707, 0.19517934322357178], "count": [197]}, "action": {"min": [-0.13121412694454193, -0.09139826148748398, 0.12980400025844574, 0.1060253456234932, 0.4380151927471161, 0.2897111177444458, 0.8295790553092957, 0.10684223473072052, -0.126002699136734, 0.0916847437620163, -0.3810742497444153, -0.418023943901062, 0.43871957063674927, -0.10018342733383179], "max": [-0.1301390528678894, -0.0908365249633789, 0.13052178919315338, 0.13601310551166534, 0.4549937844276428, 0.3051675260066986, 0.8397210240364075, 0.12698210775852203, -0.09870360046625137, 0.11713707447052002, 0.11431227624416351, 0.005973189137876034, 0.9998450875282288, 0.7776307463645935], "mean": [-0.1306477040052414, -0.09122000634670258, 0.1302230954170227, 0.11003587394952774, 0.44353586435317993, 0.302671879529953, 0.8363650441169739, 0.1144750639796257, -0.11105795949697495, 0.10513930022716522, -0.11157042533159256, -0.11065606027841568, 0.9440524578094482, 0.14632263779640198], "std": [0.00031759534613229334, 0.00014759071927983314, 0.00017461474635638297, 0.004591040313243866, 0.00451666209846735, 0.0017256494611501694, 0.0026406210381537676, 0.0050437054596841335, 0.008589629083871841, 0.006874429062008858, 0.13756199181079865, 0.07688461244106293, 0.07658116519451141, 0.17878103256225586], "count": [197]}, "timestamp": {"min": [0.0], "max": [6.533333333333333], "mean": [3.2666666666666666], "std": [1.8956089610817242], "count": [197]}, "frame_index": {"min": [0], "max": [196], "mean": [98.0], "std": [56.868268832451726], "count": [197]}, "episode_index": {"min": [693], "max": [693], "mean": [693.0], "std": [0.0], "count": [197]}, "index": {"min": [369256], "max": [369452], "mean": [369354.0], "std": [56.868268832451726], "count": [197]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [197]}}} +{"episode_index": 694, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5463947930283225]], [[0.5197669526143791]], [[0.4845450108932462]]], "std": [[[0.22303829769423208]], [[0.21832016549936326]], [[0.22143960312797542]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5564488916122005]], [[0.541160468409586]], [[0.5092599101307189]]], "std": [[[0.21070294496552677]], [[0.19231806907926427]], [[0.20359829048803896]]], "count": [100]}, "observation.state": {"min": [0.3375452160835266, -0.10344600677490234, 0.12912215292453766, -4.537899971008301, -0.8703745007514954, -0.015515630133450031, -0.5786026120185852, -0.3225939869880676, 0.1662219762802124, 2.0658652782440186, -0.8198189735412598, -0.018253780901432037], "max": [0.37995073199272156, -0.08261779695749283, 0.13121825456619263, -4.451717376708984, -0.7725427746772766, 0.3092261552810669, -0.49003827571868896, -0.1912766546010971, 0.2009897530078888, 3.5626320838928223, 0.19388718903064728, 0.8061634302139282], "mean": [0.36460715532302856, -0.09150699526071548, 0.12983816862106323, -4.520379543304443, -0.8143348097801208, 0.168958380818367, -0.5352274179458618, -0.26223137974739075, 0.18026626110076904, 2.4142003059387207, -0.16105468571186066, 0.3369789123535156], "std": [0.015373585745692253, 0.004877449944615364, 0.0007017832831479609, 0.031149568036198616, 0.04041629284620285, 0.12184999883174896, 0.02052001655101776, 0.03946100175380707, 0.010707893408834934, 0.38308992981910706, 0.26266148686408997, 0.26003706455230713], "count": [220]}, "action": {"min": [-0.13741949200630188, -0.09287424385547638, 0.1275099217891693, 0.11040440946817398, 0.4570748507976532, 0.23534873127937317, 0.7835341691970825, 0.1041867658495903, -0.12474699318408966, 0.09135725349187851, -0.3910418748855591, -0.43931740522384644, 0.0049985372461378574, 0.5885988473892212], "max": [-0.13017582893371582, -0.08966036885976791, 0.13017721474170685, 0.24456985294818878, 0.519266664981842, 0.3055739998817444, 0.8285817503929138, 0.12506024539470673, -0.09612356871366501, 0.11549638211727142, 0.2676096260547638, -0.28352832794189453, 0.6226227879524231, 0.9116217494010925], "mean": [-0.13307903707027435, -0.09102656692266464, 0.1288764774799347, 0.1677544265985489, 0.4812060594558716, 0.2826314866542816, 0.8105904459953308, 0.11462666839361191, -0.11001451313495636, 0.10310406982898712, 0.03575940430164337, -0.3695572018623352, 0.26551297307014465, 0.8524812459945679], "std": [0.0024560673628002405, 0.0008771189022809267, 0.0007631134940311313, 0.044785209000110626, 0.024701332673430443, 0.02037331834435463, 0.018209587782621384, 0.00615845387801528, 0.008381027728319168, 0.006769775878638029, 0.17162778973579407, 0.04311589524149895, 0.1656193733215332, 0.07862937450408936], "count": [220]}, "timestamp": {"min": [0.0], "max": [7.3], "mean": [3.65], "std": [2.116929117587287], "count": [220]}, "frame_index": {"min": [0], "max": [219], "mean": [109.5], "std": [63.50787352761861], "count": [220]}, "episode_index": {"min": [694], "max": [694], "mean": [694.0], "std": [0.0], "count": [220]}, "index": {"min": [369453], "max": [369672], "mean": [369562.5], "std": [63.50787352761861], "count": [220]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [220]}}} +{"episode_index": 695, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5457871949891068]], [[0.517734596949891]], [[0.4822810266884532]]], "std": [[[0.2225593414372047]], [[0.21736759272461484]], [[0.22107487344893165]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5552869852941177]], [[0.5390006290849673]], [[0.5072361328976035]]], "std": [[[0.21180666082206237]], [[0.19269588723479816]], [[0.20443143699882121]]], "count": [100]}, "observation.state": {"min": [0.3533690869808197, -0.10923033207654953, 0.1289147436618805, -4.442071914672852, -0.8759766221046448, -0.30993005633354187, -0.5992377400398254, -0.29443690180778503, 0.16825714707374573, 2.2168421745300293, -0.32341858744621277, -0.23084643483161926], "max": [0.3778347074985504, -0.09564605355262756, 0.13466249406337738, -3.796226739883423, -0.729502260684967, 0.05743918940424919, -0.5269529223442078, -0.21642959117889404, 0.19940310716629028, 2.8553478717803955, -0.09591881930828094, 0.4752318859100342], "mean": [0.362437903881073, -0.0991605818271637, 0.13261838257312775, -4.201267719268799, -0.7569155693054199, -0.07717198878526688, -0.5595737099647522, -0.25437653064727783, 0.17943710088729858, 2.4015159606933594, -0.22370080649852753, 0.12680678069591522], "std": [0.008057313039898872, 0.0032379301264882088, 0.0016873994609341025, 0.2214619219303131, 0.0454634390771389, 0.11197873204946518, 0.022221166640520096, 0.02030586265027523, 0.010182257741689682, 0.11769762635231018, 0.06478538364171982, 0.2482520341873169], "count": [183]}, "action": {"min": [-0.13479533791542053, -0.09487120807170868, 0.12916520237922668, 0.21288268268108368, 0.39664405584335327, 0.2810786962509155, 0.716446042060852, 0.10416553169488907, -0.12124163657426834, 0.09397376328706741, -0.037792887538671494, -0.40392252802848816, 0.20750389993190765, 0.7866109013557434], "max": [-0.13202627003192902, -0.09010139107704163, 0.13353240489959717, 0.277439683675766, 0.5134271383285522, 0.4900095462799072, 0.8211120367050171, 0.12245378643274307, -0.0954783707857132, 0.11530321091413498, 0.32622525095939636, -0.23408441245555878, 0.474848210811615, 0.9273988604545593], "mean": [-0.1333867907524109, -0.09274370968341827, 0.1319979876279831, 0.23998844623565674, 0.43471693992614746, 0.3610285222530365, 0.7841634154319763, 0.11225881427526474, -0.10768752545118332, 0.10251246392726898, 0.12793509662151337, -0.3226224184036255, 0.32571467757225037, 0.8677886128425598], "std": [0.0006789765902794898, 0.0016687482129782438, 0.0012938730651512742, 0.01906789466738701, 0.03474026918411255, 0.0750170648097992, 0.031236501410603523, 0.0058402628637850285, 0.00737019395455718, 0.006273022852838039, 0.12237535417079926, 0.03605266660451889, 0.05721544101834297, 0.029170628637075424], "count": [183]}, "timestamp": {"min": [0.0], "max": [6.066666666666666], "mean": [3.0333333333333337], "std": [1.760892029836225], "count": [183]}, "frame_index": {"min": [0], "max": [182], "mean": [91.0], "std": [52.82676089508675], "count": [183]}, "episode_index": {"min": [695], "max": [695], "mean": [695.0], "std": [0.0], "count": [183]}, "index": {"min": [369673], "max": [369855], "mean": [369764.0], "std": [52.82676089508675], "count": [183]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [183]}}} +{"episode_index": 696, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5567978867102396]], [[0.5281905201525054]], [[0.49191693355119825]]], "std": [[[0.22575857085287238]], [[0.22278835394725122]], [[0.2277661349071973]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5698643627450981]], [[0.5512249210239651]], [[0.5181293464052288]]], "std": [[[0.21215161921159095]], [[0.19631704579946282]], [[0.21003759542516665]]], "count": [100]}, "observation.state": {"min": [0.3569369912147522, -0.09623297303915024, 0.13131417334079742, -4.513366222381592, -0.8769330382347107, -0.09384434670209885, -0.541958212852478, -0.27027249336242676, 0.1611819863319397, 2.0149106979370117, -0.3086618483066559, -0.1290358453989029], "max": [0.3607597351074219, -0.09285041689872742, 0.13539879024028778, -4.365325450897217, -0.817632794380188, 0.010824750177562237, -0.4395239055156708, -0.17007002234458923, 0.194075345993042, 2.5575883388519287, 0.6241555213928223, 1.001904010772705], "mean": [0.3589741289615631, -0.09484725445508957, 0.13331004977226257, -4.450141429901123, -0.8472525477409363, -0.03396989032626152, -0.4963853657245636, -0.22708135843276978, 0.17903153598308563, 2.3411130905151367, 0.024871401488780975, 0.4179055690765381], "std": [0.001435337122529745, 0.0009281437960453331, 0.0016114147147163749, 0.06609762459993362, 0.022971443831920624, 0.0469977967441082, 0.02845916897058487, 0.03442186862230301, 0.008594627492129803, 0.19022084772586823, 0.3265064060688019, 0.36330148577690125], "count": [192]}, "action": {"min": [-0.13324397802352905, -0.09466949850320816, 0.1301051676273346, 0.23091743886470795, 0.49939993023872375, 0.24851645529270172, 0.7679963111877441, 0.10977394133806229, -0.11760815232992172, 0.09482441842556, -0.0979677140712738, -0.533051609992981, -0.19771061837673187, 0.8279618620872498], "max": [-0.13217563927173615, -0.09142260998487473, 0.13321450352668762, 0.24703451991081238, 0.5151255130767822, 0.2948979139328003, 0.7954442501068115, 0.12940433621406555, -0.09899286925792694, 0.11679429560899734, 0.20784352719783783, -0.242069810628891, 0.42386123538017273, 0.9033483266830444], "mean": [-0.13275229930877686, -0.09304806590080261, 0.1316356211900711, 0.2382301688194275, 0.5068222284317017, 0.26859474182128906, 0.7833260893821716, 0.11974044889211655, -0.1068677306175232, 0.10826143622398376, 0.04684588313102722, -0.39305225014686584, 0.19670915603637695, 0.8599392771720886], "std": [0.0003914525150321424, 0.001279649673961103, 0.0012378307292237878, 0.0068093156442046165, 0.004859280306845903, 0.02042672038078308, 0.012162654660642147, 0.005336852744221687, 0.005387815181165934, 0.006600832100957632, 0.1035531759262085, 0.09157079458236694, 0.21366573870182037, 0.019071508198976517], "count": [192]}, "timestamp": {"min": [0.0], "max": [6.366666666666666], "mean": [3.1833333333333336], "std": [1.847495802631427], "count": [192]}, "frame_index": {"min": [0], "max": [191], "mean": [95.5], "std": [55.42487407894281], "count": [192]}, "episode_index": {"min": [696], "max": [696], "mean": [696.0], "std": [0.0], "count": [192]}, "index": {"min": [369856], "max": [370047], "mean": [369951.5], "std": [55.42487407894281], "count": [192]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [192]}}} +{"episode_index": 697, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5511039869281046]], [[0.5233653676470588]], [[0.4877915223311547]]], "std": [[[0.22258108340727362]], [[0.21888792952839334]], [[0.22269690440176385]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.562922205882353]], [[0.5461190168845316]], [[0.5136470479302832]]], "std": [[[0.21027065809856652]], [[0.1925961742480949]], [[0.2047921877577425]]], "count": [100]}, "observation.state": {"min": [0.3514847457408905, -0.09455713629722595, 0.13326120376586914, -4.537899971008301, -0.8293835520744324, -0.009679529815912247, -0.576718270778656, -0.25578463077545166, 0.16090847551822662, 2.9954209327697754, -0.35183897614479065, -0.517519474029541], "max": [0.3600492477416992, -0.08955281227827072, 0.13471175730228424, -4.506446361541748, -0.8164030909538269, 0.09262832254171371, -0.5011976361274719, -0.17915968596935272, 0.1964462697505951, 4.545868396759033, 0.6175969839096069, 0.34075337648391724], "mean": [0.3538084924221039, -0.09212013334035873, 0.1339375376701355, -4.527080059051514, -0.8235517740249634, 0.05565398931503296, -0.5451524257659912, -0.21911819279193878, 0.18062765896320343, 4.505266189575195, 0.22931723296642303, -0.34668782353401184], "std": [0.0026123414281755686, 0.001630410086363554, 0.0005088979960419238, 0.011573591269552708, 0.003164285095408559, 0.03517242148518562, 0.01589602418243885, 0.024799752980470657, 0.008972843177616596, 0.18211844563484192, 0.2780206501483917, 0.13524794578552246], "count": [169]}, "action": {"min": [-0.13378089666366577, -0.09402181953191757, 0.13181942701339722, 0.20061522722244263, 0.493153840303421, 0.24405783414840698, 0.7946981191635132, 0.11042309552431107, -0.11913367360830307, 0.09477891027927399, -0.24155448377132416, -0.4028777480125427, 0.5129223465919495, -0.01807118020951748], "max": [-0.13208596408367157, -0.09332413971424103, 0.13321328163146973, 0.24021577835083008, 0.5012640357017517, 0.2568034529685974, 0.8066748380661011, 0.1258452981710434, -0.09493744373321533, 0.1153787299990654, 0.04617898911237717, -0.14962922036647797, 0.9878002405166626, 0.7546895742416382], "mean": [-0.13331922888755798, -0.09370535612106323, 0.13249571621418, 0.21475328505039215, 0.49718666076660156, 0.25307589769363403, 0.8015087842941284, 0.11394809186458588, -0.10585611313581467, 0.1071883961558342, -0.10987325012683868, -0.21509745717048645, 0.9482718706130981, 0.10671412199735641], "std": [0.00044850329868495464, 0.0001567469589645043, 0.0005321286735124886, 0.013511203229427338, 0.002853503916412592, 0.00362780736759305, 0.004319087602198124, 0.00341145065613091, 0.008197697810828686, 0.004723234102129936, 0.1041717380285263, 0.06302373111248016, 0.05355999991297722, 0.11559043079614639], "count": [169]}, "timestamp": {"min": [0.0], "max": [5.6], "mean": [2.8], "std": [1.6261747890200624], "count": [169]}, "frame_index": {"min": [0], "max": [168], "mean": [84.0], "std": [48.78524367060187], "count": [169]}, "episode_index": {"min": [697], "max": [697], "mean": [697.0], "std": [0.0], "count": [169]}, "index": {"min": [370048], "max": [370216], "mean": [370132.0], "std": [48.78524367060187], "count": [169]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [169]}}} +{"episode_index": 698, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5493879275599128]], [[0.522912385620915]], [[0.48814679193899785]]], "std": [[[0.2185294844937313]], [[0.2145797350489178]], [[0.21755564393062166]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5579180718954247]], [[0.5436090032679738]], [[0.5124247848583878]]], "std": [[[0.20703829184262013]], [[0.18889146942947382]], [[0.20016371034780103]]], "count": [100]}, "observation.state": {"min": [0.33783096075057983, -0.08104235678911209, 0.1319778859615326, -4.53810977935791, -1.1204192638397217, 0.03203532099723816, -0.6102349162101746, -0.27525365352630615, 0.1609499603509903, 4.212670803070068, -0.23105232417583466, -0.8932797312736511], "max": [0.35658174753189087, -0.0745784267783165, 0.13470397889614105, -4.53748083114624, -0.9686161279678345, 0.11153893917798996, -0.5083411931991577, -0.20902349054813385, 0.19749367237091064, 4.539158344268799, 0.6308507323265076, -0.2333817481994629], "mean": [0.34236693382263184, -0.07729693502187729, 0.13232026994228363, -4.537905693054199, -0.9841210246086121, 0.09801110625267029, -0.588620126247406, -0.2441408932209015, 0.1780281364917755, 4.415854454040527, 0.27176156640052795, -0.5927461981773376], "std": [0.0048440080136060715, 0.0011700628092512488, 0.0006847244221717119, 0.00017559343541506678, 0.03213696554303169, 0.01630057767033577, 0.02134748175740242, 0.020743727684020996, 0.010609368793666363, 0.12844549119472504, 0.20179912447929382, 0.22057870030403137], "count": [210]}, "action": {"min": [-0.13595716655254364, -0.09144856780767441, 0.1313590705394745, 0.1614971160888672, 0.5455526113510132, 0.26225167512893677, 0.7227895855903625, 0.10404764115810394, -0.12059945613145828, 0.0869370847940445, -0.2980738878250122, -0.2879824638366699, 0.8981930017471313, -0.01758177950978279], "max": [-0.13204345107078552, -0.08934846520423889, 0.1328117847442627, 0.19916296005249023, 0.6055160164833069, 0.2912597060203552, 0.7717009782791138, 0.11802498996257782, -0.09514834731817245, 0.11176873743534088, 0.029759187251329422, -0.004815671592950821, 0.9896245002746582, 0.2515391409397125], "mean": [-0.13518071174621582, -0.09022697806358337, 0.13224785029888153, 0.17489536106586456, 0.5519179701805115, 0.2767498195171356, 0.766697108745575, 0.1099785566329956, -0.1060122549533844, 0.09943056851625443, -0.06559251993894577, -0.13541248440742493, 0.9666552543640137, 0.13863937556743622], "std": [0.0010210195323452353, 0.00036728871054947376, 0.00023817179317120463, 0.006479836069047451, 0.013944359496235847, 0.004574716556817293, 0.01122236717492342, 0.0034621322993189096, 0.00891983974725008, 0.006145663559436798, 0.08704051375389099, 0.08976428210735321, 0.019652077928185463, 0.08773843944072723], "count": [210]}, "timestamp": {"min": [0.0], "max": [6.966666666666667], "mean": [3.4833333333333334], "std": [2.0207030313088414], "count": [210]}, "frame_index": {"min": [0], "max": [209], "mean": [104.5], "std": [60.621090939265244], "count": [210]}, "episode_index": {"min": [698], "max": [698], "mean": [698.0], "std": [0.0], "count": [210]}, "index": {"min": [370217], "max": [370426], "mean": [370321.5], "std": [60.621090939265244], "count": [210]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [210]}}} +{"episode_index": 699, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5537542129629629]], [[0.5243370288671024]], [[0.487607529956427]]], "std": [[[0.2204939707315191]], [[0.21760018102866388]], [[0.221801202072854]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5655472603485838]], [[0.5465755119825708]], [[0.5129720533769063]]], "std": [[[0.20830129728029625]], [[0.1915336375226022]], [[0.20481612090913295]]], "count": [100]}, "observation.state": {"min": [0.34031766653060913, -0.09806326031684875, 0.13266360759735107, -4.5389485359191895, -1.0708202123641968, -0.44172024726867676, -0.5831435322761536, -0.29195019602775574, 0.1657617837190628, 1.9771665334701538, -0.44324880838394165, -0.3931668996810913], "max": [0.3584815263748169, -0.07816950231790543, 0.13494637608528137, -4.029401779174805, -0.6722515821456909, 0.04407323896884918, -0.504904568195343, -0.16254808008670807, 0.19475461542606354, 4.5383195877075195, -0.004372369963675737, 0.2891606092453003], "mean": [0.34981444478034973, -0.09100387990474701, 0.13370831310749054, -4.270226001739502, -0.9051976203918457, -0.192294642329216, -0.5484327673912048, -0.23081524670124054, 0.1786542385816574, 2.4733753204345703, -0.20752501487731934, 0.007438556756824255], "std": [0.006788282655179501, 0.0059558311477303505, 0.0008793704910203815, 0.17925117909908295, 0.12110882252454758, 0.18980582058429718, 0.019114000722765923, 0.04737837240099907, 0.00752328522503376, 0.5769329071044922, 0.14076393842697144, 0.1498824954032898], "count": [233]}, "action": {"min": [-0.13577257096767426, -0.0950431376695633, 0.13181757926940918, 0.19403541088104248, 0.41918691992759705, 0.24529075622558594, 0.6840944886207581, 0.10976706445217133, -0.11841432005167007, 0.09241296350955963, -0.2637128531932831, -0.41911712288856506, 0.12197551876306534, 0.18667460978031158], "max": [-0.13345587253570557, -0.0900714099407196, 0.13561859726905823, 0.2891986668109894, 0.6035112738609314, 0.3560330271720886, 0.8305255770683289, 0.12333131581544876, -0.09219487011432648, 0.11671215295791626, 0.3452962338924408, -0.19990448653697968, 0.9285728931427002, 0.9115197062492371], "mean": [-0.13445833325386047, -0.09176578372716904, 0.1333329826593399, 0.25436559319496155, 0.5214881896972656, 0.3076012432575226, 0.7488411664962769, 0.11343612521886826, -0.10457485169172287, 0.10512585192918777, 0.14498373866081238, -0.2982698380947113, 0.34465664625167847, 0.8285583257675171], "std": [0.0007216610247269273, 0.0014862605603411794, 0.0014295857399702072, 0.02575569413602352, 0.05525017902255058, 0.03524879366159439, 0.05485033988952637, 0.003340261522680521, 0.008792201988399029, 0.005431726109236479, 0.14394879341125488, 0.05410434305667877, 0.2008153796195984, 0.14402319490909576], "count": [233]}, "timestamp": {"min": [0.0], "max": [7.733333333333333], "mean": [3.866666666666667], "std": [2.242022896106698], "count": [233]}, "frame_index": {"min": [0], "max": [232], "mean": [116.0], "std": [67.26068688320095], "count": [233]}, "episode_index": {"min": [699], "max": [699], "mean": [699.0], "std": [0.0], "count": [233]}, "index": {"min": [370427], "max": [370659], "mean": [370543.0], "std": [67.26068688320095], "count": [233]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [233]}}} +{"episode_index": 700, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5469353594771241]], [[0.517874158496732]], [[0.4810936029411765]]], "std": [[[0.21839000105618]], [[0.21471194795981505]], [[0.21868621777752995]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5580443355119826]], [[0.5393867211328977]], [[0.5059425708061002]]], "std": [[[0.20683131098471585]], [[0.18927643783190806]], [[0.20160762755156456]]], "count": [100]}, "observation.state": {"min": [0.3499942421913147, -0.0887342020869255, 0.13405713438987732, -4.42026424407959, -0.879802405834198, -0.07784202694892883, -0.6685724258422852, -0.3068782389163971, 0.16674697399139404, 2.133175849914551, -0.5860339403152466, -0.6448729634284973], "max": [0.3526199758052826, -0.08762212842702866, 0.13495415449142456, -4.402230739593506, -0.8748835325241089, -0.07277123630046844, -0.5268216729164124, -0.21184228360652924, 0.19674570858478546, 2.426532030105591, -0.030879849568009377, 0.21010297536849976], "mean": [0.35195478796958923, -0.08806397020816803, 0.13479386270046234, -4.410563945770264, -0.8770423531532288, -0.0744619220495224, -0.5822382569313049, -0.2517623007297516, 0.1798798143863678, 2.30458402633667, -0.24196119606494904, -0.16944503784179688], "std": [0.0009024222381412983, 0.0004822859773412347, 0.00019573695317376405, 0.0050013246946036816, 0.0017612666124477983, 0.001303915516473353, 0.0554349385201931, 0.03286460414528847, 0.009073402732610703, 0.08912176638841629, 0.20646633207798004, 0.256439208984375], "count": [186]}, "action": {"min": [-0.13373948633670807, -0.09286320954561234, 0.13329541683197021, 0.2409811168909073, 0.5141158103942871, 0.2736204266548157, 0.7729763388633728, 0.0993986427783966, -0.12178342044353485, 0.09063298255205154, 0.1437644064426422, -0.3591485321521759, 0.22744953632354736, 0.8158670663833618], "max": [-0.13313472270965576, -0.09240194410085678, 0.13399921357631683, 0.24295920133590698, 0.5160183310508728, 0.28142833709716797, 0.7748988270759583, 0.12335467338562012, -0.09164946526288986, 0.1129663810133934, 0.4100184738636017, -0.08964219689369202, 0.40293174982070923, 0.8900839686393738], "mean": [-0.13329201936721802, -0.09272962808609009, 0.13382931053638458, 0.2417714148759842, 0.5150599479675293, 0.2780175507068634, 0.7739246487617493, 0.10915941745042801, -0.10637534409761429, 0.10116105526685715, 0.27174198627471924, -0.2578931748867035, 0.3150555193424225, 0.8612408638000488], "std": [0.00015162296767812222, 9.575064177624881e-05, 0.00019363620958756655, 0.0005920434487052262, 0.0006826220778748393, 0.002209210069850087, 0.0006862239679321647, 0.00787464901804924, 0.009457679465413094, 0.006765624508261681, 0.061463046818971634, 0.10731630027294159, 0.05522084981203079, 0.017541436478495598], "count": [186]}, "timestamp": {"min": [0.0], "max": [6.166666666666667], "mean": [3.0833333333333335], "std": [1.7897599673533713], "count": [186]}, "frame_index": {"min": [0], "max": [185], "mean": [92.5], "std": [53.692799020601136], "count": [186]}, "episode_index": {"min": [700], "max": [700], "mean": [700.0], "std": [0.0], "count": [186]}, "index": {"min": [370660], "max": [370845], "mean": [370752.5], "std": [53.692799020601136], "count": [186]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [186]}}} +{"episode_index": 701, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5518383986928105]], [[0.5233256699346406]], [[0.4883531154684096]]], "std": [[[0.22248658591526208]], [[0.2188614625150863]], [[0.22161127624117521]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5650433687363834]], [[0.5461655555555556]], [[0.5132962309368192]]], "std": [[[0.20670910778405333]], [[0.19011736959441727]], [[0.20258685787951583]]], "count": [100]}, "observation.state": {"min": [0.354373037815094, -0.11631979793310165, 0.1279502958059311, -4.322129249572754, -0.868598222732544, -0.14750182628631592, -0.6387781500816345, -0.3078126907348633, 0.16976343095302582, 2.2426340579986572, -0.7408431172370911, -0.38473933935165405], "max": [0.3580336272716522, -0.1137249618768692, 0.1282004863023758, -4.3160481452941895, -0.866275429725647, -0.1426752358675003, -0.4970814287662506, -0.21156427264213562, 0.19160333275794983, 2.6318185329437256, -0.11436475068330765, 0.6001884937286377], "mean": [0.35630109906196594, -0.1144467443227768, 0.12810814380645752, -4.317829132080078, -0.8674191832542419, -0.1446155607700348, -0.5676864385604858, -0.24969081580638885, 0.18046505749225616, 2.435150146484375, -0.4046880304813385, 0.006379733327776194], "std": [0.0013487918768078089, 0.0007670514169149101, 8.70584772201255e-05, 0.001740703359246254, 0.0009196721366606653, 0.0016030052211135626, 0.05179145187139511, 0.03032013215124607, 0.007404721807688475, 0.11686593294143677, 0.20916694402694702, 0.3268197178840637], "count": [159]}, "action": {"min": [-0.13561102747917175, -0.09247288852930069, 0.12618179619312286, 0.26858681440353394, 0.5043766498565674, 0.3026958703994751, 0.7612721920013428, 0.1001189798116684, -0.11686346679925919, 0.09355557709932327, -0.11202184110879898, -0.39889800548553467, 0.2810298800468445, 0.8406457304954529], "max": [-0.13495953381061554, -0.09212436527013779, 0.12654824554920197, 0.2701437473297119, 0.5054571032524109, 0.30512988567352295, 0.7619940042495728, 0.1255088895559311, -0.09263932704925537, 0.11288764327764511, 0.31137725710868835, -0.06001564860343933, 0.40522050857543945, 0.9108333587646484], "mean": [-0.13525806367397308, -0.09222815185785294, 0.12640061974525452, 0.26944130659103394, 0.5049220323562622, 0.30405154824256897, 0.7615817785263062, 0.11141698807477951, -0.10613075643777847, 0.10370589047670364, 0.13892994821071625, -0.23116648197174072, 0.35452935099601746, 0.875167191028595], "std": [0.00022278010146692395, 9.823057916946709e-05, 0.0001200897604576312, 0.0005032861372455955, 0.000274031946901232, 0.0008021550602279603, 0.0002135027461918071, 0.00829551462084055, 0.007617721799761057, 0.005238901358097792, 0.1374674290418625, 0.12200288474559784, 0.038141023367643356, 0.02037801779806614], "count": [159]}, "timestamp": {"min": [0.0], "max": [5.266666666666667], "mean": [2.6333333333333333], "std": [1.5299479536052005], "count": [159]}, "frame_index": {"min": [0], "max": [158], "mean": [79.0], "std": [45.89843860815601], "count": [159]}, "episode_index": {"min": [701], "max": [701], "mean": [701.0], "std": [0.0], "count": [159]}, "index": {"min": [370846], "max": [371004], "mean": [370925.0], "std": [45.89843860815601], "count": [159]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [159]}}} +{"episode_index": 702, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5605161982570807]], [[0.5313492156862745]], [[0.49679]]], "std": [[[0.2251436230938279]], [[0.22209864203685073]], [[0.22592193808452674]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5752397549019608]], [[0.5556534477124183]], [[0.5229204629629629]]], "std": [[[0.2093033410881884]], [[0.19347000163905861]], [[0.20743317766567437]]], "count": [100]}, "observation.state": {"min": [0.3565971851348877, -0.113995261490345, 0.12887586653232574, -4.318774223327637, -0.8658655285835266, -0.1571415811777115, -0.5340037941932678, -0.28279876708984375, 0.1640208661556244, 2.14638614654541, -0.33694562315940857, -0.07879883795976639], "max": [0.358134001493454, -0.11382535845041275, 0.1294151097536087, -4.309967041015625, -0.8616297841072083, -0.14805932343006134, -0.4937683641910553, -0.18773964047431946, 0.18912741541862488, 2.619656562805176, 0.28065136075019836, 0.807441771030426], "mean": [0.35785654187202454, -0.11390356719493866, 0.12925033271312714, -4.313638687133789, -0.8637417554855347, -0.15195101499557495, -0.513871967792511, -0.23875626921653748, 0.17633157968521118, 2.3882791996002197, -0.12070111930370331, 0.3163404166698456], "std": [0.0003310502215754241, 4.27761442551855e-05, 0.0001975070481421426, 0.0029632230289280415, 0.001687831711024046, 0.002984399674460292, 0.012057575397193432, 0.031001955270767212, 0.007907609455287457, 0.1316622793674469, 0.22553429007530212, 0.301374614238739], "count": [147]}, "action": {"min": [-0.1349504441022873, -0.0928640216588974, 0.12698499858379364, 0.2707005739212036, 0.5035561323165894, 0.3024599552154541, 0.7606592178344727, 0.112739697098732, -0.11451485008001328, 0.09490492194890976, -0.0691046342253685, -0.5014771819114685, -0.003764607710763812, 0.8496424555778503], "max": [-0.13454486429691315, -0.09257150441408157, 0.12741956114768982, 0.27403050661087036, 0.5055747628211975, 0.30511292815208435, 0.7612470984458923, 0.12651976943016052, -0.09842008352279663, 0.1138235405087471, 0.2154688686132431, -0.2304651439189911, 0.39995431900024414, 0.8936893343925476], "mean": [-0.13463521003723145, -0.09275177866220474, 0.1272614598274231, 0.27208462357521057, 0.5045647025108337, 0.30385902523994446, 0.7609546184539795, 0.119417205452919, -0.10585583746433258, 0.10502485185861588, 0.06509292125701904, -0.35576602816581726, 0.2668297588825226, 0.8719714879989624], "std": [8.88585636857897e-05, 0.00010498954361537471, 0.00016793151735328138, 0.0010665616719052196, 0.0007313152891583741, 0.0006714893970638514, 0.0001059387213899754, 0.004048401489853859, 0.005795973818749189, 0.005499611143022776, 0.0921303778886795, 0.08839883655309677, 0.14584094285964966, 0.009443582035601139], "count": [147]}, "timestamp": {"min": [0.0], "max": [4.866666666666666], "mean": [2.433333333333333], "std": [1.4144754295288202], "count": [147]}, "frame_index": {"min": [0], "max": [146], "mean": [73.0], "std": [42.43426288586461], "count": [147]}, "episode_index": {"min": [702], "max": [702], "mean": [702.0], "std": [0.0], "count": [147]}, "index": {"min": [371005], "max": [371151], "mean": [371078.0], "std": [42.43426288586461], "count": [147]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [147]}}} +{"episode_index": 703, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5304842755991285]], [[0.5059024564270153]], [[0.47182113289760347]]], "std": [[[0.22104014098742344]], [[0.2142462156036281]], [[0.21623288549623235]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5354401552287582]], [[0.5236555664488017]], [[0.4930203104575163]]], "std": [[[0.21156781295532115]], [[0.19054949386875444]], [[0.2003802463757733]]], "count": [100]}, "observation.state": {"min": [0.33152148127555847, -0.11414199322462082, 0.12875919044017792, -4.312483310699463, -0.8938759565353394, -0.3254620134830475, -0.6446164846420288, -0.3021519184112549, 0.16993066668510437, 1.8370935916900635, -0.7111929655075073, -0.1046001985669136], "max": [0.3592846989631653, -0.0991058275103569, 0.13168232142925262, -3.9537038803100586, -0.7713130116462708, -0.15677045285701752, -0.5017073154449463, -0.22876279056072235, 0.2013423591852188, 2.6464967727661133, 0.16082115471363068, 0.7560780048370361], "mean": [0.33687472343444824, -0.11073515564203262, 0.12931649386882782, -4.027719974517822, -0.7950078248977661, -0.28203922510147095, -0.5688875913619995, -0.261476069688797, 0.18640829622745514, 2.2560975551605225, -0.20452283322811127, 0.3843954801559448], "std": [0.0073969922959804535, 0.002956399694085121, 0.0007389907841570675, 0.11158539354801178, 0.02978249080479145, 0.041312478482723236, 0.03435760736465454, 0.021408425644040108, 0.009277872741222382, 0.30867794156074524, 0.257036954164505, 0.23819772899150848], "count": [235]}, "action": {"min": [-0.14020460844039917, -0.09332577884197235, 0.12740503251552582, 0.2741226851940155, 0.4295565187931061, 0.29144829511642456, 0.7417990565299988, 0.09683426469564438, -0.12585461139678955, 0.0959940105676651, -0.22575554251670837, -0.47000521421432495, -0.026495331898331642, 0.8304411768913269], "max": [-0.13440775871276855, -0.09186390042304993, 0.1311851441860199, 0.3040383756160736, 0.5256016850471497, 0.4232390522956848, 0.7618007063865662, 0.12488940358161926, -0.09924796968698502, 0.11262991279363632, 0.34757596254348755, -0.23559293150901794, 0.41332823038101196, 0.9448079466819763], "mean": [-0.13898728787899017, -0.0923801064491272, 0.1303236335515976, 0.29165300726890564, 0.4445338547229767, 0.39471590518951416, 0.7478265166282654, 0.10730587691068649, -0.1123676523566246, 0.10454172641038895, 0.03919611871242523, -0.3424997925758362, 0.21569247543811798, 0.8836247324943542], "std": [0.0017457560170441866, 0.0002881312684621662, 0.0008194451220333576, 0.006100899539887905, 0.02584313601255417, 0.03918331488966942, 0.006552690174430609, 0.007627589162439108, 0.00823898334056139, 0.00467738788574934, 0.16508114337921143, 0.06923925876617432, 0.14204049110412598, 0.040265683084726334], "count": [235]}, "timestamp": {"min": [0.0], "max": [7.8], "mean": [3.9], "std": [2.261268080819551], "count": [235]}, "frame_index": {"min": [0], "max": [234], "mean": [117.0], "std": [67.83804242458652], "count": [235]}, "episode_index": {"min": [703], "max": [703], "mean": [703.0], "std": [0.0], "count": [235]}, "index": {"min": [371152], "max": [371386], "mean": [371269.0], "std": [67.83804242458652], "count": [235]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [235]}}} +{"episode_index": 704, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5496110130718954]], [[0.522334387254902]], [[0.48696117647058823]]], "std": [[[0.22531431157516027]], [[0.22145905854959777]], [[0.2255104647418343]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.560091862745098]], [[0.5441054384531591]], [[0.5116937363834423]]], "std": [[[0.21300925145292546]], [[0.19527909711880592]], [[0.2079831536125472]]], "count": [100]}, "observation.state": {"min": [0.34902891516685486, -0.10279729962348938, 0.1321101039648056, -4.353582382202148, -0.9265320897102356, -0.2675347924232483, -0.6298120021820068, -0.29129377007484436, 0.17023657262325287, 2.0950121879577637, -0.7825172543525696, -0.21451862156391144], "max": [0.358280748128891, -0.09844940155744553, 0.1338263899087906, -4.240140438079834, -0.8578039407730103, -0.20085155963897705, -0.5080940127372742, -0.20160965621471405, 0.19661089777946472, 2.694725513458252, -0.21656885743141174, 0.656258761882782], "mean": [0.3540467619895935, -0.10052257776260376, 0.13326556980609894, -4.277401447296143, -0.8736844658851624, -0.2421063333749771, -0.5553800463676453, -0.24716722965240479, 0.18085207045078278, 2.374910593032837, -0.38960206508636475, 0.19078132510185242], "std": [0.0022963702213019133, 0.0008189909858629107, 0.0004680421552620828, 0.020963571965694427, 0.016196617856621742, 0.011131901293992996, 0.03375064581632614, 0.02695057913661003, 0.008663074113428593, 0.16591376066207886, 0.13513094186782837, 0.26098915934562683], "count": [183]}, "action": {"min": [-0.13473978638648987, -0.0935325026512146, 0.1302482932806015, 0.2774627208709717, 0.5086266398429871, 0.2753610610961914, 0.7408711314201355, 0.10640937834978104, -0.11891531199216843, 0.09721947461366653, -0.15679877996444702, -0.4255399703979492, 0.14849650859832764, 0.8182130455970764], "max": [-0.1332554966211319, -0.09195169061422348, 0.13238488137722015, 0.3007080554962158, 0.544502854347229, 0.30620846152305603, 0.7497639060020447, 0.12387891858816147, -0.0937475636601448, 0.11675245314836502, 0.2088865041732788, -0.07433395832777023, 0.4367704689502716, 0.9486483931541443], "mean": [-0.13383719325065613, -0.09299509972333908, 0.1319311112165451, 0.2928021252155304, 0.5164398550987244, 0.2962974011898041, 0.7480931282043457, 0.11301633715629578, -0.10706132650375366, 0.1052308976650238, 0.07537863403558731, -0.250876247882843, 0.31890934705734253, 0.8964579701423645], "std": [0.0004090062575414777, 0.0003322164120618254, 0.0004900580970570445, 0.004423011094331741, 0.007981455884873867, 0.005842320155352354, 0.001935256295837462, 0.005344740580767393, 0.007797181606292725, 0.00579504668712616, 0.10837946832180023, 0.0871160477399826, 0.0749240517616272, 0.03302304446697235], "count": [183]}, "timestamp": {"min": [0.0], "max": [6.066666666666666], "mean": [3.0333333333333337], "std": [1.760892029836225], "count": [183]}, "frame_index": {"min": [0], "max": [182], "mean": [91.0], "std": [52.82676089508675], "count": [183]}, "episode_index": {"min": [704], "max": [704], "mean": [704.0], "std": [0.0], "count": [183]}, "index": {"min": [371387], "max": [371569], "mean": [371478.0], "std": [52.82676089508675], "count": [183]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [183]}}} +{"episode_index": 705, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5462340223311547]], [[0.519244825708061]], [[0.48388305010893246]]], "std": [[[0.22408440026647167]], [[0.21949149988959518]], [[0.22257397718537797]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5559909749455337]], [[0.5404990876906317]], [[0.5083231808278867]]], "std": [[[0.21177004275463562]], [[0.1933289687035518]], [[0.2047160630160632]]], "count": [100]}, "observation.state": {"min": [0.3539714515209198, -0.09880463778972626, 0.13228638470172882, -4.367841720581055, -0.9205201268196106, -0.20287631452083588, -0.6049525737762451, -0.2784045338630676, 0.16704770922660828, 2.156032085418701, -0.4349139928817749, -0.23487918078899384], "max": [0.35777103900909424, -0.0975535586476326, 0.13250936567783356, -4.341630458831787, -0.9063099026679993, -0.19048002362251282, -0.5086886882781982, -0.19738532602787018, 0.19649812579154968, 2.6232211589813232, -0.11149538308382034, 0.4614383280277252], "mean": [0.356476366519928, -0.09813481569290161, 0.13238611817359924, -4.348819255828857, -0.9112708568572998, -0.1963162124156952, -0.5554677248001099, -0.247564435005188, 0.18033389747142792, 2.373932361602783, -0.3034362196922302, 0.055302854627370834], "std": [0.0012201817007735372, 0.00035548306186683476, 7.818935409886762e-05, 0.0062159826047718525, 0.003262093523517251, 0.0033938048873096704, 0.025570392608642578, 0.027370434254407883, 0.009408152662217617, 0.12853863835334778, 0.08719415962696075, 0.24689796566963196], "count": [171]}, "action": {"min": [-0.13387078046798706, -0.0923372134566307, 0.13064150512218475, 0.27618443965911865, 0.5337276458740234, 0.2713683247566223, 0.7459865212440491, 0.1031336635351181, -0.11883527785539627, 0.09608331322669983, -0.0641162171959877, -0.4031309187412262, 0.18618033826351166, 0.8407574892044067], "max": [-0.133234441280365, -0.09206559509038925, 0.1310153305530548, 0.27983418107032776, 0.5411954522132874, 0.2798355221748352, 0.7477502226829529, 0.12396343052387238, -0.09512995928525925, 0.11450528353452682, 0.2710473835468292, -0.15395887196063995, 0.3904775083065033, 0.9227784276008606], "mean": [-0.13347476720809937, -0.09218134731054306, 0.13081960380077362, 0.277793288230896, 0.5365464687347412, 0.27800118923187256, 0.7467628717422485, 0.11264774203300476, -0.10719183087348938, 0.10447236895561218, 0.15089364349842072, -0.26902061700820923, 0.3304082751274109, 0.8801434636116028], "std": [0.00019668594177346677, 7.363015174632892e-05, 0.00012960525054950267, 0.0011098455870524049, 0.001845279592089355, 0.0021433213260024786, 0.0006253565079532564, 0.006547067314386368, 0.007055111229419708, 0.005311604123562574, 0.11028732359409332, 0.0632699653506279, 0.06602086126804352, 0.022624732926487923], "count": [171]}, "timestamp": {"min": [0.0], "max": [5.666666666666667], "mean": [2.8333333333333335], "std": [1.6454201309718464], "count": [171]}, "frame_index": {"min": [0], "max": [170], "mean": [85.0], "std": [49.362603929155384], "count": [171]}, "episode_index": {"min": [705], "max": [705], "mean": [705.0], "std": [0.0], "count": [171]}, "index": {"min": [371570], "max": [371740], "mean": [371655.0], "std": [49.362603929155384], "count": [171]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [171]}}} +{"episode_index": 706, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5490628431372548]], [[0.522456075708061]], [[0.48691977124183006]]], "std": [[[0.22153941776747108]], [[0.21784533527290512]], [[0.22134767897588645]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5595868409586057]], [[0.5439580065359477]], [[0.5116812854030501]]], "std": [[[0.20942370943944363]], [[0.19170229612942824]], [[0.20330775429806494]]], "count": [100]}, "observation.state": {"min": [0.3545815646648407, -0.10436501353979111, 0.13242121040821075, -4.343936920166016, -0.9093158841133118, -0.26782676577568054, -0.6097020506858826, -0.2844282388687134, 0.16411679983139038, 2.0702688694000244, -0.5533778071403503, -0.3193003833293915], "max": [0.35940825939178467, -0.09685079008340836, 0.1329604685306549, -4.247060298919678, -0.8759766221046448, -0.19626830518245697, -0.5173459053039551, -0.17202386260032654, 0.1961701661348343, 2.6207048892974854, 0.09400591254234314, 0.6102358102798462], "mean": [0.3576603829860687, -0.09835704416036606, 0.1328216940164566, -4.321058750152588, -0.8966476321220398, -0.21146142482757568, -0.5511696934700012, -0.24008141458034515, 0.17775575816631317, 2.30668568611145, -0.22725343704223633, 0.12827037274837494], "std": [0.0014469620073214173, 0.0023676541168242693, 0.0001814499992178753, 0.032725099474191666, 0.009989263489842415, 0.024067535996437073, 0.025243129581212997, 0.039175357669591904, 0.01050137635320425, 0.12848368287086487, 0.20828302204608917, 0.28856050968170166], "count": [223]}, "action": {"min": [-0.13378269970417023, -0.09303640574216843, 0.13086214661598206, 0.2772557735443115, 0.5166510343551636, 0.2787203788757324, 0.7415996789932251, 0.10298453271389008, -0.11589111387729645, 0.0923408642411232, -0.05418883636593819, -0.43257588148117065, 0.06826632469892502, 0.8329780101776123], "max": [-0.13286158442497253, -0.09214281290769577, 0.1318063735961914, 0.29836389422416687, 0.5351925492286682, 0.30504289269447327, 0.7500078678131104, 0.12466823309659958, -0.09304778277873993, 0.11466143280267715, 0.27869758009910583, -0.10116440057754517, 0.388662725687027, 0.9375709891319275], "mean": [-0.13323694467544556, -0.09237447381019592, 0.13127221167087555, 0.28219521045684814, 0.5292831063270569, 0.28579801321029663, 0.7472549080848694, 0.1140737235546112, -0.10507832467556, 0.10352204740047455, 0.14309968054294586, -0.29117611050605774, 0.27605172991752625, 0.8865926265716553], "std": [0.00031437459983862936, 0.00023284587950911373, 0.00021788744197692722, 0.006902966648340225, 0.005577614530920982, 0.008297428488731384, 0.0025936043821275234, 0.007132017053663731, 0.007447862531989813, 0.006720706820487976, 0.09438617527484894, 0.10993221402168274, 0.10483121871948242, 0.022453999146819115], "count": [223]}, "timestamp": {"min": [0.0], "max": [7.4], "mean": [3.7], "std": [2.1457969252574776], "count": [223]}, "frame_index": {"min": [0], "max": [222], "mean": [111.0], "std": [64.37390775772433], "count": [223]}, "episode_index": {"min": [706], "max": [706], "mean": [706.0], "std": [0.0], "count": [223]}, "index": {"min": [371741], "max": [371963], "mean": [371852.0], "std": [64.37390775772433], "count": [223]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [223]}}} +{"episode_index": 707, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5497654738562091]], [[0.5232243654684097]], [[0.48650945533769063]]], "std": [[[0.218996306778634]], [[0.21733615237165024]], [[0.2212714918509585]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5634650653594772]], [[0.5468172903050108]], [[0.5129567973856208]]], "std": [[[0.20533006880538188]], [[0.1902661505197647]], [[0.2030221836248007]]], "count": [100]}, "observation.state": {"min": [0.35655859112739563, -0.10400976985692978, 0.1325560212135315, -4.254609107971191, -0.8796657919883728, -0.26760435104370117, -0.6454196572303772, -0.28851357102394104, 0.1636812388896942, 2.196502208709717, -0.6305774450302124, -0.26368042826652527], "max": [0.35926926136016846, -0.10270462185144424, 0.13330009579658508, -4.248108386993408, -0.8763865232467651, -0.2605125606060028, -0.5057849287986755, -0.20883041620254517, 0.1955621987581253, 2.641883611679077, 0.16519352793693542, 0.2658524811267853], "mean": [0.35818159580230713, -0.10313421487808228, 0.13306497037410736, -4.252146244049072, -0.8784483671188354, -0.26297545433044434, -0.5716081857681274, -0.2401646375656128, 0.17762193083763123, 2.459984064102173, -0.31143322587013245, 0.07128846645355225], "std": [0.0010171181056648493, 0.00045221991604194045, 0.0002730938431341201, 0.0023099808022379875, 0.0008659265004098415, 0.002463339129462838, 0.047045037150382996, 0.02557653747498989, 0.009739249013364315, 0.10211624205112457, 0.24344079196453094, 0.1365378201007843], "count": [170]}, "action": {"min": [-0.13365426659584045, -0.09309740364551544, 0.1309811919927597, 0.2960115969181061, 0.5180751085281372, 0.30198755860328674, 0.7413877248764038, 0.10192235559225082, -0.12051359564065933, 0.09179005771875381, 0.010386998765170574, -0.4479314684867859, 0.21787378191947937, 0.8133128881454468], "max": [-0.13305166363716125, -0.09284257888793945, 0.13160984218120575, 0.29906657338142395, 0.519821286201477, 0.30414435267448425, 0.7426091432571411, 0.12333027273416519, -0.09031804651021957, 0.11500953882932663, 0.28327393531799316, -0.15618987381458282, 0.4353531002998352, 0.9152070879936218], "mean": [-0.1333082914352417, -0.09297028183937073, 0.1313752979040146, 0.29692918062210083, 0.5190758109092712, 0.30305570363998413, 0.7419900894165039, 0.11181896179914474, -0.10352756083011627, 0.10242097824811935, 0.11438143998384476, -0.2834179699420929, 0.35398179292678833, 0.87337726354599], "std": [0.0002473224594723433, 8.062521374085918e-05, 0.00020257649885024875, 0.000869334558956325, 0.0004317736311350018, 0.0006068268558010459, 0.0003376244567334652, 0.006044049747288227, 0.009738778695464134, 0.0066289147362113, 0.06555769592523575, 0.10175950825214386, 0.054373931139707565, 0.029851065948605537], "count": [170]}, "timestamp": {"min": [0.0], "max": [5.633333333333334], "mean": [2.8166666666666664], "std": [1.6357974609753292], "count": [170]}, "frame_index": {"min": [0], "max": [169], "mean": [84.5], "std": [49.073923829259876], "count": [170]}, "episode_index": {"min": [707], "max": [707], "mean": [707.0], "std": [0.0], "count": [170]}, "index": {"min": [371964], "max": [372133], "mean": [372048.5], "std": [49.073923829259876], "count": [170]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [170]}}} +{"episode_index": 708, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5686567374727669]], [[0.5405898638344226]], [[0.5059700163398693]]], "std": [[[0.22901700579950063]], [[0.22733710462467613]], [[0.23323514558709765]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5823448937908497]], [[0.5638501715686274]], [[0.5317994553376907]]], "std": [[[0.21592206699229774]], [[0.20130457501078722]], [[0.21657788298490982]]], "count": [100]}, "observation.state": {"min": [0.3572613596916199, -0.10412561148405075, 0.13258583843708038, -4.2585930824279785, -0.8792558908462524, -0.26600009202957153, -0.5420508980751038, -0.2679556608200073, 0.1688728779554367, 1.9245343208312988, -0.5033688545227051, -0.11840669810771942], "max": [0.3577941954135895, -0.10400976985692978, 0.13310176134109497, -4.2508344650268555, -0.8777528405189514, -0.26064616441726685, -0.44045835733413696, -0.17026309669017792, 0.1857427954673767, 2.712758779525757, 0.6458807587623596, 0.8710405230522156], "mean": [0.3576925992965698, -0.10408541560173035, 0.13291077315807343, -4.256057262420654, -0.8785440921783447, -0.26257678866386414, -0.4842289686203003, -0.20353810489177704, 0.17879816889762878, 2.220397710800171, 0.10939116030931473, 0.43299373984336853], "std": [0.00013693350774701685, 3.130988261546008e-05, 0.00020634035172406584, 0.002712832298129797, 0.00044361644540913403, 0.001678003347478807, 0.0392683669924736, 0.032799214124679565, 0.0034433486871421337, 0.2711057960987091, 0.46209219098091125, 0.39653193950653076], "count": [180]}, "action": {"min": [-0.13363218307495117, -0.09317422658205032, 0.1309875249862671, 0.29733964800834656, 0.5186347961425781, 0.3006877303123474, 0.7417786717414856, 0.11146970838308334, -0.11017084866762161, 0.10156937688589096, -0.04504187032580376, -0.515136182308197, -0.20238716900348663, 0.8326818943023682], "max": [-0.13334426283836365, -0.09286033362150192, 0.1313096433877945, 0.2983945310115814, 0.5198132991790771, 0.30294933915138245, 0.7424643635749817, 0.1288651078939438, -0.10005906224250793, 0.11304645240306854, 0.2120732069015503, -0.16103410720825195, 0.4743999242782593, 0.9150442481040955], "mean": [-0.13343490660190582, -0.09305445104837418, 0.1311747431755066, 0.29778027534484863, 0.5193169713020325, 0.3014644384384155, 0.7421287298202515, 0.12063681334257126, -0.10369323939085007, 0.11082248389720917, 0.04617399722337723, -0.37262845039367676, 0.11220608651638031, 0.8647221326828003], "std": [9.603520447853953e-05, 0.00012514041736721992, 0.00013363271136768162, 0.00029682726017199457, 0.00035368994576856494, 0.0007714409730397165, 0.00019235890067648143, 0.004776568617671728, 0.003379845293238759, 0.002642149105668068, 0.08217696100473404, 0.13270191848278046, 0.27160730957984924, 0.02341059036552906], "count": [180]}, "timestamp": {"min": [0.0], "max": [5.966666666666667], "mean": [2.9833333333333334], "std": [1.7320240781835015], "count": [180]}, "frame_index": {"min": [0], "max": [179], "mean": [89.5], "std": [51.96072234550504], "count": [180]}, "episode_index": {"min": [708], "max": [708], "mean": [708.0], "std": [0.0], "count": [180]}, "index": {"min": [372134], "max": [372313], "mean": [372223.5], "std": [51.96072234550504], "count": [180]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [180]}}} +{"episode_index": 709, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5881134613289761]], [[0.5551119716775599]], [[0.5207710593681918]]], "std": [[[0.225769791590214]], [[0.22323985761455548]], [[0.2286855174487273]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.604184272875817]], [[0.5800485974945534]], [[0.5490795697167756]]], "std": [[[0.21099313577791967]], [[0.19440490752154374]], [[0.20900714010348223]]], "count": [100]}, "observation.state": {"min": [0.33952996134757996, -0.10471253842115402, 0.12986621260643005, -4.394891738891602, -0.8918264508247375, -0.4833967089653015, -0.5538512468338013, -0.2853395342826843, 0.16122865676879883, 2.0832695960998535, -0.4350506067276001, -0.23553848266601562], "max": [0.36381796002388, -0.09763851016759872, 0.13384583592414856, -3.9581074714660645, -0.6990323066711426, -0.2162165641784668, -0.45829012989997864, -0.1709272563457489, 0.18712076544761658, 2.705209970474243, 0.6234723329544067, 0.9049383997917175], "mean": [0.3453364670276642, -0.09988243877887726, 0.13191458582878113, -4.239311695098877, -0.7867847681045532, -0.3207060694694519, -0.5090521574020386, -0.2201765775680542, 0.17765040695667267, 2.3893611431121826, 0.00791927333921194, 0.3415695130825043], "std": [0.006684842985123396, 0.0023182188160717487, 0.0007068004924803972, 0.16227611899375916, 0.05448969081044197, 0.10291070491075516, 0.02897944301366806, 0.034863803535699844, 0.006402305793017149, 0.21673251688480377, 0.35709887742996216, 0.353067010641098], "count": [194]}, "action": {"min": [-0.13659308850765228, -0.09343891590833664, 0.12827183306217194, 0.3082202672958374, 0.4421190023422241, 0.24406762421131134, 0.7204341888427734, 0.11016137897968292, -0.11092575639486313, 0.08981580287218094, -0.05745215341448784, -0.5619599223136902, -0.14534656703472137, 0.8157641291618347], "max": [-0.13332894444465637, -0.0911131203174591, 0.13470840454101562, 0.3766133487224579, 0.5360369682312012, 0.3793017864227295, 0.7716076374053955, 0.12534864246845245, -0.09990925341844559, 0.11211586743593216, 0.1980409175157547, -0.18255852162837982, 0.49631160497665405, 0.89736008644104], "mean": [-0.13611376285552979, -0.0929393544793129, 0.1320362091064453, 0.3346920311450958, 0.48564642667770386, 0.2904150187969208, 0.7506788372993469, 0.1184491291642189, -0.10441385954618454, 0.10734832286834717, 0.06169373542070389, -0.38831931352615356, 0.22513507306575775, 0.8519450426101685], "std": [0.0008342288783751428, 0.000556071347091347, 0.0013170272577553988, 0.02760353684425354, 0.026908615604043007, 0.04913153499364853, 0.01920151337981224, 0.004480233881622553, 0.0032913675531744957, 0.006403313018381596, 0.07965914905071259, 0.11811114102602005, 0.21938161551952362, 0.02195264771580696], "count": [194]}, "timestamp": {"min": [0.0], "max": [6.433333333333334], "mean": [3.2166666666666663], "std": [1.866741069945755], "count": [194]}, "frame_index": {"min": [0], "max": [193], "mean": [96.5], "std": [56.00223209837265], "count": [194]}, "episode_index": {"min": [709], "max": [709], "mean": [709.0], "std": [0.0], "count": [194]}, "index": {"min": [372314], "max": [372507], "mean": [372410.5], "std": [56.00223209837265], "count": [194]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [194]}}} +{"episode_index": 710, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5577666230936819]], [[0.5286559613289761]], [[0.49422732843137257]]], "std": [[[0.22253489613356978]], [[0.21586329016754907]], [[0.21736055114656647]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5696871241830066]], [[0.5518132244008714]], [[0.520651015795207]]], "std": [[[0.21034046849299257]], [[0.18825762148516595]], [[0.19839540840344055]]], "count": [100]}, "observation.state": {"min": [0.3519017696380615, -0.11097566783428192, 0.12870603799819946, -4.3619704246521, -0.9225696325302124, -0.44884395599365234, -0.6209231615066528, -0.2972557246685028, 0.1671864092350006, 2.0656557083129883, -0.38408520817756653, -0.21403908729553223], "max": [0.36383339762687683, -0.09973137080669403, 0.12987658381462097, -4.032127857208252, -0.8427739143371582, -0.1725844293832779, -0.5078005790710449, -0.2229321300983429, 0.2006877362728119, 2.552136182785034, 0.021451929584145546, 0.5931640863418579], "mean": [0.35702061653137207, -0.10503441095352173, 0.12900087237358093, -4.224307060241699, -0.8877158761024475, -0.3082391023635864, -0.5559040904045105, -0.2477484941482544, 0.18230658769607544, 2.1766035556793213, -0.16819489002227783, 0.27295762300491333], "std": [0.0041654109954833984, 0.004420793149620295, 0.0002488250029273331, 0.14556734263896942, 0.03293364495038986, 0.1096007451415062, 0.024583395570516586, 0.02171405963599682, 0.011023148894309998, 0.07931242883205414, 0.09516890347003937, 0.2607748806476593], "count": [175]}, "action": {"min": [-0.13535182178020477, -0.09135176241397858, 0.1276969462633133, 0.26711294054985046, 0.504565954208374, 0.26773110032081604, 0.7087889313697815, 0.099400594830513, -0.12156720459461212, 0.09318184852600098, -0.012496206909418106, -0.45040109753608704, 0.12723974883556366, 0.8364580869674683], "max": [-0.13377216458320618, -0.09045974910259247, 0.128800168633461, 0.34202346205711365, 0.5416977405548096, 0.355037122964859, 0.7474289536476135, 0.12480529397726059, -0.10057000815868378, 0.11762243509292603, 0.3402346074581146, -0.18640880286693573, 0.31140783429145813, 0.9273362755775452], "mean": [-0.1350245326757431, -0.09088850021362305, 0.1282469481229782, 0.3079809248447418, 0.5262882113456726, 0.3051174581050873, 0.7296959161758423, 0.11108779162168503, -0.10924956947565079, 0.10479383915662766, 0.12178924679756165, -0.3222748339176178, 0.20303350687026978, 0.9053388237953186], "std": [0.0003442903980612755, 0.00016528743435628712, 0.0003013231616932899, 0.026935111731290817, 0.015460371971130371, 0.037335772067308426, 0.01603798009455204, 0.006959503050893545, 0.0068957386538386345, 0.007189721334725618, 0.11506420373916626, 0.0674142837524414, 0.04823344573378563, 0.018283288925886154], "count": [175]}, "timestamp": {"min": [0.0], "max": [5.8], "mean": [2.9], "std": [1.6839107920420118], "count": [175]}, "frame_index": {"min": [0], "max": [174], "mean": [87.0], "std": [50.51732376126036], "count": [175]}, "episode_index": {"min": [710], "max": [710], "mean": [710.0], "std": [0.0], "count": [175]}, "index": {"min": [372508], "max": [372682], "mean": [372595.0], "std": [50.51732376126036], "count": [175]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [175]}}} +{"episode_index": 711, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5873886029411766]], [[0.5520978458605664]], [[0.5162926633986928]]], "std": [[[0.22856496408440394]], [[0.22465185030958743]], [[0.23131351166367062]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6021821922657952]], [[0.576306767429194]], [[0.5450586410675381]]], "std": [[[0.21915455377370474]], [[0.1995385495306612]], [[0.21420552195308248]]], "count": [100]}, "observation.state": {"min": [0.3798503279685974, -0.0917615070939064, 0.1305091828107834, -4.539158344268799, -0.7150188088417053, -0.018433600664138794, -0.5488932132720947, -0.2862430810928345, 0.1622644066810608, 1.905871868133545, -0.38504165410995483, -0.15156295895576477], "max": [0.3843681514263153, -0.07744356989860535, 0.13165898621082306, -4.392584800720215, -0.6695188283920288, 0.2223893254995346, -0.5085728764533997, -0.16160590946674347, 0.18922075629234314, 2.385852098464966, 0.3493795394897461, 0.4828711748123169], "mean": [0.38186994194984436, -0.08278143405914307, 0.13096673786640167, -4.499661922454834, -0.6858116984367371, 0.1274110972881317, -0.5268421173095703, -0.22038410604000092, 0.1749340146780014, 2.1839871406555176, -0.07327791303396225, 0.2147916555404663], "std": [0.0011721861083060503, 0.0055472878739237785, 0.0004358220612630248, 0.06338092684745789, 0.01744241826236248, 0.09255510568618774, 0.011285913176834583, 0.04489004239439964, 0.008483515121042728, 0.15994367003440857, 0.23475447297096252, 0.210300475358963], "count": [181]}, "action": {"min": [-0.1306528002023697, -0.09113812446594238, 0.1292235106229782, 0.15485550463199615, 0.42968738079071045, 0.23722276091575623, 0.810449481010437, 0.11148598045110703, -0.11130049079656601, 0.09055265039205551, 0.07289325445890427, -0.4579501152038574, -0.05229733884334564, 0.8716980814933777], "max": [-0.1301182359457016, -0.08968158066272736, 0.13110755383968353, 0.2445954829454422, 0.46592196822166443, 0.2881871461868286, 0.8486789464950562, 0.12468356639146805, -0.0942477360367775, 0.11670809984207153, 0.27091848850250244, -0.18039564788341522, 0.3682388961315155, 0.9296069741249084], "mean": [-0.1304217278957367, -0.09043897688388824, 0.13043588399887085, 0.19206486642360687, 0.4404352903366089, 0.2654295563697815, 0.834847629070282, 0.11780896037817001, -0.10213581472635269, 0.10509638488292694, 0.1422620713710785, -0.3333883583545685, 0.19611629843711853, 0.8948990702629089], "std": [0.00018073238607030362, 0.00040762219578027725, 0.0006761385593563318, 0.03420727327466011, 0.009197474457323551, 0.014469759538769722, 0.015494504012167454, 0.004329415038228035, 0.004970083478838205, 0.008822659961879253, 0.061535775661468506, 0.08299475163221359, 0.136037677526474, 0.011259052902460098], "count": [181]}, "timestamp": {"min": [0.0], "max": [6.0], "mean": [3.0], "std": [1.7416467303484175], "count": [181]}, "frame_index": {"min": [0], "max": [180], "mean": [90.0], "std": [52.24940191045253], "count": [181]}, "episode_index": {"min": [711], "max": [711], "mean": [711.0], "std": [0.0], "count": [181]}, "index": {"min": [372683], "max": [372863], "mean": [372773.0], "std": [52.24940191045253], "count": [181]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [181]}}} +{"episode_index": 712, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5508238779956427]], [[0.5228897194989107]], [[0.4874828540305011]]], "std": [[[0.2238429728501415]], [[0.21625307120737192]], [[0.21781557070700033]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5587856835511983]], [[0.5428953131808278]], [[0.51160299291939]]], "std": [[[0.21442701430689212]], [[0.19111657603028626]], [[0.20026820959571356]]], "count": [100]}, "observation.state": {"min": [0.35764747858047485, -0.10285136103630066, 0.12784141302108765, -4.53936767578125, -0.7240368127822876, -0.266171395778656, -0.6102966666221619, -0.2678784430027008, 0.17606599628925323, 2.0130233764648438, -0.45964518189430237, -0.028451060876250267], "max": [0.37812817096710205, -0.06712599098682404, 0.1315838098526001, -3.863537311553955, -0.5282366871833801, 0.29724210500717163, -0.5316483974456787, -0.20701557397842407, 0.2025466114282608, 2.3447530269622803, -0.149753600358963, 0.49353262782096863], "mean": [0.36341220140457153, -0.0828920304775238, 0.12950783967971802, -4.289673328399658, -0.6032124161720276, 0.06338556855916977, -0.5681514143943787, -0.24088038504123688, 0.18679088354110718, 2.147512912750244, -0.32317614555358887, 0.18515774607658386], "std": [0.0029022928792983294, 0.014724777080118656, 0.001041113748215139, 0.29183492064476013, 0.07051508873701096, 0.24374975264072418, 0.019691895693540573, 0.02323809079825878, 0.00833176076412201, 0.07925008237361908, 0.08532495051622391, 0.17737838625907898], "count": [124]}, "action": {"min": [-0.13617074489593506, -0.09192710369825363, 0.1294456571340561, 0.12761124968528748, 0.356267511844635, 0.24797861278057098, 0.7479729056358337, 0.10136492550373077, -0.1240113377571106, 0.09865354746580124, 0.020927684381604195, -0.35562288761138916, 0.12310177832841873, 0.8898839950561523], "max": [-0.13080942630767822, -0.08915089815855026, 0.13342061638832092, 0.2942977845668793, 0.4464051127433777, 0.4651374816894531, 0.890564501285553, 0.11315222084522247, -0.1000046357512474, 0.11691709607839584, 0.2328615039587021, -0.17141687870025635, 0.3530736565589905, 0.9539510011672974], "mean": [-0.13478420674800873, -0.08998788893222809, 0.1316099315881729, 0.2006869912147522, 0.3739209771156311, 0.32975950837135315, 0.8326206207275391, 0.10796178132295609, -0.11028115451335907, 0.10803090780973434, 0.13861072063446045, -0.24232785403728485, 0.2311069667339325, 0.9259927868843079], "std": [0.0009651739965192974, 0.0007365231867879629, 0.0013059371849521995, 0.07198016345500946, 0.019676506519317627, 0.09226855635643005, 0.06186835095286369, 0.0039365231059491634, 0.007882452569901943, 0.0043255300261080265, 0.07148561626672745, 0.043096814304590225, 0.062176041305065155, 0.018911004066467285], "count": [124]}, "timestamp": {"min": [0.0], "max": [4.1], "mean": [2.05], "std": [1.1931517552730295], "count": [124]}, "frame_index": {"min": [0], "max": [123], "mean": [61.5], "std": [35.79455265819088], "count": [124]}, "episode_index": {"min": [712], "max": [712], "mean": [712.0], "std": [0.0], "count": [124]}, "index": {"min": [372864], "max": [372987], "mean": [372925.5], "std": [35.79455265819088], "count": [124]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [124]}}} +{"episode_index": 713, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5735600898692811]], [[0.5414677668845316]], [[0.5053900626361656]]], "std": [[[0.22647733700473713]], [[0.22223210662981238]], [[0.22783353717647653]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5865596977124183]], [[0.5641758088235295]], [[0.5325943845315905]]], "std": [[[0.21654740781724044]], [[0.19757215884174845]], [[0.2109057960840722]]], "count": [100]}, "observation.state": {"min": [0.3713476061820984, -0.08823221921920776, 0.1316499263048172, -4.53873872756958, -0.6600909233093262, -0.024515829980373383, -0.5613499879837036, -0.29370325803756714, 0.16595882177352905, 2.0096683502197266, -0.37329092621803284, -0.014000359922647476], "max": [0.37617433071136475, -0.07776019722223282, 0.13287879526615143, -4.463879585266113, -0.6353597044944763, 0.15896691381931305, -0.4938996732234955, -0.18524518609046936, 0.19506961107254028, 2.5504586696624756, 0.3379020690917969, 0.6748924255371094], "mean": [0.37314966320991516, -0.08190736174583435, 0.13234427571296692, -4.519132137298584, -0.6440765857696533, 0.09201370924711227, -0.5226272940635681, -0.2306719273328781, 0.18119432032108307, 2.284708023071289, -0.1471991240978241, 0.2659870386123657], "std": [0.0010293812956660986, 0.004188655875623226, 0.0005021992838010192, 0.028416363522410393, 0.008520994335412979, 0.07726854085922241, 0.015722189098596573, 0.03241093084216118, 0.006646167021244764, 0.17571641504764557, 0.24352256953716278, 0.23534414172172546], "count": [128]}, "action": {"min": [-0.13168229162693024, -0.09198633581399918, 0.1312040537595749, 0.18546488881111145, 0.4197957515716553, 0.21978004276752472, 0.8272095322608948, 0.11118323355913162, -0.11726779490709305, 0.09122689068317413, 0.0021720132790505886, -0.4680035710334778, -0.04699195921421051, 0.8590861558914185], "max": [-0.13120213150978088, -0.09090594947338104, 0.13297085464000702, 0.26059490442276, 0.445857971906662, 0.24736666679382324, 0.8537225127220154, 0.12092602998018265, -0.10008514672517776, 0.11778061091899872, 0.17663978040218353, -0.21443615853786469, 0.413562148809433, 0.9265949130058289], "mean": [-0.1314605176448822, -0.09166392683982849, 0.13225683569908142, 0.21278685331344604, 0.42777538299560547, 0.24180185794830322, 0.8438305258750916, 0.1158657893538475, -0.10740356147289276, 0.10844815522432327, 0.09395226091146469, -0.32130753993988037, 0.23901264369487762, 0.8928595781326294], "std": [0.00014856965572107583, 0.00030550180235877633, 0.000746620527934283, 0.031557224690914154, 0.007915356196463108, 0.0046545108780264854, 0.011466410011053085, 0.002832296071574092, 0.005451128352433443, 0.00529715558513999, 0.057681504637002945, 0.0800122320652008, 0.15339751541614532, 0.018678812310099602], "count": [128]}, "timestamp": {"min": [0.0], "max": [4.233333333333333], "mean": [2.1166666666666667], "std": [1.2316429857894877], "count": [128]}, "frame_index": {"min": [0], "max": [127], "mean": [63.5], "std": [36.94928957368463], "count": [128]}, "episode_index": {"min": [713], "max": [713], "mean": [713.0], "std": [0.0], "count": [128]}, "index": {"min": [372988], "max": [373115], "mean": [373051.5], "std": [36.94928957368463], "count": [128]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [128]}}} +{"episode_index": 714, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5640308523965142]], [[0.5341859749455338]], [[0.4977617374727669]]], "std": [[[0.22271255046559715]], [[0.2184671454956149]], [[0.22267952961537388]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5778943872549019]], [[0.5579536710239651]], [[0.5254223284313726]]], "std": [[[0.21043555927556767]], [[0.19159425574936761]], [[0.20473707419848963]]], "count": [100]}, "observation.state": {"min": [0.34619468450546265, -0.08001524209976196, 0.129157155752182, -4.537899971008301, -0.7346944808959961, 0.11290159821510315, -0.56458580493927, -0.3017426133155823, 0.16266624629497528, 1.9247440099716187, -0.2926753759384155, -0.12427554279565811], "max": [0.3790549039840698, -0.0696667730808258, 0.13135047256946564, -4.53748083114624, -0.7208941578865051, 0.14716939628124237, -0.4752415418624878, -0.19938552379608154, 0.1999397724866867, 2.420870304107666, 0.6718416810035706, 0.6884718537330627], "mean": [0.3514631688594818, -0.07162098586559296, 0.1295318603515625, -4.537872314453125, -0.7330678105354309, 0.13757836818695068, -0.509574294090271, -0.2333403378725052, 0.184738889336586, 2.1194427013397217, 0.26491448283195496, 0.39669477939605713], "std": [0.006694298703223467, 0.0022831219248473644, 0.00034569474519230425, 0.00010472910798853263, 0.003457757644355297, 0.004851218778640032, 0.02491001784801483, 0.030894184485077858, 0.008746061474084854, 0.14611990749835968, 0.3271552622318268, 0.2316334843635559], "count": [207]}, "action": {"min": [-0.1363028734922409, -0.09033716470003128, 0.12965677678585052, 0.17948687076568604, 0.45096319913864136, 0.24921444058418274, 0.8288220167160034, 0.10773874819278717, -0.12409606575965881, 0.08887980878353119, 0.047196075320243835, -0.5657837986946106, -0.17184996604919434, 0.8120477199554443], "max": [-0.13051816821098328, -0.08885549753904343, 0.13216976821422577, 0.19647866487503052, 0.4608061909675598, 0.2573108673095703, 0.8367239236831665, 0.12331449240446091, -0.10147713124752045, 0.11701557040214539, 0.2812681198120117, -0.2852812111377716, 0.32407382130622864, 0.9037122130393982], "mean": [-0.13545413315296173, -0.08901549875736237, 0.13174214959144592, 0.18203628063201904, 0.4534863829612732, 0.25317907333374023, 0.8349248170852661, 0.11409565806388855, -0.11095758527517319, 0.10858309268951416, 0.12312724441289902, -0.45482438802719116, 0.06561549007892609, 0.8538656830787659], "std": [0.0011193715035915375, 0.00028663675766438246, 0.00045292239519767463, 0.002781580202281475, 0.0016808356158435345, 0.001107462914660573, 0.001419377513229847, 0.0040260059759020805, 0.006153912283480167, 0.00693304231390357, 0.06587933748960495, 0.0863761454820633, 0.17872919142246246, 0.02894326113164425], "count": [207]}, "timestamp": {"min": [0.0], "max": [6.866666666666666], "mean": [3.4333333333333336], "std": [1.9918351858041385], "count": [207]}, "frame_index": {"min": [0], "max": [206], "mean": [103.0], "std": [59.75505557412416], "count": [207]}, "episode_index": {"min": [714], "max": [714], "mean": [714.0], "std": [0.0], "count": [207]}, "index": {"min": [373116], "max": [373322], "mean": [373219.0], "std": [59.75505557412416], "count": [207]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [207]}}} +{"episode_index": 715, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5823173665577341]], [[0.5486779602396514]], [[0.5128818409586057]]], "std": [[[0.22853344170449497]], [[0.2252462970876887]], [[0.23133627132269413]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5996161356209151]], [[0.5748292919389979]], [[0.5433576879084967]]], "std": [[[0.21398722065394113]], [[0.19667245472715014]], [[0.21132881281421886]]], "count": [100]}, "observation.state": {"min": [0.3758036196231842, -0.08437085896730423, 0.12914547324180603, -4.53810977935791, -0.7243101000785828, 0.05723356083035469, -0.5464760065078735, -0.2753385901451111, 0.16343754529953003, 1.8635145425796509, -0.5235910415649414, -0.24833080172538757], "max": [0.3808697462081909, -0.07901900261640549, 0.13069455325603485, -4.537690162658691, -0.7184346914291382, 0.10734032094478607, -0.42379269003868103, -0.17713631689548492, 0.18897315859794617, 2.5712180137634277, 0.8807588815689087, 0.7944644689559937], "mean": [0.3773115575313568, -0.08210384100675583, 0.1296108067035675, -4.5379109382629395, -0.7230520248413086, 0.09940702468156815, -0.49132710695266724, -0.2188032865524292, 0.17861922085285187, 2.172398328781128, 0.12275854498147964, 0.3660229444503784], "std": [0.001275565242394805, 0.002032872522249818, 0.00045203042100183666, 4.9505444621900097e-05, 0.000909654248971492, 0.009662332013249397, 0.04263792932033539, 0.03199680894613266, 0.0072813211008906364, 0.2259620577096939, 0.4952309727668762, 0.30392733216285706], "count": [190]}, "action": {"min": [-0.13178664445877075, -0.090522401034832, 0.12890931963920593, 0.20100975036621094, 0.4630189836025238, 0.23723919689655304, 0.8207692503929138, 0.1127457246184349, -0.11112504452466965, 0.09182193130254745, 0.010613401420414448, -0.5707773566246033, -0.2724447548389435, 0.7838596701622009], "max": [-0.13049428164958954, -0.08916791528463364, 0.12979230284690857, 0.22230474650859833, 0.4697190523147583, 0.2489120066165924, 0.8266445994377136, 0.12452913820743561, -0.09940901398658752, 0.11555813997983932, 0.192353293299675, -0.12297265976667404, 0.4515962302684784, 0.9217212796211243], "mean": [-0.13143417239189148, -0.08974780887365341, 0.12937672436237335, 0.2037385106086731, 0.4640267491340637, 0.2468888759613037, 0.8259473443031311, 0.1202796921133995, -0.10517068952322006, 0.10866110771894455, 0.09298738837242126, -0.3810834288597107, 0.11061149090528488, 0.8648777008056641], "std": [0.00032643007580190897, 0.0004626805894076824, 0.00023019814398139715, 0.00431838259100914, 0.0012551503023132682, 0.002264132024720311, 0.001163192791864276, 0.00347154145129025, 0.002817302942276001, 0.00762522267177701, 0.05874054878950119, 0.13754712045192719, 0.24751660227775574, 0.04739304631948471], "count": [190]}, "timestamp": {"min": [0.0], "max": [6.3], "mean": [3.15], "std": [1.8282505298782221], "count": [190]}, "frame_index": {"min": [0], "max": [189], "mean": [94.5], "std": [54.847515896346664], "count": [190]}, "episode_index": {"min": [715], "max": [715], "mean": [715.0], "std": [0.0], "count": [190]}, "index": {"min": [373323], "max": [373512], "mean": [373417.5], "std": [54.847515896346664], "count": [190]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [190]}}} +{"episode_index": 716, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.566089656862745]], [[0.5344716040305011]], [[0.49822641339869284]]], "std": [[[0.2244828960576249]], [[0.2188030597559284]], [[0.22246583003913042]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5803452614379085]], [[0.5587392755991285]], [[0.5266865359477124]]], "std": [[[0.21194572812561766]], [[0.19156462258870816]], [[0.20352564882262006]]], "count": [100]}, "observation.state": {"min": [0.36120766401290894, -0.08937519043684006, 0.12795290350914001, -4.537899971008301, -0.7489046454429626, -0.0127312196418643, -0.5664083957672119, -0.27814966440200806, 0.16505272686481476, 2.165048599243164, -0.2209412157535553, -0.08771409094333649], "max": [0.3799661695957184, -0.08336690068244934, 0.13119103014469147, -4.5351738929748535, -0.7230803370475769, 0.06116833910346031, -0.5135849118232727, -0.20586489140987396, 0.19822478294372559, 2.499084711074829, 0.0788392573595047, 0.6086845993995667], "mean": [0.3684094548225403, -0.08628091216087341, 0.12920556962490082, -4.53774356842041, -0.7397428750991821, 0.03486497700214386, -0.5433582663536072, -0.24566997587680817, 0.1776341199874878, 2.2935235500335693, -0.1123465970158577, 0.3329450190067291], "std": [0.0054095773957669735, 0.001554743736051023, 0.0010979973012581468, 0.00025889885728247464, 0.008936951868236065, 0.022899344563484192, 0.016127662733197212, 0.021828653290867805, 0.01060572825372219, 0.07056745886802673, 0.07167450338602066, 0.17477232217788696], "count": [279]}, "action": {"min": [-0.13426463305950165, -0.09140793234109879, 0.1278354674577713, 0.22013218700885773, 0.46984943747520447, 0.22184526920318604, 0.8110689520835876, 0.10838460922241211, -0.12331941723823547, 0.09151884913444519, -0.06811781972646713, -0.4196835160255432, 0.1604519486427307, 0.8334594368934631], "max": [-0.13045142590999603, -0.08954837173223495, 0.13014520704746246, 0.24998041987419128, 0.48065245151519775, 0.24026110768318176, 0.8197827339172363, 0.1227109357714653, -0.09703023731708527, 0.11569894850254059, 0.22536176443099976, -0.3083673119544983, 0.3961390554904938, 0.9240244030952454], "mean": [-0.13292820751667023, -0.09033040702342987, 0.12908552587032318, 0.23060517013072968, 0.47449150681495667, 0.23337161540985107, 0.8167588710784912, 0.11487644910812378, -0.10673613846302032, 0.10296446084976196, 0.07950005680322647, -0.3694913983345032, 0.2360430806875229, 0.8891746997833252], "std": [0.0011513932840898633, 0.0005420377128757536, 0.0006906502530910075, 0.008732864633202553, 0.0028462870977818966, 0.005638494156301022, 0.002407910069450736, 0.004839410539716482, 0.0079475874081254, 0.006841359660029411, 0.08348941802978516, 0.02509063109755516, 0.05191013216972351, 0.02265307307243347], "count": [279]}, "timestamp": {"min": [0.0], "max": [9.266666666666667], "mean": [4.633333333333335], "std": [2.6846615070446793], "count": [279]}, "frame_index": {"min": [0], "max": [278], "mean": [139.0], "std": [80.53984521134038], "count": [279]}, "episode_index": {"min": [716], "max": [716], "mean": [716.0], "std": [0.0], "count": [279]}, "index": {"min": [373513], "max": [373791], "mean": [373652.0], "std": [80.53984521134038], "count": [279]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [279]}}} +{"episode_index": 717, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6042134504357298]], [[0.5741906127450981]], [[0.5439631862745098]]], "std": [[[0.2290663598515096]], [[0.22121857907005874]], [[0.22613280511445424]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6151982979302832]], [[0.5943703213507625]], [[0.5676635729847495]]], "std": [[[0.21841295798906024]], [[0.1953904531219708]], [[0.20787470601459904]]], "count": [100]}, "observation.state": {"min": [0.37644460797309875, -0.10401748865842819, 0.13360342383384705, -4.538528919219971, -0.7811508774757385, 0.060750849545001984, -0.5307988524436951, -0.2668667733669281, 0.162820503115654, 2.1208040714263916, -0.4304049611091614, -0.06870312988758087], "max": [0.40412288904190063, -0.05675436183810234, 0.14867669343948364, -4.53748083114624, -0.5275535583496094, 0.32145655155181885, -0.43587878346443176, -0.14683231711387634, 0.19201943278312683, 2.817603826522827, 0.7680337429046631, 0.8477669358253479], "mean": [0.38212814927101135, -0.07431283593177795, 0.1427818238735199, -4.537816524505615, -0.6742109656333923, 0.2031211405992508, -0.4906160235404968, -0.22043770551681519, 0.1805753856897354, 2.5131261348724365, -0.056775253266096115, 0.26544931530952454], "std": [0.005844547413289547, 0.01722014881670475, 0.0027336874045431614, 0.00024260110512841493, 0.0915704146027565, 0.05747683346271515, 0.03305835649371147, 0.04636702686548233, 0.006137734744697809, 0.2320781797170639, 0.45101428031921387, 0.34849685430526733], "count": [240]}, "action": {"min": [-0.12841017544269562, -0.09951435029506683, 0.12922385334968567, 0.10811075568199158, 0.36754006147384644, 0.2289019525051117, 0.8067063093185425, 0.11449111998081207, -0.11593396216630936, 0.102060467004776, -0.056711092591285706, -0.602607250213623, -0.15137611329555511, 0.7813291549682617], "max": [-0.12363851070404053, -0.09280983358621597, 0.14534808695316315, 0.23654481768608093, 0.4898871183395386, 0.28161537647247314, 0.8839384317398071, 0.13140174746513367, -0.09618894755840302, 0.11986823379993439, 0.14635717868804932, -0.2202669233083725, 0.4879252314567566, 0.8813831806182861], "mean": [-0.12599332630634308, -0.09563324600458145, 0.14016494154930115, 0.16077229380607605, 0.4333263635635376, 0.26222333312034607, 0.8452637791633606, 0.12014774233102798, -0.10646872222423553, 0.11066754907369614, 0.06154460832476616, -0.3637349009513855, 0.29342496395111084, 0.8328807353973389], "std": [0.0011570838978514075, 0.0025431178510189056, 0.003444501431658864, 0.032093025743961334, 0.03702106699347496, 0.017284797504544258, 0.021194279193878174, 0.003700988134369254, 0.004896439611911774, 0.006190449930727482, 0.06379657983779907, 0.150412917137146, 0.23767657577991486, 0.030598334968090057], "count": [240]}, "timestamp": {"min": [0.0], "max": [7.966666666666667], "mean": [3.9833333333333334], "std": [2.309381029787146], "count": [240]}, "frame_index": {"min": [0], "max": [239], "mean": [119.5], "std": [69.2814308936144], "count": [240]}, "episode_index": {"min": [717], "max": [717], "mean": [717.0], "std": [0.0], "count": [240]}, "index": {"min": [373792], "max": [374031], "mean": [373911.5], "std": [69.2814308936144], "count": [240]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [240]}}} +{"episode_index": 718, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5807939896514162]], [[0.5518652369281046]], [[0.5204356318082789]]], "std": [[[0.23264650478753637]], [[0.22157051591895277]], [[0.2252782581583132]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5880530746187363]], [[0.5689036819172114]], [[0.5408510866013071]]], "std": [[[0.22476859640713034]], [[0.1975865954425116]], [[0.2089592122978266]]], "count": [100]}, "observation.state": {"min": [0.38890910148620605, -0.10110601782798767, 0.13171343505382538, -4.53810977935791, -0.7128326296806335, 0.1459786295890808, -0.5384289622306824, -0.25888916850090027, 0.16902844607830048, 2.1428215503692627, -0.14442478120326996, 0.009871110320091248], "max": [0.41054049134254456, -0.09096606820821762, 0.13774506747722626, -4.537690162658691, -0.6173236966133118, 0.23836873471736908, -0.4673720598220825, -0.1682242900133133, 0.19277776777744293, 2.6452386379241943, 0.40540048480033875, 0.7915234565734863], "mean": [0.3985884189605713, -0.09764833003282547, 0.13315431773662567, -4.537926197052002, -0.6767503023147583, 0.18912050127983093, -0.5009177923202515, -0.22625774145126343, 0.1833752989768982, 2.3525564670562744, 0.10787051916122437, 0.31662797927856445], "std": [0.006444609723985195, 0.002031565411016345, 0.0019245825242251158, 0.00016362546011805534, 0.04238831251859665, 0.02880832739174366, 0.018007617443799973, 0.02398904599249363, 0.005915351212024689, 0.10439575463533401, 0.13365231454372406, 0.18785573542118073], "count": [378]}, "action": {"min": [-0.12889975309371948, -0.09562908113002777, 0.12834657728672028, 0.1623266190290451, 0.41467568278312683, 0.2543378174304962, 0.8280401825904846, 0.10700784623622894, -0.12003317475318909, 0.10110486298799515, -0.0900333970785141, -0.5722050666809082, 0.028654901310801506, 0.776860237121582], "max": [-0.12357629835605621, -0.09174077212810516, 0.1326388120651245, 0.1976519078016281, 0.4579929709434509, 0.2676599621772766, 0.8552747368812561, 0.1249115914106369, -0.09987100958824158, 0.11635264754295349, 0.2481805682182312, -0.3097921907901764, 0.3481500744819641, 0.9146077036857605], "mean": [-0.12701497972011566, -0.09337326139211655, 0.12948521971702576, 0.1780417263507843, 0.4417056441307068, 0.26329877972602844, 0.8386538028717041, 0.11678551137447357, -0.11019539088010788, 0.11020611226558685, 0.11600805073976517, -0.44274675846099854, 0.22717757523059845, 0.8490200042724609], "std": [0.0015787809388712049, 0.0010288183111697435, 0.001329044345766306, 0.009279627352952957, 0.01781449466943741, 0.0023089605383574963, 0.011022982187569141, 0.004271834623068571, 0.005584046710282564, 0.003560049459338188, 0.08502007275819778, 0.05672481656074524, 0.08052700757980347, 0.033805157989263535], "count": [378]}, "timestamp": {"min": [0.0], "max": [12.566666666666666], "mean": [6.283333333333333], "std": [3.6372939676918348], "count": [378]}, "frame_index": {"min": [0], "max": [377], "mean": [188.5], "std": [109.11881903075503], "count": [378]}, "episode_index": {"min": [718], "max": [718], "mean": [718.0], "std": [0.0], "count": [378]}, "index": {"min": [374032], "max": [374409], "mean": [374220.5], "std": [109.11881903075503], "count": [378]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [378]}}} +{"episode_index": 719, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6425704602396515]], [[0.624915522875817]], [[0.597244855664488]]], "std": [[[0.24154569112421262]], [[0.24072686905637258]], [[0.24630447999589955]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6625389433551198]], [[0.6528467619825709]], [[0.6274996868191721]]], "std": [[[0.21848406888352306]], [[0.20681090134248287]], [[0.22042909681745315]]], "count": [100]}, "observation.state": {"min": [0.30198201537132263, -0.058785438537597656, 0.12749141454696655, -4.53810977935791, -0.776778519153595, 0.046273428946733475, -0.5493334531784058, -0.2606576681137085, 0.1756848841905594, 2.280587911605835, -0.15603888034820557, -0.10606522858142853], "max": [0.3122841417789459, -0.05215933918952942, 0.1287449300289154, -4.537690162658691, -0.7694001197814941, 0.15154224634170532, -0.4871731698513031, -0.18031808733940125, 0.20092624425888062, 2.7888762950897217, 0.5949153304100037, 0.8930391669273376], "mean": [0.3039792776107788, -0.05506135895848274, 0.128301203250885, -4.537900924682617, -0.7748569250106812, 0.13705144822597504, -0.5123778581619263, -0.22269077599048615, 0.1869637668132782, 2.3911385536193848, 0.2332233339548111, 0.43707239627838135], "std": [0.0017764007207006216, 0.0018499421421438456, 0.0004925000248476863, 0.00017551104247104377, 0.0017044257838279009, 0.01755484752357006, 0.022372957319021225, 0.02916109934449196, 0.006348237860947847, 0.10583079606294632, 0.24570083618164062, 0.31824544072151184], "count": [153]}, "action": {"min": [-0.14373600482940674, -0.08775196224451065, 0.13416717946529388, 0.16560855507850647, 0.44975990056991577, 0.2316882163286209, 0.8277049660682678, 0.10872454941272736, -0.12461721152067184, 0.09916529059410095, -0.04971195384860039, -0.6180160641670227, -0.06056923791766167, 0.7667269706726074], "max": [-0.14174164831638336, -0.0864318311214447, 0.13480715453624725, 0.20994627475738525, 0.46582260727882385, 0.25490787625312805, 0.8398315906524658, 0.11579769849777222, -0.10552822053432465, 0.11866878718137741, 0.23859375715255737, -0.3405381143093109, 0.41288694739341736, 0.8703110814094543], "mean": [-0.14319026470184326, -0.08721981942653656, 0.1345617026090622, 0.17057080566883087, 0.4523276388645172, 0.25139519572257996, 0.8384682536125183, 0.11288711428642273, -0.11153803020715714, 0.1110793873667717, 0.07833040505647659, -0.49835869669914246, 0.17439205944538116, 0.8199015855789185], "std": [0.00039907911559566855, 0.0004839598841499537, 0.00019097326730843633, 0.007171354256570339, 0.0024913903325796127, 0.003945890814065933, 0.0017981146229431033, 0.0018024136079475284, 0.005298142787069082, 0.005717823747545481, 0.09194283187389374, 0.08303038030862808, 0.1641857922077179, 0.023399759083986282], "count": [153]}, "timestamp": {"min": [0.0], "max": [5.066666666666666], "mean": [2.533333333333333], "std": [1.4722117400046122], "count": [153]}, "frame_index": {"min": [0], "max": [152], "mean": [76.0], "std": [44.16635220013836], "count": [153]}, "episode_index": {"min": [719], "max": [719], "mean": [719.0], "std": [0.0], "count": [153]}, "index": {"min": [374410], "max": [374562], "mean": [374486.0], "std": [44.16635220013836], "count": [153]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [153]}}} +{"episode_index": 720, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6388317020697168]], [[0.6211237091503269]], [[0.5923952723311546]]], "std": [[[0.24707954725446366]], [[0.2462321196444875]], [[0.2520209776909964]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6595905337690632]], [[0.6506075462962964]], [[0.6244248229847494]]], "std": [[[0.2239180970304177]], [[0.21149224262432417]], [[0.22482303071418575]]], "count": [100]}, "observation.state": {"min": [0.3094499111175537, -0.06736540049314499, 0.1286386251449585, -4.537899971008301, -0.7812874913215637, 0.1906307488679886, -0.6075860261917114, -0.2751455307006836, 0.17730136215686798, 2.375577449798584, -0.38394856452941895, -0.32757824659347534], "max": [0.31098672747612, -0.0659598633646965, 0.12935808300971985, -4.537690162658691, -0.778008222579956, 0.19774433970451355, -0.46295467019081116, -0.21475376188755035, 0.2004881054162979, 2.7783918380737305, 0.2285928577184677, 0.3635146915912628], "mean": [0.31037598848342896, -0.06662960350513458, 0.12912730872631073, -4.537896156311035, -0.7785681486129761, 0.1940753310918808, -0.5432464480400085, -0.23470163345336914, 0.18753087520599365, 2.6354525089263916, -0.11462781578302383, 0.12530776858329773], "std": [0.00042265915544703603, 0.0005229798844084144, 0.00027364003472030163, 3.8435275200754404e-05, 0.00046891687088645995, 0.001192398020066321, 0.0541902594268322, 0.01700386218726635, 0.007944418117403984, 0.10855776816606522, 0.2313460409641266, 0.18419094383716583], "count": [174]}, "action": {"min": [-0.14206764101982117, -0.08933005481958389, 0.1334284543991089, 0.1500711590051651, 0.44772958755493164, 0.26597216725349426, 0.8390429615974426, 0.10436674952507019, -0.126719132065773, 0.10243150591850281, -0.04723775386810303, -0.5031168460845947, 0.2542836368083954, 0.7792174220085144], "max": [-0.1418451964855194, -0.08874185383319855, 0.1340416818857193, 0.1535278707742691, 0.44912999868392944, 0.26764366030693054, 0.8398042321205139, 0.11708936840295792, -0.0979640781879425, 0.12020225077867508, 0.26603418588638306, -0.2583003640174866, 0.5043728351593018, 0.8451452255249023], "mean": [-0.14193293452262878, -0.08910635113716125, 0.13380475342273712, 0.15185050666332245, 0.4480873942375183, 0.26676350831985474, 0.8396403789520264, 0.1097414493560791, -0.11101733893156052, 0.1100190058350563, 0.09111056476831436, -0.38356876373291016, 0.39408987760543823, 0.8166611790657043], "std": [4.5150871301302686e-05, 0.00021926320914644748, 0.00019923561194445938, 0.0005798055208288133, 0.0003151049604639411, 0.00028502524946816266, 0.0001490962167736143, 0.004034075886011124, 0.009901890531182289, 0.006572668440639973, 0.09168710559606552, 0.08256418257951736, 0.08257274329662323, 0.017031919211149216], "count": [174]}, "timestamp": {"min": [0.0], "max": [5.766666666666667], "mean": [2.8833333333333333], "std": [1.6742881295466265], "count": [174]}, "frame_index": {"min": [0], "max": [173], "mean": [86.5], "std": [50.22864388639879], "count": [174]}, "episode_index": {"min": [720], "max": [720], "mean": [720.0], "std": [0.0], "count": [174]}, "index": {"min": [374563], "max": [374736], "mean": [374649.5], "std": [50.22864388639879], "count": [174]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [174]}}} +{"episode_index": 721, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6395841911764706]], [[0.6206753894335513]], [[0.5932752913943355]]], "std": [[[0.24853972983137762]], [[0.24737468820558858]], [[0.2532969118056409]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6606587336601307]], [[0.6506293845315904]], [[0.6265588779956427]]], "std": [[[0.22723796396073032]], [[0.21384988413534392]], [[0.22640508234317014]]], "count": [100]}, "observation.state": {"min": [0.30542635917663574, -0.06499452143907547, 0.1283988207578659, -4.53873872756958, -0.9903413653373718, 0.06745342910289764, -0.5761390328407288, -0.32186034321784973, 0.17509636282920837, 2.0652363300323486, -0.4331377148628235, -0.0228843092918396], "max": [0.31997600197792053, -0.04804312065243721, 0.13148917257785797, -4.53748083114624, -0.8694180250167847, 0.2540608048439026, -0.5053293108940125, -0.21779650449752808, 0.19904403388500214, 2.7410669326782227, 0.3366723358631134, 0.8616449236869812], "mean": [0.31205910444259644, -0.06116192042827606, 0.1300244927406311, -4.538033962249756, -0.9252181649208069, 0.1491326093673706, -0.5407851338386536, -0.27137449383735657, 0.1872534453868866, 2.3567819595336914, -0.27325183153152466, 0.5327847599983215], "std": [0.003567308187484741, 0.004205996636301279, 0.0011897938093170524, 0.0003385500458534807, 0.048537202179431915, 0.040585778653621674, 0.025895897299051285, 0.02659188024699688, 0.0062757558189332485, 0.16431322693824768, 0.16862313449382782, 0.26468315720558167], "count": [252]}, "action": {"min": [-0.14219748973846436, -0.08938700705766678, 0.13267022371292114, 0.10146133601665497, 0.49048373103141785, 0.25783687829971313, 0.7759931087493896, 0.10527287423610687, -0.12875455617904663, 0.09500236809253693, -0.26839256286621094, -0.60773104429245, 0.16027209162712097, 0.7382855415344238], "max": [-0.13931424915790558, -0.08529184013605118, 0.13519680500030518, 0.18499396741390228, 0.5447958111763, 0.31006762385368347, 0.8127785325050354, 0.11957982182502747, -0.10460023581981659, 0.11385301500558853, 0.2239784151315689, -0.21593588590621948, 0.38807475566864014, 0.9482033252716064], "mean": [-0.14085954427719116, -0.08796119689941406, 0.13399052619934082, 0.15387770533561707, 0.5124397277832031, 0.27660155296325684, 0.7976570725440979, 0.11198202520608902, -0.11556762456893921, 0.10661903768777847, -0.03711352124810219, -0.34524843096733093, 0.2547340393066406, 0.8837778568267822], "std": [0.0007716043619439006, 0.0013138111680746078, 0.0008556882967241108, 0.0163284782320261, 0.01997491903603077, 0.010445266030728817, 0.01367906667292118, 0.003298605792224407, 0.007292172405868769, 0.004160800017416477, 0.1446305215358734, 0.0812501311302185, 0.0616372711956501, 0.046414393931627274], "count": [252]}, "timestamp": {"min": [0.0], "max": [8.366666666666667], "mean": [4.183333333333334], "std": [2.4248520382504593], "count": [252]}, "frame_index": {"min": [0], "max": [251], "mean": [125.5], "std": [72.74556114751378], "count": [252]}, "episode_index": {"min": [721], "max": [721], "mean": [721.0], "std": [0.0], "count": [252]}, "index": {"min": [374737], "max": [374988], "mean": [374862.5], "std": [72.74556114751378], "count": [252]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [252]}}} +{"episode_index": 722, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6010013398692811]], [[0.5756505637254903]], [[0.5452703948801743]]], "std": [[[0.23366568760045067]], [[0.22842027777459192]], [[0.23207596205038095]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6148562227668846]], [[0.5990826906318083]], [[0.5715487282135077]]], "std": [[[0.21776832828120496]], [[0.19774031390150457]], [[0.20989032459288073]]], "count": [100]}, "observation.state": {"min": [0.3764832317829132, -0.10557747632265091, 0.13489194214344025, -4.5383195877075195, -0.7490413188934326, 0.3112637996673584, -0.5340347290039062, -0.3197443187236786, 0.17296268045902252, 2.316025495529175, -0.29937055706977844, -0.04315083101391792], "max": [0.3830166459083557, -0.09715969860553741, 0.13746248185634613, -4.537271022796631, -0.6379558444023132, 0.3353646993637085, -0.4817054569721222, -0.21924838423728943, 0.1960444152355194, 2.5942840576171875, 0.10452692210674286, 0.8118655681610107], "mean": [0.3789865970611572, -0.10214421898126602, 0.13644267618656158, -4.537920951843262, -0.6561256647109985, 0.3199675381183624, -0.5003412365913391, -0.24830584228038788, 0.18410035967826843, 2.4396634101867676, -0.19605974853038788, 0.48327264189720154], "std": [0.001709107542410493, 0.0031694977078586817, 0.001096947118639946, 0.00021514199033845216, 0.027872754260897636, 0.004928133450448513, 0.014572004787623882, 0.026422273367643356, 0.00617509288713336, 0.07123992592096329, 0.10096463561058044, 0.24747154116630554], "count": [170]}, "action": {"min": [-0.12995773553848267, -0.09769484400749207, 0.13170407712459564, 0.11221040785312653, 0.40069496631622314, 0.2808721661567688, 0.8352954387664795, 0.11420892179012299, -0.12171995639801025, 0.0978134274482727, -0.20008023083209991, -0.48409417271614075, 0.2267310917377472, 0.8424557447433472], "max": [-0.12817081809043884, -0.09507250785827637, 0.13342653214931488, 0.13118858635425568, 0.44215500354766846, 0.3068864047527313, 0.8622356057167053, 0.12704695761203766, -0.10502219200134277, 0.11861669272184372, 0.16189847886562347, -0.2626008093357086, 0.43751251697540283, 0.9052280187606812], "mean": [-0.1290593147277832, -0.09664728492498398, 0.1328328251838684, 0.12625752389431, 0.40736573934555054, 0.28494831919670105, 0.8583142161369324, 0.1183864176273346, -0.11241266876459122, 0.11019039154052734, -0.020151859149336815, -0.36909031867980957, 0.2852337956428528, 0.8727770447731018], "std": [0.0005841561942361295, 0.0011057205265387893, 0.0005881527322344482, 0.00473291240632534, 0.010299942456185818, 0.006353720556944609, 0.006618926767259836, 0.003400566754862666, 0.005877005867660046, 0.004618622362613678, 0.1233203187584877, 0.041232816874980927, 0.05577867105603218, 0.015777988359332085], "count": [170]}, "timestamp": {"min": [0.0], "max": [5.633333333333334], "mean": [2.8166666666666664], "std": [1.6357974609753292], "count": [170]}, "frame_index": {"min": [0], "max": [169], "mean": [84.5], "std": [49.073923829259876], "count": [170]}, "episode_index": {"min": [722], "max": [722], "mean": [722.0], "std": [0.0], "count": [170]}, "index": {"min": [374989], "max": [375158], "mean": [375073.5], "std": [49.073923829259876], "count": [170]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [170]}}} +{"episode_index": 723, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6134815495642703]], [[0.5871186138344227]], [[0.5576111791938998]]], "std": [[[0.23911773370454475]], [[0.23502038055851318]], [[0.2396718621901053]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6309357924836602]], [[0.6131628485838779]], [[0.5862123393246187]]], "std": [[[0.2193672243148717]], [[0.20068837167663328]], [[0.21312968266060028]]], "count": [100]}, "observation.state": {"min": [0.38358041644096375, -0.11506099998950958, 0.1353949010372162, -4.5383195877075195, -0.75177401304245, 0.3212431073188782, -0.5135076642036438, -0.29073771834373474, 0.17003177106380463, 2.352301836013794, -0.4234365224838257, 0.013450980186462402], "max": [0.39348867535591125, -0.10126820206642151, 0.1415354162454605, -4.53748083114624, -0.6365894675254822, 0.39024245738983154, -0.4407363831996918, -0.18508301675319672, 0.19026167690753937, 2.6154627799987793, 0.32369187474250793, 1.305351734161377], "mean": [0.38930177688598633, -0.10820814222097397, 0.1371432989835739, -4.537850856781006, -0.681954026222229, 0.3494147062301636, -0.47437408566474915, -0.22923779487609863, 0.18169532716274261, 2.4611294269561768, -0.0018712579039856791, 0.788420557975769], "std": [0.0035720830783247948, 0.004811075050383806, 0.0016628579469397664, 0.00021247206314001232, 0.04295136407017708, 0.014681863598525524, 0.022120635956525803, 0.04162980988621712, 0.005289614200592041, 0.0613275021314621, 0.2589743137359619, 0.4222714602947235], "count": [233]}, "action": {"min": [-0.12808310985565186, -0.10108792781829834, 0.13059568405151367, 0.09555157274007797, 0.399414986371994, 0.28693050146102905, 0.8342818021774292, 0.11690262705087662, -0.11722628027200699, 0.09702631831169128, -0.26839715242385864, -0.5613353252410889, -0.05553533509373665, 0.7928962111473083], "max": [-0.12551279366016388, -0.09557468444108963, 0.13469652831554413, 0.12718665599822998, 0.4435633718967438, 0.3077407777309418, 0.8615071177482605, 0.1272948980331421, -0.10672318190336227, 0.11774104088544846, 0.1454642117023468, -0.2591109871864319, 0.43832093477249146, 0.8900455236434937], "mean": [-0.12704448401927948, -0.09740805625915527, 0.13193199038505554, 0.11501496285200119, 0.41665011644363403, 0.2979070246219635, 0.8508601784706116, 0.12220916152000427, -0.10995908826589584, 0.11140765249729156, -0.11250381916761398, -0.4446064233779907, 0.17251341044902802, 0.8383000493049622], "std": [0.0007731314981356263, 0.0015879797283560038, 0.0010726952459663153, 0.006298872176557779, 0.01654864475131035, 0.006834814324975014, 0.010121972300112247, 0.0026486364658921957, 0.0029888893477618694, 0.007045041769742966, 0.12768679857254028, 0.10027884691953659, 0.17199432849884033, 0.034900106489658356], "count": [233]}, "timestamp": {"min": [0.0], "max": [7.733333333333333], "mean": [3.866666666666667], "std": [2.242022896106698], "count": [233]}, "frame_index": {"min": [0], "max": [232], "mean": [116.0], "std": [67.26068688320095], "count": [233]}, "episode_index": {"min": [723], "max": [723], "mean": [723.0], "std": [0.0], "count": [233]}, "index": {"min": [375159], "max": [375391], "mean": [375275.0], "std": [67.26068688320095], "count": [233]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [233]}}} +{"episode_index": 724, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5960969580610022]], [[0.571625373093682]], [[0.5416377614379084]]], "std": [[[0.24042824418195122]], [[0.2339020683557963]], [[0.23765898894899415]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6095897766884532]], [[0.594793864379085]], [[0.5673806590413943]]], "std": [[[0.2271042347951486]], [[0.20505063418939967]], [[0.21635969080061496]]], "count": [100]}, "observation.state": {"min": [0.3879437744617462, -0.11735464632511139, 0.13401435315608978, -4.5383195877075195, -0.7284091711044312, 0.334138423204422, -0.5205662250518799, -0.2941511571407318, 0.16922028362751007, 2.29883074760437, -0.46155810356140137, 0.0006003769813105464], "max": [0.40608444809913635, -0.10553886741399765, 0.13954173028469086, -4.537690162658691, -0.5824813842773438, 0.39653223752975464, -0.4593404233455658, -0.18699052929878235, 0.19866162538528442, 2.694096326828003, 0.5271435976028442, 1.1849706172943115], "mean": [0.39549383521080017, -0.11153395473957062, 0.13697269558906555, -4.5378851890563965, -0.6479936242103577, 0.37353941798210144, -0.48719337582588196, -0.23697687685489655, 0.18614141643047333, 2.4302377700805664, 0.007747895084321499, 0.5890712738037109], "std": [0.005907461978495121, 0.0043445611372590065, 0.0015109291998669505, 0.00021003383153583854, 0.04677734524011612, 0.018457720056176186, 0.020046450197696686, 0.038028422743082047, 0.0073546539060771465, 0.11391657590866089, 0.3633384108543396, 0.39822500944137573], "count": [186]}, "action": {"min": [-0.12777099013328552, -0.09975441545248032, 0.12738804519176483, 0.09731356799602509, 0.3765527307987213, 0.2863334119319916, 0.8362979292869568, 0.11229298263788223, -0.122946597635746, 0.09661361575126648, -0.16690944135189056, -0.6040819883346558, -0.10725054889917374, 0.7782987356185913], "max": [-0.12463551014661789, -0.09597320854663849, 0.1335681676864624, 0.12672077119350433, 0.4348350763320923, 0.3184072971343994, 0.8743290901184082, 0.12539519369602203, -0.10619290918111801, 0.119630828499794, 0.1375095695257187, -0.25783050060272217, 0.4673004150390625, 0.890725314617157], "mean": [-0.1262744963169098, -0.09775347262620926, 0.13126018643379211, 0.10874772071838379, 0.4023657441139221, 0.2970580756664276, 0.8587594032287598, 0.11835408955812454, -0.1130903884768486, 0.11221031844615936, -0.022783540189266205, -0.42087623476982117, 0.19374042749404907, 0.8466822504997253], "std": [0.0011593105737119913, 0.0013240352272987366, 0.0011478749802336097, 0.007856114767491817, 0.017910825088620186, 0.007896553725004196, 0.010944212786853313, 0.0037378601264208555, 0.00494738994166255, 0.006433012429624796, 0.10400542616844177, 0.1236155703663826, 0.20044344663619995, 0.04077281802892685], "count": [186]}, "timestamp": {"min": [0.0], "max": [6.166666666666667], "mean": [3.0833333333333335], "std": [1.7897599673533713], "count": [186]}, "frame_index": {"min": [0], "max": [185], "mean": [92.5], "std": [53.692799020601136], "count": [186]}, "episode_index": {"min": [724], "max": [724], "mean": [724.0], "std": [0.0], "count": [186]}, "index": {"min": [375392], "max": [375577], "mean": [375484.5], "std": [53.692799020601136], "count": [186]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [186]}}} +{"episode_index": 725, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.620497385620915]], [[0.5929606399782135]], [[0.5654665958605664]]], "std": [[[0.24850821903170617]], [[0.24373760073831546]], [[0.24964214715166702]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6384870533769064]], [[0.6198946051198257]], [[0.5950663507625272]]], "std": [[[0.2300213230307547]], [[0.21109346253259698]], [[0.22370826860882947]]], "count": [100]}, "observation.state": {"min": [0.3935967981815338, -0.12907002866268158, 0.13387824594974518, -4.5383195877075195, -0.7274526953697205, 0.2792361080646515, -0.520481288433075, -0.2812928259372711, 0.16788381338119507, 2.135901689529419, -0.5938222408294678, 0.08609657734632492], "max": [0.41073355078697205, -0.11496060341596603, 0.13950932025909424, -4.537690162658691, -0.638638973236084, 0.4072638154029846, -0.43284374475479126, -0.1645173728466034, 0.1899842619895935, 2.6362218856811523, 0.9399224519729614, 1.215314507484436], "mean": [0.4027971923351288, -0.12121181935071945, 0.13651315867900848, -4.537987232208252, -0.6914898157119751, 0.3587687611579895, -0.4743576943874359, -0.22807325422763824, 0.18208856880664825, 2.3671457767486572, 0.07612652331590652, 0.6886760592460632], "std": [0.005012143403291702, 0.005275452509522438, 0.0023963716812431812, 0.00022481006453745067, 0.0360848493874073, 0.04279884323477745, 0.029712438583374023, 0.042275894433259964, 0.006571302190423012, 0.15606625378131866, 0.5462105870246887, 0.37481024861335754], "count": [164]}, "action": {"min": [-0.12603189051151276, -0.10141132026910782, 0.12650413811206818, 0.0924643948674202, 0.4076594114303589, 0.2770400941371918, 0.8350802063941956, 0.11460316181182861, -0.11371615529060364, 0.09782059490680695, -0.16613110899925232, -0.6204930543899536, -0.2907029688358307, 0.7251192331314087], "max": [-0.12373749166727066, -0.09579052031040192, 0.13138225674629211, 0.158040851354599, 0.43774542212486267, 0.3211679756641388, 0.8559061288833618, 0.12932541966438293, -0.1053558886051178, 0.1184399276971817, 0.1422923505306244, -0.17304763197898865, 0.45374375581741333, 0.9120863080024719], "mean": [-0.12516522407531738, -0.09839712828397751, 0.12918752431869507, 0.1173345074057579, 0.42294907569885254, 0.30477622151374817, 0.844701886177063, 0.12177985906600952, -0.10926476120948792, 0.11092647910118103, -0.05406969413161278, -0.4195459485054016, 0.1255483627319336, 0.8403459191322327], "std": [0.0007478572078980505, 0.0022720934357494116, 0.0018065242329612374, 0.022729957476258278, 0.009777202270925045, 0.016414061188697815, 0.007437901105731726, 0.004195310175418854, 0.0026141181588172913, 0.0065301586873829365, 0.08472173660993576, 0.1482706069946289, 0.2574181854724884, 0.06072704493999481], "count": [164]}, "timestamp": {"min": [0.0], "max": [5.433333333333334], "mean": [2.7166666666666663], "std": [1.5780613986083616], "count": [164]}, "frame_index": {"min": [0], "max": [163], "mean": [81.5], "std": [47.341841958250846], "count": [164]}, "episode_index": {"min": [725], "max": [725], "mean": [725.0], "std": [0.0], "count": [164]}, "index": {"min": [375578], "max": [375741], "mean": [375659.5], "std": [47.341841958250846], "count": [164]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [164]}}} +{"episode_index": 726, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5988833006535947]], [[0.5748347521786492]], [[0.5465906236383442]]], "std": [[[0.2384685795388367]], [[0.23203358256616763]], [[0.23627473756635445]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6103417973856209]], [[0.5955309994553377]], [[0.5689497140522876]]], "std": [[[0.22710818959375598]], [[0.2055377129428941]], [[0.2182751701441979]]], "count": [100]}, "observation.state": {"min": [0.36484506726264954, -0.1298345923423767, 0.13208287954330444, -4.5383195877075195, -0.712149441242218, 0.29531389474868774, -0.5248137712478638, -0.2816326320171356, 0.17256730794906616, 2.153306007385254, -0.2083706557750702, 0.12683159112930298], "max": [0.40743595361709595, -0.11534673720598221, 0.13579803705215454, -4.537690162658691, -0.6192366480827332, 0.4220527112483978, -0.45480719208717346, -0.18996377289295197, 0.20031829178333282, 2.6674656867980957, 0.7448055744171143, 1.0590721368789673], "mean": [0.3736562430858612, -0.11720827966928482, 0.1352914422750473, -4.537911415100098, -0.6262679100036621, 0.30682650208473206, -0.4818381667137146, -0.22413823008537292, 0.18890774250030518, 2.33963942527771, 0.3010461926460266, 0.6274776458740234], "std": [0.007066045422106981, 0.0022378338035196066, 0.0008058642270043492, 9.93701396510005e-05, 0.016103003174066544, 0.020972922444343567, 0.023332083597779274, 0.030516277998685837, 0.006075478624552488, 0.14268040657043457, 0.2801998555660248, 0.31684595346450806], "count": [230]}, "action": {"min": [-0.13218949735164642, -0.09884609282016754, 0.12674014270305634, 0.08837588876485825, 0.3881832957267761, 0.27245399355888367, 0.84250408411026, 0.10547298192977905, -0.12323059141635895, 0.0987694263458252, -0.09704068303108215, -0.6098344326019287, -0.17499090731143951, 0.7815871834754944], "max": [-0.1254143863916397, -0.09634704887866974, 0.13141101598739624, 0.1468147337436676, 0.4221979081630707, 0.32268357276916504, 0.8682584166526794, 0.12308615446090698, -0.10876019299030304, 0.11873757094144821, 0.19208721816539764, -0.33948761224746704, 0.4141339659690857, 0.8963123559951782], "mean": [-0.1305968016386032, -0.09853296726942062, 0.13090592622756958, 0.14137019217014313, 0.394279807806015, 0.2762444317340851, 0.8648883700370789, 0.11626099795103073, -0.1141115352511406, 0.11380894482135773, 0.020078808069229126, -0.5110523104667664, 0.09404336661100388, 0.8246604204177856], "std": [0.0010960333747789264, 0.0004666887689381838, 0.0011424385011196136, 0.00938440766185522, 0.0059652505442500114, 0.008500389754772186, 0.00440760375931859, 0.004678064025938511, 0.0045026568695902824, 0.004491439089179039, 0.09422123432159424, 0.07162970304489136, 0.18681615591049194, 0.024585962295532227], "count": [230]}, "timestamp": {"min": [0.0], "max": [7.633333333333334], "mean": [3.8166666666666664], "std": [2.213155113306692], "count": [230]}, "frame_index": {"min": [0], "max": [229], "mean": [114.5], "std": [66.39465339920075], "count": [230]}, "episode_index": {"min": [726], "max": [726], "mean": [726.0], "std": [0.0], "count": [230]}, "index": {"min": [375742], "max": [375971], "mean": [375856.5], "std": [66.39465339920075], "count": [230]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [230]}}} +{"episode_index": 727, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5960104466230937]], [[0.5716340550108933]], [[0.5434102505446623]]], "std": [[[0.2397152364887701]], [[0.23308660035453885]], [[0.2355179372483178]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6130096459694989]], [[0.5978606753812636]], [[0.5710124809368191]]], "std": [[[0.22204759583949693]], [[0.19971917892208094]], [[0.21099050787741658]]], "count": [100]}, "observation.state": {"min": [0.40115734934806824, -0.12865300476551056, 0.13251325488090515, -4.5383195877075195, -0.7172049880027771, 0.3576023280620575, -0.5099784135818481, -0.3020824193954468, 0.16710473597049713, 2.18119478225708, -0.33134350180625916, 0.1904819905757904], "max": [0.4119769036769867, -0.11947067826986313, 0.13414008915424347, -4.53748083114624, -0.665966272354126, 0.43839821219444275, -0.4748553931713104, -0.19616514444351196, 0.20011606812477112, 2.506214141845703, 0.3358525335788727, 1.1284716129302979], "mean": [0.4033086597919464, -0.12257740646600723, 0.13299116492271423, -4.537850856781006, -0.677584171295166, 0.4145018756389618, -0.48840126395225525, -0.2457633763551712, 0.1847025752067566, 2.315331220626831, -0.03732430562376976, 0.6043546199798584], "std": [0.0018109866650775075, 0.002657113363966346, 0.0003934034612029791, 0.00020827662956435233, 0.011430623941123486, 0.019979914650321007, 0.009052316658198833, 0.031844425946474075, 0.007708508521318436, 0.11072878539562225, 0.23024941980838776, 0.32952654361724854], "count": [188]}, "action": {"min": [-0.1269577145576477, -0.09754416346549988, 0.12583748996257782, 0.08434097468852997, 0.40152108669281006, 0.3108308017253876, 0.8359066247940063, 0.11246548593044281, -0.12366689741611481, 0.09578035771846771, -0.18910469114780426, -0.5078186988830566, -0.0864965170621872, 0.8378300070762634], "max": [-0.12464369833469391, -0.09625805169343948, 0.1271791160106659, 0.11956868320703506, 0.43588346242904663, 0.31566816568374634, 0.8556444048881531, 0.12814082205295563, -0.10674188286066055, 0.12033369392156601, 0.14920182526111603, -0.2907465696334839, 0.3657943606376648, 0.9263256788253784], "mean": [-0.12650977075099945, -0.0966653823852539, 0.12653224170207977, 0.09507934004068375, 0.4095311760902405, 0.3134482502937317, 0.8513729572296143, 0.11910132318735123, -0.11342617124319077, 0.11064258217811584, -0.02139623835682869, -0.39427703619003296, 0.17340059578418732, 0.8780308365821838], "std": [0.00043279677629470825, 0.0002818065695464611, 0.00046235855552367866, 0.009021975100040436, 0.007519175298511982, 0.0016808363143354654, 0.00421952223405242, 0.004075963515788317, 0.005254096817225218, 0.006014461163431406, 0.11199512332677841, 0.07500593364238739, 0.1555391401052475, 0.026861611753702164], "count": [188]}, "timestamp": {"min": [0.0], "max": [6.233333333333333], "mean": [3.116666666666667], "std": [1.8090052515125543], "count": [188]}, "frame_index": {"min": [0], "max": [187], "mean": [93.5], "std": [54.270157545376634], "count": [188]}, "episode_index": {"min": [727], "max": [727], "mean": [727.0], "std": [0.0], "count": [188]}, "index": {"min": [375972], "max": [376159], "mean": [376065.5], "std": [54.270157545376634], "count": [188]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [188]}}} +{"episode_index": 728, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5958216013071895]], [[0.5729304520697168]], [[0.5461335784313726]]], "std": [[[0.23923116430898345]], [[0.23344552516965936]], [[0.2365209232747999]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6099097222222223]], [[0.5971225054466232]], [[0.5727677614379085]]], "std": [[[0.22333651477597674]], [[0.20198176066240742]], [[0.21252628104404345]]], "count": [100]}, "observation.state": {"min": [0.3999757766723633, -0.12547895312309265, 0.13324305415153503, -4.53810977935791, -0.7342845797538757, 0.36475443840026855, -0.5296945571899414, -0.3001980781555176, 0.17267100512981415, 2.070059061050415, -0.5274168848991394, 0.180849090218544], "max": [0.4070807099342346, -0.11587187647819519, 0.13434749841690063, -4.53748083114624, -0.7222605347633362, 0.43519291281700134, -0.4830724000930786, -0.2309560477733612, 0.19391849637031555, 2.489439010620117, 0.13964250683784485, 1.0412964820861816], "mean": [0.40199241042137146, -0.12324540317058563, 0.13413691520690918, -4.537827014923096, -0.7234430313110352, 0.3730618357658386, -0.5012138485908508, -0.2627846300601959, 0.1829833984375, 2.185678243637085, -0.16179083287715912, 0.6238458752632141], "std": [0.0015273968456313014, 0.0015131436521187425, 0.00028399869916029274, 0.00022921791241969913, 0.001960553927347064, 0.011565281078219414, 0.015431930311024189, 0.02342096157371998, 0.005361637566238642, 0.09379149973392487, 0.20160412788391113, 0.2997567057609558], "count": [175]}, "action": {"min": [-0.12649062275886536, -0.09739481657743454, 0.12656567990779877, 0.08010262250900269, 0.4268178641796112, 0.31269967555999756, 0.8365116715431213, 0.11374963819980621, -0.12093956023454666, 0.0972764790058136, -0.17444157600402832, -0.43420082330703735, -0.027108140289783478, 0.8655018210411072], "max": [-0.1255415380001068, -0.0954459086060524, 0.1273770034313202, 0.1144600585103035, 0.43406373262405396, 0.32918938994407654, 0.8387352228164673, 0.12448810786008835, -0.10851024091243744, 0.11272487789392471, 0.14371703565120697, -0.18083059787750244, 0.29555922746658325, 0.9487690925598145], "mean": [-0.12609069049358368, -0.09719689190387726, 0.1271134465932846, 0.10996236652135849, 0.43243926763534546, 0.3142102062702179, 0.8379347324371338, 0.119118332862854, -0.11386251449584961, 0.10735506564378738, -0.026962781324982643, -0.32864251732826233, 0.15488144755363464, 0.9129996299743652], "std": [0.00017493675113655627, 0.0003839152632281184, 0.0002428134175715968, 0.005675606429576874, 0.0009788518073037267, 0.0029554804787039757, 0.0004526990815065801, 0.002950082067400217, 0.004246733151376247, 0.0036483921576291323, 0.1133042573928833, 0.07635264098644257, 0.1213565319776535, 0.017754558473825455], "count": [175]}, "timestamp": {"min": [0.0], "max": [5.8], "mean": [2.9], "std": [1.6839107920420118], "count": [175]}, "frame_index": {"min": [0], "max": [174], "mean": [87.0], "std": [50.51732376126036], "count": [175]}, "episode_index": {"min": [728], "max": [728], "mean": [728.0], "std": [0.0], "count": [175]}, "index": {"min": [376160], "max": [376334], "mean": [376247.0], "std": [50.51732376126036], "count": [175]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [175]}}} +{"episode_index": 729, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.659153341503268]], [[0.6045348338779957]], [[0.53879]]], "std": [[[0.2330192433363782]], [[0.22619403034444216]], [[0.26679256196008194]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.659153341503268]], [[0.6045348338779957]], [[0.53879]]], "std": [[[0.2330192433363782]], [[0.22619403034444216]], [[0.26679256196008194]]], "count": [100]}, "observation.state": {"min": [0.4949962794780731, 0.24406152963638306, 0.13079306483268738, -0.5462422966957092, 0.008061549626290798, 0.44282278418540955, -0.3438778519630432, -0.04771877080202103, 0.16075681149959564, 4.536851406097412, -0.7274526953697205, 0.36117029190063477], "max": [0.49500399827957153, 0.24407696723937988, 0.1307956576347351, -0.5462422966957092, 0.008061549626290798, 0.44314947724342346, -0.33023178577423096, -0.004417403135448694, 0.17009657621383667, 4.5383195877075195, -0.5796120166778564, 0.49759361147880554], "mean": [0.4949973523616791, 0.24406586587429047, 0.1307951956987381, -0.5462418794631958, 0.008061536587774754, 0.44302162528038025, -0.33713680505752563, -0.031586673110723495, 0.1638929396867752, 4.5378546714782715, -0.6750156879425049, 0.42374980449676514], "std": [3.2804409784148447e-06, 6.470542757597286e-06, 9.746437399371644e-07, 4.172325134277344e-07, 1.30385160446167e-08, 0.00012920566950924695, 0.003979950211942196, 0.012765412218868732, 0.0026911976747214794, 0.00023924971173983067, 0.04180017486214638, 0.03275326266884804], "count": [188]}, "action": {"min": [-0.11926422268152237, -0.03804592788219452, 0.15063798427581787, 0.252789705991745, -0.3952152132987976, 0.7221227884292603, -0.5083699822425842, 0.14164191484451294, -0.08152498304843903, 0.12116210907697678, -0.4985125958919525, -0.4353695213794708, 0.7622026205062866, 0.09409185498952866], "max": [-0.11926156282424927, -0.03804249316453934, 0.15064075589179993, 0.2528792917728424, -0.3950926959514618, 0.7221899628639221, -0.5083279609680176, 0.1448391228914261, -0.07094424217939377, 0.12759935855865479, -0.4381740391254425, -0.3700268268585205, 0.7882187366485596, 0.1271015852689743], "mean": [-0.11926277726888657, -0.038045044988393784, 0.15063968300819397, 0.2528420686721802, -0.3951670825481415, 0.7221497893333435, -0.5083456039428711, 0.1433415561914444, -0.07578049600124359, 0.12337510287761688, -0.4764440953731537, -0.3983551561832428, 0.7751471996307373, 0.11255009472370148], "std": [7.029615858300531e-07, 1.2636871815630002e-06, 6.603860924769833e-07, 3.3462943974882364e-05, 4.5811073505319655e-05, 2.5370063667651266e-05, 1.619995236978866e-05, 0.0008993424708023667, 0.002769018989056349, 0.0018931783270090818, 0.01789960265159607, 0.017960362136363983, 0.009524502791464329, 0.007712287828326225], "count": [188]}, "timestamp": {"min": [0.0], "max": [6.233333333333333], "mean": [3.116666666666667], "std": [1.8090052515125543], "count": [188]}, "frame_index": {"min": [0], "max": [187], "mean": [93.5], "std": [54.270157545376634], "count": [188]}, "episode_index": {"min": [729], "max": [729], "mean": [729.0], "std": [0.0], "count": [188]}, "index": {"min": [376335], "max": [376522], "mean": [376428.5], "std": [54.270157545376634], "count": [188]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [188]}}} +{"episode_index": 730, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.665123575708061]], [[0.610927241285403]], [[0.5463780364923747]]], "std": [[[0.23468724018191423]], [[0.22721515871282078]], [[0.26859681433263477]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.665123575708061]], [[0.610927241285403]], [[0.5463780364923747]]], "std": [[[0.23468724018191423]], [[0.22721515871282078]], [[0.26859681433263477]]], "count": [100]}, "observation.state": {"min": [0.4949962794780731, 0.24407696723937988, 0.13079436123371124, -0.5466616749763489, 0.008061549626290798, 0.44290444254875183, -0.3282933831214905, -0.05242190882563591, 0.16245754063129425, 4.449830055236816, -0.8226883411407471, 0.4275325834751129], "max": [0.49500399827957153, 0.2440847009420395, 0.13079436123371124, -0.5462422966957092, 0.008061549626290798, 0.4430678188800812, -0.3121374249458313, -0.00866490975022316, 0.17008231580257416, 4.53810977935791, -0.7162485122680664, 0.6527957916259766], "mean": [0.495000422000885, 0.24408172070980072, 0.1307944804430008, -0.5462514758110046, 0.008061542175710201, 0.4429365396499634, -0.3223026990890503, -0.03297347202897072, 0.16574211418628693, 4.530491828918457, -0.774415910243988, 0.49169251322746277], "std": [3.823287443083245e-06, 3.8068271805968834e-06, 1.1920928955078125e-07, 5.921807314734906e-05, 7.450580596923828e-09, 6.431725341826677e-05, 0.00403386726975441, 0.015019048005342484, 0.0026099917013198137, 0.01980241946876049, 0.03846436366438866, 0.058827657252550125], "count": [110]}, "action": {"min": [-0.11926378309726715, -0.03804308548569679, 0.1506391018629074, 0.25281384587287903, -0.39517906308174133, 0.7221404910087585, -0.5083609223365784, 0.14361988008022308, -0.0811108872294426, 0.12156311422586441, -0.5378267168998718, -0.4580986797809601, 0.7018518447875977, 0.07814350724220276], "max": [-0.11926247179508209, -0.03804149478673935, 0.15064004063606262, 0.25286024808883667, -0.39511555433273315, 0.722291886806488, -0.5081881880760193, 0.14683271944522858, -0.0716298297047615, 0.12773914635181427, -0.4890725016593933, -0.37543532252311707, 0.7610154151916504, 0.11280030757188797], "mean": [-0.11926308274269104, -0.038042157888412476, 0.150639608502388, 0.25282517075538635, -0.3951292335987091, 0.722170352935791, -0.5083528161048889, 0.14447937905788422, -0.07676677405834198, 0.12488209456205368, -0.516120433807373, -0.4091990292072296, 0.7449373602867126, 0.10015576332807541], "std": [5.435410912468797e-07, 7.071408845149563e-07, 2.595074306555034e-07, 1.6409678210038692e-05, 2.337360638193786e-05, 2.1759924493380822e-05, 2.504570147721097e-05, 0.0006787146558053792, 0.003238699631765485, 0.0017063930863514543, 0.018022065982222557, 0.02342374436557293, 0.0167374424636364, 0.0077185858972370625], "count": [110]}, "timestamp": {"min": [0.0], "max": [3.6333333333333333], "mean": [1.8166666666666664], "std": [1.0584317539538284], "count": [110]}, "frame_index": {"min": [0], "max": [109], "mean": [54.5], "std": [31.752952618614856], "count": [110]}, "episode_index": {"min": [730], "max": [730], "mean": [730.0], "std": [0.0], "count": [110]}, "index": {"min": [376523], "max": [376632], "mean": [376577.5], "std": [31.752952618614856], "count": [110]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [110]}}} +{"episode_index": 731, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6657792946623093]], [[0.6119198093681918]], [[0.5482448393246186]]], "std": [[[0.2356172786084372]], [[0.2281618374712152]], [[0.2695053150755947]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6657792946623093]], [[0.6119198093681918]], [[0.5482448393246186]]], "std": [[[0.2356172786084372]], [[0.2281618374712152]], [[0.2695053150755947]]], "count": [100]}, "observation.state": {"min": [0.4949962794780731, 0.24407696723937988, 0.13079436123371124, -0.5466616749763489, 0.008061549626290798, 0.44290444254875183, -0.3198060989379883, -0.044220369309186935, 0.16272976994514465, 4.473525047302246, -0.8644991517066956, 0.4191741943359375], "max": [0.49500399827957153, 0.2440924197435379, 0.13079436123371124, -0.5462422966957092, 0.008061549626290798, 0.4430678188800812, -0.3087702989578247, 0.002880579326301813, 0.17130860686302185, 4.539787292480469, -0.6957530379295349, 0.6195867657661438], "mean": [0.4950009286403656, 0.24408988654613495, 0.130794495344162, -0.5462594032287598, 0.008061538450419903, 0.44296005368232727, -0.3153444826602936, -0.027026342228055, 0.16688363254070282, 4.533835411071777, -0.7544788718223572, 0.5032012462615967], "std": [3.651080078270752e-06, 5.600941676675575e-06, 1.341104507446289e-07, 7.859691686462611e-05, 1.1175870895385742e-08, 7.737881242064759e-05, 0.003128797048702836, 0.015070050954818726, 0.0023819217458367348, 0.012953348457813263, 0.04055367782711983, 0.054791104048490524], "count": [156]}, "action": {"min": [-0.11926393955945969, -0.03804308548569679, 0.15063908696174622, 0.25281384587287903, -0.39517906308174133, 0.7221404910087585, -0.5083615779876709, 0.14378921687602997, -0.08073529601097107, 0.12175209820270538, -0.5528180003166199, -0.44294458627700806, 0.7024902701377869, 0.08115042001008987], "max": [-0.1192624494433403, -0.03804021328687668, 0.15064045786857605, 0.2528727352619171, -0.39511123299598694, 0.7222944498062134, -0.5081669092178345, 0.14708063006401062, -0.07192572206258774, 0.12970255315303802, -0.47990235686302185, -0.37329480051994324, 0.7734887003898621, 0.11206962168216705], "mean": [-0.11926307529211044, -0.03804071620106697, 0.1506400853395462, 0.25283339619636536, -0.39513418078422546, 0.7221689224243164, -0.5083474516868591, 0.14520904421806335, -0.07682711631059647, 0.126744344830513, -0.5055213570594788, -0.4150753915309906, 0.7496131062507629, 0.09476520121097565], "std": [5.535294462788443e-07, 9.363672006656998e-07, 4.146506000779482e-07, 2.024368404818233e-05, 2.7648171453620307e-05, 2.5233463020413183e-05, 3.500219463603571e-05, 0.0009960236493498087, 0.002489826874807477, 0.0022324491292238235, 0.017706917598843575, 0.021419281139969826, 0.01984357461333275, 0.00972288753837347], "count": [156]}, "timestamp": {"min": [0.0], "max": [5.166666666666667], "mean": [2.5833333333333335], "std": [1.5010798582156581], "count": [156]}, "frame_index": {"min": [0], "max": [155], "mean": [77.5], "std": [45.032395746469746], "count": [156]}, "episode_index": {"min": [731], "max": [731], "mean": [731.0], "std": [0.0], "count": [156]}, "index": {"min": [376633], "max": [376788], "mean": [376710.5], "std": [45.032395746469746], "count": [156]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [156]}}} +{"episode_index": 732, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.664555582788671]], [[0.6109550953159042]], [[0.5464429357298475]]], "std": [[[0.23477633180717247]], [[0.2271975744845785]], [[0.26854427202815623]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.664555582788671]], [[0.6109550953159042]], [[0.5464429357298475]]], "std": [[[0.23477633180717247]], [[0.2271975744845785]], [[0.26854427202815623]]], "count": [100]}, "observation.state": {"min": [0.4949962794780731, 0.2440847009420395, 0.13079436123371124, -0.5466616749763489, 0.008061549626290798, 0.44290444254875183, -0.33810123801231384, -0.043170079588890076, 0.16352438926696777, 4.537271022796631, -0.790305495262146, 0.364721417427063], "max": [0.49500399827957153, 0.2440924197435379, 0.13079436123371124, -0.5462422966957092, 0.008061549626290798, 0.4430678188800812, -0.30919507145881653, -0.0038768118247389793, 0.1729121208190918, 4.5383195877075195, -0.6107651591300964, 0.533276379108429], "mean": [0.49500173330307007, 0.24409219622612, 0.130794495344162, -0.5462590456008911, 0.008061537519097328, 0.44295501708984375, -0.32644835114479065, -0.028672629967331886, 0.16753056645393372, 4.5378899574279785, -0.7093604803085327, 0.44882696866989136], "std": [3.2187906526814913e-06, 8.669351814205584e-07, 1.341104507446289e-07, 7.403251947835088e-05, 1.210719347000122e-08, 7.524178363382816e-05, 0.008538458496332169, 0.012869523838162422, 0.002885796595364809, 0.0002020918036578223, 0.04685114696621895, 0.04513072967529297], "count": [160]}, "action": {"min": [-0.11926393955945969, -0.03804180398583412, 0.15063989162445068, 0.2528155446052551, -0.3951724171638489, 0.7221419811248779, -0.5083615779876709, 0.14149829745292664, -0.08181653171777725, 0.12250973284244537, -0.5204213261604309, -0.42383915185928345, 0.7376288771629333, 0.08454258739948273], "max": [-0.11926276236772537, -0.03804021328687668, 0.15064045786857605, 0.2528727352619171, -0.39511221647262573, 0.7222926020622253, -0.5081681609153748, 0.14655183255672455, -0.07270944118499756, 0.1314305067062378, -0.4434468448162079, -0.3671121895313263, 0.7888534665107727, 0.12589429318904877], "mean": [-0.11926295608282089, -0.038040272891521454, 0.1506401002407074, 0.2528330087661743, -0.39513176679611206, 0.7221698760986328, -0.5083482265472412, 0.14356252551078796, -0.07731802761554718, 0.1268564760684967, -0.48817604780197144, -0.40211787819862366, 0.7665314674377441, 0.10642019659280777], "std": [4.6864573732818826e-07, 2.1100223079884017e-07, 2.3400932036565791e-07, 1.910834362206515e-05, 2.7146148568135686e-05, 2.650315764185507e-05, 3.122092311969027e-05, 0.0013392961118370295, 0.0026000789366662502, 0.002508336678147316, 0.019528008997440338, 0.018681079149246216, 0.015982918441295624, 0.01020371075719595], "count": [160]}, "timestamp": {"min": [0.0], "max": [5.3], "mean": [2.6499999999999995], "std": [1.5395706472188204], "count": [160]}, "frame_index": {"min": [0], "max": [159], "mean": [79.5], "std": [46.18711941656461], "count": [160]}, "episode_index": {"min": [732], "max": [732], "mean": [732.0], "std": [0.0], "count": [160]}, "index": {"min": [376789], "max": [376948], "mean": [376868.5], "std": [46.18711941656461], "count": [160]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [160]}}} +{"episode_index": 733, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.662872445533769]], [[0.6080873638344226]], [[0.541806135620915]]], "std": [[[0.23391116095082537]], [[0.22640589430801342]], [[0.2684247111623942]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.662872445533769]], [[0.6080873638344226]], [[0.541806135620915]]], "std": [[[0.23391116095082537]], [[0.22640589430801342]], [[0.2684247111623942]]], "count": [100]}, "observation.state": {"min": [0.49312737584114075, 0.23531939089298248, 0.1267603039741516, -0.2772101163864136, -0.024594569578766823, 0.5178054571151733, -0.39289402961730957, -0.06505630165338516, 0.15788942575454712, 4.5370612144470215, -0.7248566150665283, 0.0015329016605392098], "max": [0.49314284324645996, 0.2353271245956421, 0.1267603039741516, -0.2767907381057739, -0.024594569578766823, 0.5179688334465027, -0.3098978102207184, -0.018132980912923813, 0.167894184589386, 4.538528919219971, -0.268490731716156, 0.42976945638656616], "mean": [0.49313127994537354, 0.23531979322433472, 0.12676043808460236, -0.2771666944026947, -0.024594580754637718, 0.5178794860839844, -0.3523515462875366, -0.044941749423742294, 0.16333574056625366, 4.537889003753662, -0.4416216313838959, 0.20773422718048096], "std": [3.948374342144234e-06, 6.685121434202301e-07, 1.341104507446289e-07, 0.00012695114128291607, 1.1175870895385742e-08, 8.087531750788912e-05, 0.02718440629541874, 0.013344870880246162, 0.0034562568180263042, 0.0002844654372893274, 0.14068302512168884, 0.10813573747873306], "count": [188]}, "action": {"min": [-0.12128569185733795, -0.03894119709730148, 0.14679253101348877, 0.2510139048099518, -0.42971378564834595, 0.6231470704078674, -0.6033905148506165, 0.13820277154445648, -0.08287248760461807, 0.11732319742441177, -0.48659446835517883, -0.4000891149044037, 0.7708486914634705, 0.11150780320167542], "max": [-0.12128328531980515, -0.0389399453997612, 0.14679399132728577, 0.2510765790939331, -0.42964768409729004, 0.6232879757881165, -0.6032129526138306, 0.1487618237733841, -0.07212157547473907, 0.1256939321756363, -0.29107511043548584, -0.2585817873477936, 0.9044941663742065, 0.1682325154542923], "mean": [-0.12128490209579468, -0.03894101455807686, 0.14679335057735443, 0.2510473132133484, -0.4296843707561493, 0.6232555508613586, -0.603240966796875, 0.14266280829906464, -0.07791119068861008, 0.1222427561879158, -0.3639872074127197, -0.3439481556415558, 0.8498600125312805, 0.14402884244918823], "std": [5.7039119383262e-07, 1.6828938953494799e-07, 2.8936494800291257e-07, 2.5349738280056044e-05, 2.6678271751734428e-05, 4.0062819607555866e-05, 5.153779420652427e-05, 0.0036441164556890726, 0.0029525929130613804, 0.00249365228228271, 0.05945063382387161, 0.03547640144824982, 0.035584647208452225, 0.012129440903663635], "count": [188]}, "timestamp": {"min": [0.0], "max": [6.233333333333333], "mean": [3.116666666666667], "std": [1.8090052515125543], "count": [188]}, "frame_index": {"min": [0], "max": [187], "mean": [93.5], "std": [54.270157545376634], "count": [188]}, "episode_index": {"min": [733], "max": [733], "mean": [733.0], "std": [0.0], "count": [188]}, "index": {"min": [376949], "max": [377136], "mean": [377042.5], "std": [54.270157545376634], "count": [188]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [188]}}} +{"episode_index": 734, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6763322385620915]], [[0.6194461574074074]], [[0.5541030964052288]]], "std": [[[0.23084071394476854]], [[0.22435795183149312]], [[0.26757642497649964]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6763322385620915]], [[0.6194461574074074]], [[0.5541030964052288]]], "std": [[[0.23084071394476854]], [[0.22435795183149312]], [[0.26757642497649964]]], "count": [100]}, "observation.state": {"min": [0.49311965703964233, 0.23531939089298248, 0.12676161527633667, -0.2772101163864136, -0.024594569578766823, 0.5178054571151733, -0.36950188875198364, -0.05568090081214905, 0.15761849284172058, 4.536642074584961, -0.5688177347183228, 0.12717662751674652], "max": [0.49313512444496155, 0.2353271245956421, 0.12676161527633667, -0.2767907381057739, -0.024594569578766823, 0.5178054571151733, -0.2927456498146057, 0.004378789570182562, 0.16787473857402802, 4.538528919219971, -0.42193350195884705, 0.40471673011779785], "mean": [0.49312976002693176, 0.23531977832317352, 0.1267617791891098, -0.2771662175655365, -0.02459457889199257, 0.5178064107894897, -0.33673521876335144, -0.03493032604455948, 0.16241168975830078, 4.537888526916504, -0.5020056962966919, 0.3028123676776886], "std": [6.614852281927597e-06, 6.629058475482452e-07, 1.6391277313232422e-07, 0.00012755158240906894, 9.313225746154785e-09, 9.5367431640625e-07, 0.024190548807382584, 0.01668495126068592, 0.0032215274404734373, 0.0004297042323742062, 0.044852543622255325, 0.08427616208791733], "count": [186]}, "action": {"min": [-0.12128608673810959, -0.038941796869039536, 0.1467941254377365, 0.2510109841823578, -0.42966288328170776, 0.6231470704078674, -0.6033907532691956, 0.14067582786083221, -0.08156196773052216, 0.12076447159051895, -0.4175572097301483, -0.4260183870792389, 0.8061189651489258, 0.11250012367963791], "max": [-0.12128373980522156, -0.0389399379491806, 0.14679522812366486, 0.25102946162223816, -0.42964616417884827, 0.6232892274856567, -0.6032334566116333, 0.15227314829826355, -0.06863308697938919, 0.12588705122470856, -0.3580443263053894, -0.28671079874038696, 0.8647986650466919, 0.16485106945037842], "mean": [-0.12128453701734543, -0.038941409438848495, 0.14679428935050964, 0.2510245144367218, -0.4296611547470093, 0.6232715845108032, -0.6032497882843018, 0.1448020040988922, -0.07632257789373398, 0.12282761186361313, -0.39163729548454285, -0.37432897090911865, 0.8286852836608887, 0.13194431364536285], "std": [9.650217407397577e-07, 2.826632794494799e-07, 4.846210117648297e-07, 3.7799184156028787e-06, 4.2264177864126395e-06, 4.227552926749922e-05, 4.766936763189733e-05, 0.003798321820795536, 0.003582082223147154, 0.001428260002285242, 0.016234496608376503, 0.03888976573944092, 0.018833162263035774, 0.015457323752343655], "count": [186]}, "timestamp": {"min": [0.0], "max": [6.166666666666667], "mean": [3.0833333333333335], "std": [1.7897599673533713], "count": [186]}, "frame_index": {"min": [0], "max": [185], "mean": [92.5], "std": [53.692799020601136], "count": [186]}, "episode_index": {"min": [734], "max": [734], "mean": [734.0], "std": [0.0], "count": [186]}, "index": {"min": [377137], "max": [377322], "mean": [377229.5], "std": [53.692799020601136], "count": [186]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [186]}}} +{"episode_index": 735, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6791862799564271]], [[0.6217561437908498]], [[0.5566655855119825]]], "std": [[[0.2298635202109474]], [[0.22392800960863957]], [[0.2673355177900063]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6791862799564271]], [[0.6217561437908498]], [[0.5566655855119825]]], "std": [[[0.2298635202109474]], [[0.22392800960863957]], [[0.2673355177900063]]], "count": [100]}, "observation.state": {"min": [0.49311965703964233, 0.23531939089298248, 0.12676161527633667, -0.2772101163864136, -0.024594569578766823, 0.5178054571151733, -0.34532973170280457, -0.049633998423814774, 0.15938663482666016, 4.537271022796631, -0.608988881111145, 0.25344040989875793], "max": [0.49313512444496155, 0.23531939089298248, 0.12676161527633667, -0.2767907381057739, -0.024594569578766823, 0.5178054571151733, -0.30032163858413696, 0.009599359706044197, 0.16700492799282074, 4.5383195877075195, -0.5138899087905884, 0.42437639832496643], "mean": [0.49312034249305725, 0.23531943559646606, 0.12676164507865906, -0.27716055512428284, -0.02459455095231533, 0.5178062319755554, -0.32683783769607544, -0.027959341183304787, 0.16281476616859436, 4.537889003753662, -0.5631147027015686, 0.3608815670013428], "std": [4.281115252524614e-06, 4.470348358154297e-08, 2.9802322387695312e-08, 0.0001355036802124232, 1.862645149230957e-08, 7.748603820800781e-07, 0.016866082325577736, 0.01832202449440956, 0.002309556817635894, 0.0002677770098671317, 0.030602479353547096, 0.05563224107027054], "count": [152]}, "action": {"min": [-0.12128608673810959, -0.038941796869039536, 0.1467941701412201, 0.2510109841823578, -0.42966288328170776, 0.6231511235237122, -0.6033907532691956, 0.14225448668003082, -0.07986330986022949, 0.12102380394935608, -0.4329356849193573, -0.4221329092979431, 0.7935840487480164, 0.11061181128025055], "max": [-0.12128382176160812, -0.03894118592143059, 0.14679522812366486, 0.25102728605270386, -0.42964616417884827, 0.6232892274856567, -0.6032334566116333, 0.15073060989379883, -0.06987883895635605, 0.12640288472175598, -0.40033650398254395, -0.325703889131546, 0.8287553787231445, 0.14570094645023346], "mean": [-0.12128601223230362, -0.03894177824258804, 0.1467951536178589, 0.2510211765766144, -0.4296586513519287, 0.6232736706733704, -0.6032519936561584, 0.1457369327545166, -0.07556146383285522, 0.12390052527189255, -0.41886070370674133, -0.3880074918270111, 0.8108944892883301, 0.12276343256235123], "std": [6.308084152806259e-07, 1.7036893495969707e-07, 2.8923227546329144e-07, 3.9313299566856585e-06, 4.587212060869206e-06, 4.452494249562733e-05, 5.068668906460516e-05, 0.002968477550894022, 0.002876846818253398, 0.0017007888527587056, 0.011906733736395836, 0.03121894784271717, 0.011687432415783405, 0.011508319526910782], "count": [152]}, "timestamp": {"min": [0.0], "max": [5.033333333333333], "mean": [2.5166666666666666], "std": [1.4625890286292547], "count": [152]}, "frame_index": {"min": [0], "max": [151], "mean": [75.5], "std": [43.877670858877636], "count": [152]}, "episode_index": {"min": [735], "max": [735], "mean": [735.0], "std": [0.0], "count": [152]}, "index": {"min": [377323], "max": [377474], "mean": [377398.5], "std": [43.877670858877636], "count": [152]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [152]}}} +{"episode_index": 736, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6781873093681917]], [[0.6206886737472767]], [[0.5553885784313726]]], "std": [[[0.22948557055322913]], [[0.22380270726307072]], [[0.26710333131411196]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6781873093681917]], [[0.6206886737472767]], [[0.5553885784313726]]], "std": [[[0.22948557055322913]], [[0.22380270726307072]], [[0.26710333131411196]]], "count": [100]}, "observation.state": {"min": [0.49311965703964233, 0.23531939089298248, 0.12676161527633667, -0.2772101163864136, -0.024594569578766823, 0.5178054571151733, -0.34314417839050293, -0.039200589060783386, 0.15955515205860138, 4.53748083114624, -0.6289377808570862, 0.31085672974586487], "max": [0.49312737584114075, 0.23531939089298248, 0.12676161527633667, -0.2767907381057739, -0.024594569578766823, 0.5178054571151733, -0.2933557331562042, 0.009483519941568375, 0.1672939956188202, 4.5383195877075195, -0.5561105608940125, 0.4521692991256714], "mean": [0.4931190311908722, 0.2353193163871765, 0.12676158547401428, -0.27716559171676636, -0.02459455095231533, 0.5178061723709106, -0.3244730234146118, -0.02554783597588539, 0.16285811364650726, 4.537810325622559, -0.6008041501045227, 0.4003812372684479], "std": [9.395536721967801e-07, 7.450580596923828e-08, 2.9802322387695312e-08, 0.0001293058303417638, 1.862645149230957e-08, 7.152557373046875e-07, 0.0184177216142416, 0.01638774201273918, 0.002392769092693925, 0.00020336928719189018, 0.023228337988257408, 0.04757175222039223], "count": [141]}, "action": {"min": [-0.12128608673810959, -0.038941796869039536, 0.1467946469783783, 0.2510109841823578, -0.42965981364250183, 0.6231490969657898, -0.6033907532691956, 0.14231467247009277, -0.0784374549984932, 0.12180261313915253, -0.45326173305511475, -0.4232885539531708, 0.7867522835731506, 0.10446633398532867], "max": [-0.12128487229347229, -0.03894149139523506, 0.14679522812366486, 0.25102147459983826, -0.42964616417884827, 0.6232892274856567, -0.6032339334487915, 0.15121369063854218, -0.0693323016166687, 0.1266961395740509, -0.4222849905490875, -0.3423251807689667, 0.8125307559967041, 0.13437877595424652], "mean": [-0.12128620594739914, -0.038941822946071625, 0.14679525792598724, 0.2510208189487457, -0.42965859174728394, 0.6232755780220032, -0.6032501459121704, 0.1458543986082077, -0.07515142858028412, 0.1240345686674118, -0.43714895844459534, -0.3979513347148895, 0.7976260185241699, 0.115406334400177], "std": [1.7126453144555853e-07, 4.05071212128405e-08, 6.318289536011434e-08, 3.213542640878586e-06, 4.184843419352546e-06, 4.263624214217998e-05, 4.834918581764214e-05, 0.00317246257327497, 0.002793912310153246, 0.0014907786389812827, 0.009101133793592453, 0.027457892894744873, 0.008348464034497738, 0.01014039944857359], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [736], "max": [736], "mean": [736.0], "std": [0.0], "count": [141]}, "index": {"min": [377475], "max": [377615], "mean": [377545.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [141]}}} +{"episode_index": 737, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6487914733115469]], [[0.5959713507625273]], [[0.5299038507625272]]], "std": [[[0.24197344452725125]], [[0.23123181265747159]], [[0.26915964945122656]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6487914733115469]], [[0.5959713507625273]], [[0.5299038507625272]]], "std": [[[0.24197344452725125]], [[0.23123181265747159]], [[0.26915964945122656]]], "count": [100]}, "observation.state": {"min": [0.4990816116333008, 0.2616153061389923, 0.13441619277000427, -0.21367405354976654, -0.15057341754436493, 0.5120320320129395, -0.39679402112960815, -0.06689430773258209, 0.15680702030658722, 4.50330114364624, -0.6238822340965271, -0.08952917158603668], "max": [0.5140482783317566, 0.27248117327690125, 0.13458211719989777, -0.18935002386569977, -0.11696083843708038, 0.5406137108802795, -0.30252259969711304, -0.030195889994502068, 0.16688567399978638, 4.538528919219971, -0.23487813770771027, 0.39448779821395874], "mean": [0.5073627233505249, 0.2669225037097931, 0.1345069855451584, -0.19937478005886078, -0.1310279816389084, 0.524441123008728, -0.36850810050964355, -0.05284254625439644, 0.16202113032341003, 4.537378311157227, -0.3685855269432068, 0.05509675294160843], "std": [0.006450414191931486, 0.005111265927553177, 7.814120908733457e-05, 0.010042368434369564, 0.01384127140045166, 0.012165653519332409, 0.023200148716568947, 0.010970181785523891, 0.0030656096059828997, 0.003849021391943097, 0.11542907357215881, 0.11789105087518692], "count": [193]}, "action": {"min": [-0.1176619902253151, -0.03619906306266785, 0.1531672179698944, -0.2302914708852768, 0.4502509534358978, -0.5915107727050781, 0.6210733652114868, 0.1384161412715912, -0.08247596770524979, 0.11660312116146088, -0.4364607036113739, -0.40244609117507935, 0.7958451509475708, 0.11823491752147675], "max": [-0.11510659754276276, -0.03504401817917824, 0.15472760796546936, -0.22340157628059387, 0.4632197618484497, -0.5862900018692017, 0.6329600811004639, 0.15009041130542755, -0.07307124137878418, 0.12409508228302002, -0.2667400538921356, -0.22906869649887085, 0.919825553894043, 0.18341653048992157], "mean": [-0.11629389226436615, -0.03567804396152496, 0.15382984280586243, -0.22644977271556854, 0.4549979269504547, -0.5891348123550415, 0.6281379461288452, 0.14129872620105743, -0.07816515862941742, 0.12010413408279419, -0.3262103796005249, -0.28888076543807983, 0.8816931247711182, 0.1650494784116745], "std": [0.0011449201265349984, 0.0005021594115532935, 0.0006393796647898853, 0.0020323521457612514, 0.0052953981794416904, 0.002021434251219034, 0.004896822385489941, 0.0028597430791705847, 0.0029230692889541388, 0.001997954910621047, 0.051122020930051804, 0.04148787260055542, 0.03153335675597191, 0.013475326821208], "count": [193]}, "timestamp": {"min": [0.0], "max": [6.4], "mean": [3.2], "std": [1.8571184369578824], "count": [193]}, "frame_index": {"min": [0], "max": [192], "mean": [96.0], "std": [55.71355310873648], "count": [193]}, "episode_index": {"min": [737], "max": [737], "mean": [737.0], "std": [0.0], "count": [193]}, "index": {"min": [377616], "max": [377808], "mean": [377712.0], "std": [55.71355310873648], "count": [193]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [193]}}} +{"episode_index": 738, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6471541503267974]], [[0.5953962690631808]], [[0.5289213344226579]]], "std": [[[0.24268055975929734]], [[0.23191914394921306]], [[0.2713361022192565]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6471541503267974]], [[0.5953962690631808]], [[0.5289213344226579]]], "std": [[[0.24268055975929734]], [[0.23191914394921306]], [[0.2713361022192565]]], "count": [100]}, "observation.state": {"min": [0.4922778904438019, 0.23677127063274384, 0.12933345139026642, -0.20402832329273224, -0.09181973338127136, 0.5970450043678284, -0.3974427282810211, -0.07381387799978256, 0.1556740552186966, 4.5370612144470215, -0.49489739537239075, -0.030139410868287086], "max": [0.4922933280467987, 0.23677127063274384, 0.12933604419231415, -0.20402832329273224, -0.09181973338127136, 0.5970450043678284, -0.35038039088249207, -0.032458651810884476, 0.16949640214443207, 4.5383195877075195, -0.18350282311439514, 0.1782626509666443], "mean": [0.49228206276893616, 0.23677095770835876, 0.12933485209941864, -0.2040286362171173, -0.09181975573301315, 0.5970457196235657, -0.3776089549064636, -0.05940554291009903, 0.16208718717098236, 4.537842750549316, -0.289903849363327, 0.08361050486564636], "std": [5.659498583554523e-06, 3.129243850708008e-07, 1.2954459407410468e-06, 3.129243850708008e-07, 2.2351741790771484e-08, 7.152557373046875e-07, 0.013408239930868149, 0.012955456972122192, 0.004421441815793514, 0.00029057846404612064, 0.09192999452352524, 0.05056976526975632], "count": [162]}, "action": {"min": [-0.1202998235821724, -0.039906349033117294, 0.14896661043167114, -0.24910202622413635, 0.471794992685318, -0.5773415565490723, 0.6180906891822815, 0.1367483288049698, -0.08426162600517273, 0.1160045638680458, -0.38475683331489563, -0.339094340801239, 0.848991334438324, 0.14447031915187836], "max": [-0.12029633671045303, -0.03990514948964119, 0.14896990358829498, -0.2490963488817215, 0.4717981815338135, -0.5773375034332275, 0.6180915832519531, 0.14410488307476044, -0.07226748764514923, 0.12521801888942719, -0.24810150265693665, -0.2582326829433441, 0.918879508972168, 0.1694265455007553], "mean": [-0.12029877305030823, -0.03990587592124939, 0.1489686816930771, -0.24909751117229462, 0.4717951714992523, -0.5773404240608215, 0.6180901527404785, 0.14051666855812073, -0.07914888113737106, 0.11948474496603012, -0.2970800995826721, -0.31274500489234924, 0.8876701593399048, 0.15345250070095062], "std": [1.1101308245997643e-06, 3.4227812761855603e-07, 1.1184569075339823e-06, 2.0826505533477757e-06, 1.2973426919415942e-06, 1.489645114816085e-06, 1.256637347069045e-06, 0.0020008832216262817, 0.0037128461990505457, 0.0028192084282636642, 0.03945483639836311, 0.021977530792355537, 0.018958821892738342, 0.005396956577897072], "count": [162]}, "timestamp": {"min": [0.0], "max": [5.366666666666666], "mean": [2.683333333333333], "std": [1.5588160274411498], "count": [162]}, "frame_index": {"min": [0], "max": [161], "mean": [80.5], "std": [46.76448082323449], "count": [162]}, "episode_index": {"min": [738], "max": [738], "mean": [738.0], "std": [0.0], "count": [162]}, "index": {"min": [377809], "max": [377970], "mean": [377889.5], "std": [46.76448082323449], "count": [162]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [162]}}} +{"episode_index": 739, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6531432516339869]], [[0.5991450136165577]], [[0.532918287037037]]], "std": [[[0.23762059391674517]], [[0.22891762390697312]], [[0.26841061734638616]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6531432516339869]], [[0.5991450136165577]], [[0.532918287037037]]], "std": [[[0.23762059391674517]], [[0.22891762390697312]], [[0.26841061734638616]]], "count": [100]}, "observation.state": {"min": [0.49227017164230347, 0.23677898943424225, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.39335739612579346, -0.06696382164955139, 0.15371018648147583, 4.5370612144470215, -0.39364975690841675, 0.03476570174098015], "max": [0.4922856092453003, 0.23678670823574066, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5970450043678284, -0.3705367147922516, -0.021677710115909576, 0.16799789667129517, 4.53810977935791, -0.26015588641166687, 0.20430544018745422], "mean": [0.49227961897850037, 0.23678621649742126, 0.12933464348316193, -0.20402847230434418, -0.09181975573301315, 0.5970218777656555, -0.3818540871143341, -0.05211387574672699, 0.16110827028751373, 4.537895202636719, -0.3186410963535309, 0.1278013437986374], "std": [7.1022327574610244e-06, 1.264132833966869e-06, 8.940696716308594e-08, 1.4901161193847656e-07, 2.2351741790771484e-08, 5.6744473113212734e-05, 0.008144649676978588, 0.014854967594146729, 0.005058839917182922, 0.0003066158387809992, 0.048642780631780624, 0.048270728439092636], "count": [115]}, "action": {"min": [-0.12030067294836044, -0.03990509733557701, 0.14896909892559052, -0.2491038292646408, 0.47174039483070374, -0.577383816242218, 0.6180921196937561, 0.1378980278968811, -0.08257821202278137, 0.11306678503751755, -0.34828296303749084, -0.361162006855011, 0.8568623661994934, 0.14209797978401184], "max": [-0.120298370718956, -0.03990321606397629, 0.14897015690803528, -0.24904534220695496, 0.471792072057724, -0.5773412585258484, 0.6181133985519409, 0.14356018602848053, -0.07143394649028778, 0.12387081980705261, -0.2895165681838989, -0.27702391147613525, 0.9008364677429199, 0.16186927258968353], "mean": [-0.12029926478862762, -0.039903491735458374, 0.14896948635578156, -0.249094158411026, 0.47178271412849426, -0.5773490071296692, 0.6180949211120605, 0.14003190398216248, -0.07745722681283951, 0.11901883780956268, -0.315876841545105, -0.3264257311820984, 0.8772355914115906, 0.15104912221431732], "std": [1.0571540087767062e-06, 3.6200395925334306e-07, 4.860373223891656e-07, 1.7600759747438133e-05, 1.6310892533510923e-05, 1.338235324510606e-05, 7.056409685901599e-06, 0.0019689009059220552, 0.003999833017587662, 0.003508936380967498, 0.02130025625228882, 0.024923598393797874, 0.01417264062911272, 0.005884828511625528], "count": [115]}, "timestamp": {"min": [0.0], "max": [3.8], "mean": [1.9], "std": [1.1065461781798556], "count": [115]}, "frame_index": {"min": [0], "max": [114], "mean": [57.0], "std": [33.19638534539566], "count": [115]}, "episode_index": {"min": [739], "max": [739], "mean": [739.0], "std": [0.0], "count": [115]}, "index": {"min": [377971], "max": [378085], "mean": [378028.0], "std": [33.19638534539566], "count": [115]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [115]}}} +{"episode_index": 740, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6610610484749455]], [[0.6065428322440087]], [[0.5406769798474945]]], "std": [[[0.2327379807301786]], [[0.2243434863330028]], [[0.26460003482996924]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6610610484749455]], [[0.6065428322440087]], [[0.5406769798474945]]], "std": [[[0.2327379807301786]], [[0.2243434863330028]], [[0.26460003482996924]]], "count": [100]}, "observation.state": {"min": [0.49227017164230347, 0.23677127063274384, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.37753352522850037, -0.052599530667066574, 0.15446721017360687, 4.537271022796631, -0.40048158168792725, 0.151289165019989], "max": [0.4922856092453003, 0.23677127063274384, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5970450043678284, -0.35320690274238586, -0.01284290011972189, 0.169031023979187, 4.5383195877075195, -0.3477398753166199, 0.27072784304618835], "mean": [0.49227121472358704, 0.23677101731300354, 0.1293347030878067, -0.2040025293827057, -0.09181975573301315, 0.596953272819519, -0.3649784028530121, -0.04237756505608559, 0.16173654794692993, 4.537808895111084, -0.3815150856971741, 0.2278442531824112], "std": [2.724574187595863e-06, 2.5331974029541016e-07, 2.9802322387695312e-08, 9.957022120943293e-05, 2.2351741790771484e-08, 8.080068801064044e-05, 0.00799010694026947, 0.01228468120098114, 0.0038916568737477064, 0.00023204938042908907, 0.017094189301133156, 0.036110442131757736], "count": [137]}, "action": {"min": [-0.12030038237571716, -0.03990636393427849, 0.14896810054779053, -0.24909737706184387, 0.47172781825065613, -0.5773820877075195, 0.6180920600891113, 0.13945166766643524, -0.0816708356142044, 0.11466521769762039, -0.3531110882759094, -0.38310396671295166, 0.8467336893081665, 0.13158752024173737], "max": [-0.12029776722192764, -0.03990573436021805, 0.14896933734416962, -0.24904118478298187, 0.47179341316223145, -0.5771944522857666, 0.6182627081871033, 0.14476701617240906, -0.07155249267816544, 0.12615643441677094, -0.32995179295539856, -0.3133153021335602, 0.869135856628418, 0.15468883514404297], "mean": [-0.12030022591352463, -0.0399063415825367, 0.14896942675113678, -0.2490650713443756, 0.471765398979187, -0.5773560404777527, 0.6181117296218872, 0.14174941182136536, -0.07671672105789185, 0.12092641741037369, -0.34455546736717224, -0.3594242334365845, 0.8555787801742554, 0.1396610587835312], "std": [4.4347254402055114e-07, 1.0816086160048144e-07, 2.473077813647251e-07, 2.4918097551562823e-05, 2.372203925915528e-05, 3.936654684366658e-05, 3.7161567888688296e-05, 0.0018852852517738938, 0.003007342806085944, 0.002825662028044462, 0.007340565789490938, 0.0206411425024271, 0.006987974978983402, 0.00679608853533864], "count": [137]}, "timestamp": {"min": [0.0], "max": [4.533333333333333], "mean": [2.2666666666666666], "std": [1.3182479955523458], "count": [137]}, "frame_index": {"min": [0], "max": [136], "mean": [68.0], "std": [39.54743986657038], "count": [137]}, "episode_index": {"min": [740], "max": [740], "mean": [740.0], "std": [0.0], "count": [137]}, "index": {"min": [378086], "max": [378222], "mean": [378154.0], "std": [39.54743986657038], "count": [137]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [137]}}} +{"episode_index": 741, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6612315577342047]], [[0.6061914379084967]], [[0.5406426334422658]]], "std": [[[0.23160722078301998]], [[0.22361580451763602]], [[0.26362790624428944]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6612315577342047]], [[0.6061914379084967]], [[0.5406426334422658]]], "std": [[[0.23160722078301998]], [[0.22361580451763602]], [[0.26362790624428944]]], "count": [100]}, "observation.state": {"min": [0.49227017164230347, 0.23677127063274384, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.37207356095314026, -0.05203577131032944, 0.15561701357364655, 4.537271022796631, -0.44420525431632996, 0.23268179595470428], "max": [0.4922778904438019, 0.23678670823574066, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5970450043678284, -0.3532378077507019, -0.01536823995411396, 0.16861751675605774, 4.53810977935791, -0.3574410676956177, 0.3319776654243469], "mean": [0.49227115511894226, 0.2367756962776184, 0.1293347030878067, -0.20400561392307281, -0.09181975573301315, 0.5969251394271851, -0.36132103204727173, -0.04113345965743065, 0.1612386703491211, 4.537807941436768, -0.40263688564300537, 0.296644002199173], "std": [1.8867362996388692e-06, 7.124416242731968e-06, 2.9802322387695312e-08, 9.370373300043866e-05, 2.2351741790771484e-08, 7.251512579387054e-05, 0.005882243160158396, 0.011402031406760216, 0.004307865630835295, 0.00023353313736151904, 0.027517547830939293, 0.028331425040960312], "count": [137]}, "action": {"min": [-0.12030067294836044, -0.03990636393427849, 0.14896880090236664, -0.24909350275993347, 0.47172197699546814, -0.577383816242218, 0.6180920600891113, 0.14038044214248657, -0.08108439296483994, 0.11557386815547943, -0.3766036033630371, -0.40709802508354187, 0.8300478458404541, 0.1205899566411972], "max": [-0.12029921263456345, -0.039903510361909866, 0.14897015690803528, -0.24904118478298187, 0.47179341316223145, -0.5771985054016113, 0.6182636618614197, 0.1447693109512329, -0.071312814950943, 0.12702208757400513, -0.335886150598526, -0.34789401292800903, 0.8537102937698364, 0.14098960161209106], "mean": [-0.12030024826526642, -0.03990550339221954, 0.14896954596042633, -0.24905812740325928, 0.4717559814453125, -0.5773642063140869, 0.6181142330169678, 0.1423201560974121, -0.07630883902311325, 0.1207357794046402, -0.35721471905708313, -0.38580724596977234, 0.8404698371887207, 0.12890507280826569], "std": [3.123171552488202e-07, 1.18935611226334e-06, 3.6609091580430686e-07, 2.1556383217102848e-05, 2.2565982362721115e-05, 3.666639531729743e-05, 3.4913176932604983e-05, 0.0014621386071667075, 0.0028963731601834297, 0.003574216505512595, 0.013163233175873756, 0.01690085418522358, 0.00732444366440177, 0.005628820508718491], "count": [137]}, "timestamp": {"min": [0.0], "max": [4.533333333333333], "mean": [2.2666666666666666], "std": [1.3182479955523458], "count": [137]}, "frame_index": {"min": [0], "max": [136], "mean": [68.0], "std": [39.54743986657038], "count": [137]}, "episode_index": {"min": [741], "max": [741], "mean": [741.0], "std": [0.0], "count": [137]}, "index": {"min": [378223], "max": [378359], "mean": [378291.0], "std": [39.54743986657038], "count": [137]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [137]}}} +{"episode_index": 742, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6617940196078431]], [[0.6061269989106753]], [[0.5404343845315903]]], "std": [[[0.23049619797828735]], [[0.22257469647664674]], [[0.26224785337443146]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6617940196078431]], [[0.6061269989106753]], [[0.5404343845315903]]], "std": [[[0.23049619797828735]], [[0.22257469647664674]], [[0.26224785337443146]]], "count": [100]}, "observation.state": {"min": [0.49227017164230347, 0.23678670823574066, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.3687991201877594, -0.04961856082081795, 0.15474073588848114, 4.53748083114624, -0.4757682979106903, 0.22351069748401642], "max": [0.4922778904438019, 0.23678670823574066, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5968816876411438, -0.354936808347702, -0.004494630731642246, 0.16962343454360962, 4.5383195877075195, -0.3851782977581024, 0.33863550424575806], "mean": [0.4922716021537781, 0.23678633570671082, 0.1293347030878067, -0.20400865375995636, -0.09181975573301315, 0.5968810319900513, -0.3603181540966034, -0.03842013329267502, 0.16085384786128998, 4.537872791290283, -0.43613097071647644, 0.2858452796936035], "std": [2.534854047553381e-06, 3.725290298461914e-07, 2.9802322387695312e-08, 8.733710274100304e-05, 2.2351741790771484e-08, 6.556510925292969e-07, 0.004295411519706249, 0.014342822134494781, 0.004695189651101828, 0.00023392695584334433, 0.025217095389962196, 0.03694254159927368], "count": [137]}, "action": {"min": [-0.12030067294836044, -0.039903830736875534, 0.14896947145462036, -0.24905049800872803, 0.47172197699546814, -0.577383816242218, 0.6181129217147827, 0.13997827470302582, -0.08080890029668808, 0.11505691707134247, -0.3858652114868164, -0.4048667252063751, 0.8292255401611328, 0.12040116637945175], "max": [-0.12029921263456345, -0.039903510361909866, 0.14897015690803528, -0.24904583394527435, 0.47174200415611267, -0.5772367119789124, 0.6182636618614197, 0.14486396312713623, -0.06997839361429214, 0.12777194380760193, -0.3504020571708679, -0.335309237241745, 0.8543553352355957, 0.1439671367406845], "mean": [-0.12030037492513657, -0.03990378603339195, 0.1489701271057129, -0.24904793500900269, 0.47173982858657837, -0.577377200126648, 0.6181201338768005, 0.14237377047538757, -0.07563003152608871, 0.12054504454135895, -0.37145039439201355, -0.37621477246284485, 0.837965190410614, 0.13291096687316895], "std": [4.044232184696739e-07, 9.863434513590619e-08, 1.7576049060608057e-07, 9.771891882337513e-07, 3.859523985738633e-06, 3.024116449523717e-05, 3.1291430786950514e-05, 0.0016699183033779263, 0.0030532623641192913, 0.003984005656093359, 0.009723583236336708, 0.020588558167219162, 0.007772886194288731, 0.007527997251600027], "count": [137]}, "timestamp": {"min": [0.0], "max": [4.533333333333333], "mean": [2.2666666666666666], "std": [1.3182479955523458], "count": [137]}, "frame_index": {"min": [0], "max": [136], "mean": [68.0], "std": [39.54743986657038], "count": [137]}, "episode_index": {"min": [742], "max": [742], "mean": [742.0], "std": [0.0], "count": [137]}, "index": {"min": [378360], "max": [378496], "mean": [378428.0], "std": [39.54743986657038], "count": [137]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [137]}}} +{"episode_index": 743, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6561176252723312]], [[0.6021315059912854]], [[0.5360084368191721]]], "std": [[[0.2332121648316213]], [[0.2244182285312422]], [[0.2642072392871072]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6561176252723312]], [[0.6021315059912854]], [[0.5360084368191721]]], "std": [[[0.2332121648316213]], [[0.2244182285312422]], [[0.2642072392871072]]], "count": [100]}, "observation.state": {"min": [0.49226245284080505, 0.23677127063274384, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.37798917293548584, -0.05536426976323128, 0.1547355353832245, 4.537271022796631, -0.47617819905281067, 0.22393172979354858], "max": [0.4922778904438019, 0.23678670823574066, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5968816876411438, -0.35401779413223267, -0.023206809535622597, 0.17055287957191467, 4.53810977935791, -0.3599005341529846, 0.30825862288475037], "mean": [0.4922718107700348, 0.23677626252174377, 0.1293347179889679, -0.20401185750961304, -0.09181975573301315, 0.5968809723854065, -0.36249956488609314, -0.046187423169612885, 0.16172285377979279, 4.537729740142822, -0.4248908758163452, 0.2775280475616455], "std": [4.992370577383554e-06, 7.320761596929515e-06, 1.4901161193847656e-08, 8.007323049241677e-05, 2.2351741790771484e-08, 7.152557373046875e-07, 0.008181746117770672, 0.00977785512804985, 0.004644216038286686, 0.00023070836323313415, 0.0303499698638916, 0.022070376202464104], "count": [138]}, "action": {"min": [-0.12030182033777237, -0.03990666940808296, 0.1489686369895935, -0.24905049800872803, 0.47172197699546814, -0.5773858428001404, 0.6181119680404663, 0.1391400247812271, -0.08236581832170486, 0.11505111306905746, -0.3863741159439087, -0.3988395035266876, 0.8314867615699768, 0.12439874559640884], "max": [-0.12029892206192017, -0.03990352526307106, 0.14897069334983826, -0.2490401715040207, 0.47174784541130066, -0.5772350430488586, 0.6182636618614197, 0.14486412703990936, -0.07207808643579483, 0.1274799406528473, -0.3386754095554352, -0.34984442591667175, 0.8544148206710815, 0.142108753323555], "mean": [-0.1203002780675888, -0.039905451238155365, 0.14896956086158752, -0.24904491007328033, 0.47174349427223206, -0.5773769617080688, 0.6181178092956543, 0.1418425440788269, -0.07708243280649185, 0.12053707987070084, -0.36646535992622375, -0.3775315582752228, 0.83958899974823, 0.133872851729393], "std": [7.386698825939675e-07, 1.2398097624100046e-06, 4.869557983511186e-07, 3.0352268822753103e-06, 4.6272621148091275e-06, 2.7708276320481673e-05, 2.873283847293351e-05, 0.0018526993226259947, 0.003025788115337491, 0.003611891297623515, 0.011715793050825596, 0.01179252378642559, 0.007045326754450798, 0.003931105136871338], "count": [138]}, "timestamp": {"min": [0.0], "max": [4.566666666666666], "mean": [2.283333333333333], "std": [1.327870754531758], "count": [138]}, "frame_index": {"min": [0], "max": [137], "mean": [68.5], "std": [39.83612263595275], "count": [138]}, "episode_index": {"min": [743], "max": [743], "mean": [743.0], "std": [0.0], "count": [138]}, "index": {"min": [378497], "max": [378634], "mean": [378565.5], "std": [39.83612263595275], "count": [138]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [138]}}} +{"episode_index": 744, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6580128322440086]], [[0.6041690359477124]], [[0.5383354057734204]]], "std": [[[0.2333690745319461]], [[0.22417516773306317]], [[0.26427145926615503]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6580128322440086]], [[0.6041690359477124]], [[0.5383354057734204]]], "std": [[[0.2333690745319461]], [[0.22417516773306317]], [[0.26427145926615503]]], "count": [100]}, "observation.state": {"min": [0.49225473403930664, 0.23677127063274384, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.3731238543987274, -0.0554492212831974, 0.1551581472158432, 4.5370612144470215, -0.46934637427330017, 0.2787016034126282], "max": [0.49226245284080505, 0.23678670823574066, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5968816876411438, -0.34504398703575134, -0.019075149670243263, 0.17094047367572784, 4.53810977935791, -0.3620867133140564, 0.40633782744407654], "mean": [0.4922553300857544, 0.2367745339870453, 0.1293347179889679, -0.203998401761055, -0.09181975573301315, 0.5968809723854065, -0.3576033413410187, -0.04277605190873146, 0.16159626841545105, 4.537779808044434, -0.4216022491455078, 0.34877538681030273], "std": [8.471751016259077e-07, 6.505270903289784e-06, 1.4901161193847656e-08, 0.00010235990339424461, 2.2351741790771484e-08, 7.152557373046875e-07, 0.008601099252700806, 0.011234603822231293, 0.004990169312804937, 0.0002011962642427534, 0.03322426229715347, 0.038048308342695236], "count": [139]}, "action": {"min": [-0.12030297517776489, -0.039906978607177734, 0.1489698588848114, -0.24904197454452515, 0.47171878814697266, -0.5773878693580627, 0.6181128621101379, 0.140154629945755, -0.08216509968042374, 0.11573462933301926, -0.388217955827713, -0.4298558831214905, 0.8088673949241638, 0.1110285222530365], "max": [-0.12030152976512909, -0.039904434233903885, 0.14897122979164124, -0.24903550744056702, 0.4717446565628052, -0.5772411227226257, 0.6182646155357361, 0.1459808349609375, -0.07113276422023773, 0.128682941198349, -0.33994749188423157, -0.3730827867984772, 0.8475521802902222, 0.13521496951580048], "mean": [-0.12030283361673355, -0.03990637883543968, 0.14897054433822632, -0.2490384429693222, 0.4717404544353485, -0.5773760676383972, 0.6181237697601318, 0.14260299503803253, -0.07672377675771713, 0.12097825109958649, -0.36735954880714417, -0.406144380569458, 0.8276378512382507, 0.12029208987951279], "std": [2.133493524070218e-07, 1.0652116770870634e-06, 3.628603906236094e-07, 2.0511765796982218e-06, 4.937152880302165e-06, 3.546537845977582e-05, 3.665008262032643e-05, 0.001938663306646049, 0.0031281495466828346, 0.004008149262517691, 0.013441430404782295, 0.016769323498010635, 0.011666436679661274, 0.006412738002836704], "count": [139]}, "timestamp": {"min": [0.0], "max": [4.6], "mean": [2.3], "std": [1.3374935098492586], "count": [139]}, "frame_index": {"min": [0], "max": [138], "mean": [69.0], "std": [40.124805295477756], "count": [139]}, "episode_index": {"min": [744], "max": [744], "mean": [744.0], "std": [0.0], "count": [139]}, "index": {"min": [378635], "max": [378773], "mean": [378704.0], "std": [40.124805295477756], "count": [139]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [139]}}} +{"episode_index": 745, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6656890277777777]], [[0.610894038671024]], [[0.5453013643790849]]], "std": [[[0.23208370237445936]], [[0.22301639149571054]], [[0.2639688879727639]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6656890277777777]], [[0.610894038671024]], [[0.5453013643790849]]], "std": [[[0.23208370237445936]], [[0.22301639149571054]], [[0.2639688879727639]]], "count": [100]}, "observation.state": {"min": [0.49225473403930664, 0.23677127063274384, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.36749395728111267, -0.04714728146791458, 0.15749794244766235, 4.537271022796631, -0.4420190751552582, 0.296881765127182], "max": [0.49227017164230347, 0.23678670823574066, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5968816876411438, -0.3414528965950012, 0.0003011865774169564, 0.17071621119976044, 4.53810977935791, -0.31781649589538574, 0.4579981863498688], "mean": [0.49225643277168274, 0.23677125573158264, 0.12933464348316193, -0.20400382578372955, -0.09181975573301315, 0.5968814492225647, -0.3526315689086914, -0.03219938650727272, 0.1625264436006546, 4.537867069244385, -0.39621734619140625, 0.389314204454422], "std": [3.0352443900483195e-06, 1.584101710250252e-06, 8.940696716308594e-08, 9.088051592698321e-05, 2.2351741790771484e-08, 2.384185791015625e-07, 0.008823116309940815, 0.016686856746673584, 0.004494230728596449, 0.0001947814889717847, 0.03309447318315506, 0.04031860828399658], "count": [119]}, "action": {"min": [-0.12030268460512161, -0.039906978607177734, 0.14896933734416962, -0.24904391169548035, 0.47172170877456665, -0.5773861408233643, 0.6181123852729797, 0.14096125960350037, -0.08141449838876724, 0.11820469051599503, -0.38196906447410583, -0.4492238759994507, 0.8013657927513123, 0.10055065155029297], "max": [-0.12030038237571716, -0.03990413248538971, 0.14897064864635468, -0.24903550744056702, 0.4717462658882141, -0.5772390961647034, 0.6182640790939331, 0.14626982808113098, -0.06960441917181015, 0.1297438144683838, -0.31920740008354187, -0.3717012405395508, 0.849550724029541, 0.12769486010074615], "mean": [-0.12030261754989624, -0.03990688920021057, 0.1489703506231308, -0.24903766810894012, 0.4717424511909485, -0.5773770213127136, 0.6181221604347229, 0.1431412398815155, -0.07605140656232834, 0.12292633205652237, -0.35618507862091064, -0.42129260301589966, 0.8259913921356201, 0.11160074919462204], "std": [4.7261480062843475e-07, 3.0204768108887947e-07, 2.1610676981254073e-07, 1.2492854466472636e-06, 4.227928911859635e-06, 3.144498623441905e-05, 3.2582483981968835e-05, 0.0019250416662544012, 0.003467071568593383, 0.0036206452641636133, 0.014648589305579662, 0.022019118070602417, 0.01354718953371048, 0.00672011636197567], "count": [119]}, "timestamp": {"min": [0.0], "max": [3.933333333333333], "mean": [1.9666666666666668], "std": [1.1450376024878448], "count": [119]}, "frame_index": {"min": [0], "max": [118], "mean": [59.0], "std": [34.351128074635334], "count": [119]}, "episode_index": {"min": [745], "max": [745], "mean": [745.0], "std": [0.0], "count": [119]}, "index": {"min": [378774], "max": [378892], "mean": [378833.0], "std": [34.351128074635334], "count": [119]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [119]}}} +{"episode_index": 746, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6653489025054466]], [[0.610549825708061]], [[0.5448434068627451]]], "std": [[[0.23228805060490906]], [[0.22334163900317122]], [[0.2641934961410147]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6653489025054466]], [[0.610549825708061]], [[0.5448434068627451]]], "std": [[[0.23228805060490906]], [[0.22334163900317122]], [[0.2641934961410147]]], "count": [100]}, "observation.state": {"min": [0.49225473403930664, 0.23677127063274384, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.36047399044036865, -0.04356393963098526, 0.15692627429962158, 4.505188465118408, -0.44434189796447754, 0.29204216599464417], "max": [0.49226245284080505, 0.23678670823574066, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5968816876411438, -0.3416305184364319, 0.005838389974087477, 0.16987362504005432, 4.53810977935791, -0.3346228003501892, 0.43489402532577515], "mean": [0.4922578036785126, 0.2367742359638214, 0.1293347030878067, -0.20400682091712952, -0.09181975573301315, 0.5968810319900513, -0.35292744636535645, -0.03046635165810585, 0.1626984030008316, 4.5347700119018555, -0.40564027428627014, 0.3888266384601593], "std": [3.6477485991781577e-06, 6.271796337387059e-06, 2.9802322387695312e-08, 9.298821532865986e-05, 2.2351741790771484e-08, 6.556510925292969e-07, 0.0050041028298437595, 0.01674339361488819, 0.004441922064870596, 0.008328941650688648, 0.029380587860941887, 0.04444071277976036], "count": [135]}, "action": {"min": [-0.12030297517776489, -0.039906978607177734, 0.14896969497203827, -0.24904482066631317, 0.47171878814697266, -0.5773878693580627, 0.6181128621101379, 0.1408809870481491, -0.0810181275010109, 0.11764726787805557, -0.3802773952484131, -0.4447041451931, 0.8084840178489685, 0.10411180555820465], "max": [-0.12030122429132462, -0.03990412503480911, 0.14897122979164124, -0.24903550744056702, 0.4717446565628052, -0.5772390961647034, 0.6182646155357361, 0.1462741494178772, -0.06965272128582001, 0.12889036536216736, -0.3274362087249756, -0.3642456829547882, 0.8499795794487, 0.1292954832315445], "mean": [-0.12030245363712311, -0.03990636765956879, 0.14897052943706512, -0.2490392029285431, 0.4717414975166321, -0.5773778557777405, 0.6181207895278931, 0.14297835528850555, -0.07584920525550842, 0.1231575459241867, -0.360541433095932, -0.41906097531318665, 0.8248798847198486, 0.11358815431594849], "std": [5.613078428723384e-07, 1.0430127304061898e-06, 4.372060686819168e-07, 2.3482491542381467e-06, 4.823371455131564e-06, 3.220471990061924e-05, 3.333005588501692e-05, 0.0015607003588229418, 0.0034276240039616823, 0.0036868713796138763, 0.013745310716331005, 0.025325441733002663, 0.013223237358033657, 0.007975596934556961], "count": [135]}, "timestamp": {"min": [0.0], "max": [4.466666666666667], "mean": [2.233333333333334], "std": [1.2990024662822652], "count": [135]}, "frame_index": {"min": [0], "max": [134], "mean": [67.0], "std": [38.97007398846795], "count": [135]}, "episode_index": {"min": [746], "max": [746], "mean": [746.0], "std": [0.0], "count": [135]}, "index": {"min": [378893], "max": [379027], "mean": [378960.0], "std": [38.97007398846795], "count": [135]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [135]}}} +{"episode_index": 747, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6666284803921568]], [[0.6108420588235294]], [[0.5450625]]], "std": [[[0.2293862377903787]], [[0.22104099711985453]], [[0.26176681903576926]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6666284803921568]], [[0.6108420588235294]], [[0.5450625]]], "std": [[[0.2293862377903787]], [[0.22104099711985453]], [[0.26176681903576926]]], "count": [100]}, "observation.state": {"min": [0.49225473403930664, 0.23677127063274384, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.3681967258453369, -0.03723130002617836, 0.1553642451763153, 4.503091335296631, -0.44830435514450073, 0.3323681354522705], "max": [0.49226245284080505, 0.23678670823574066, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5968816876411438, -0.3383638262748718, -0.006865509785711765, 0.1692928820848465, 4.5383195877075195, -0.32560476660728455, 0.4366105794906616], "mean": [0.49225902557373047, 0.23678551614284515, 0.1293347328901291, -0.2040034830570221, -0.09181975573301315, 0.5968809127807617, -0.35229963064193726, -0.026777276769280434, 0.16139499843120575, 4.536395072937012, -0.38713541626930237, 0.4036601781845093], "std": [3.907637619704474e-06, 3.4124516332667554e-06, 0.0, 9.791917545953766e-05, 2.2351741790771484e-08, 7.748603820800781e-07, 0.009867873974144459, 0.009370403364300728, 0.004597315099090338, 0.005870357155799866, 0.04435895383358002, 0.03241908550262451], "count": [142]}, "action": {"min": [-0.12030297517776489, -0.039906978607177734, 0.1489698588848114, -0.24904482066631317, 0.47171878814697266, -0.5773878693580627, 0.6181128621101379, 0.14098438620567322, -0.08002200722694397, 0.11795937269926071, -0.3762788474559784, -0.44380488991737366, 0.8134130835533142, 0.10320815443992615], "max": [-0.1203015148639679, -0.03990412503480911, 0.14897122979164124, -0.24903734028339386, 0.4717446565628052, -0.5772407650947571, 0.6182646155357361, 0.1472335308790207, -0.07140012085437775, 0.12859682738780975, -0.32572394609451294, -0.3965897858142853, 0.8472551107406616, 0.12338336557149887], "mean": [-0.12030252069234848, -0.039904430508613586, 0.14897103607654572, -0.24904291331768036, 0.4717371165752411, -0.5773778557777405, 0.618122398853302, 0.14361213147640228, -0.0748213678598404, 0.12252569943666458, -0.35280749201774597, -0.4258679449558258, 0.8255531191825867, 0.10928493738174438], "std": [5.962129989711684e-07, 5.578164063990698e-07, 3.5866915482074546e-07, 1.7233024891538662e-06, 4.752394488605205e-06, 3.374688094481826e-05, 3.5141001717420295e-05, 0.0022844213526695967, 0.0028290606569498777, 0.003523590974509716, 0.017818912863731384, 0.014144538901746273, 0.011742000468075275, 0.00516100600361824], "count": [142]}, "timestamp": {"min": [0.0], "max": [4.7], "mean": [2.35], "std": [1.3663617546039717], "count": [142]}, "frame_index": {"min": [0], "max": [141], "mean": [70.5], "std": [40.99085263811915], "count": [142]}, "episode_index": {"min": [747], "max": [747], "mean": [747.0], "std": [0.0], "count": [142]}, "index": {"min": [379028], "max": [379169], "mean": [379098.5], "std": [40.99085263811915], "count": [142]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [142]}}} +{"episode_index": 748, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6672784368191721]], [[0.6114060103485839]], [[0.545801628540305]]], "std": [[[0.22994398832507407]], [[0.22139512302527103]], [[0.2622245030867475]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6672784368191721]], [[0.6114060103485839]], [[0.545801628540305]]], "std": [[[0.22994398832507407]], [[0.22139512302527103]], [[0.2622245030867475]]], "count": [100]}, "observation.state": {"min": [0.49225473403930664, 0.23677127063274384, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.37367215752601624, -0.04085325822234154, 0.15530849993228912, 4.461153507232666, -0.45704910159111023, 0.33359113335609436], "max": [0.49226245284080505, 0.23677127063274384, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5968816876411438, -0.33783867955207825, -0.0038227527402341366, 0.16858899593353271, 4.539158344268799, -0.34418734908103943, 0.4828067421913147], "mean": [0.4922598898410797, 0.23677095770835876, 0.12933482229709625, -0.20400844514369965, -0.09181975573301315, 0.5968804955482483, -0.3519348204135895, -0.029456043615937233, 0.1602172553539276, 4.534965515136719, -0.4137403070926666, 0.4133042097091675], "std": [3.8895864236110356e-06, 3.129243850708008e-07, 8.940696716308594e-08, 8.682123734615743e-05, 2.2351741790771484e-08, 1.1920928955078125e-06, 0.012319736182689667, 0.01029287837445736, 0.0048082368448376656, 0.013540814630687237, 0.031980253756046295, 0.034975212067365646], "count": [166]}, "action": {"min": [-0.12030268460512161, -0.039906978607177734, 0.14896969497203827, -0.2490401715040207, 0.47172462940216064, -0.5773861408233643, 0.6181128621101379, 0.14034341275691986, -0.07989738881587982, 0.11750704795122147, -0.37920090556144714, -0.45344874262809753, 0.7989479899406433, 0.09950731694698334], "max": [-0.12030122429132462, -0.03990665823221207, 0.14897039532661438, -0.24903550744056702, 0.4717446565628052, -0.5772390961647034, 0.6182636022567749, 0.14730504155158997, -0.06872108578681946, 0.12717615067958832, -0.33619987964630127, -0.38694748282432556, 0.8399454355239868, 0.13607026636600494], "mean": [-0.12030205130577087, -0.03990676999092102, 0.14896991848945618, -0.2490389049053192, 0.4717434346675873, -0.5773780345916748, 0.6181197762489319, 0.14390069246292114, -0.07449322193861008, 0.12126090377569199, -0.3653160035610199, -0.427801251411438, 0.8191792368888855, 0.10921233892440796], "std": [5.760416001976409e-07, 1.560100457709268e-07, 3.1265710731531726e-07, 1.4532224668073468e-06, 3.913190994353499e-06, 3.003333040396683e-05, 3.111514524789527e-05, 0.0026078447699546814, 0.0033335702028125525, 0.0033426068257540464, 0.011721963062882423, 0.016055723652243614, 0.01008793618530035, 0.007204107008874416], "count": [166]}, "timestamp": {"min": [0.0], "max": [5.5], "mean": [2.749999999999999], "std": [1.597306761047761], "count": [166]}, "frame_index": {"min": [0], "max": [165], "mean": [82.5], "std": [47.91920283143283], "count": [166]}, "episode_index": {"min": [748], "max": [748], "mean": [748.0], "std": [0.0], "count": [166]}, "index": {"min": [379170], "max": [379335], "mean": [379252.5], "std": [47.91920283143283], "count": [166]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [166]}}} +{"episode_index": 749, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6651841367102397]], [[0.6095952396514162]], [[0.5441807788671025]]], "std": [[[0.2300357185046622]], [[0.2215450840713883]], [[0.2620306558995458]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6651841367102397]], [[0.6095952396514162]], [[0.5441807788671025]]], "std": [[[0.2300357185046622]], [[0.2215450840713883]], [[0.2620306558995458]]], "count": [100]}, "observation.state": {"min": [0.49225473403930664, 0.23677127063274384, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.3678569197654724, -0.037926338613033295, 0.15404851734638214, 4.536642074584961, -0.4992697834968567, 0.37329620122909546], "max": [0.49226245284080505, 0.23677127063274384, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5968816876411438, -0.3378695547580719, -0.012402709573507309, 0.1696830540895462, 4.53810977935791, -0.35662126541137695, 0.4616680443286896], "mean": [0.4922601878643036, 0.23677101731300354, 0.1293346881866455, -0.20400646328926086, -0.09181975573301315, 0.596881091594696, -0.35135218501091003, -0.029349233955144882, 0.1604810506105423, 4.537798881530762, -0.4219244420528412, 0.4315325617790222], "std": [3.768085434785462e-06, 2.5331974029541016e-07, 4.470348358154297e-08, 9.004665480460972e-05, 2.2351741790771484e-08, 5.960464477539062e-07, 0.010277432389557362, 0.007316829636693001, 0.005264942068606615, 0.00034746064920909703, 0.04920994117856026, 0.020087525248527527], "count": [133]}, "action": {"min": [-0.12030268460512161, -0.039906978607177734, 0.14896969497203827, -0.2490401715040207, 0.47172462940216064, -0.5773861408233643, 0.6181128621101379, 0.13862863183021545, -0.08011437952518463, 0.11652101576328278, -0.4014992415904999, -0.4560563862323761, 0.8020265102386475, 0.0986020639538765], "max": [-0.12030122429132462, -0.03990665823221207, 0.14897039532661438, -0.24903550744056702, 0.4717446565628052, -0.5772390961647034, 0.6182636022567749, 0.14731359481811523, -0.07027996331453323, 0.12779934704303741, -0.3461715281009674, -0.41399240493774414, 0.8327263593673706, 0.11402606219053268], "mean": [-0.1203019842505455, -0.03990677371621132, 0.14896993339061737, -0.24903909862041473, 0.47174328565597534, -0.5773773789405823, 0.6181208491325378, 0.14383564889431, -0.07459843903779984, 0.12146616727113724, -0.36989039182662964, -0.43434593081474304, 0.8142529726028442, 0.10467182099819183], "std": [5.630226951325312e-07, 1.4935503145352413e-07, 2.8537743901324575e-07, 1.4205537581801764e-06, 4.0291238292411435e-06, 3.115775325568393e-05, 3.2264219044009224e-05, 0.002545160474255681, 0.00330198067240417, 0.003801007056608796, 0.019326714798808098, 0.010031485930085182, 0.008677595295011997, 0.0032950241584330797], "count": [133]}, "timestamp": {"min": [0.0], "max": [4.4], "mean": [2.2], "std": [1.2797569213634978], "count": [133]}, "frame_index": {"min": [0], "max": [132], "mean": [66.0], "std": [38.39270764090493], "count": [133]}, "episode_index": {"min": [749], "max": [749], "mean": [749.0], "std": [0.0], "count": [133]}, "index": {"min": [379336], "max": [379468], "mean": [379402.0], "std": [38.39270764090493], "count": [133]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [133]}}} +{"episode_index": 750, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6674733006535948]], [[0.6116512881263616]], [[0.545760846949891]]], "std": [[[0.22966094457095493]], [[0.22164644262055766]], [[0.2625193341466883]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6674733006535948]], [[0.6116512881263616]], [[0.545760846949891]]], "std": [[[0.22966094457095493]], [[0.22164644262055766]], [[0.2625193341466883]]], "count": [100]}, "observation.state": {"min": [0.49225473403930664, 0.23677127063274384, 0.1293347328901291, -0.20402832329273224, -0.09181973338127136, 0.5968816876411438, -0.37953370809555054, -0.03879901021718979, 0.154049813747406, 4.536642074584961, -0.4992697834968567, 0.321146160364151], "max": [0.49226245284080505, 0.23677127063274384, 0.1293347328901291, -0.2036089450120926, -0.09181973338127136, 0.5968816876411438, -0.3351202607154846, 0.005344130098819733, 0.16747808456420898, 4.5383195877075195, -0.35484498739242554, 0.45891714096069336], "mean": [0.4922608733177185, 0.23677100241184235, 0.1293347328901291, -0.20399925112724304, -0.09181975573301315, 0.5968808531761169, -0.3599526882171631, -0.027777589857578278, 0.16135628521442413, 4.537815570831299, -0.42510104179382324, 0.41354069113731384], "std": [3.547676669768407e-06, 2.682209014892578e-07, 0.0, 0.0001069539284799248, 2.2351741790771484e-08, 8.344650268554688e-07, 0.012502718716859818, 0.01426333375275135, 0.004402515012770891, 0.000335559481754899, 0.035927943885326385, 0.04095475748181343], "count": [143]}, "action": {"min": [-0.12030268460512161, -0.039906978607177734, 0.14896969497203827, -0.2490401715040207, 0.47172462940216064, -0.5773861408233643, 0.6181128621101379, 0.13999022543430328, -0.07922814786434174, 0.11658910661935806, -0.4014327824115753, -0.44531065225601196, 0.799807608127594, 0.10054177790880203], "max": [-0.12030122429132462, -0.03990665823221207, 0.14897039532661438, -0.24903550744056702, 0.4717446565628052, -0.5772390961647034, 0.6182636022567749, 0.14693795144557953, -0.06759033352136612, 0.12623733282089233, -0.34112071990966797, -0.3769642114639282, 0.8405085802078247, 0.1250138282775879], "mean": [-0.12030184268951416, -0.039906732738018036, 0.1489698588848114, -0.24903933703899384, 0.47174301743507385, -0.5773748755455017, 0.6181232929229736, 0.1423167586326599, -0.07457457482814789, 0.12184528261423111, -0.3743993937969208, -0.42543065547943115, 0.8162497282028198, 0.10826482623815536], "std": [5.319687943483586e-07, 1.4205582488102664e-07, 2.8622838499359204e-07, 1.3432528476187144e-06, 4.716532203019597e-06, 3.704469418153167e-05, 3.831135472864844e-05, 0.0019428279483690858, 0.003749571042135358, 0.003156320657581091, 0.014376740902662277, 0.020843898877501488, 0.012486966326832771, 0.007209287956357002], "count": [143]}, "timestamp": {"min": [0.0], "max": [4.733333333333333], "mean": [2.3666666666666667], "std": [1.3759844960366863], "count": [143]}, "frame_index": {"min": [0], "max": [142], "mean": [71.0], "std": [41.27953488110059], "count": [143]}, "episode_index": {"min": [750], "max": [750], "mean": [750.0], "std": [0.0], "count": [143]}, "index": {"min": [379469], "max": [379611], "mean": [379540.0], "std": [41.27953488110059], "count": [143]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [143]}}} +{"episode_index": 751, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6669578867102396]], [[0.609486538671024]], [[0.5424713834422658]]], "std": [[[0.22775027123638902]], [[0.22125387595892473]], [[0.2641452972560854]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6669578867102396]], [[0.609486538671024]], [[0.5424713834422658]]], "std": [[[0.22775027123638902]], [[0.22125387595892473]], [[0.2641452972560854]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003991544246674, -1.6110478639602661, -0.38777437806129456, 1.3877474069595337, -0.3830938935279846, -0.0417027585208416, 0.1564466506242752, 4.536851406097412, -0.4574590027332306, 0.3227664828300476], "max": [0.5100247263908386, 0.23326514661312103, 0.13003991544246674, -1.609999418258667, -0.38777437806129456, 1.3879923820495605, -0.3442176580429077, -0.0004942549276165664, 0.17264898121356964, 4.538528919219971, -0.28857627511024475, 0.46897661685943604], "mean": [0.5100199580192566, 0.23326100409030914, 0.13003984093666077, -1.6103310585021973, -0.38777464628219604, 1.3878955841064453, -0.36213013529777527, -0.024296781048178673, 0.1628618687391281, 4.537916660308838, -0.38796523213386536, 0.41934189200401306], "std": [3.695029590744525e-06, 6.765065336367115e-06, 7.450580596923828e-08, 0.00023933523334562778, 2.682209014892578e-07, 3.612331784097478e-05, 0.012072136625647545, 0.012614022940397263, 0.005285745952278376, 0.000278164487099275, 0.04882131516933441, 0.04342426359653473], "count": [151]}, "action": {"min": [-0.12053029984235764, -0.03967893868684769, 0.1492682546377182, -0.06681778281927109, 0.7441545128822327, -0.6646637916564941, 0.005070737563073635, 0.13927829265594482, -0.0815047174692154, 0.11894536763429642, -0.38855844736099243, -0.4512521028518677, 0.8022750616073608, 0.09808824956417084], "max": [-0.12052855640649796, -0.03967297449707985, 0.1492706835269928, -0.06656162440776825, 0.744294285774231, -0.664478600025177, 0.005473658908158541, 0.14571411907672882, -0.06933140009641647, 0.13126423954963684, -0.31128165125846863, -0.3907146453857422, 0.8484757542610168, 0.12079034000635147], "mean": [-0.1205296516418457, -0.039675869047641754, 0.14926962554454803, -0.06673511862754822, 0.7442440390586853, -0.6645446419715881, 0.005343766883015633, 0.14170396327972412, -0.07495924830436707, 0.12338211387395859, -0.35871949791908264, -0.430634468793869, 0.820743978023529, 0.10588383674621582], "std": [5.432803504845651e-07, 1.5570205960102612e-06, 5.10763015881821e-07, 5.722557398257777e-05, 3.321650001453236e-05, 4.329059811425395e-05, 9.123300696955994e-05, 0.002181402640417218, 0.003997520077973604, 0.00379107310436666, 0.020510759204626083, 0.01884857378900051, 0.014799444004893303, 0.0068807704374194145], "count": [151]}, "timestamp": {"min": [0.0], "max": [5.0], "mean": [2.4999999999999996], "std": [1.4529663145135578], "count": [151]}, "frame_index": {"min": [0], "max": [150], "mean": [75.0], "std": [43.58898943540674], "count": [151]}, "episode_index": {"min": [751], "max": [751], "mean": [751.0], "std": [0.0], "count": [151]}, "index": {"min": [379612], "max": [379762], "mean": [379687.0], "std": [43.58898943540674], "count": [151]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [151]}}} +{"episode_index": 752, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6688338779956426]], [[0.6111226116557735]], [[0.5438803513071896]]], "std": [[[0.22774740399064952]], [[0.22101787639493423]], [[0.2643342796510871]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6688338779956426]], [[0.6111226116557735]], [[0.5438803513071896]]], "std": [[[0.22774740399064952]], [[0.22101787639493423]], [[0.2643342796510871]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.130037322640419, -1.6104187965393066, -0.38777437806129456, 1.3877474069595337, -0.3757959008216858, -0.04280710965394974, 0.15645702183246613, 4.537271022796631, -0.4388764500617981, 0.30747032165527344], "max": [0.5100324749946594, 0.23325741291046143, 0.13003991544246674, -1.609999418258667, -0.38777437806129456, 1.3879107236862183, -0.34276577830314636, 0.008904309943318367, 0.17208509147167206, 4.53810977935791, -0.2940417528152466, 0.48055171966552734], "mean": [0.5100181102752686, 0.23324979841709137, 0.13003811240196228, -1.610160231590271, -0.38777458667755127, 1.3878495693206787, -0.3581475615501404, -0.022917376831173897, 0.16287076473236084, 4.537785053253174, -0.36102038621902466, 0.4298113286495209], "std": [2.51343885793176e-06, 9.095899144995201e-07, 1.2067712304997258e-06, 0.00020318786846473813, 2.086162567138672e-07, 7.794019620632753e-05, 0.010477477684617043, 0.013577037490904331, 0.005101874470710754, 0.00022476312005892396, 0.0332183875143528, 0.05419674515724182], "count": [142]}, "action": {"min": [-0.12053105235099792, -0.03967893868684769, 0.14926552772521973, -0.06681977957487106, 0.7441858649253845, -0.6646115779876709, 0.005306760780513287, 0.1392681747674942, -0.0808316320180893, 0.11866839975118637, -0.37713485956192017, -0.4625453054904938, 0.8095845580101013, 0.09477732330560684], "max": [-0.12052855640649796, -0.03967541083693504, 0.1492692083120346, -0.06671148538589478, 0.744294285774231, -0.664478600025177, 0.005473658908158541, 0.14571762084960938, -0.06867820769548416, 0.1309792399406433, -0.3151293694972992, -0.3741835355758667, 0.851810097694397, 0.12495119869709015], "mean": [-0.12053053081035614, -0.03967800363898277, 0.14926742017269135, -0.066774383187294, 0.7442540526390076, -0.664528489112854, 0.005408544559031725, 0.1424493044614792, -0.07499971985816956, 0.12383021414279938, -0.3449461758136749, -0.4377685785293579, 0.8230904936790466, 0.1034543588757515], "std": [7.030888014014636e-07, 8.034157872316428e-07, 1.0063866966447677e-06, 4.898710540146567e-05, 3.9037444366840646e-05, 4.8047997552203014e-05, 7.73405990912579e-05, 0.0021126100327819586, 0.0037368033081293106, 0.0038464528042823076, 0.013506075367331505, 0.02697020396590233, 0.013900813646614552, 0.009327132254838943], "count": [142]}, "timestamp": {"min": [0.0], "max": [4.7], "mean": [2.35], "std": [1.3663617546039717], "count": [142]}, "frame_index": {"min": [0], "max": [141], "mean": [70.5], "std": [40.99085263811915], "count": [142]}, "episode_index": {"min": [752], "max": [752], "mean": [752.0], "std": [0.0], "count": [142]}, "index": {"min": [379763], "max": [379904], "mean": [379833.5], "std": [40.99085263811915], "count": [142]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [142]}}} +{"episode_index": 753, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6674818600217864]], [[0.6097424428104575]], [[0.5423529575163398]]], "std": [[[0.22899328967773214]], [[0.2220749767384169]], [[0.26520732091714677]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6674818600217864]], [[0.6097424428104575]], [[0.5423529575163398]]], "std": [[[0.22899328967773214]], [[0.2220749767384169]], [[0.26520732091714677]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.130037322640419, -1.6104187965393066, -0.38777437806129456, 1.3877474069595337, -0.39287859201431274, -0.04557184875011444, 0.15675775706768036, 4.536432266235352, -0.37301763892173767, 0.28034886717796326], "max": [0.5100247263908386, 0.23325741291046143, 0.130037322640419, -1.609999418258667, -0.38777437806129456, 1.3879107236862183, -0.34496673941612244, 0.006000559777021408, 0.16985028982162476, 4.5383195877075195, -0.22722649574279785, 0.4983041286468506], "mean": [0.5100175738334656, 0.2332497388124466, 0.130037322640419, -1.6101473569869995, -0.3877747058868408, 1.387865424156189, -0.3660082221031189, -0.02625991962850094, 0.16220390796661377, 4.5378313064575195, -0.31750765442848206, 0.42601531744003296], "std": [1.3765102266916074e-06, 5.990877980366349e-07, 0.0, 0.00019995658658444881, 3.2782554626464844e-07, 7.168095180531964e-05, 0.017207523807883263, 0.014219455420970917, 0.004447422921657562, 0.00022462906781584024, 0.03490059822797775, 0.07334227114915848], "count": [165]}, "action": {"min": [-0.1205310970544815, -0.03967835754156113, 0.1492660492658615, -0.06681656837463379, 0.7441859841346741, -0.6646115779876709, 0.005306760780513287, 0.13748624920845032, -0.0798046812415123, 0.1184815764427185, -0.35027438402175903, -0.47501859068870544, 0.8113616108894348, 0.09126854687929153], "max": [-0.12052979320287704, -0.03967667743563652, 0.14926700294017792, -0.06671148538589478, 0.744294285774231, -0.664478600025177, 0.005475220270454884, 0.14658211171627045, -0.06868895143270493, 0.12865298986434937, -0.289478063583374, -0.3675692677497864, 0.8593923449516296, 0.1282859593629837], "mean": [-0.12053101509809494, -0.03967791050672531, 0.1492668241262436, -0.06677711755037308, 0.7442601323127747, -0.6645212769508362, 0.005412817932665348, 0.1418289691209793, -0.07505571097135544, 0.12280379980802536, -0.3278695344924927, -0.4423210918903351, 0.8272901177406311, 0.10289734601974487], "std": [2.1088983714889764e-07, 6.662034479631984e-07, 2.36124392927195e-07, 4.806389915756881e-05, 3.1565701647195965e-05, 3.923544500139542e-05, 7.692009239690378e-05, 0.0032105690333992243, 0.0033271899446845055, 0.0031015067361295223, 0.01351120788604021, 0.034775424748659134, 0.017861604690551758, 0.012091204524040222], "count": [165]}, "timestamp": {"min": [0.0], "max": [5.466666666666667], "mean": [2.7333333333333325], "std": [1.587684080899201], "count": [165]}, "frame_index": {"min": [0], "max": [164], "mean": [82.0], "std": [47.63052242697603], "count": [165]}, "episode_index": {"min": [753], "max": [753], "mean": [753.0], "std": [0.0], "count": [165]}, "index": {"min": [379905], "max": [380069], "mean": [379987.0], "std": [47.63052242697603], "count": [165]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [165]}}} +{"episode_index": 754, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6674952968409587]], [[0.6088902423747278]], [[0.5408289814814814]]], "std": [[[0.22613520564155906]], [[0.2197025780862366]], [[0.26278299334841865]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6674952968409587]], [[0.6088902423747278]], [[0.5408289814814814]]], "std": [[[0.22613520564155906]], [[0.2197025780862366]], [[0.26278299334841865]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.130037322640419, -1.6104187965393066, -0.38777437806129456, 1.3877474069595337, -0.3844376504421234, -0.04117761179804802, 0.15676942467689514, 4.532238483428955, -0.3961092233657837, 0.3305216431617737], "max": [0.5100247263908386, 0.23325741291046143, 0.130037322640419, -1.609999418258667, -0.38777437806129456, 1.3879107236862183, -0.3449435830116272, 0.010054999962449074, 0.16953009366989136, 4.5383195877075195, -0.2805147171020508, 0.524793267250061], "mean": [0.5100177526473999, 0.23325012624263763, 0.130037322640419, -1.6101748943328857, -0.38777443766593933, 1.387782096862793, -0.3689035475254059, -0.024412967264652252, 0.1622965782880783, 4.537370681762695, -0.3511196970939636, 0.422983855009079], "std": [1.8382489770374377e-06, 1.802103838599578e-06, 0.0, 0.00020592489454429597, 5.960464477539063e-08, 6.619213672820479e-05, 0.010291109792888165, 0.01825215481221676, 0.004254321567714214, 0.0012858659029006958, 0.030919624492526054, 0.06844568252563477], "count": [121]}, "action": {"min": [-0.12053120881319046, -0.03967835754156113, 0.1492660492658615, -0.06681656837463379, 0.7441835403442383, -0.6646141409873962, 0.005306760780513287, 0.1390654295682907, -0.0796198695898056, 0.11757667362689972, -0.36144569516181946, -0.4877740740776062, 0.8065484166145325, 0.0865253359079361], "max": [-0.12052979320287704, -0.03967541083693504, 0.14926742017269135, -0.06671148538589478, 0.744294285774231, -0.664478600025177, 0.005475220270454884, 0.1465834528207779, -0.06734465062618256, 0.1283654272556305, -0.31580811738967896, -0.39971306920051575, 0.8362284898757935, 0.12249162048101425], "mean": [-0.12053098529577255, -0.0396777018904686, 0.14926674962043762, -0.06677068024873734, 0.7442286014556885, -0.6645573973655701, 0.005405654665082693, 0.14118678867816925, -0.07465106248855591, 0.1227429211139679, -0.34478604793548584, -0.43643805384635925, 0.823458194732666, 0.1052359789609909], "std": [2.759018684628245e-07, 8.046349080359505e-07, 2.639206400090188e-07, 4.95139611302875e-05, 3.641338844317943e-05, 4.538308348855935e-05, 7.841432670829818e-05, 0.0016971592558547854, 0.004030710551887751, 0.0032283710315823555, 0.013652518391609192, 0.03211593255400658, 0.010736342519521713, 0.012366539798676968], "count": [121]}, "timestamp": {"min": [0.0], "max": [4.0], "mean": [2.0], "std": [1.164283279771532], "count": [121]}, "frame_index": {"min": [0], "max": [120], "mean": [60.0], "std": [34.92849839314596], "count": [121]}, "episode_index": {"min": [754], "max": [754], "mean": [754.0], "std": [0.0], "count": [121]}, "index": {"min": [380070], "max": [380190], "mean": [380130.0], "std": [34.92849839314596], "count": [121]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [121]}}} +{"episode_index": 755, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6577797167755991]], [[0.6023171269063181]], [[0.5350937608932461]]], "std": [[[0.23956859783694454]], [[0.23018731574516807]], [[0.27204728545644846]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6577797167755991]], [[0.6023171269063181]], [[0.5350937608932461]]], "std": [[[0.23956859783694454]], [[0.23018731574516807]], [[0.27204728545644846]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.3947165906429291, -0.09057220816612244, 0.15633517503738403, 4.518818378448486, -0.4304049611091614, -0.11667667329311371], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.3571532368659973, -0.016372190788388252, 0.1691671460866928, 4.5383195877075195, -0.1994892954826355, 0.34823372960090637], "mean": [0.5100180506706238, 0.23325049877166748, 0.13003861904144287, -1.610150933265686, -0.38777464628219604, 1.3879947662353516, -0.37114033102989197, -0.05632363632321358, 0.16230326890945435, 4.5372090339660645, -0.28541669249534607, 0.05462470278143883], "std": [2.4371629478991963e-06, 2.368853074585786e-06, 1.4901161193847656e-08, 0.00020008500723633915, 2.682209014892578e-07, 8.143582817865536e-05, 0.012639567255973816, 0.0220501609146595, 0.0040088072419166565, 0.0025906076189130545, 0.05950235202908516, 0.10931692272424698], "count": [152]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.1492670476436615, -0.06682128459215164, 0.7442379593849182, -0.6645533442497253, 0.005301311612129211, 0.13807377219200134, -0.08543653786182404, 0.11526872962713242, -0.37501731514930725, -0.40280964970588684, 0.8250494003295898, 0.12470325827598572], "max": [-0.12052817642688751, -0.03967570140957832, 0.1492685228586197, -0.0667119175195694, 0.7443485856056213, -0.6644178032875061, 0.005469763185828924, 0.14550915360450745, -0.07289718836545944, 0.1268308162689209, -0.24849213659763336, -0.20677392184734344, 0.9256300926208496, 0.17911860346794128], "mean": [-0.12053027004003525, -0.03967796638607979, 0.1492677628993988, -0.06677703559398651, 0.7443016171455383, -0.664474368095398, 0.005407493095844984, 0.14137624204158783, -0.07902630418539047, 0.12027239799499512, -0.28964999318122864, -0.29842936992645264, 0.8934823870658875, 0.15667305886745453], "std": [3.486790660645056e-07, 8.035223686420068e-07, 2.746627956184966e-07, 4.820611866307445e-05, 3.816434764303267e-05, 4.6760756958974525e-05, 7.635246583959088e-05, 0.0022491661366075277, 0.0037499985191971064, 0.003507972462102771, 0.03160538151860237, 0.04937026649713516, 0.024373063817620277, 0.01245095208287239], "count": [152]}, "timestamp": {"min": [0.0], "max": [5.033333333333333], "mean": [2.5166666666666666], "std": [1.4625890286292547], "count": [152]}, "frame_index": {"min": [0], "max": [151], "mean": [75.5], "std": [43.877670858877636], "count": [152]}, "episode_index": {"min": [755], "max": [755], "mean": [755.0], "std": [0.0], "count": [152]}, "index": {"min": [380191], "max": [380342], "mean": [380266.5], "std": [43.877670858877636], "count": [152]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [152]}}} +{"episode_index": 756, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6569131726579521]], [[0.6002706535947713]], [[0.532241424291939]]], "std": [[[0.2377033439041315]], [[0.22908434413981968]], [[0.2709699809070963]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6569131726579521]], [[0.6002706535947713]], [[0.532241424291939]]], "std": [[[0.2377033439041315]], [[0.22908434413981968]], [[0.2709699809070963]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3877474069595337, -0.4048410952091217, -0.07396060973405838, 0.15503239631652832, 4.536851406097412, -0.2780552804470062, -0.14393463730812073], "max": [0.5100247263908386, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3879107236862183, -0.3574698567390442, -0.030103210359811783, 0.16806529462337494, 4.538528919219971, -0.17940372228622437, 0.06070908159017563], "mean": [0.5100173950195312, 0.23325055837631226, 0.1300385743379593, -1.6101566553115845, -0.38777458667755127, 1.3878902196884155, -0.3819502294063568, -0.0601562075316906, 0.1612461507320404, 4.537795543670654, -0.2066049575805664, -0.03549661859869957], "std": [7.44343310543627e-07, 2.448221266604378e-06, 5.960464477539063e-08, 0.0002031268086284399, 2.086162567138672e-07, 5.206370769883506e-05, 0.013967952691018581, 0.015390635468065739, 0.004372976254671812, 0.0003961465845350176, 0.023164253681898117, 0.06690023839473724], "count": [141]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.14926756918430328, -0.06681673228740692, 0.7442375421524048, -0.6645533442497253, 0.005307966377586126, 0.13735505938529968, -0.08386155217885971, 0.11353457719087601, -0.27680516242980957, -0.3152417540550232, 0.8980746269226074, 0.146650031208992], "max": [-0.12052932381629944, -0.039676010608673096, 0.1492685228586197, -0.0667119175195694, 0.744294285774231, -0.6644788384437561, 0.005475220270454884, 0.14550839364528656, -0.07342672348022461, 0.12513504922389984, -0.2396833598613739, -0.2046438455581665, 0.932240903377533, 0.1740817129611969], "mean": [-0.12053031474351883, -0.039677951484918594, 0.14926785230636597, -0.06677494943141937, 0.7442668676376343, -0.6645135879516602, 0.005408775992691517, 0.14079125225543976, -0.078987255692482, 0.11889184266328812, -0.25180038809776306, -0.2665887773036957, 0.9156723618507385, 0.15983158349990845], "std": [1.291301856554128e-07, 7.307642704290629e-07, 2.2944165323224297e-07, 4.8924113798420876e-05, 2.6918545700027607e-05, 3.467376882326789e-05, 7.818802259862423e-05, 0.0025347513146698475, 0.0030240982305258512, 0.003606856567785144, 0.009011671878397465, 0.035479336977005005, 0.010901177302002907, 0.008116865530610085], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [756], "max": [756], "mean": [756.0], "std": [0.0], "count": [141]}, "index": {"min": [380343], "max": [380483], "mean": [380413.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [141]}}} +{"episode_index": 757, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6595489923747277]], [[0.601942794117647]], [[0.5333449891067538]]], "std": [[[0.23482420327349982]], [[0.22764338538896312]], [[0.27029480611512346]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6595489923747277]], [[0.601942794117647]], [[0.5333449891067538]]], "std": [[[0.23482420327349982]], [[0.22764338538896312]], [[0.27029480611512346]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3877474069595337, -0.40743595361709595, -0.07158201187849045, 0.15504147112369537, 4.537271022796631, -0.29035255312919617, -0.17907895147800446], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3879107236862183, -0.3705599009990692, -0.01710584945976734, 0.1674962192773819, 4.5383195877075195, -0.06093987822532654, 0.04027592018246651], "mean": [0.5100191235542297, 0.23325107991695404, 0.13003870844841003, -1.6101853847503662, -0.3877745270729065, 1.3877915143966675, -0.38710927963256836, -0.05286885425448418, 0.16012167930603027, 4.537836074829102, -0.1784130036830902, -0.04472128301858902], "std": [4.584744601743296e-06, 2.9838079171895515e-06, 7.450580596923828e-08, 0.0002067733439616859, 1.4901161193847656e-07, 7.284660387085751e-05, 0.011258285492658615, 0.016584403812885284, 0.004386891610920429, 0.00022492588323075324, 0.07075699418783188, 0.06788165867328644], "count": [175]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.14926663041114807, -0.06682039052248001, 0.7441836595535278, -0.6646141409873962, 0.005305555183440447, 0.13780398666858673, -0.08249388635158539, 0.1136278435587883, -0.29031479358673096, -0.30051860213279724, 0.8990556001663208, 0.14393028616905212], "max": [-0.12052802741527557, -0.03967539593577385, 0.1492685228586197, -0.06671148538589478, 0.744294285774231, -0.6644783616065979, 0.005475220270454884, 0.14438647031784058, -0.07094959169626236, 0.12440221011638641, -0.18611742556095123, -0.1876564919948578, 0.9466625452041626, 0.16651129722595215], "mean": [-0.12053009867668152, -0.03967772796750069, 0.14926777780056, -0.06676821410655975, 0.7442304491996765, -0.6645562052726746, 0.0054002790711820126, 0.14067140221595764, -0.07743116468191147, 0.11844147741794586, -0.24096271395683289, -0.2606930434703827, 0.9201878309249878, 0.1571342498064041], "std": [6.658889901700604e-07, 9.221141112902842e-07, 3.698954174069513e-07, 4.9585829401621595e-05, 3.3875028748298064e-05, 4.217392051941715e-05, 7.933947199489921e-05, 0.002193742198869586, 0.0033422880806028843, 0.003337960923090577, 0.03205544129014015, 0.034709617495536804, 0.01640324853360653, 0.0061348481103777885], "count": [175]}, "timestamp": {"min": [0.0], "max": [5.8], "mean": [2.9], "std": [1.6839107920420118], "count": [175]}, "frame_index": {"min": [0], "max": [174], "mean": [87.0], "std": [50.51732376126036], "count": [175]}, "episode_index": {"min": [757], "max": [757], "mean": [757.0], "std": [0.0], "count": [175]}, "index": {"min": [380484], "max": [380658], "mean": [380571.0], "std": [50.51732376126036], "count": [175]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [175]}}} +{"episode_index": 758, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6564160266884531]], [[0.5991401579520697]], [[0.5301077069716775]]], "std": [[[0.23648777252531947]], [[0.22930379067756426]], [[0.2716785170639651]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6564160266884531]], [[0.5991401579520697]], [[0.5301077069716775]]], "std": [[[0.23648777252531947]], [[0.22930379067756426]], [[0.2716785170639651]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3877474069595337, -0.40917354822158813, -0.07414595782756805, 0.15312036871910095, 4.535593509674072, -0.2325553297996521, -0.15207479894161224], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3879107236862183, -0.375247597694397, -0.022249190136790276, 0.16682863235473633, 4.5383195877075195, -0.09031672775745392, 0.029340749606490135], "mean": [0.5100176334381104, 0.23325195908546448, 0.13003861904144287, -1.610175371170044, -0.38777464628219604, 1.3878251314163208, -0.39214667677879333, -0.057678285986185074, 0.1599469631910324, 4.537830829620361, -0.17361339926719666, -0.0367216132581234], "std": [2.000588665396208e-06, 3.530643425619928e-06, 1.4901161193847656e-08, 0.00020631938241422176, 2.682209014892578e-07, 8.143030572682619e-05, 0.009902579709887505, 0.016933109611272812, 0.004381468519568443, 0.00032454708707518876, 0.043978605419397354, 0.057823844254016876], "count": [151]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.14926663041114807, -0.06682039052248001, 0.7441836595535278, -0.6646141409873962, 0.005307966377586126, 0.13733899593353271, -0.08243446052074432, 0.1113162562251091, -0.26674115657806396, -0.30301639437675476, 0.9061354398727417, 0.1427508294582367], "max": [-0.12052802741527557, -0.03967570140957832, 0.1492685228586197, -0.06671148538589478, 0.744294285774231, -0.6644788384437561, 0.005475220270454884, 0.14342007040977478, -0.07152507454156876, 0.12317004054784775, -0.2045639604330063, -0.1997271627187729, 0.937399685382843, 0.1707935631275177], "mean": [-0.12053031474351883, -0.03967767581343651, 0.14926788210868835, -0.06677055358886719, 0.7442437410354614, -0.6645410656929016, 0.005404001567512751, 0.14007343351840973, -0.0778285562992096, 0.1176753118634224, -0.24155066907405853, -0.2673410475254059, 0.918771505355835, 0.15628622472286224], "std": [3.075487313708436e-07, 8.954389727477974e-07, 3.1950227707966405e-07, 4.9739079258870333e-05, 3.54709081875626e-05, 4.3611751607386395e-05, 7.919706695247442e-05, 0.0021542825270444155, 0.003268172964453697, 0.0035084986593574286, 0.018883731216192245, 0.0326748788356781, 0.011539319530129433, 0.007670294959098101], "count": [151]}, "timestamp": {"min": [0.0], "max": [5.0], "mean": [2.4999999999999996], "std": [1.4529663145135578], "count": [151]}, "frame_index": {"min": [0], "max": [150], "mean": [75.0], "std": [43.58898943540674], "count": [151]}, "episode_index": {"min": [758], "max": [758], "mean": [758.0], "std": [0.0], "count": [151]}, "index": {"min": [380659], "max": [380809], "mean": [380734.0], "std": [43.58898943540674], "count": [151]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [151]}}} +{"episode_index": 759, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6601851851851852]], [[0.601977301198257]], [[0.5331773393246187]]], "std": [[[0.23325718798577222]], [[0.22674611870072542]], [[0.2693137454456018]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6601851851851852]], [[0.601977301198257]], [[0.5331773393246187]]], "std": [[[0.23325718798577222]], [[0.22674611870072542]], [[0.2693137454456018]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.41443273425102234, -0.07395289093255997, 0.15170611441135406, 4.535383701324463, -0.2527775168418884, -0.14204001426696777], "max": [0.5100247263908386, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.37664541602134705, -0.016974570229649544, 0.16634252667427063, 4.53810977935791, -0.06312605738639832, 0.06257811933755875], "mean": [0.5100175142288208, 0.23325397074222565, 0.13003866374492645, -1.6101406812667847, -0.3877747058868408, 1.3880459070205688, -0.3900580406188965, -0.05593699961900711, 0.1582457721233368, 4.537726879119873, -0.17943628132343292, -0.00974447000771761], "std": [1.1108576245533186e-06, 3.830967216345016e-06, 2.9802322387695312e-08, 0.0001950314617715776, 3.2782554626464844e-07, 6.32066949037835e-05, 0.01159596536308527, 0.017313499003648758, 0.005057796370238066, 0.0004743262834381312, 0.056395675987005234, 0.06132907420396805], "count": [164]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.14926756918430328, -0.06681762635707855, 0.7442918419837952, -0.6644925475120544, 0.0053025176748633385, 0.13726793229579926, -0.08182124048471451, 0.1111278161406517, -0.2750088572502136, -0.3132001459598541, 0.9001126289367676, 0.13677899539470673], "max": [-0.12052932381629944, -0.039676010608673096, 0.1492685228586197, -0.06671234965324402, 0.7443485856056213, -0.6644180417060852, 0.005469763185828924, 0.14459183812141418, -0.06958894431591034, 0.123328797519207, -0.19209277629852295, -0.20276190340518951, 0.9386268854141235, 0.16768285632133484], "mean": [-0.12053043395280838, -0.03967748209834099, 0.14926792681217194, -0.06677956879138947, 0.7443190813064575, -0.664454996585846, 0.0054103778675198555, 0.14096978306770325, -0.07677199691534042, 0.11659332364797592, -0.24533529579639435, -0.27836185693740845, 0.9147382378578186, 0.15371060371398926], "std": [1.773942841509779e-07, 9.243972840522474e-07, 3.256126319683972e-07, 4.694965900853276e-05, 2.6708326913649216e-05, 3.372933861101046e-05, 7.520544750150293e-05, 0.0022987292613834143, 0.0035421419888734818, 0.004109719768166542, 0.0243596863001585, 0.033435143530368805, 0.013250719755887985, 0.008082414977252483], "count": [164]}, "timestamp": {"min": [0.0], "max": [5.433333333333334], "mean": [2.7166666666666663], "std": [1.5780613986083616], "count": [164]}, "frame_index": {"min": [0], "max": [163], "mean": [81.5], "std": [47.341841958250846], "count": [164]}, "episode_index": {"min": [759], "max": [759], "mean": [759.0], "std": [0.0], "count": [164]}, "index": {"min": [380810], "max": [380973], "mean": [380891.5], "std": [47.341841958250846], "count": [164]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [164]}}} +{"episode_index": 760, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6627840032679738]], [[0.6044814542483661]], [[0.5357660212418301]]], "std": [[[0.2321563214005258]], [[0.22564707481468677]], [[0.2684972673257338]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6627840032679738]], [[0.6044814542483661]], [[0.5357660212418301]]], "std": [[[0.2321563214005258]], [[0.22564707481468677]], [[0.2684972673257338]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.39819955825805664, -0.0685855895280838, 0.15169833600521088, 4.536432266235352, -0.2616589069366455, -0.09387025237083435], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.37502363324165344, -0.013661510311067104, 0.1653417944908142, 4.5383195877075195, -0.17475807666778564, 0.09148137271404266], "mean": [0.5100177526473999, 0.23325423896312714, 0.1300385296344757, -1.6101657152175903, -0.3877745270729065, 1.387932300567627, -0.38340529799461365, -0.051684096455574036, 0.1586659550666809, 4.537824630737305, -0.22483128309249878, 0.027609933167696], "std": [2.228680614280165e-06, 3.784531372730271e-06, 1.043081283569336e-07, 0.00020444336405489594, 1.4901161193847656e-07, 5.630332452710718e-05, 0.007644236087799072, 0.016803618520498276, 0.004012719262391329, 0.0003486632776912302, 0.02583981119096279, 0.05794494226574898], "count": [132]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.1492670476436615, -0.06681717932224274, 0.7442377209663391, -0.6645533442497253, 0.005305555183440447, 0.13886350393295288, -0.08140020072460175, 0.11112264543771744, -0.2829163372516632, -0.31963738799095154, 0.8928115963935852, 0.1443120241165161], "max": [-0.12052813917398453, -0.03967539593577385, 0.1492685228586197, -0.0667119175195694, 0.7443485856056213, -0.6644180417060852, 0.005469763185828924, 0.14459821581840515, -0.06937205046415329, 0.12253619730472565, -0.24285604059696198, -0.21785098314285278, 0.9243806004524231, 0.17339202761650085], "mean": [-0.12053024768829346, -0.03967734053730965, 0.1492680311203003, -0.06677334010601044, 0.7442793846130371, -0.6645004153251648, 0.005404575727880001, 0.1413884162902832, -0.0764831081032753, 0.11745482683181763, -0.26602426171302795, -0.28987836837768555, 0.9054387211799622, 0.1548553854227066], "std": [3.6707785966427764e-07, 8.958666057878872e-07, 3.0977184906078037e-07, 4.9190020945388824e-05, 3.698948057717644e-05, 4.639867984224111e-05, 7.760242442600429e-05, 0.0017413911409676075, 0.003364220727235079, 0.0030883201397955418, 0.011834733188152313, 0.03287439048290253, 0.010540821589529514, 0.008407271467149258], "count": [132]}, "timestamp": {"min": [0.0], "max": [4.366666666666666], "mean": [2.1833333333333336], "std": [1.2701341428135615], "count": [132]}, "frame_index": {"min": [0], "max": [131], "mean": [65.5], "std": [38.10402428440685], "count": [132]}, "episode_index": {"min": [760], "max": [760], "mean": [760.0], "std": [0.0], "count": [132]}, "index": {"min": [380974], "max": [381105], "mean": [381039.5], "std": [38.10402428440685], "count": [132]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [132]}}} +{"episode_index": 761, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6620524128540305]], [[0.6031180473856209]], [[0.5342105473856209]]], "std": [[[0.22817018922246826]], [[0.22262172353968226]], [[0.2651584107704516]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6620524128540305]], [[0.6031180473856209]], [[0.5342105473856209]]], "std": [[[0.22817018922246826]], [[0.22262172353968226]], [[0.2651584107704516]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3877474069595337, -0.3909015655517578, -0.06117948889732361, 0.15274055302143097, 4.5370612144470215, -0.3630431890487671, 0.037268418818712234], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3879107236862183, -0.3751935362815857, -0.011808060109615326, 0.16540011763572693, 4.5383195877075195, -0.2093271166086197, 0.19375614821910858], "mean": [0.5100178718566895, 0.23325666785240173, 0.13003863394260406, -1.610180139541626, -0.38777464628219604, 1.3877642154693604, -0.38358333706855774, -0.0479368194937706, 0.15802747011184692, 4.5377912521362305, -0.28350746631622314, 0.12720263004302979], "std": [2.6376878849987406e-06, 2.1541052319662413e-06, 0.0, 0.00020631625375244766, 2.682209014892578e-07, 5.159189458936453e-05, 0.005290366243571043, 0.016838805750012398, 0.00410828972235322, 0.00023859541397541761, 0.04680333286523819, 0.052709829062223434], "count": [153]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.14926663041114807, -0.06682039052248001, 0.7441836595535278, -0.6646141409873962, 0.005307966377586126, 0.1388447880744934, -0.08044128119945526, 0.11146829277276993, -0.3414768874645233, -0.3653850257396698, 0.8600485324859619, 0.1331162005662918], "max": [-0.12052802741527557, -0.03967570140957832, 0.1492685228586197, -0.06671148538589478, 0.744294285774231, -0.6644788384437561, 0.005475220270454884, 0.14360129833221436, -0.06952474266290665, 0.12308560311794281, -0.2649270296096802, -0.27254441380500793, 0.9026033878326416, 0.16173411905765533], "mean": [-0.12053035944700241, -0.039676934480667114, 0.14926818013191223, -0.06676977127790451, 0.7442213892936707, -0.6645663976669312, 0.00540526770055294, 0.14117735624313354, -0.07542558014392853, 0.1170387789607048, -0.3006514608860016, -0.3274385631084442, 0.8825713396072388, 0.14775791764259338], "std": [4.119568757232628e-07, 7.72122632497485e-07, 3.226313936011138e-07, 4.980484663974494e-05, 2.684490209503565e-05, 3.4701071854215115e-05, 7.931754953460768e-05, 0.0014906051801517606, 0.003132305573672056, 0.0035712483804672956, 0.02377023734152317, 0.028107434511184692, 0.014675872400403023, 0.007607089355587959], "count": [153]}, "timestamp": {"min": [0.0], "max": [5.066666666666666], "mean": [2.533333333333333], "std": [1.4722117400046122], "count": [153]}, "frame_index": {"min": [0], "max": [152], "mean": [76.0], "std": [44.16635220013836], "count": [153]}, "episode_index": {"min": [761], "max": [761], "mean": [761.0], "std": [0.0], "count": [153]}, "index": {"min": [381106], "max": [381258], "mean": [381182.0], "std": [44.16635220013836], "count": [153]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [153]}}} +{"episode_index": 762, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6635533061002179]], [[0.6045735212418301]], [[0.5356701116557734]]], "std": [[[0.22546785005642916]], [[0.22030200436513522]], [[0.2630945828023928]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6635533061002179]], [[0.6045735212418301]], [[0.5356701116557734]]], "std": [[[0.22546785005642916]], [[0.22030200436513522]], [[0.2630945828023928]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.387829065322876, -0.38708654046058655, -0.059588611125946045, 0.1527509242296219, 4.5370612144470215, -0.36440953612327576, 0.1237921491265297], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3879107236862183, -0.3634240925312042, -0.016109619289636612, 0.16391587257385254, 4.5383195877075195, -0.2714967429637909, 0.2630379796028137], "mean": [0.5100206732749939, 0.2332572191953659, 0.1300385743379593, -1.610195279121399, -0.38777458667755127, 1.387908697128296, -0.37689661979675293, -0.041483450680971146, 0.15861506760120392, 4.537768363952637, -0.3037322759628296, 0.18675316870212555], "std": [6.424646471714368e-06, 9.166308245767141e-07, 5.960464477539063e-08, 0.0002092620707117021, 2.086162567138672e-07, 7.003644441283541e-06, 0.007180997170507908, 0.013336477801203728, 0.0038149282336235046, 0.0002811866579577327, 0.021117042750120163, 0.05015656724572182], "count": [141]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.1492670476436615, -0.06682083755731583, 0.7442377209663391, -0.6645533442497253, 0.00530711654573679, 0.13970518112182617, -0.0784028097987175, 0.11160997301340103, -0.34211966395378113, -0.3867248594760895, 0.8501737713813782, 0.12829454243183136], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.744294285774231, -0.6644788384437561, 0.00547249149531126, 0.14515361189842224, -0.07025356590747833, 0.12272122502326965, -0.29385754466056824, -0.31246447563171387, 0.8882420659065247, 0.1495460867881775], "mean": [-0.12052993476390839, -0.03967664763331413, 0.14926812052726746, -0.06676778197288513, 0.7442672848701477, -0.6645151972770691, 0.005394225474447012, 0.14172333478927612, -0.07500725239515305, 0.11828835308551788, -0.3114585280418396, -0.348886638879776, 0.872165858745575, 0.14054787158966064], "std": [9.724952860779013e-07, 7.042685297165008e-07, 5.364036042010412e-07, 5.125271127326414e-05, 2.688068889256101e-05, 3.587402170524001e-05, 7.970036676852033e-05, 0.0016822849866002798, 0.002542083151638508, 0.0032270438969135284, 0.009647924453020096, 0.02396332286298275, 0.010898265056312084, 0.007622454781085253], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [762], "max": [762], "mean": [762.0], "std": [0.0], "count": [141]}, "index": {"min": [381259], "max": [381399], "mean": [381329.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [141]}}} +{"episode_index": 763, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6646082298474946]], [[0.6048016285403051]], [[0.5353547712418301]]], "std": [[[0.2260864458699092]], [[0.22141779296303582]], [[0.26485128737626]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6646082298474946]], [[0.6048016285403051]], [[0.5353547712418301]]], "std": [[[0.2260864458699092]], [[0.22141779296303582]], [[0.26485128737626]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.414193332195282, -0.06409867852926254, 0.1509101837873459, 4.5370612144470215, -0.3279275894165039, 0.006551965605467558], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.3650999069213867, 0.002301374450325966, 0.1623966246843338, 4.538528919219971, -0.06257952004671097, 0.20058606564998627], "mean": [0.5100247859954834, 0.23325707018375397, 0.13003861904144287, -1.6101597547531128, -0.38777464628219604, 1.388068437576294, -0.39492717385292053, -0.04570946842432022, 0.15735380351543427, 4.537904739379883, -0.21469683945178986, 0.1221332922577858], "std": [6.990094334469177e-06, 1.3881985978514422e-06, 1.4901161193847656e-08, 0.00020318137831054628, 2.682209014892578e-07, 3.2630105124553666e-05, 0.014358832500874996, 0.021170539781451225, 0.004093548748642206, 0.00027862447313964367, 0.0702655091881752, 0.05949539691209793], "count": [150]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.14926663041114807, -0.06682128459215164, 0.7442377209663391, -0.6645528674125671, 0.005301666911691427, 0.13767702877521515, -0.0787636786699295, 0.10940748453140259, -0.3139111399650574, -0.3727397322654724, 0.8704606890678406, 0.11939491331577301], "max": [-0.12052802741527557, -0.03967539593577385, 0.1492685228586197, -0.06671234965324402, 0.7443485856056213, -0.664417564868927, 0.00546735106036067, 0.14503765106201172, -0.06583588570356369, 0.12012210488319397, -0.20670831203460693, -0.25954267382621765, 0.9179154634475708, 0.15705470740795135], "mean": [-0.12052924931049347, -0.03967660292983055, 0.14926768839359283, -0.0667787715792656, 0.7443234920501709, -0.6644507050514221, 0.005401896312832832, 0.14037975668907166, -0.07475827634334564, 0.11633988469839096, -0.27384719252586365, -0.3301529884338379, 0.8907856345176697, 0.14218710362911224], "std": [1.040128267959517e-06, 8.12600205790659e-07, 4.93892002850771e-07, 4.843798524234444e-05, 2.907388989115134e-05, 3.767929592868313e-05, 7.774327968945727e-05, 0.0017021064413711429, 0.0040551298297941685, 0.0032829702831804752, 0.029653310775756836, 0.032873693853616714, 0.015234766528010368, 0.009929227642714977], "count": [150]}, "timestamp": {"min": [0.0], "max": [4.966666666666667], "mean": [2.483333333333333], "std": [1.4433435976027125], "count": [150]}, "frame_index": {"min": [0], "max": [149], "mean": [74.5], "std": [43.300307928081374], "count": [150]}, "episode_index": {"min": [763], "max": [763], "mean": [763.0], "std": [0.0], "count": [150]}, "index": {"min": [381400], "max": [381549], "mean": [381474.5], "std": [43.300307928081374], "count": [150]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [150]}}} +{"episode_index": 764, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6556635021786492]], [[0.5998792837690632]], [[0.5318980936819172]]], "std": [[[0.2405243920064977]], [[0.23169762162069868]], [[0.27401850822715823]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6556635021786492]], [[0.5998792837690632]], [[0.5318980936819172]]], "std": [[[0.2405243920064977]], [[0.23169762162069868]], [[0.27401850822715823]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.40102607011795044, -0.08038593083620071, 0.15487165749073029, 4.517140865325928, -0.3182263970375061, -0.10746995359659195], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.34408634901046753, -0.04012731835246086, 0.17040899395942688, 4.540626049041748, -0.20112892985343933, 0.20101583003997803], "mean": [0.5100202560424805, 0.23325705528259277, 0.13003872334957123, -1.6101540327072144, -0.38777443766593933, 1.3880423307418823, -0.37299084663391113, -0.0645802840590477, 0.16114281117916107, 4.537556171417236, -0.26456010341644287, 0.024609627202153206], "std": [5.737237188441213e-06, 1.3891952903577476e-06, 8.940696716308594e-08, 0.00020273166592232883, 5.960464477539063e-08, 6.606913666473702e-05, 0.01758746989071369, 0.012822691351175308, 0.005257234442979097, 0.0025821076706051826, 0.04343487322330475, 0.08153059333562851], "count": [180]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.14926663041114807, -0.06682128459215164, 0.7442379593849182, -0.6645533442497253, 0.005301666911691427, 0.13768619298934937, -0.0841720774769783, 0.11341819912195206, -0.3032629191875458, -0.3757423162460327, 0.8710777163505554, 0.1336117833852768], "max": [-0.12052802741527557, -0.03967539593577385, 0.1492685228586197, -0.06671234965324402, 0.7443485856056213, -0.664417564868927, 0.005469763185828924, 0.1467362642288208, -0.07366537302732468, 0.12695111334323883, -0.25396499037742615, -0.22483696043491364, 0.9248760938644409, 0.17188133299350739], "mean": [-0.12052997946739197, -0.039676837623119354, 0.1492680013179779, -0.06677765399217606, 0.7443154454231262, -0.6644594669342041, 0.005405283998697996, 0.14167144894599915, -0.07951702177524567, 0.1186816543340683, -0.2784446179866791, -0.2912650406360626, 0.9000972509384155, 0.1590241938829422], "std": [8.686248520461959e-07, 7.202351639534754e-07, 4.80604455788125e-07, 4.922502193949185e-05, 2.792055965983309e-05, 3.5268756619188935e-05, 7.80737100285478e-05, 0.003419988788664341, 0.0028014935087412596, 0.004235713742673397, 0.016665302217006683, 0.03924086317420006, 0.015177898108959198, 0.011024768464267254], "count": [180]}, "timestamp": {"min": [0.0], "max": [5.966666666666667], "mean": [2.9833333333333334], "std": [1.7320240781835015], "count": [180]}, "frame_index": {"min": [0], "max": [179], "mean": [89.5], "std": [51.96072234550504], "count": [180]}, "episode_index": {"min": [764], "max": [764], "mean": [764.0], "std": [0.0], "count": [180]}, "index": {"min": [381550], "max": [381729], "mean": [381639.5], "std": [51.96072234550504], "count": [180]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [180]}}} +{"episode_index": 765, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6426882570806101]], [[0.5878477314814815]], [[0.5186351062091503]]], "std": [[[0.24570267666708817]], [[0.2360726387550244]], [[0.2768811666465503]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6426882570806101]], [[0.5878477314814815]], [[0.5186351062091503]]], "std": [[[0.24570267666708817]], [[0.2360726387550244]], [[0.2768811666465503]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.40691080689430237, -0.08440946787595749, 0.15655294060707092, 4.53748083114624, -0.303333044052124, -0.21427038311958313], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.36755573749542236, -0.04515482112765312, 0.16827139258384705, 4.5383195877075195, -0.09509900212287903, -0.03617589920759201], "mean": [0.5100183486938477, 0.23325718939304352, 0.1300385296344757, -1.6101715564727783, -0.3877744972705841, 1.3879603147506714, -0.38968244194984436, -0.07067298889160156, 0.16114690899848938, 4.537869453430176, -0.20129293203353882, -0.12236111611127853], "std": [3.6631406601372873e-06, 9.557656994729768e-07, 1.043081283569336e-07, 0.00020556060189846903, 1.1920928955078125e-07, 7.536217890447006e-05, 0.009873163886368275, 0.013414289802312851, 0.003994955215603113, 0.00019440078176558018, 0.07063576579093933, 0.05104358121752739], "count": [130]}, "action": {"min": [-0.12053059041500092, -0.03967738524079323, 0.1492670476436615, -0.06682083755731583, 0.7442378401756287, -0.6645533442497253, 0.005304079037159681, 0.13769131898880005, -0.0846378430724144, 0.11302141100168228, -0.2883867621421814, -0.2676719129085541, 0.903167188167572, 0.15465392172336578], "max": [-0.12052817642688751, -0.03967570140957832, 0.1492685228586197, -0.0667119175195694, 0.7443462014198303, -0.6644206047058105, 0.005469763185828924, 0.1436278074979782, -0.07467861473560333, 0.12389123439788818, -0.19572162628173828, -0.18389281630516052, 0.945559561252594, 0.1785297840833664], "mean": [-0.12053021043539047, -0.03967680782079697, 0.1492682546377182, -0.06677253544330597, 0.7442875504493713, -0.6644918322563171, 0.005401939153671265, 0.13982820510864258, -0.08009038120508194, 0.1175379753112793, -0.24558813869953156, -0.23196443915367126, 0.9247603416442871, 0.16967664659023285], "std": [5.764039201494597e-07, 6.613527148147114e-07, 3.4927253977912187e-07, 4.98187800985761e-05, 4.001770867034793e-05, 4.938982965541072e-05, 7.80009722802788e-05, 0.001391803496517241, 0.002879822626709938, 0.003380957990884781, 0.03182181715965271, 0.025198478251695633, 0.014425231143832207, 0.007181538734585047], "count": [130]}, "timestamp": {"min": [0.0], "max": [4.3], "mean": [2.15], "std": [1.2508885730640529], "count": [130]}, "frame_index": {"min": [0], "max": [129], "mean": [64.5], "std": [37.526657191921586], "count": [130]}, "episode_index": {"min": [765], "max": [765], "mean": [765.0], "std": [0.0], "count": [130]}, "index": {"min": [381730], "max": [381859], "mean": [381794.5], "std": [37.526657191921586], "count": [130]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [130]}}} +{"episode_index": 766, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6519532734204793]], [[0.5964616966230937]], [[0.5281597984749455]]], "std": [[[0.2460032095560037]], [[0.23606719668955942]], [[0.2774804756009134]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6519532734204793]], [[0.5964616966230937]], [[0.5281597984749455]]], "std": [[[0.2460032095560037]], [[0.23606719668955942]], [[0.2774804756009134]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.4011419117450714, -0.08721282333135605, 0.15687702596187592, 4.537690162658691, -0.2649381756782532, -0.23907150328159332], "max": [0.5100247263908386, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.3765372931957245, -0.03490674868226051, 0.16793954372406006, 4.53810977935791, -0.1557656079530716, -0.09509923309087753], "mean": [0.5100173950195312, 0.23325718939304352, 0.13003848493099213, -1.6101878881454468, -0.38777443766593933, 1.3879374265670776, -0.38445472717285156, -0.06795386970043182, 0.1616583913564682, 4.537874221801758, -0.21780531108379364, -0.14843252301216125], "std": [7.830847152945353e-07, 9.849430853137164e-07, 1.4901161193847656e-07, 0.00020693885744549334, 5.960464477539063e-08, 6.0662732721539214e-05, 0.008668085560202599, 0.018454216420650482, 0.0038362310733646154, 0.0001936297630891204, 0.03899426758289337, 0.04508727043867111], "count": [122]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.14926756918430328, -0.06681717932224274, 0.7442379593849182, -0.6645533442497253, 0.005304079037159681, 0.13874314725399017, -0.08439633250236511, 0.11385121941566467, -0.2688220143318176, -0.24591179192066193, 0.9153750538825989, 0.16584394872188568], "max": [-0.12052932381629944, -0.039676010608673096, 0.1492685228586197, -0.06671252101659775, 0.7443462014198303, -0.6644206047058105, 0.005469763185828924, 0.1426054984331131, -0.07313143461942673, 0.12399359047412872, -0.22037281095981598, -0.16491511464118958, 0.9426208734512329, 0.18361030519008636], "mean": [-0.12053035199642181, -0.03967680409550667, 0.14926818013191223, -0.06676805764436722, 0.7442774772644043, -0.6645035743713379, 0.005396575666964054, 0.14024637639522552, -0.08011354506015778, 0.1183711513876915, -0.24832521378993988, -0.21755702793598175, 0.9268316626548767, 0.17562641203403473], "std": [2.0660762345414696e-07, 7.138824571484292e-07, 2.4935141595960886e-07, 4.986009662388824e-05, 3.3595126296859235e-05, 4.229354817653075e-05, 7.903715595602989e-05, 0.0011947607854381204, 0.003587307408452034, 0.0030762164387851954, 0.016806213185191154, 0.027204185724258423, 0.009837889112532139, 0.004815143533051014], "count": [122]}, "timestamp": {"min": [0.0], "max": [4.033333333333333], "mean": [2.0166666666666666], "std": [1.1739061101960222], "count": [122]}, "frame_index": {"min": [0], "max": [121], "mean": [60.5], "std": [35.21718330588067], "count": [122]}, "episode_index": {"min": [766], "max": [766], "mean": [766.0], "std": [0.0], "count": [122]}, "index": {"min": [381860], "max": [381981], "mean": [381920.5], "std": [35.21718330588067], "count": [122]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [122]}}} +{"episode_index": 767, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6482639270152506]], [[0.5925768110021786]], [[0.5234132107843138]]], "std": [[[0.24652608257526343]], [[0.2367549201999261]], [[0.27787558715646]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6482639270152506]], [[0.5925768110021786]], [[0.5234132107843138]]], "std": [[[0.24652608257526343]], [[0.2367549201999261]], [[0.27787558715646]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.4117220640182495, -0.09168428182601929, 0.157054603099823, 4.533915996551514, -0.26712435483932495, -0.36057326197624207], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.37347134947776794, -0.04517025873064995, 0.16690123081207275, 4.53810977935791, -0.06968460977077484, -0.08293627947568893], "mean": [0.5100189447402954, 0.2332572638988495, 0.13003861904144287, -1.6101890802383423, -0.38777464628219604, 1.388067603111267, -0.3914271295070648, -0.07101714611053467, 0.16133657097816467, 4.537796497344971, -0.15762655436992645, -0.24764510989189148], "std": [4.688907210947946e-06, 6.356633548421087e-07, 1.4901161193847656e-08, 0.00020736572332680225, 2.682209014892578e-07, 3.502766048768535e-05, 0.011428377591073513, 0.015616736374795437, 0.003335794899612665, 0.00035726025816984475, 0.0637015551328659, 0.08093275129795074], "count": [150]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.1492670476436615, -0.06682128459215164, 0.7442379593849182, -0.6645533442497253, 0.005301666911691427, 0.1382131427526474, -0.08366358280181885, 0.11248554289340973, -0.27005264163017273, -0.2528039216995239, 0.9132644534111023, 0.16729934513568878], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.7443485856056213, -0.6644180417060852, 0.005469763185828924, 0.14261606335639954, -0.0747508779168129, 0.1231568232178688, -0.17446067929267883, -0.11562313884496689, 0.960157573223114, 0.1823928952217102], "mean": [-0.12053024023771286, -0.039676737040281296, 0.14926810562610626, -0.06676894426345825, 0.7443194389343262, -0.664456307888031, 0.005391683429479599, 0.13984550535678864, -0.08033758401870728, 0.11771198362112045, -0.21634836494922638, -0.17627201974391937, 0.9425594806671143, 0.17584262788295746], "std": [7.057413426991843e-07, 6.966276941966498e-07, 4.120757068903913e-07, 5.0293627282371745e-05, 2.952845170511864e-05, 3.8377344026230276e-05, 7.908623956609517e-05, 0.0011814502067863941, 0.002499708905816078, 0.0033171521499753, 0.03065159171819687, 0.039915140718221664, 0.015225512906908989, 0.0042341165244579315], "count": [150]}, "timestamp": {"min": [0.0], "max": [4.966666666666667], "mean": [2.483333333333333], "std": [1.4433435976027125], "count": [150]}, "frame_index": {"min": [0], "max": [149], "mean": [74.5], "std": [43.300307928081374], "count": [150]}, "episode_index": {"min": [767], "max": [767], "mean": [767.0], "std": [0.0], "count": [150]}, "index": {"min": [381982], "max": [382131], "mean": [382056.5], "std": [43.300307928081374], "count": [150]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [150]}}} +{"episode_index": 768, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6450175816993463]], [[0.5894558769063182]], [[0.5200383823529412]]], "std": [[[0.2440003404761992]], [[0.23432332030644265]], [[0.27521112034861805]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6450175816993463]], [[0.5894558769063182]], [[0.5200383823529412]]], "std": [[[0.2440003404761992]], [[0.23432332030644265]], [[0.27521112034861805]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.40703436732292175, -0.09066487848758698, 0.15565979480743408, 4.537271022796631, -0.3593539893627167, -0.18997468054294586], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.3736953139305115, -0.03177132084965706, 0.16567881405353546, 4.5383195877075195, -0.14633768796920776, -0.03120649978518486], "mean": [0.5100223422050476, 0.2332572489976883, 0.13003851473331451, -1.6101627349853516, -0.3877744972705841, 1.387985110282898, -0.3883516788482666, -0.06873161345720291, 0.1603674739599228, 4.537814617156982, -0.24781987071037292, -0.10560012608766556], "std": [6.976344593567774e-06, 6.899825280015648e-07, 1.1920928955078125e-07, 0.00020368116383906454, 1.1920928955078125e-07, 8.114577212836593e-05, 0.010672742500901222, 0.019077934324741364, 0.003655344247817993, 0.0002144518803106621, 0.07512318342924118, 0.05009014531970024], "count": [127]}, "action": {"min": [-0.12053059041500092, -0.03967864811420441, 0.1492670476436615, -0.06682128459215164, 0.7442377209663391, -0.6645533442497253, 0.005301666911691427, 0.13784757256507874, -0.08346349000930786, 0.11217223852872849, -0.3173191547393799, -0.27160269021987915, 0.8916230797767639, 0.1628551036119461], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.7443462014198303, -0.6644201278686523, 0.005469763185828924, 0.1430019587278366, -0.07284471392631531, 0.12239082902669907, -0.22291754186153412, -0.18336965143680573, 0.9343244433403015, 0.18321506679058075], "mean": [-0.1205296441912651, -0.03967666998505592, 0.14926794171333313, -0.06677672266960144, 0.7442966103553772, -0.6644814014434814, 0.005403994582593441, 0.13995756208896637, -0.07927471399307251, 0.11699642986059189, -0.26711657643318176, -0.23534290492534637, 0.9167291522026062, 0.17530381679534912], "std": [1.0233922012048424e-06, 8.286614843200368e-07, 4.435679272773996e-07, 4.794428241439164e-05, 3.9621965697733685e-05, 4.84712072648108e-05, 7.796346471877769e-05, 0.0016523512313142419, 0.003236151300370693, 0.003273472422733903, 0.03359061852097511, 0.026340870186686516, 0.01629127375781536, 0.007162026595324278], "count": [127]}, "timestamp": {"min": [0.0], "max": [4.2], "mean": [2.1], "std": [1.2220201853215575], "count": [127]}, "frame_index": {"min": [0], "max": [126], "mean": [63.0], "std": [36.66060555964672], "count": [127]}, "episode_index": {"min": [768], "max": [768], "mean": [768.0], "std": [0.0], "count": [127]}, "index": {"min": [382132], "max": [382258], "mean": [382195.0], "std": [36.66060555964672], "count": [127]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [127]}}} +{"episode_index": 769, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.639056887254902]], [[0.585297998366013]], [[0.516519566993464]]], "std": [[[0.25103918888004184]], [[0.23944800317529102]], [[0.27940902011752305]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.639056887254902]], [[0.585297998366013]], [[0.516519566993464]]], "std": [[[0.25103918888004184]], [[0.23944800317529102]], [[0.27940902011752305]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.4029644727706909, -0.09476566314697266, 0.15565331280231476, 4.534125804901123, -0.35949063301086426, -0.29723694920539856], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.37313157320022583, -0.04159463942050934, 0.1662621647119522, 4.538528919219971, -0.15330615639686584, -0.04745984077453613], "mean": [0.5100238919258118, 0.2332572638988495, 0.13003863394260406, -1.6101598739624023, -0.38777464628219604, 1.3879168033599854, -0.3842964470386505, -0.07783862203359604, 0.16019614040851593, 4.537680625915527, -0.27240970730781555, -0.16900525987148285], "std": [7.467983323294902e-06, 6.278131650105934e-07, 0.0, 0.0002038792154053226, 2.682209014892578e-07, 3.407024996704422e-05, 0.0091477669775486, 0.017351249232888222, 0.0037911550607532263, 0.00052424002205953, 0.05998801067471504, 0.07301608473062515], "count": [154]}, "action": {"min": [-0.12053059041500092, -0.03967834264039993, 0.1492670476436615, -0.06682128459215164, 0.7442377209663391, -0.6645533442497253, 0.00530711654573679, 0.13798633217811584, -0.08528295159339905, 0.11207760870456696, -0.3145810663700104, -0.26081037521362305, 0.8942127227783203, 0.169636070728302], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.744346022605896, -0.6644201278686523, 0.005469763185828924, 0.14325088262557983, -0.0737786516547203, 0.12201333791017532, -0.2103450447320938, -0.13519611954689026, 0.9455973505973816, 0.20274297893047333], "mean": [-0.12052936106920242, -0.03967659920454025, 0.14926780760288239, -0.06677798181772232, 0.7442744374275208, -0.6645060777664185, 0.005407080985605717, 0.14044708013534546, -0.08038178086280823, 0.11620993167161942, -0.2700026035308838, -0.20880445837974548, 0.9197278618812561, 0.1870734542608261], "std": [1.1218299960091827e-06, 7.522092460021668e-07, 5.444044290925376e-07, 4.912324948236346e-05, 3.0331653761095367e-05, 3.921529059880413e-05, 7.775449921609834e-05, 0.0016795216361060739, 0.003364589298143983, 0.003054825123399496, 0.029283981770277023, 0.03790058195590973, 0.015289438888430595, 0.008721595630049706], "count": [154]}, "timestamp": {"min": [0.0], "max": [5.1], "mean": [2.55], "std": [1.4818344486930155], "count": [154]}, "frame_index": {"min": [0], "max": [153], "mean": [76.5], "std": [44.45503346079047], "count": [154]}, "episode_index": {"min": [769], "max": [769], "mean": [769.0], "std": [0.0], "count": [154]}, "index": {"min": [382259], "max": [382412], "mean": [382335.5], "std": [44.45503346079047], "count": [154]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [154]}}} +{"episode_index": 770, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6516056781045751]], [[0.596134765795207]], [[0.528315895969499]]], "std": [[[0.24696380268365686]], [[0.23613996460378686]], [[0.2771834374636668]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6516056781045751]], [[0.596134765795207]], [[0.528315895969499]]], "std": [[[0.24696380268365686]], [[0.23613996460378686]], [[0.2771834374636668]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.23325741291046143, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.41706618666648865, -0.09501277655363083, 0.153593510389328, 4.53748083114624, -0.31385403871536255, -0.3367372751235962], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.36720049381256104, -0.05495496839284897, 0.16456660628318787, 4.53810977935791, -0.034705668687820435, -0.14274701476097107], "mean": [0.5100212097167969, 0.23325732350349426, 0.1300385743379593, -1.610158085823059, -0.38777458667755127, 1.388016939163208, -0.387829452753067, -0.08191661536693573, 0.1586298942565918, 4.537872791290283, -0.13983532786369324, -0.23819208145141602], "std": [6.6358893491269555e-06, 8.940696716308594e-08, 5.960464477539063e-08, 0.00020273448899388313, 2.086162567138672e-07, 7.806913345120847e-05, 0.017046067863702774, 0.012789951637387276, 0.003851306391879916, 0.00019269481708761305, 0.07410255819559097, 0.04658428952097893], "count": [141]}, "action": {"min": [-0.12053059041500092, -0.03967738524079323, 0.1492670476436615, -0.06682128459215164, 0.7442377209663391, -0.6645533442497253, 0.005301666911691427, 0.13897328078746796, -0.08511286973953247, 0.11129804700613022, -0.28542882204055786, -0.2240770012140274, 0.9123556613922119, 0.14934326708316803], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.7443462014198303, -0.6644201278686523, 0.005469763185828924, 0.14542967081069946, -0.07392623275518417, 0.11990585923194885, -0.16679929196834564, -0.13365240395069122, 0.9599192142486572, 0.18954412639141083], "mean": [-0.12052980065345764, -0.03967674449086189, 0.14926785230636597, -0.06677737832069397, 0.7443065643310547, -0.6644694805145264, 0.005404854193329811, 0.14156074821949005, -0.08048784732818604, 0.11493435502052307, -0.2074110358953476, -0.18729864060878754, 0.9440435171127319, 0.170537069439888], "std": [9.799784947972512e-07, 7.823645660209877e-07, 4.620416689249396e-07, 4.807189179700799e-05, 4.075808101333678e-05, 5.000022065360099e-05, 7.720415305811912e-05, 0.002072930568829179, 0.0032882734667509794, 0.002748670522123575, 0.02816147543489933, 0.023949215188622475, 0.01060640998184681, 0.010930442251265049], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [770], "max": [770], "mean": [770.0], "std": [0.0], "count": [141]}, "index": {"min": [382413], "max": [382553], "mean": [382483.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [141]}}} +{"episode_index": 771, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6518201633986929]], [[0.5953243981481481]], [[0.5261671568627452]]], "std": [[[0.2416943896126171]], [[0.23295951891924252]], [[0.27483023798866135]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6518201633986929]], [[0.5953243981481481]], [[0.5261671568627452]]], "std": [[[0.2416943896126171]], [[0.23295951891924252]], [[0.27483023798866135]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.23325741291046143, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3880741596221924, -0.4110965132713318, -0.08682668954133987, 0.1530114859342575, 4.526157379150391, -0.22230759263038635, -0.22576551139354706], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.36808088421821594, -0.041957609355449677, 0.16654734313488007, 4.5383195877075195, -0.10384374111890793, -0.022273089736700058], "mean": [0.5100270509719849, 0.23325732350349426, 0.13003858923912048, -1.6101614236831665, -0.38777458667755127, 1.3880757093429565, -0.3910101354122162, -0.06791972368955612, 0.15970827639102936, 4.5375823974609375, -0.15927577018737793, -0.10496947914361954], "std": [7.424800514854724e-06, 8.940696716308594e-08, 4.470348358154297e-08, 0.00020277447765693069, 2.086162567138672e-07, 1.5497207641601562e-06, 0.010612827725708485, 0.013305285014212132, 0.00421667518094182, 0.0015912845265120268, 0.036117542535066605, 0.04907450079917908], "count": [142]}, "action": {"min": [-0.12053059041500092, -0.03967738524079323, 0.1492670476436615, -0.06682128459215164, 0.7442919611930847, -0.6644925475120544, 0.005301666911691427, 0.13836874067783356, -0.08333812654018402, 0.11218202114105225, -0.2491297870874405, -0.2853926122188568, 0.9144231081008911, 0.14880627393722534], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671295315027237, 0.7443462014198303, -0.6644201278686523, 0.0054643056355416775, 0.14518018066883087, -0.07201433926820755, 0.122611403465271, -0.20809029042720795, -0.18870243430137634, 0.942436933517456, 0.18732935190200806], "mean": [-0.12052890658378601, -0.03967645391821861, 0.14926767349243164, -0.06677946448326111, 0.7443256378173828, -0.664448082447052, 0.0054007102735340595, 0.14048703014850616, -0.079127237200737, 0.11674502491950989, -0.2287921905517578, -0.24188603460788727, 0.9284974336624146, 0.16148610413074493], "std": [1.1122538126073778e-06, 7.346777692873729e-07, 5.459477279146085e-07, 4.886438910034485e-05, 2.6135987354791723e-05, 3.4779492125380784e-05, 7.751306111458689e-05, 0.0016742630396038294, 0.0032651997171342373, 0.003179990453645587, 0.012503059580922127, 0.02609451860189438, 0.0076704975217580795, 0.008025107905268669], "count": [142]}, "timestamp": {"min": [0.0], "max": [4.7], "mean": [2.35], "std": [1.3663617546039717], "count": [142]}, "frame_index": {"min": [0], "max": [141], "mean": [70.5], "std": [40.99085263811915], "count": [142]}, "episode_index": {"min": [771], "max": [771], "mean": [771.0], "std": [0.0], "count": [142]}, "index": {"min": [382554], "max": [382695], "mean": [382624.5], "std": [40.99085263811915], "count": [142]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [142]}}} +{"episode_index": 772, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.652441051198257]], [[0.5958503513071894]], [[0.5266768736383441]]], "std": [[[0.24020935584814945]], [[0.2320394498165484]], [[0.2737550355065896]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.652441051198257]], [[0.5958503513071894]], [[0.5266768736383441]]], "std": [[[0.24020935584814945]], [[0.2320394498165484]], [[0.2737550355065896]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.23325741291046143, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.40616941452026367, -0.073304183781147, 0.15713757276535034, 4.53748083114624, -0.34965279698371887, -0.15430082380771637], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.3682044446468353, -0.02930005080997944, 0.16678714752197266, 4.5383195877075195, -0.18719199299812317, 0.0009208007249981165], "mean": [0.5100240707397461, 0.23325732350349426, 0.1300385594367981, -1.6101847887039185, -0.3877745568752289, 1.3879632949829102, -0.3881875276565552, -0.059957850724458694, 0.16176652908325195, 4.537888050079346, -0.2721431851387024, -0.055120762437582016], "std": [7.586327683384297e-06, 8.940696716308594e-08, 7.450580596923828e-08, 0.0002067395398626104, 1.7881393432617188e-07, 7.652803469682112e-05, 0.012482954189181328, 0.015671147033572197, 0.0034730590414255857, 0.00023984620929695666, 0.05385430529713631, 0.053715527057647705], "count": [138]}, "action": {"min": [-0.12053059041500092, -0.03967738524079323, 0.1492670476436615, -0.06682083755731583, 0.7442377209663391, -0.6645533442497253, 0.005304079037159681, 0.1367189586162567, -0.0825461894273758, 0.115803062915802, -0.3126053810119629, -0.28101059794425964, 0.8916648030281067, 0.1617799997329712], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.7443462014198303, -0.6644206047058105, 0.005469763185828924, 0.14276929199695587, -0.07213730365037918, 0.1227063536643982, -0.24413229525089264, -0.1962386965751648, 0.9257820844650269, 0.18456625938415527], "mean": [-0.12052949517965317, -0.03967651352286339, 0.14926767349243164, -0.06677225977182388, 0.7442864179611206, -0.6644934415817261, 0.005396068096160889, 0.1392359882593155, -0.07880076766014099, 0.11872734874486923, -0.28258630633354187, -0.2524363398551941, 0.9082762002944946, 0.1728207767009735], "std": [1.1103767292297562e-06, 8.238787359005073e-07, 5.149242952029454e-07, 4.8778711061459035e-05, 3.778929385589436e-05, 4.6441138692898676e-05, 7.925869431346655e-05, 0.0020219716243445873, 0.0033256555907428265, 0.002304758643731475, 0.022873185575008392, 0.02913266234099865, 0.013013217598199844, 0.006853288970887661], "count": [138]}, "timestamp": {"min": [0.0], "max": [4.566666666666666], "mean": [2.283333333333333], "std": [1.327870754531758], "count": [138]}, "frame_index": {"min": [0], "max": [137], "mean": [68.5], "std": [39.83612263595275], "count": [138]}, "episode_index": {"min": [772], "max": [772], "mean": [772.0], "std": [0.0], "count": [138]}, "index": {"min": [382696], "max": [382833], "mean": [382764.5], "std": [39.83612263595275], "count": [138]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [138]}}} +{"episode_index": 773, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6545332788671023]], [[0.5995362854030502]], [[0.5321255201525055]]], "std": [[[0.24510619599498548]], [[0.2347868260394114]], [[0.2762218638834198]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6545332788671023]], [[0.5995362854030502]], [[0.5321255201525055]]], "std": [[[0.24510619599498548]], [[0.2347868260394114]], [[0.2762218638834198]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.3939211666584015, -0.08473382890224457, 0.15737348794937134, 4.537271022796631, -0.37342754006385803, -0.2176697999238968], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3879107236862183, -0.3447891175746918, -0.04350214824080467, 0.16898177564144135, 4.5383195877075195, -0.2209412157535553, 0.004201726522296667], "mean": [0.5100241899490356, 0.2332572489976883, 0.1300385296344757, -1.6101738214492798, -0.3877745270729065, 1.3879092931747437, -0.37035226821899414, -0.06977317482233047, 0.16218291223049164, 4.53781270980835, -0.3116544187068939, -0.10084757953882217], "std": [7.533503776357975e-06, 6.799702987336786e-07, 1.043081283569336e-07, 0.00020589769701473415, 1.4901161193847656e-07, 1.430511474609375e-06, 0.015957344323396683, 0.0133016686886549, 0.003919811919331551, 0.00016581916133873165, 0.043280232697725296, 0.07611352950334549], "count": [131]}, "action": {"min": [-0.12053059041500092, -0.03967834264039993, 0.1492670476436615, -0.06682083755731583, 0.7442377209663391, -0.6645533442497253, 0.00530711654573679, 0.1382795125246048, -0.08452431857585907, 0.11528479307889938, -0.31278330087661743, -0.28280186653137207, 0.8905124068260193, 0.17232781648635864], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.7442941665649414, -0.664478600025177, 0.005469763185828924, 0.1462552398443222, -0.07492302358150482, 0.12452185153961182, -0.24765688180923462, -0.16962744295597076, 0.930516242980957, 0.1992417871952057], "mean": [-0.12052936106920242, -0.03967653959989548, 0.14926770329475403, -0.06677475571632385, 0.744270384311676, -0.6645116209983826, 0.005402000155299902, 0.14136220514774323, -0.08063642680644989, 0.11898305267095566, -0.28754544258117676, -0.233158141374588, 0.9096616506576538, 0.182917982339859], "std": [1.1265281045780284e-06, 7.570108095933392e-07, 5.615293616756389e-07, 4.9658643547445536e-05, 2.6548466848907992e-05, 3.5339544410817325e-05, 7.868451211834326e-05, 0.0028649286832660437, 0.002888340502977371, 0.0028065843507647514, 0.018618937581777573, 0.03758765384554863, 0.013479809276759624, 0.00838584266602993], "count": [131]}, "timestamp": {"min": [0.0], "max": [4.333333333333333], "mean": [2.166666666666667], "std": [1.260511360079269], "count": [131]}, "frame_index": {"min": [0], "max": [130], "mean": [65.0], "std": [37.815340802378074], "count": [131]}, "episode_index": {"min": [773], "max": [773], "mean": [773.0], "std": [0.0], "count": [131]}, "index": {"min": [382834], "max": [382964], "mean": [382899.0], "std": [37.815340802378074], "count": [131]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [131]}}} +{"episode_index": 774, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6560068464052288]], [[0.6012041748366013]], [[0.5341239106753813]]], "std": [[[0.2478866035233907]], [[0.23673449112637393]], [[0.2783344176356303]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6560068464052288]], [[0.6012041748366013]], [[0.5341239106753813]]], "std": [[[0.2478866035233907]], [[0.23673449112637393]], [[0.2783344176356303]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.23325741291046143, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.4000066816806793, -0.09779296815395355, 0.1551179438829422, 4.537271022796631, -0.4118224084377289, -0.3569972515106201], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.3460325002670288, -0.04007326066493988, 0.1683128923177719, 4.5383195877075195, -0.14046232402324677, -0.0019317176192998886], "mean": [0.5100233554840088, 0.23325732350349426, 0.13003858923912048, -1.6101927757263184, -0.38777458667755127, 1.3880029916763306, -0.37195754051208496, -0.07450268417596817, 0.16170552372932434, 4.537818431854248, -0.2841801047325134, -0.17172105610370636], "std": [7.545175321865827e-06, 8.940696716308594e-08, 4.470348358154297e-08, 0.00020834511087741703, 2.086162567138672e-07, 8.086531306616962e-05, 0.01660684496164322, 0.016771521419286728, 0.00414185831323266, 0.00017332294373773038, 0.07344783842563629, 0.10829812288284302], "count": [144]}, "action": {"min": [-0.12053059041500092, -0.03967738524079323, 0.1492670476436615, -0.06682128459215164, 0.7442377209663391, -0.6645533442497253, 0.005301666911691427, 0.138601616024971, -0.08586367219686508, 0.11391431093215942, -0.33105576038360596, -0.27773600816726685, 0.8876515626907349, 0.17146921157836914], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.7443462014198303, -0.6644201278686523, 0.005469763185828924, 0.1461215317249298, -0.07281217724084854, 0.12299373000860214, -0.2048487365245819, -0.10754556208848953, 0.9480831623077393, 0.20732027292251587], "mean": [-0.12052956968545914, -0.03967650234699249, 0.14926773309707642, -0.06676992774009705, 0.7442978024482727, -0.6644805669784546, 0.005391769576817751, 0.14155717194080353, -0.08107501268386841, 0.1182200238108635, -0.269411563873291, -0.20458495616912842, 0.9198027849197388, 0.18735818564891815], "std": [1.1045783594454406e-06, 8.304993457386445e-07, 5.103919420434977e-07, 4.9098427552962676e-05, 3.560799450497143e-05, 4.371780960354954e-05, 8.035842620301992e-05, 0.0023189738858491182, 0.0037041427567601204, 0.002969915745779872, 0.03421909362077713, 0.05265143886208534, 0.01930457353591919, 0.010281713679432869], "count": [144]}, "timestamp": {"min": [0.0], "max": [4.766666666666667], "mean": [2.3833333333333333], "std": [1.3856072341783612], "count": [144]}, "frame_index": {"min": [0], "max": [143], "mean": [71.5], "std": [41.56821702535083], "count": [144]}, "episode_index": {"min": [774], "max": [774], "mean": [774.0], "std": [0.0], "count": [144]}, "index": {"min": [382965], "max": [383108], "mean": [383036.5], "std": [41.56821702535083], "count": [144]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [144]}}} +{"episode_index": 775, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6442033197167756]], [[0.5910707870370371]], [[0.5234227750544662]]], "std": [[[0.25400377628529214]], [[0.24114317320842887]], [[0.2813660939044705]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6442033197167756]], [[0.5910707870370371]], [[0.5234227750544662]]], "std": [[[0.25400377628529214]], [[0.24114317320842887]], [[0.2813660939044705]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.233249694108963, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.39558926224708557, -0.10181651264429092, 0.15729960799217224, 4.53748083114624, -0.389004111289978, -0.27365338802337646], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.3570759892463684, -0.052599530667066574, 0.167846217751503, 4.5383195877075195, -0.2675342559814453, -0.04572778940200806], "mean": [0.5100244879722595, 0.2332572638988495, 0.13003861904144287, -1.6101539134979248, -0.38777461647987366, 1.3880424499511719, -0.37425702810287476, -0.08220161497592926, 0.16213680803775787, 4.5378265380859375, -0.3424533009529114, -0.15742166340351105], "std": [7.657731657673139e-06, 6.376760097737133e-07, 1.4901161193847656e-08, 0.00020237895660102367, 2.384185791015625e-07, 6.478482100646943e-05, 0.012729345820844173, 0.01618858054280281, 0.0035238347481936216, 0.00025371197261847556, 0.03494354709982872, 0.06389139592647552], "count": [149]}, "action": {"min": [-0.12053059041500092, -0.03967738524079323, 0.1492670476436615, -0.06682128459215164, 0.7442917227745056, -0.6644925475120544, 0.005301666911691427, 0.1379145234823227, -0.08604589849710464, 0.11392311006784439, -0.3146649897098541, -0.26948046684265137, 0.8981768488883972, 0.177545964717865], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671234965324402, 0.7443462014198303, -0.6644201278686523, 0.005469763185828924, 0.1446748524904251, -0.07503373920917511, 0.1220599040389061, -0.2642579972743988, -0.14405089616775513, 0.926765501499176, 0.22032390534877777], "mean": [-0.12052944302558899, -0.039676565676927567, 0.14926770329475403, -0.06678002327680588, 0.7443161010742188, -0.6644590497016907, 0.005405104719102383, 0.14068670570850372, -0.08197685331106186, 0.11755223572254181, -0.296764075756073, -0.2114078551530838, 0.9092545509338379, 0.19701796770095825], "std": [1.1313352388242492e-06, 7.600793878737022e-07, 5.396988171924022e-07, 4.842243288294412e-05, 2.6737827283795923e-05, 3.379406189196743e-05, 7.831714901840314e-05, 0.0020371312275528908, 0.003340847324579954, 0.0026427265256643295, 0.013578151352703571, 0.035729244351387024, 0.008394356817007065, 0.012125397101044655], "count": [149]}, "timestamp": {"min": [0.0], "max": [4.933333333333334], "mean": [2.4666666666666663], "std": [1.4337208778404378], "count": [149]}, "frame_index": {"min": [0], "max": [148], "mean": [74.0], "std": [43.01162633521314], "count": [149]}, "episode_index": {"min": [775], "max": [775], "mean": [775.0], "std": [0.0], "count": [149]}, "index": {"min": [383109], "max": [383257], "mean": [383183.0], "std": [43.01162633521314], "count": [149]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [149]}}} +{"episode_index": 776, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6482067701525055]], [[0.5935285185185185]], [[0.5252144934640524]]], "std": [[[0.24956473836182175]], [[0.23834063782464168]], [[0.27950138585917134]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6482067701525055]], [[0.5935285185185185]], [[0.5252144934640524]]], "std": [[[0.24956473836182175]], [[0.23834063782464168]], [[0.27950138585917134]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.23325741291046143, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.3967708647251129, -0.10161571949720383, 0.15502850711345673, 4.470799446105957, -0.3952893912792206, -0.2629885673522949], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.36121538281440735, -0.03475229814648628, 0.1674119532108307, 4.53810977935791, -0.2363811433315277, -0.06596977263689041], "mean": [0.5100271701812744, 0.23325732350349426, 0.13003867864608765, -1.6101566553115845, -0.3877747058868408, 1.3879435062408447, -0.37902122735977173, -0.06988799571990967, 0.16270041465759277, 4.5337629318237305, -0.3003470301628113, -0.1388060599565506], "std": [7.332781024160795e-06, 8.940696716308594e-08, 4.470348358154297e-08, 0.00020179663260933012, 3.2782554626464844e-07, 6.617185135837644e-05, 0.011660526506602764, 0.0200974028557539, 0.004175330512225628, 0.014195782132446766, 0.05750076845288277, 0.06020820140838623], "count": [165]}, "action": {"min": [-0.12053059041500092, -0.03967738524079323, 0.1492670476436615, -0.06682128459215164, 0.7442377209663391, -0.6645533442497253, 0.005304079037159681, 0.13836738467216492, -0.08465641736984253, 0.11501073837280273, -0.3181365728378296, -0.25321799516677856, 0.8935654759407043, 0.17087410390377045], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.7443462014198303, -0.6644201278686523, 0.005469763185828924, 0.14261868596076965, -0.07180412113666534, 0.12292438745498657, -0.2574162781238556, -0.14337439835071564, 0.9255537390708923, 0.22469905018806458], "mean": [-0.12052882462739944, -0.03967645764350891, 0.14926759898662567, -0.06678035855293274, 0.7442837357521057, -0.6644955277442932, 0.005406863987445831, 0.14006362855434418, -0.08073699474334717, 0.118961401283741, -0.28200551867485046, -0.21692031621932983, 0.9139378666877747, 0.189945250749588], "std": [1.1294223440927453e-06, 6.251900686038425e-07, 5.996996037538338e-07, 4.9927100917557254e-05, 3.7472455005627126e-05, 4.6678575017722324e-05, 7.626919978065416e-05, 0.0014115202939137816, 0.004386936314404011, 0.0029231745284050703, 0.02111232839524746, 0.035343531519174576, 0.010964111424982548, 0.015563162975013256], "count": [165]}, "timestamp": {"min": [0.0], "max": [5.466666666666667], "mean": [2.7333333333333325], "std": [1.587684080899201], "count": [165]}, "frame_index": {"min": [0], "max": [164], "mean": [82.0], "std": [47.63052242697603], "count": [165]}, "episode_index": {"min": [776], "max": [776], "mean": [776.0], "std": [0.0], "count": [165]}, "index": {"min": [383258], "max": [383422], "mean": [383340.0], "std": [47.63052242697603], "count": [165]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [165]}}} +{"episode_index": 777, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6565438589324618]], [[0.6017064215686274]], [[0.5351107570806101]]], "std": [[[0.249484718110638]], [[0.2364605783792256]], [[0.2772087713472647]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6565438589324618]], [[0.6017064215686274]], [[0.5351107570806101]]], "std": [[[0.249484718110638]], [[0.2364605783792256]], [[0.2772087713472647]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.2332419753074646, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.37395018339157104, -0.09994760900735855, 0.15810070931911469, 4.5370612144470215, -0.6861885190010071, -0.2822369933128357], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.29909372329711914, -0.049502719193696976, 0.16953788697719574, 4.5383195877075195, -0.3767068386077881, 0.06271498650312424], "mean": [0.510025143623352, 0.23325704038143158, 0.13003866374492645, -1.610139012336731, -0.3877747058868408, 1.38801908493042, -0.3449976444244385, -0.08116822689771652, 0.162840336561203, 4.537863731384277, -0.493325412273407, -0.1544983983039856], "std": [7.4342274274386e-06, 1.89269508155121e-06, 2.9802322387695312e-08, 0.00019716605311259627, 3.2782554626464844e-07, 7.674580410821363e-05, 0.01960556022822857, 0.015535620972514153, 0.0037082277704030275, 0.00021942328021395952, 0.07087873667478561, 0.07511649280786514], "count": [163]}, "action": {"min": [-0.12053059041500092, -0.039679914712905884, 0.14926663041114807, -0.06682128459215164, 0.7442377209663391, -0.6645533442497253, 0.005301666911691427, 0.1401423215866089, -0.08655349165201187, 0.115000419318676, -0.4218672513961792, -0.2846071422100067, 0.8410945534706116, 0.19207195937633514], "max": [-0.12052802741527557, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.7443509101867676, -0.6644154787063599, 0.005469763185828924, 0.15045249462127686, -0.07540809363126755, 0.12443138659000397, -0.30576276779174805, -0.13073872029781342, 0.9072085618972778, 0.23872992396354675], "mean": [-0.12052930146455765, -0.03967666253447533, 0.1492675542831421, -0.06678378582000732, 0.744310736656189, -0.6644650101661682, 0.005411278456449509, 0.14366048574447632, -0.08235543221235275, 0.11894600838422775, -0.3488138020038605, -0.19994400441646576, 0.8878867626190186, 0.21797910332679749], "std": [1.0829648999788333e-06, 8.968560223365785e-07, 4.937330118082173e-07, 4.627939051715657e-05, 3.926434146706015e-05, 4.812363476958126e-05, 7.531342271249741e-05, 0.002978513715788722, 0.003293960588052869, 0.002748189028352499, 0.027611320838332176, 0.03608280420303345, 0.01613154634833336, 0.012983575463294983], "count": [163]}, "timestamp": {"min": [0.0], "max": [5.4], "mean": [2.6999999999999993], "std": [1.5684387141358123], "count": [163]}, "frame_index": {"min": [0], "max": [162], "mean": [81.0], "std": [47.05316142407437], "count": [163]}, "episode_index": {"min": [777], "max": [777], "mean": [777.0], "std": [0.0], "count": [163]}, "index": {"min": [383423], "max": [383585], "mean": [383504.0], "std": [47.05316142407437], "count": [163]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [163]}}} +{"episode_index": 778, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6488443736383442]], [[0.5947469961873638]], [[0.527448491285403]]], "std": [[[0.2584824407259886]], [[0.24405977787075045]], [[0.2843605204413417]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6488443736383442]], [[0.5947469961873638]], [[0.527448491285403]]], "std": [[[0.2584824407259886]], [[0.24405977787075045]], [[0.2843605204413417]]], "count": [100]}, "observation.state": {"min": [0.5100169777870178, 0.23325741291046143, 0.13003863394260406, -1.6104187965393066, -0.38777437806129456, 1.3879107236862183, -0.39531123638153076, -0.12122374027967453, 0.15468887984752655, 4.53748083114624, -0.5040520429611206, -0.43153396248817444], "max": [0.5100324749946594, 0.23325741291046143, 0.13003863394260406, -1.609999418258667, -0.38777437806129456, 1.3880741596221924, -0.3125235438346863, -0.06202898919582367, 0.16734585165977478, 4.53810977935791, -0.15508243441581726, -0.13344983756542206], "mean": [0.5100230574607849, 0.23325732350349426, 0.13003864884376526, -1.6102097034454346, -0.38777467608451843, 1.3879872560501099, -0.36018943786621094, -0.09503575414419174, 0.16066092252731323, 4.537845611572266, -0.31587061285972595, -0.2924301028251648], "std": [7.473571713489946e-06, 8.940696716308594e-08, 1.4901161193847656e-08, 0.00020968601165805012, 2.980232238769531e-07, 8.151889051077887e-05, 0.026856351643800735, 0.017314240336418152, 0.004486138001084328, 0.00021805269352626055, 0.11551539599895477, 0.07180903851985931], "count": [157]}, "action": {"min": [-0.12053059041500092, -0.03967738524079323, 0.1492670476436615, -0.06682128459215164, 0.7442377209663391, -0.6645533442497253, 0.005301666911691427, 0.13862325251102448, -0.08723580092191696, 0.11110604554414749, -0.3415077328681946, -0.21022608876228333, 0.891094446182251, 0.17981119453907013], "max": [-0.12052817642688751, -0.03967539593577385, 0.1492685228586197, -0.06671252101659775, 0.7443462014198303, -0.6644201278686523, 0.005469763185828924, 0.14987975358963013, -0.07539085298776627, 0.12081722915172577, -0.2082185000181198, -0.08252225071191788, 0.9483484625816345, 0.22534506022930145], "mean": [-0.12052971869707108, -0.039676483720541, 0.14926792681217194, -0.06676565110683441, 0.7442901730537415, -0.6644893288612366, 0.0053857010789215565, 0.14346125721931458, -0.08327744901180267, 0.11606094986200333, -0.2650681734085083, -0.15662305057048798, 0.9265626668930054, 0.2073727697134018], "std": [1.1106939155069995e-06, 7.526813874392246e-07, 5.479942046804354e-07, 5.058839451521635e-05, 3.954317435272969e-05, 4.863750291406177e-05, 7.99960907897912e-05, 0.003795209340751171, 0.003453125013038516, 0.0034380571451038122, 0.04327743500471115, 0.03480241820216179, 0.019510559737682343, 0.0148773193359375], "count": [157]}, "timestamp": {"min": [0.0], "max": [5.2], "mean": [2.6], "std": [1.5107025591499545], "count": [157]}, "frame_index": {"min": [0], "max": [156], "mean": [78.0], "std": [45.32107677449864], "count": [157]}, "episode_index": {"min": [778], "max": [778], "mean": [778.0], "std": [0.0], "count": [157]}, "index": {"min": [383586], "max": [383742], "mean": [383664.0], "std": [45.32107677449864], "count": [157]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [157]}}} +{"episode_index": 779, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4174628349673203]], [[0.3673004820261438]], [[0.2884923175381264]]], "std": [[[0.17873042179103246]], [[0.17059033205480373]], [[0.1681541226543687]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41873962962962963]], [[0.38525944444444443]], [[0.3098479003267974]]], "std": [[[0.18799701983280712]], [[0.16439083955385939]], [[0.17144339743055376]]], "count": [100]}, "observation.state": {"min": [0.6029137372970581, 0.013846860267221928, 0.12971584498882294, -1.7490237951278687, 0.1751679927110672, 0.043396901339292526, -0.6373648643493652, -0.3465498983860016, 0.1616201400756836, 1.4655230045318604, -0.5132066607475281, 0.1268760710954666], "max": [0.6229851245880127, 0.027068179100751877, 0.13860709965229034, -1.6810842752456665, 0.21533912420272827, 0.08624517172574997, -0.4817749559879303, -0.21886996924877167, 0.18481725454330444, 1.6353719234466553, -0.1906079202890396, 0.47743523120880127], "mean": [0.6158754825592041, 0.022302156314253807, 0.13676244020462036, -1.7333520650863647, 0.1791699230670929, 0.05618726834654808, -0.5650995373725891, -0.29378843307495117, 0.17057567834854126, 1.5504450798034668, -0.3805678188800812, 0.34492969512939453], "std": [0.004162019118666649, 0.0018880725838243961, 0.0019657111261039972, 0.016994645819067955, 0.0045747882686555386, 0.009093116968870163, 0.05815231427550316, 0.048409540206193924, 0.007990625686943531, 0.04598867520689964, 0.09613891690969467, 0.12574249505996704], "count": [197]}, "action": {"min": [-0.09972944110631943, -0.07094261050224304, 0.12485434114933014, 0.387768030166626, -0.25715914368629456, 0.8832945823669434, -0.03678629919886589, 0.11655475944280624, -0.11662844568490982, 0.0767633244395256, 0.1460341513156891, -0.18682968616485596, -0.01715395413339138, 0.9462713003158569], "max": [-0.09360642731189728, -0.06706687062978745, 0.13058045506477356, 0.39897680282592773, -0.22930683195590973, 0.8904901742935181, -0.005022452212870121, 0.1235373392701149, -0.09744217246770859, 0.11020491272211075, 0.31516924500465393, -0.026171531528234482, 0.029283130541443825, 0.9763959646224976], "mean": [-0.0942053273320198, -0.07008976489305496, 0.12894868850708008, 0.3923160135746002, -0.23550057411193848, 0.8890008330345154, -0.01440599374473095, 0.11974741518497467, -0.10772573202848434, 0.09233850240707397, 0.22199203073978424, -0.10585027933120728, 0.014976716600358486, 0.9663005471229553], "std": [0.0013218264793977141, 0.0006076166173443198, 0.0015416382811963558, 0.0010416555451229215, 0.005802503786981106, 0.0014570296043530107, 0.007784436456859112, 0.0025121327489614487, 0.005490156821906567, 0.012779424898326397, 0.05677682161331177, 0.04516279697418213, 0.013486731797456741, 0.010454954579472542], "count": [197]}, "timestamp": {"min": [0.0], "max": [6.533333333333333], "mean": [3.2666666666666666], "std": [1.8956089610817242], "count": [197]}, "frame_index": {"min": [0], "max": [196], "mean": [98.0], "std": [56.868268832451726], "count": [197]}, "episode_index": {"min": [779], "max": [779], "mean": [779.0], "std": [0.0], "count": [197]}, "index": {"min": [383743], "max": [383939], "mean": [383841.0], "std": [56.868268832451726], "count": [197]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [197]}}} +{"episode_index": 780, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43714737472766885]], [[0.3923153213507625]], [[0.32115887527233117]]], "std": [[[0.20367900358310154]], [[0.193001466838738]], [[0.19177541409577978]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4521717374727669]], [[0.4220157298474946]], [[0.3545549836601307]]], "std": [[[0.2096969435914375]], [[0.18327042389110787]], [[0.19254122730898562]]], "count": [100]}, "observation.state": {"min": [0.5981025099754333, 9.26727952901274e-05, 0.13081121444702148, -1.7620246410369873, 0.17598780989646912, 0.07703263312578201, -0.6560847759246826, -0.28859078884124756, 0.16535605490207672, 1.3483062982559204, -0.45199355483055115, 0.23166747391223907], "max": [0.623185932636261, 0.02807212993502617, 0.13895192742347717, -1.314755916595459, 0.2930852770805359, 0.2463822066783905, -0.4392845034599304, -0.20259816944599152, 0.17845764756202698, 1.565754771232605, -0.11067555844783783, 0.5013595223426819], "mean": [0.6148877739906311, 0.007955756969749928, 0.13774926960468292, -1.6627150774002075, 0.19240033626556396, 0.12560860812664032, -0.523337721824646, -0.23705445230007172, 0.17312070727348328, 1.4654090404510498, -0.26177433133125305, 0.3938337564468384], "std": [0.006855303887277842, 0.008166784420609474, 0.002247486263513565, 0.12255435436964035, 0.03161177039146423, 0.04382125660777092, 0.07485337555408478, 0.029641788452863693, 0.0038576661609113216, 0.06271491199731827, 0.10068711638450623, 0.08703749626874924], "count": [329]}, "action": {"min": [-0.0992569625377655, -0.07415453344583511, 0.12632861733436584, 0.37628382444381714, -0.3423050045967102, 0.8262254595756531, -0.18678008019924164, 0.10052970796823502, -0.10796254873275757, 0.08887414634227753, 0.1327349990606308, -0.2572338283061981, -0.11886440962553024, 0.9266085028648376], "max": [-0.09199650585651398, -0.06651350110769272, 0.13023613393306732, 0.4080990254878998, -0.24595361948013306, 0.8847561478614807, 0.0063432021997869015, 0.13343913853168488, -0.09972596913576126, 0.11443060636520386, 0.27363333106040955, 0.0074399784207344055, -0.0006829380872659385, 0.9891818165779114], "mean": [-0.09367598593235016, -0.07264790683984756, 0.12843658030033112, 0.39376798272132874, -0.27833354473114014, 0.8732838034629822, -0.0343373604118824, 0.12163128703832626, -0.10434314608573914, 0.10213962197303772, 0.19156987965106964, -0.10855019092559814, -0.05439214035868645, 0.96836256980896], "std": [0.0020342187490314245, 0.002061748644337058, 0.0009151088306680322, 0.005970972590148449, 0.02470320649445057, 0.015286927111446857, 0.052861034870147705, 0.010739586316049099, 0.002386033069342375, 0.009083802811801434, 0.0433398000895977, 0.08710869401693344, 0.029685188084840775, 0.022058263421058655], "count": [329]}, "timestamp": {"min": [0.0], "max": [10.933333333333334], "mean": [5.466666666666667], "std": [3.165789352155671], "count": [329]}, "frame_index": {"min": [0], "max": [328], "mean": [164.0], "std": [94.97368056467013], "count": [329]}, "episode_index": {"min": [780], "max": [780], "mean": [780.0], "std": [0.0], "count": [329]}, "index": {"min": [383940], "max": [384268], "mean": [384104.0], "std": [94.97368056467013], "count": [329]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [329]}}} +{"episode_index": 781, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47273300925925926]], [[0.42081097222222225]], [[0.34646522875816993]]], "std": [[[0.19028893035440395]], [[0.18452500339829406]], [[0.18731431892516578]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49653308278867103]], [[0.4547849291938998]], [[0.3834154493464052]]], "std": [[[0.1806426346280528]], [[0.1625612621412522]], [[0.17757412607674466]]], "count": [100]}, "observation.state": {"min": [0.6193245649337769, 0.006000559777021408, 0.1363256275653839, -1.7676862478256226, 0.23501478135585785, 0.09215672314167023, -0.46436792612075806, -0.24932843446731567, 0.1440943032503128, 1.3736788034439087, -0.3689185380935669, 0.30678465962409973], "max": [0.6222283244132996, 0.01262667030096054, 0.13636451959609985, -1.754475712776184, 0.23856733739376068, 0.09682077914476395, -0.36210349202156067, -0.20518529415130615, 0.1704932451248169, 1.560931921005249, -0.02883029915392399, 0.48074090480804443], "mean": [0.6215494275093079, 0.00731525057926774, 0.13633769750595093, -1.7605531215667725, 0.23601454496383667, 0.09460803866386414, -0.41492950916290283, -0.22596944868564606, 0.15600624680519104, 1.4362713098526, -0.16958162188529968, 0.4117037057876587], "std": [0.001069508958607912, 0.002315353136509657, 1.0417773410154041e-05, 0.00374011741951108, 0.001097472500987351, 0.0010246803285554051, 0.034141819924116135, 0.016605598852038383, 0.009819857776165009, 0.06734240800142288, 0.11834102869033813, 0.05897322669625282], "count": [148]}, "action": {"min": [-0.09356772899627686, -0.0721089318394661, 0.12621864676475525, 0.42264777421951294, -0.2563267648220062, 0.8687884211540222, -0.0017389990389347076, 0.13395240902900696, -0.1042645126581192, 0.08709301799535751, 0.16273754835128784, -0.16762566566467285, -0.1511891931295395, 0.9640657901763916], "max": [-0.09317237883806229, -0.07119784504175186, 0.12708725035190582, 0.4243716895580292, -0.25206321477890015, 0.8703192472457886, 0.005850448273122311, 0.14854058623313904, -0.0893440917134285, 0.11334316432476044, 0.22735969722270966, 0.025026461109519005, -0.016883037984371185, 0.9842668175697327], "mean": [-0.09326453506946564, -0.07192043960094452, 0.12640507519245148, 0.42374080419540405, -0.25476741790771484, 0.8692105412483215, 0.002137587172910571, 0.1430242657661438, -0.0958748608827591, 0.09909162670373917, 0.18146701157093048, -0.08538591116666794, -0.0802895799279213, 0.9729255437850952], "std": [0.00014505433500744402, 0.00030980893643572927, 0.00030681362841278315, 0.000434291287092492, 0.0010794306872412562, 0.00047274254029616714, 0.002054191892966628, 0.0034088394604623318, 0.005432506091892719, 0.009655400179326534, 0.018060659989714622, 0.06171787902712822, 0.05073561519384384, 0.00624581053853035], "count": [148]}, "timestamp": {"min": [0.0], "max": [4.9], "mean": [2.4499999999999997], "std": [1.424098155168932], "count": [148]}, "frame_index": {"min": [0], "max": [147], "mean": [73.5], "std": [42.72294465506796], "count": [148]}, "episode_index": {"min": [781], "max": [781], "mean": [781.0], "std": [0.0], "count": [148]}, "index": {"min": [384269], "max": [384416], "mean": [384342.5], "std": [42.72294465506796], "count": [148]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [148]}}} +{"episode_index": 782, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4655069825708061]], [[0.4132590005446623]], [[0.3410137772331155]]], "std": [[[0.19108324272899743]], [[0.18286359741217786]], [[0.18328593344518196]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48593551742919394]], [[0.44549234749455335]], [[0.37605053649237474]]], "std": [[[0.18567929895533997]], [[0.16268917272707983]], [[0.17583218443799273]]], "count": [100]}, "observation.state": {"min": [0.637079119682312, -0.049448661506175995, 0.12232959270477295, -1.6181772947311401, 0.10862602293491364, 0.02381609007716179, -0.5914609432220459, -0.31532689929008484, 0.15018686652183533, 0.9241035580635071, -0.5714138150215149, 0.32255131006240845], "max": [0.6669275164604187, -0.02818796969950199, 0.12378144264221191, -1.5923854112625122, 0.13977913558483124, 0.039056479930877686, -0.39623796939849854, -0.24864110350608826, 0.17634859681129456, 1.4590226411819458, -0.14469805359840393, 0.6653850674629211], "mean": [0.654979944229126, -0.043055444955825806, 0.12358392030000687, -1.6073206663131714, 0.12017804384231567, 0.028370961546897888, -0.49025988578796387, -0.2787165343761444, 0.1635512411594391, 1.1326395273208618, -0.3231523036956787, 0.5033072233200073], "std": [0.009317864663898945, 0.006071479991078377, 0.00032983606797643006, 0.007091151084750891, 0.009779471904039383, 0.0032018786296248436, 0.060143519192934036, 0.014976346865296364, 0.008124765008687973, 0.13597241044044495, 0.10332924872636795, 0.08646810799837112], "count": [378]}, "action": {"min": [-0.09918007254600525, -0.07295087724924088, 0.10918813198804855, 0.3703894019126892, -0.2750917673110962, 0.8840252161026001, -0.07449155300855637, 0.12212646007537842, -0.11524699628353119, 0.07966356724500656, 0.15431451797485352, -0.15698309242725372, -0.20846804976463318, 0.932887852191925], "max": [-0.09547478705644608, -0.07120164483785629, 0.11375106126070023, 0.37414586544036865, -0.2580914795398712, 0.8883914351463318, -0.0661027729511261, 0.142583429813385, -0.09317055344581604, 0.10796412825584412, 0.28615328669548035, 0.18515174090862274, -0.08235646039247513, 0.9790101647377014], "mean": [-0.09701254218816757, -0.07243750989437103, 0.11093787848949432, 0.37233346700668335, -0.2674921154975891, 0.8859368562698364, -0.07006479054689407, 0.13202659785747528, -0.10510536283254623, 0.09354143589735031, 0.22041982412338257, 0.027216250076889992, -0.1496615707874298, 0.9575987458229065], "std": [0.0011029297020286322, 0.0004667711036745459, 0.00136793393176049, 0.0010236286325380206, 0.003760331077501178, 0.000979358097538352, 0.0025009242817759514, 0.005839436315000057, 0.007173759862780571, 0.008436434902250767, 0.03745236620306969, 0.09203404188156128, 0.036355555057525635, 0.009250696748495102], "count": [378]}, "timestamp": {"min": [0.0], "max": [12.566666666666666], "mean": [6.283333333333333], "std": [3.6372939676918348], "count": [378]}, "frame_index": {"min": [0], "max": [377], "mean": [188.5], "std": [109.11881903075503], "count": [378]}, "episode_index": {"min": [782], "max": [782], "mean": [782.0], "std": [0.0], "count": [378]}, "index": {"min": [384417], "max": [384794], "mean": [384605.5], "std": [109.11881903075503], "count": [378]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [378]}}} +{"episode_index": 783, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4687868055555555]], [[0.41715924564270157]], [[0.3452272739651416]]], "std": [[[0.18982702718554711]], [[0.18265221582918162]], [[0.18450972569875643]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4907714025054466]], [[0.450318954248366]], [[0.381369302832244]]], "std": [[[0.1841469356036352]], [[0.16253656779048264]], [[0.17683497199359688]]], "count": [100]}, "observation.state": {"min": [0.6515824198722839, -0.04470689967274666, 0.1224527433514595, -1.5181552171707153, 0.09714855253696442, -0.06355925649404526, -0.5436649322509766, -0.28931674361228943, 0.150312602519989, 1.1549721956253052, -0.5603463053703308, 0.04668058827519417], "max": [0.657127320766449, -0.03309191018342972, 0.12289348244667053, -1.5097675323486328, 0.10138428211212158, -0.05187083035707474, -0.35076653957366943, -0.19482910633087158, 0.1864752173423767, 2.061461925506592, 0.20181210339069366, 0.6714271306991577], "mean": [0.6547402143478394, -0.04184291884303093, 0.12268855422735214, -1.5151740312576294, 0.09897495061159134, -0.05664438009262085, -0.44154417514801025, -0.23906639218330383, 0.16638724505901337, 1.3978850841522217, -0.08253049850463867, 0.42132821679115295], "std": [0.0017026433488354087, 0.003160664113238454, 0.0001904316304717213, 0.002298415871337056, 0.0014202886959537864, 0.00304797082208097, 0.059600379317998886, 0.02284642681479454, 0.010081353597342968, 0.15550342202186584, 0.17763781547546387, 0.13938896358013153], "count": [392]}, "action": {"min": [-0.0979897677898407, -0.07216811180114746, 0.11003805696964264, 0.3448108434677124, -0.2456553727388382, 0.8966450691223145, -0.12753966450691223, 0.12558992207050323, -0.1147846058011055, 0.08284495025873184, 0.08181191235780716, -0.2879243493080139, -0.2197820097208023, 0.9018115401268005], "max": [-0.09754029661417007, -0.07086025923490524, 0.1117774099111557, 0.34664109349250793, -0.23525062203407288, 0.8997230529785156, -0.12287700921297073, 0.14475709199905396, -0.09176301211118698, 0.12213274836540222, 0.2585361897945404, 0.06442553550004959, 0.2684442698955536, 0.9807606339454651], "mean": [-0.09771479666233063, -0.07188406586647034, 0.11063972115516663, 0.3458820581436157, -0.2420264333486557, 0.8978363275527954, -0.1251724660396576, 0.13493788242340088, -0.10286317765712738, 0.10287249833345413, 0.18185481429100037, -0.12005604803562164, -0.12236503511667252, 0.9576373100280762], "std": [0.00014150062634143978, 0.0003154169535264373, 0.0005201577441766858, 0.0004875627637375146, 0.0026795193552970886, 0.0007411230471916497, 0.0015866333851590753, 0.0054379901848733425, 0.006566369440406561, 0.011889109387993813, 0.05394071340560913, 0.0863635390996933, 0.09719531983137131, 0.02566319890320301], "count": [392]}, "timestamp": {"min": [0.0], "max": [13.033333333333333], "mean": [6.5166666666666675], "std": [3.772009485082925], "count": [392]}, "frame_index": {"min": [0], "max": [391], "mean": [195.5], "std": [113.16028455248777], "count": [392]}, "episode_index": {"min": [783], "max": [783], "mean": [783.0], "std": [0.0], "count": [392]}, "index": {"min": [384795], "max": [385186], "mean": [384990.5], "std": [113.16028455248777], "count": [392]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [392]}}} +{"episode_index": 784, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44117517973856213]], [[0.39306290032679736]], [[0.3217478404139434]]], "std": [[[0.19528853307904037]], [[0.18584530235323116]], [[0.1868423177636995]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45625146786492377]], [[0.4217395697167756]], [[0.3540883006535948]]], "std": [[[0.20047072978100652]], [[0.17554507977586717]], [[0.1870404077546387]]], "count": [100]}, "observation.state": {"min": [0.6161891222000122, -0.02593293972313404, 0.12770789861679077, -1.7785900831222534, 0.2898060083389282, 0.06835565716028214, -0.5584307909011841, -0.27774807810783386, 0.15916107594966888, 1.678148627281189, -0.5987411141395569, 0.09480241686105728], "max": [0.6287848949432373, -0.009468070231378078, 0.13060122728347778, -1.6708095073699951, 0.3025132119655609, 0.10576785355806351, -0.4520115554332733, -0.22904853522777557, 0.188945934176445, 2.0639781951904297, 0.11067555844783783, 0.5797232985496521], "mean": [0.6224411725997925, -0.019893037155270576, 0.12885287404060364, -1.7141773700714111, 0.29642871022224426, 0.0933927446603775, -0.5091537237167358, -0.2595297694206238, 0.1712835133075714, 1.810007929801941, -0.34917181730270386, 0.356558620929718], "std": [0.005390225909650326, 0.005604044534265995, 0.0009053830872289836, 0.032753657549619675, 0.004260148387402296, 0.011191103607416153, 0.04022495821118355, 0.016268178820610046, 0.011246033012866974, 0.12458719313144684, 0.1534765362739563, 0.18810154497623444], "count": [232]}, "action": {"min": [-0.09791260957717896, -0.07392894476652145, 0.11679460853338242, 0.4398212134838104, -0.28164225816726685, 0.8498675227165222, -0.0421813428401947, 0.12374823540449142, -0.11568859964609146, 0.08812662959098816, 0.07422398030757904, -0.295734703540802, -0.0380169078707695, 0.9251172542572021], "max": [-0.09667675197124481, -0.07198136299848557, 0.12082134932279587, 0.4535573422908783, -0.248873770236969, 0.8557726740837097, 0.0013031335547566414, 0.13158249855041504, -0.09869657456874847, 0.1194688156247139, 0.23506125807762146, -0.020119857043027878, 0.26201292872428894, 0.9811381697654724], "mean": [-0.0971737951040268, -0.072697713971138, 0.11828693002462387, 0.4481152594089508, -0.2695833444595337, 0.8518513441085815, -0.023916205391287804, 0.1255538910627365, -0.10575595498085022, 0.1008450835943222, 0.1461242288351059, -0.145711749792099, 0.10140611231327057, 0.9651533961296082], "std": [0.0003843641607090831, 0.0007301568984985352, 0.0013468860415741801, 0.005066512152552605, 0.010189277119934559, 0.0019565981347113848, 0.012677021324634552, 0.0018109824741259217, 0.006288433447480202, 0.011374873109161854, 0.05808907747268677, 0.06518679857254028, 0.08799522370100021, 0.015638789162039757], "count": [232]}, "timestamp": {"min": [0.0], "max": [7.7], "mean": [3.85], "std": [2.2324003026140073], "count": [232]}, "frame_index": {"min": [0], "max": [231], "mean": [115.5], "std": [66.97200907842021], "count": [232]}, "episode_index": {"min": [784], "max": [784], "mean": [784.0], "std": [0.0], "count": [232]}, "index": {"min": [385187], "max": [385418], "mean": [385302.5], "std": [66.97200907842021], "count": [232]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [232]}}} +{"episode_index": 785, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44496245642701526]], [[0.3930273665577342]], [[0.31983628267973857]]], "std": [[[0.19081907716290306]], [[0.1809462344701539]], [[0.1802940892630271]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.462773371459695]], [[0.42332303104575164]], [[0.35370827614379086]]], "std": [[[0.19192041990150627]], [[0.1665373482270499]], [[0.1766925228641426]]], "count": [100]}, "observation.state": {"min": [0.601330578327179, -0.061851371079683304, 0.12788419425487518, -1.8482071161270142, 0.007105099968612194, 0.11242552101612091, -0.4573093354701996, -0.2703651487827301, 0.1674184501171112, 1.6867458820343018, 0.1314443051815033, 0.316746324300766], "max": [0.6355886459350586, 0.05264586955308914, 0.16043274104595184, -0.8341466188430786, 0.4932577610015869, 0.503789484500885, -0.4236536920070648, -0.26811012625694275, 0.17003695666790009, 1.7202962636947632, 0.1751679927110672, 0.3323858380317688], "mean": [0.6163965463638306, -0.008841673843562603, 0.1407248079776764, -1.3598166704177856, 0.25890031456947327, 0.29487207531929016, -0.43519213795661926, -0.2689245641231537, 0.16913366317749023, 1.6999431848526, 0.1581530123949051, 0.3241288363933563], "std": [0.009910465218126774, 0.03809928894042969, 0.009943727403879166, 0.39482149481773376, 0.14267870783805847, 0.11826103925704956, 0.010087881237268448, 0.0004581231623888016, 0.0005082911811769009, 0.008560113608837128, 0.013724799267947674, 0.004452838096767664], "count": [259]}, "action": {"min": [-0.10038669407367706, -0.09481798112392426, 0.1161080077290535, 0.3059351146221161, -0.4903394877910614, 0.7107087969779968, -0.38548386096954346, 0.1297284960746765, -0.10851753503084183, 0.0985148698091507, 0.20998775959014893, -0.3089154064655304, -0.054842911660671234, 0.9248488545417786], "max": [-0.0829959362745285, -0.0594509094953537, 0.1385858803987503, 0.46773746609687805, -0.289218932390213, 0.8709608316421509, 0.08701898902654648, 0.13449934124946594, -0.10667724907398224, 0.10119207203388214, 0.22246965765953064, -0.30295413732528687, -0.03648323938250542, 0.9277902841567993], "mean": [-0.09178032726049423, -0.07564455270767212, 0.1288069784641266, 0.4051770269870758, -0.35888615250587463, 0.8013438582420349, -0.1479501575231552, 0.13267956674098969, -0.10826051235198975, 0.10079707205295563, 0.21691112220287323, -0.304699182510376, -0.04774857684969902, 0.9261685609817505], "std": [0.004926529247313738, 0.010967154055833817, 0.005552447400987148, 0.042374689131975174, 0.056113194674253464, 0.05993490293622017, 0.1856205314397812, 0.0014522747369483113, 0.00027633493300527334, 0.00045364961260929704, 0.003649545833468437, 0.0010764822363853455, 0.004975937772542238, 0.0008474930073134601], "count": [259]}, "timestamp": {"min": [0.0], "max": [8.6], "mean": [4.3], "std": [2.492210085669166], "count": [259]}, "frame_index": {"min": [0], "max": [258], "mean": [129.0], "std": [74.76630257007497], "count": [259]}, "episode_index": {"min": [785], "max": [785], "mean": [785.0], "std": [0.0], "count": [259]}, "index": {"min": [385419], "max": [385677], "mean": [385548.0], "std": [74.76630257007497], "count": [259]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [259]}}} +{"episode_index": 786, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45704534313725487]], [[0.40600600217864924]], [[0.33199946623093685]]], "std": [[[0.18441563440222133]], [[0.17556400628834493]], [[0.17686156298042827]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47501010076252725]], [[0.43504370370370365]], [[0.3657117919389978]]], "std": [[[0.1852717140781944]], [[0.1603384453760045]], [[0.17226256841685597]]], "count": [100]}, "observation.state": {"min": [0.538992702960968, -0.016650209203362465, 0.11978107690811157, -2.245779275894165, -0.04741286858916283, 0.17828765511512756, -0.43580153584480286, -0.2710524797439575, 0.16640086472034454, 1.654873013496399, 0.16574007272720337, 0.32004445791244507], "max": [0.6797626614570618, 0.029848359525203705, 0.1514585167169571, 0.14867016673088074, 0.34008824825286865, 1.1426973342895508, -0.4306968152523041, -0.2669980525970459, 0.16685067117214203, 1.6634702682495117, 0.171205535531044, 0.3250724971294403], "mean": [0.6191359758377075, 0.004676452372223139, 0.13455045223236084, -0.8652797341346741, 0.16787385940551758, 0.6842510104179382, -0.4334423243999481, -0.2697400450706482, 0.16650688648223877, 1.6584581136703491, 0.16791695356369019, 0.32221710681915283], "std": [0.048483189195394516, 0.012672142125666142, 0.010076399892568588, 0.9668014049530029, 0.0999152883887291, 0.3310995101928711, 0.0020461473613977432, 0.0015453696250915527, 9.92579516605474e-05, 0.0023304270580410957, 0.001903437077999115, 0.0009584380313754082], "count": [206]}, "action": {"min": [-0.09898830950260162, -0.08471936732530594, 0.11370573192834854, -0.5146945118904114, -0.5845484733581543, -0.5745073556900024, -0.49908140301704407, 0.13365212082862854, -0.10672413557767868, 0.09884759038686752, 0.2204018235206604, -0.29875558614730835, -0.06866622716188431, 0.9260044693946838], "max": [-0.09265562146902084, -0.05784883722662926, 0.14388512074947357, 0.46709051728248596, 0.6023851037025452, 0.8538079857826233, 0.6203718781471252, 0.13420334458351135, -0.1064215674996376, 0.099820576608181, 0.22238163650035858, -0.2963825464248657, -0.06556377559900284, 0.9266434907913208], "mean": [-0.09632022678852081, -0.07161375135183334, 0.12639178335666656, -0.04980066046118736, 0.10819419473409653, 0.19510595500469208, 0.3476799428462982, 0.1339203119277954, -0.10659763962030411, 0.09916573017835617, 0.22163474559783936, -0.29745611548423767, -0.06717710942029953, 0.9262202978134155], "std": [0.0016579021466895938, 0.00910541508346796, 0.009631139226257801, 0.40599796175956726, 0.47459545731544495, 0.5857968926429749, 0.3059953451156616, 0.00022408504446502775, 7.59090471547097e-05, 0.00031976946047507226, 0.0004968585562892258, 0.0004767117789015174, 0.0008122288272716105, 9.137717279372737e-05], "count": [206]}, "timestamp": {"min": [0.0], "max": [6.833333333333333], "mean": [3.416666666666667], "std": [1.9822125684867067], "count": [206]}, "frame_index": {"min": [0], "max": [205], "mean": [102.5], "std": [59.466377054601196], "count": [206]}, "episode_index": {"min": [786], "max": [786], "mean": [786.0], "std": [0.0], "count": [206]}, "index": {"min": [385678], "max": [385883], "mean": [385780.5], "std": [59.466377054601196], "count": [206]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [206]}}} +{"episode_index": 787, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43822180555555557]], [[0.3901279221132898]], [[0.32042873366013075]]], "std": [[[0.19919217218649868]], [[0.1881215275258344]], [[0.18775478453961783]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45496611928104574]], [[0.42012238562091503]], [[0.35399004084967317]]], "std": [[[0.204592602504963]], [[0.17724132403053572]], [[0.18748531975773688]]], "count": [100]}, "observation.state": {"min": [0.6425236463546753, -0.041262559592723846, 0.12843123078346252, -1.757621169090271, 0.15590225160121918, 0.18196672201156616, -0.5430934429168701, -0.27316078543663025, 0.15760812163352966, 1.6678738594055176, -0.2999171316623688, 0.15377703309059143], "max": [0.6432573199272156, -0.032033901661634445, 0.1286749243736267, -1.748604416847229, 0.15726861357688904, 0.19278517365455627, -0.4418407082557678, -0.22418321669101715, 0.18894334137439728, 2.1981797218322754, 0.24649225175380707, 0.45937472581863403], "mean": [0.6429682970046997, -0.03821150213479996, 0.12856115400791168, -1.7528258562088013, 0.1564156860113144, 0.18608003854751587, -0.49555811285972595, -0.24643589556217194, 0.17310722172260284, 1.8388454914093018, -0.02379751019179821, 0.34228748083114624], "std": [0.00019849410455208272, 0.002654049778357148, 4.7743840696057305e-05, 0.003420664928853512, 0.00040249372250400484, 0.002623738022521138, 0.034149959683418274, 0.014123810455203056, 0.011862343177199364, 0.12745647132396698, 0.21084661781787872, 0.08259999752044678], "count": [174]}, "action": {"min": [-0.09542794525623322, -0.07504409551620483, 0.1152007132768631, 0.39866912364959717, -0.3166041672229767, 0.8602623343467712, 0.024531958624720573, 0.11793700605630875, -0.11525563895702362, 0.08923481404781342, 0.14104464650154114, -0.3893263339996338, -0.08500794321298599, 0.90596604347229], "max": [-0.09531307965517044, -0.07361923158168793, 0.11601006239652634, 0.39962509274482727, -0.3141803443431854, 0.8610401749610901, 0.028406905010342598, 0.12683238089084625, -0.095451220870018, 0.12020144611597061, 0.20834112167358398, -0.13549596071243286, 0.27025482058525085, 0.9708196520805359], "mean": [-0.09538943320512772, -0.07459276169538498, 0.11548555642366409, 0.39911118149757385, -0.3152250647544861, 0.860615074634552, 0.026115860790014267, 0.12377115339040756, -0.105950266122818, 0.10294368118047714, 0.16571728885173798, -0.28389936685562134, 0.03714819997549057, 0.9330917596817017], "std": [2.2043281205696985e-05, 0.0003820708370767534, 0.00026348207029514015, 0.000356855831341818, 0.0008416689233854413, 0.0001980262459255755, 0.0013677445240318775, 0.0024685757234692574, 0.0077660479582846165, 0.011575883254408836, 0.019558770582079887, 0.08583563566207886, 0.1080980896949768, 0.02152276784181595], "count": [174]}, "timestamp": {"min": [0.0], "max": [5.766666666666667], "mean": [2.8833333333333333], "std": [1.6742881295466265], "count": [174]}, "frame_index": {"min": [0], "max": [173], "mean": [86.5], "std": [50.22864388639879], "count": [174]}, "episode_index": {"min": [787], "max": [787], "mean": [787.0], "std": [0.0], "count": [174]}, "index": {"min": [385884], "max": [386057], "mean": [385970.5], "std": [50.22864388639879], "count": [174]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [174]}}} +{"episode_index": 788, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4341108197167756]], [[0.37984009259259255]], [[0.3026975408496732]]], "std": [[[0.1829502752116048]], [[0.17089145609305031]], [[0.16844833733669415]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44751979302832245]], [[0.40609117102396514]], [[0.33264651416122004]]], "std": [[[0.18661482005880856]], [[0.15843881547460545]], [[0.1672111837436299]]], "count": [100]}, "observation.state": {"min": [0.6334262490272522, -0.02438838966190815, 0.12627938389778137, -1.9109044075012207, 0.11545784026384354, 0.10838540643453598, -0.6064739227294922, -0.429036408662796, 0.1598818153142929, 1.6777292490005493, -0.13363049924373627, 0.11163575202226639], "max": [0.6363608837127686, -0.019129209220409393, 0.1270740032196045, -1.8547075986862183, 0.12529566884040833, 0.12337452173233032, -0.4577804505825043, -0.25691989064216614, 0.1882835328578949, 1.9215986728668213, 0.10657647252082825, 0.4213757812976837], "mean": [0.6349672675132751, -0.02243751287460327, 0.126555934548378, -1.885899543762207, 0.11976532638072968, 0.11460054665803909, -0.5220221877098083, -0.3208943009376526, 0.17400404810905457, 1.8006212711334229, -0.05867570638656616, 0.23003672063350677], "std": [0.0009289626032114029, 0.0014950039330869913, 0.0002953487273771316, 0.018641967326402664, 0.0027892340440303087, 0.004543357528746128, 0.05698900297284126, 0.0680694729089737, 0.00944565050303936, 0.06887983530759811, 0.08122969418764114, 0.10269010066986084], "count": [233]}, "action": {"min": [-0.09795454889535904, -0.07258700579404831, 0.11603006720542908, 0.38462990522384644, -0.2629728615283966, 0.8777416348457336, 0.06185705214738846, 0.11544463783502579, -0.12116546183824539, 0.07243791222572327, 0.15345078706741333, -0.31853875517845154, -0.011058280244469643, 0.8877124190330505], "max": [-0.09781007468700409, -0.07142375409603119, 0.11684886366128922, 0.39316925406455994, -0.2582021951675415, 0.8826848268508911, 0.08970616012811661, 0.13363926112651825, -0.1002093032002449, 0.10961125791072845, 0.3397282063961029, -0.2083302140235901, 0.13325892388820648, 0.9368500709533691], "mean": [-0.09789328277111053, -0.07203523069620132, 0.11642888933420181, 0.3892470598220825, -0.2600199282169342, 0.8802475333213806, 0.0770941972732544, 0.12174447625875473, -0.11428733170032501, 0.09305895864963531, 0.2568304240703583, -0.2808810770511627, 0.05444226413965225, 0.9193267822265625], "std": [4.4515541958389804e-05, 0.00032839764025993645, 0.00025051183183677495, 0.0026578009128570557, 0.001532259862869978, 0.0015642291400581598, 0.00918875727802515, 0.005694825202226639, 0.007281591184437275, 0.014188447967171669, 0.06350431591272354, 0.03088555485010147, 0.0417708158493042, 0.016939472407102585], "count": [233]}, "timestamp": {"min": [0.0], "max": [7.733333333333333], "mean": [3.866666666666667], "std": [2.242022896106698], "count": [233]}, "frame_index": {"min": [0], "max": [232], "mean": [116.0], "std": [67.26068688320095], "count": [233]}, "episode_index": {"min": [788], "max": [788], "mean": [788.0], "std": [0.0], "count": [233]}, "index": {"min": [386058], "max": [386290], "mean": [386174.0], "std": [67.26068688320095], "count": [233]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [233]}}} +{"episode_index": 789, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4404939733115468]], [[0.3894502968409586]], [[0.31765151416122006]]], "std": [[[0.19514899713624065]], [[0.18459657538693347]], [[0.18377851452150812]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46121857843137254]], [[0.42246076252723314]], [[0.3545391013071896]]], "std": [[[0.20211477275521741]], [[0.17437335166859197]], [[0.184150489912669]]], "count": [100]}, "observation.state": {"min": [0.6132931113243103, -0.04150969162583351, 0.1416754126548767, -1.4590226411819458, 0.39078038930892944, 0.3672531247138977, -0.48175951838493347, -0.2892317771911621, 0.16798491775989532, 0.39547523856163025, 0.1956634670495987, -0.4997202754020691], "max": [0.6133085489273071, -0.0415019690990448, 0.14168578386306763, -1.4590226411819458, 0.390917032957077, 0.36793628334999084, -0.3875267505645752, -0.10493648797273636, 0.1861666887998581, 2.2667481899261475, 0.5996975898742676, 0.5367113351821899], "mean": [0.6132975220680237, -0.041502341628074646, 0.141679584980011, -1.4590214490890503, 0.3909040689468384, 0.36741816997528076, -0.44136759638786316, -0.19429807364940643, 0.1765458881855011, 1.0846822261810303, 0.46872037649154663, -0.13787294924259186], "std": [4.957006240147166e-06, 1.606271894161182e-06, 2.7610926736088004e-06, 1.1920928955078125e-06, 3.922924224752933e-05, 0.0001771764800650999, 0.027242129668593407, 0.0753379836678505, 0.005074518267065287, 0.7860802412033081, 0.14016130566596985, 0.39561066031455994], "count": [309]}, "action": {"min": [-0.09061874449253082, -0.08103904128074646, 0.12575006484985352, 0.47374969720840454, -0.4016888737678528, 0.778486967086792, -0.09047851711511612, 0.12289413809776306, -0.12264733016490936, 0.10018517822027206, 0.11845818161964417, -0.47378477454185486, -0.5667167901992798, 0.6345773339271545], "max": [-0.09061110764741898, -0.08103378862142563, 0.12575878202915192, 0.47381091117858887, -0.4014049172401428, 0.7785996794700623, -0.09031003713607788, 0.13839949667453766, -0.0848834440112114, 0.1221776157617569, 0.41660863161087036, -0.3193111717700958, 0.19551154971122742, 0.8837292194366455], "mean": [-0.09061630070209503, -0.0810353085398674, 0.12575334310531616, 0.47378629446029663, -0.4014708399772644, 0.7785667777061462, -0.09043854475021362, 0.12717494368553162, -0.10070490092039108, 0.11348476260900497, 0.30768540501594543, -0.39375224709510803, -0.3047665059566498, 0.7379323840141296], "std": [1.9328294911247212e-06, 1.2531365882750833e-06, 1.8512143924453994e-06, 1.149101990449708e-05, 7.276133692357689e-05, 2.999028038175311e-05, 4.3409945646999404e-05, 0.004874054342508316, 0.013805068098008633, 0.007914857938885689, 0.09577525407075882, 0.04056541621685028, 0.3012234568595886, 0.10633804649114609], "count": [309]}, "timestamp": {"min": [0.0], "max": [10.266666666666667], "mean": [5.133333333333333], "std": [2.973338315890195], "count": [309]}, "frame_index": {"min": [0], "max": [308], "mean": [154.0], "std": [89.20014947670585], "count": [309]}, "episode_index": {"min": [789], "max": [789], "mean": [789.0], "std": [0.0], "count": [309]}, "index": {"min": [386291], "max": [386599], "mean": [386445.0], "std": [89.20014947670585], "count": [309]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [309]}}} +{"episode_index": 790, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.460657938453159]], [[0.4118090604575163]], [[0.33768904956427015]]], "std": [[[0.18343845827861718]], [[0.17674742262101079]], [[0.17717140731730535]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47653609477124187]], [[0.439429327342048]], [[0.3702022331154684]]], "std": [[[0.1899451882790532]], [[0.16520260110143223]], [[0.176560064234069]]], "count": [100]}, "observation.state": {"min": [0.6019175052642822, -0.015700319781899452, 0.1370217353105545, -1.5659644603729248, 0.4075866937637329, -0.035355791449546814, -0.48025357723236084, -0.2666736841201782, 0.17379878461360931, 0.32355156540870667, 0.22121448814868927, -0.624658465385437], "max": [0.6229465007781982, 0.08639421314001083, 0.15502332150936127, -1.2535264492034912, 0.5514649152755737, 0.2794919013977051, -0.4018215239048004, -0.08577638864517212, 0.18900816142559052, 2.3384623527526855, 0.682499349117279, 0.2625338137149811], "mean": [0.6129454374313354, 0.04488126188516617, 0.14367416501045227, -1.4566521644592285, 0.5054271221160889, 0.06447043269872665, -0.44283977150917053, -0.14735658466815948, 0.17744088172912598, 0.7772971987724304, 0.5442848801612854, -0.458566278219223], "std": [0.0067962585017085075, 0.03635026514530182, 0.004836830776184797, 0.06279361248016357, 0.04491472616791725, 0.08739367872476578, 0.029587138444185257, 0.05779735743999481, 0.003725814400240779, 0.6272763013839722, 0.1063195988535881, 0.2637377381324768], "count": [419]}, "action": {"min": [-0.09411565214395523, -0.07533825188875198, 0.12590204179286957, 0.4596634805202484, -0.32801303267478943, 0.7666447758674622, -0.23547063767910004, 0.11935501545667648, -0.12132269889116287, 0.10690928995609283, 0.23621375858783722, -0.520410418510437, -0.5643799901008606, 0.6172040104866028], "max": [-0.08233266323804855, -0.06069835647940636, 0.145792618393898, 0.5319679379463196, -0.16966041922569275, 0.8499221205711365, -0.11319940537214279, 0.13323380053043365, -0.08431824296712875, 0.12772603332996368, 0.4530773162841797, -0.3876514434814453, 0.26290467381477356, 0.8400620818138123], "mean": [-0.08915001899003983, -0.06721862405538559, 0.13442592322826385, 0.5028249621391296, -0.2258477807044983, 0.8125668168067932, -0.17739704251289368, 0.125968798995018, -0.0940486267209053, 0.11949814856052399, 0.38895443081855774, -0.41760945320129395, -0.39008739590644836, 0.6720705032348633], "std": [0.002715998562052846, 0.005202423315495253, 0.006217028014361858, 0.019990485161542892, 0.04953810200095177, 0.020007669925689697, 0.03422776609659195, 0.004767280071973801, 0.01121655385941267, 0.00653077382594347, 0.057671234011650085, 0.024517115205526352, 0.2467508167028427, 0.07521268725395203], "count": [419]}, "timestamp": {"min": [0.0], "max": [13.933333333333334], "mean": [6.966666666666667], "std": [4.031817897122284], "count": [419]}, "frame_index": {"min": [0], "max": [418], "mean": [209.0], "std": [120.95453691366852], "count": [419]}, "episode_index": {"min": [790], "max": [790], "mean": [790.0], "std": [0.0], "count": [419]}, "index": {"min": [386600], "max": [387018], "mean": [386809.0], "std": [120.95453691366852], "count": [419]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [419]}}} +{"episode_index": 791, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4554448039215686]], [[0.40322148965141613]], [[0.33164920206971676]]], "std": [[[0.20170962113272317]], [[0.1927001658910878]], [[0.19438320712511709]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46988362472766887]], [[0.431010348583878]], [[0.36263100490196076]]], "std": [[[0.20544869337390562]], [[0.18049610342207198]], [[0.19256955719349125]]], "count": [100]}, "observation.state": {"min": [0.5803556442260742, -0.011113010346889496, 0.13879506289958954, -1.5393339395523071, 0.4652472734451294, 0.25039321184158325, -0.46302416920661926, -0.25752997398376465, 0.17551636695861816, 1.4137295484542847, 0.43751007318496704, -0.3948224186897278], "max": [0.5881942510604858, -0.008054809644818306, 0.14055024087429047, -1.491524577140808, 0.47262564301490784, 0.2572697103023529, -0.4203869700431824, -0.1701086461544037, 0.19225147366523743, 1.6957625150680542, 0.5951886177062988, 0.06333053112030029], "mean": [0.587323784828186, -0.010169045999646187, 0.13921640813350677, -1.5061285495758057, 0.4705031216144562, 0.25246965885162354, -0.4454295039176941, -0.20281288027763367, 0.18059293925762177, 1.5046055316925049, 0.49829137325286865, -0.08521261811256409], "std": [0.001661932677961886, 0.0011515938676893711, 0.00045469653559848666, 0.012280191294848919, 0.001118920394219458, 0.0017906586872413754, 0.011289211921393871, 0.03463385999202728, 0.006270322483032942, 0.09502719342708588, 0.029244329780340195, 0.16578809916973114], "count": [185]}, "action": {"min": [-0.09574566781520844, -0.07733246684074402, 0.12857644259929657, 0.49387335777282715, -0.3347814083099365, 0.7953948378562927, -0.10647504031658173, 0.12123017013072968, -0.12139084190130234, 0.1086496040225029, 0.2820485830307007, -0.4837551414966583, -0.206634983420372, 0.7488784790039062], "max": [-0.09533660113811493, -0.07565385848283768, 0.1302526891231537, 0.49698999524116516, -0.33105212450027466, 0.7983522415161133, -0.08338199555873871, 0.12731850147247314, -0.09758442640304565, 0.11609435081481934, 0.5136073231697083, -0.41241660714149475, 0.006972302682697773, 0.8419406414031982], "mean": [-0.09543236345052719, -0.07620417326688766, 0.12880900502204895, 0.4952244162559509, -0.3329651951789856, 0.7961674332618713, -0.09982132911682129, 0.1231904998421669, -0.10556793957948685, 0.11336828023195267, 0.3595682382583618, -0.4256591498851776, -0.13182179629802704, 0.8105829954147339], "std": [6.704494444420561e-05, 0.00036054078373126686, 0.00045903283171355724, 0.0006348693859763443, 0.0007017854950390756, 0.000703666009940207, 0.006208423990756273, 0.0010825223289430141, 0.00904100388288498, 0.0015481445007026196, 0.08413998782634735, 0.019058670848608017, 0.07913998514413834, 0.03737694397568703], "count": [185]}, "timestamp": {"min": [0.0], "max": [6.133333333333334], "mean": [3.066666666666667], "std": [1.7801373230424917], "count": [185]}, "frame_index": {"min": [0], "max": [184], "mean": [92.0], "std": [53.40411969127476], "count": [185]}, "episode_index": {"min": [791], "max": [791], "mean": [791.0], "std": [0.0], "count": [185]}, "index": {"min": [387019], "max": [387203], "mean": [387111.0], "std": [53.40411969127476], "count": [185]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [185]}}} +{"episode_index": 792, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4418871868191721]], [[0.3930059531590414]], [[0.32145662581699347]]], "std": [[[0.19997474131402948]], [[0.19161533105824394]], [[0.194941845721355]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.457094158496732]], [[0.42173103213507623]], [[0.3544140468409586]]], "std": [[[0.20747430678183287]], [[0.18272637291989702]], [[0.1953125420862825]]], "count": [100]}, "observation.state": {"min": [0.5916540026664734, -0.0194381196051836, 0.14035449922084808, -1.413310170173645, 0.4157848656177521, 0.2954244911670685, -0.4870264232158661, -0.23652413487434387, 0.166454017162323, 0.7156717777252197, 0.30688557028770447, -0.281607449054718], "max": [0.5987975597381592, -0.010750040411949158, 0.14157819747924805, -1.3881474733352661, 0.43245452642440796, 0.32556769251823425, -0.4230822026729584, -0.19803403317928314, 0.19164611399173737, 2.0541226863861084, 0.5890399217605591, 0.029385410249233246], "mean": [0.5929059386253357, -0.015591573901474476, 0.1410517692565918, -1.4002916812896729, 0.424058735370636, 0.31248632073402405, -0.455390602350235, -0.22251145541667938, 0.17447087168693542, 1.336175799369812, 0.477517306804657, -0.1374894231557846], "std": [0.0015971726970747113, 0.0036026285961270332, 0.0004830083344131708, 0.007231778930872679, 0.00732923811301589, 0.01121354941278696, 0.018704768270254135, 0.0077400472946465015, 0.00927454512566328, 0.49410480260849, 0.09009499102830887, 0.11545253545045853], "count": [224]}, "action": {"min": [-0.09428635239601135, -0.0782499685883522, 0.12939967215061188, 0.4692954123020172, -0.3752839267253876, 0.7878241539001465, -0.13859431445598602, 0.11979823559522629, -0.11643591523170471, 0.1011492982506752, 0.3091782331466675, -0.48225781321525574, -0.463707834482193, 0.7169530987739563], "max": [-0.09268304705619812, -0.07650864124298096, 0.1298293024301529, 0.47741445899009705, -0.3584732711315155, 0.7916101813316345, -0.13182838261127472, 0.12974482774734497, -0.09683778136968613, 0.12113603204488754, 0.4149436056613922, -0.3473392724990845, 0.16132283210754395, 0.8347023725509644], "mean": [-0.09382717311382294, -0.07743071764707565, 0.12962433695793152, 0.4729222357273102, -0.3670801520347595, 0.789537787437439, -0.1347758024930954, 0.12523658573627472, -0.10335005074739456, 0.10767760127782822, 0.36814168095588684, -0.3996206820011139, -0.1940244883298874, 0.7835334539413452], "std": [0.00041842448990792036, 0.0007699576672166586, 9.07779685803689e-05, 0.0031939130276441574, 0.007070024963468313, 0.0014475915813818574, 0.0009847740875557065, 0.003359176218509674, 0.006925331894308329, 0.006902345921844244, 0.02516951784491539, 0.04065963998436928, 0.2201211005449295, 0.04964974522590637], "count": [224]}, "timestamp": {"min": [0.0], "max": [7.433333333333334], "mean": [3.7166666666666663], "std": [2.155419526062927], "count": [224]}, "frame_index": {"min": [0], "max": [223], "mean": [111.5], "std": [64.66258578188781], "count": [224]}, "episode_index": {"min": [792], "max": [792], "mean": [792.0], "std": [0.0], "count": [224]}, "index": {"min": [387204], "max": [387427], "mean": [387315.5], "std": [64.66258578188781], "count": [224]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [224]}}} +{"episode_index": 793, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4598568818082789]], [[0.40733010893246185]], [[0.33840604847494554]]], "std": [[[0.20727290741757165]], [[0.1983677533595768]], [[0.19974902062663666]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4777061328976035]], [[0.4382996650326797]], [[0.37258140250544663]]], "std": [[[0.2102490586590843]], [[0.18487073460120146]], [[0.19727529809854416]]], "count": [100]}, "observation.state": {"min": [0.6057093739509583, -0.024674130603671074, 0.14496281743049622, -1.4521028995513916, 0.3913269340991974, 0.331829696893692, -0.4486830532550812, -0.25839492678642273, 0.17098194360733032, 0.8224039673805237, 0.42562270164489746, -0.33318138122558594], "max": [0.6101499795913696, -0.017808619886636734, 0.14559152722358704, -1.427149772644043, 0.40731340646743774, 0.3525434136390686, -0.3914267122745514, -0.13524049520492554, 0.18347428739070892, 1.6502598524093628, 0.6550353765487671, -0.01871323026716709], "mean": [0.6084572672843933, -0.022304795682430267, 0.14533816277980804, -1.4393913745880127, 0.39826446771621704, 0.3429303765296936, -0.4179114103317261, -0.18416516482830048, 0.17651106417179108, 1.1000609397888184, 0.5739625096321106, -0.073946513235569], "std": [0.0012863288866356015, 0.0028687629383057356, 0.0002733308356255293, 0.0028853374533355236, 0.003573676338419318, 0.004778650123625994, 0.015266124159097672, 0.04631085321307182, 0.00415121391415596, 0.3135797381401062, 0.043368224054574966, 0.0662090927362442], "count": [165]}, "action": {"min": [-0.08973537385463715, -0.08023171126842499, 0.13032512366771698, 0.46965277194976807, -0.38952308893203735, 0.7845261693000793, -0.11052940040826797, 0.12471365183591843, -0.11460057646036148, 0.10524658858776093, 0.24692821502685547, -0.478920042514801, -0.4629979729652405, 0.745413064956665], "max": [-0.08886098861694336, -0.07893896102905273, 0.13100263476371765, 0.476004958152771, -0.37557926774024963, 0.7883557081222534, -0.10418622940778732, 0.13333968818187714, -0.08985012769699097, 0.11941394954919815, 0.4798465371131897, -0.32988297939300537, -0.07104352861642838, 0.8067311644554138], "mean": [-0.08915946632623672, -0.07974419742822647, 0.13061533868312836, 0.47291380167007446, -0.38338831067085266, 0.7860360741615295, -0.10722053050994873, 0.1289231777191162, -0.09990271180868149, 0.11536390334367752, 0.31716641783714294, -0.37350571155548096, -0.32760190963745117, 0.7899657487869263], "std": [0.00030021468410268426, 0.0005379214999265969, 0.0002091638307319954, 0.0011575996177271008, 0.0035919591318815947, 0.0010496628237888217, 0.0013284211745485663, 0.0019475313602015376, 0.00965155940502882, 0.0035068285651504993, 0.06394501030445099, 0.04670894145965576, 0.14860041439533234, 0.01331319473683834], "count": [165]}, "timestamp": {"min": [0.0], "max": [5.466666666666667], "mean": [2.7333333333333325], "std": [1.587684080899201], "count": [165]}, "frame_index": {"min": [0], "max": [164], "mean": [82.0], "std": [47.63052242697603], "count": [165]}, "episode_index": {"min": [793], "max": [793], "mean": [793.0], "std": [0.0], "count": [165]}, "index": {"min": [387428], "max": [387592], "mean": [387510.0], "std": [47.63052242697603], "count": [165]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [165]}}} +{"episode_index": 794, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44862131263616556]], [[0.39916244825708064]], [[0.33027831699346405]]], "std": [[[0.20819581009272697]], [[0.19788036355394667]], [[0.19942953033639468]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4633562037037037]], [[0.4276419008714597]], [[0.3621698910675381]]], "std": [[[0.21328317459141752]], [[0.1874338098360073]], [[0.1987619922050734]]], "count": [100]}, "observation.state": {"min": [0.5873215794563293, -0.03177132084965706, 0.13695433735847473, -1.5963695049285889, 0.5306961536407471, 0.157160222530365, -0.5059084892272949, -0.2658627927303314, 0.1699073165655136, 1.308674931526184, 0.42753562331199646, -0.04732289910316467], "max": [0.60284423828125, -0.02353888936340809, 0.13792914152145386, -1.5607222318649292, 0.5531045794487, 0.19323119521141052, -0.38364991545677185, -0.1943657398223877, 0.18670983612537384, 1.8735796213150024, 0.6193732619285583, 0.22381454706192017], "mean": [0.5989832282066345, -0.02804076112806797, 0.1375441700220108, -1.5660126209259033, 0.5386521220207214, 0.1841181367635727, -0.45663291215896606, -0.22336550056934357, 0.18120557069778442, 1.5428054332733154, 0.505753755569458, 0.11051381379365921], "std": [0.004347274545580149, 0.0032843188382685184, 0.00035700423177331686, 0.006173396483063698, 0.006208577658981085, 0.007122848182916641, 0.04599099978804588, 0.021420320495963097, 0.003507054876536131, 0.21278953552246094, 0.04691944271326065, 0.08252076059579849], "count": [205]}, "action": {"min": [-0.09599533677101135, -0.07813037186861038, 0.12368384748697281, 0.528480589389801, -0.3109002709388733, 0.7842281460762024, -0.0955878347158432, 0.1136593297123909, -0.11538581550121307, 0.10154213756322861, 0.22758778929710388, -0.493391752243042, -0.2798701226711273, 0.805081844329834], "max": [-0.0936468169093132, -0.076963871717453, 0.12558670341968536, 0.5332164764404297, -0.29232287406921387, 0.7892597913742065, -0.08552231639623642, 0.13695310056209564, -0.10206786543130875, 0.11581466346979141, 0.3697832524776459, -0.37896835803985596, 0.013308578170835972, 0.8634111881256104], "mean": [-0.09438754618167877, -0.07758095860481262, 0.12429144978523254, 0.5304816365242004, -0.30515575408935547, 0.7853743433952332, -0.0929102674126625, 0.12153778225183487, -0.10808783024549484, 0.11056473851203918, 0.29087358713150024, -0.42534545063972473, -0.15799875557422638, 0.8328767418861389], "std": [0.0006489669904112816, 0.00044962059473618865, 0.0006249330472201109, 0.0012132342671975493, 0.004374451469630003, 0.0011457785731181502, 0.0015580240869894624, 0.00755185866728425, 0.005079981870949268, 0.002915657591074705, 0.044599033892154694, 0.03904800862073898, 0.10979389399290085, 0.01606539450585842], "count": [205]}, "timestamp": {"min": [0.0], "max": [6.8], "mean": [3.4], "std": [1.9725899500684654], "count": [205]}, "frame_index": {"min": [0], "max": [204], "mean": [102.0], "std": [59.177698502053964], "count": [205]}, "episode_index": {"min": [794], "max": [794], "mean": [794.0], "std": [0.0], "count": [205]}, "index": {"min": [387593], "max": [387797], "mean": [387695.0], "std": [59.177698502053964], "count": [205]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [205]}}} +{"episode_index": 795, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4512310321350762]], [[0.4014481318082789]], [[0.3326511791938998]]], "std": [[[0.20565470225331553]], [[0.1994007802537218]], [[0.2019101021754622]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46941940087145967]], [[0.4319796105664488]], [[0.36669450708061]]], "std": [[[0.2075136121723871]], [[0.18673592181832246]], [[0.19957970943791792]]], "count": [100]}, "observation.state": {"min": [0.5994771122932434, -0.0319335013628006, 0.14470745623111725, -1.6431304216384888, 0.11108546704053879, -0.02587331086397171, -0.3967553973197937, -0.2817639112472534, 0.16664455831050873, 1.6976498365402222, 0.6374092698097229, 0.09965355694293976], "max": [0.6816701889038086, 0.0320030115544796, 0.16180939972400665, -1.304061770439148, 0.4207037687301636, 0.3639594316482544, -0.3830861747264862, -0.2748984098434448, 0.16741585731506348, 1.8129792213439941, 0.652302622795105, 0.15577730536460876], "mean": [0.6476745009422302, 0.006434379145503044, 0.15679217875003815, -1.5440919399261475, 0.383475661277771, 0.10982128977775574, -0.3933092951774597, -0.27755871415138245, 0.16704145073890686, 1.7563363313674927, 0.6435768008232117, 0.1292596310377121], "std": [0.03468025475740433, 0.025453990325331688, 0.003353680018335581, 0.07828322052955627, 0.052693113684654236, 0.13679903745651245, 0.003209149930626154, 0.0015801830450072885, 0.00014637483400292695, 0.03931163251399994, 0.005528060253709555, 0.020800087600946426], "count": [178]}, "action": {"min": [-0.09057117998600006, -0.08903878927230835, 0.12949535250663757, 0.33818548917770386, -0.44134560227394104, 0.7913696765899658, -0.18061411380767822, 0.13626202940940857, -0.10876214504241943, 0.09759027510881424, 0.30458471179008484, -0.5035905241966248, -0.11118561029434204, 0.802727222442627], "max": [-0.07076885551214218, -0.07092219591140747, 0.14227919280529022, 0.497261643409729, -0.1963232308626175, 0.8376734852790833, -0.01695089414715767, 0.13833752274513245, -0.10749596357345581, 0.09824513643980026, 0.32258614897727966, -0.48971322178840637, -0.07090548425912857, 0.8057459592819214], "mean": [-0.07648345082998276, -0.07762633264064789, 0.13718749582767487, 0.4774914085865021, -0.2699250280857086, 0.8224427103996277, -0.11592946201562881, 0.13665156066417694, -0.10784219950437546, 0.09787198156118393, 0.3116828501224518, -0.4971412122249603, -0.0903589278459549, 0.8045345544815063], "std": [0.006116956938058138, 0.0066586267203092575, 0.002579993102699518, 0.027042360976338387, 0.07310324907302856, 0.012396960519254208, 0.055333495140075684, 0.00045769845019094646, 0.0002739348856266588, 0.0001588662707945332, 0.007046322338283062, 0.005150907672941685, 0.013626541942358017, 0.001185361878015101], "count": [178]}, "timestamp": {"min": [0.0], "max": [5.9], "mean": [2.95], "std": [1.7127787688756277], "count": [178]}, "frame_index": {"min": [0], "max": [177], "mean": [88.5], "std": [51.383363066268835], "count": [178]}, "episode_index": {"min": [795], "max": [795], "mean": [795.0], "std": [0.0], "count": [178]}, "index": {"min": [387798], "max": [387975], "mean": [387886.5], "std": [51.383363066268835], "count": [178]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [178]}}} +{"episode_index": 796, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4584474863834423]], [[0.4093654221132898]], [[0.33651748093681916]]], "std": [[[0.17899160321177665]], [[0.175215043524994]], [[0.17885749241216295]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4732593845315904]], [[0.4360445778867102]], [[0.3673001879084967]]], "std": [[[0.17964432162663035]], [[0.16047471295067112]], [[0.17509053043858236]]], "count": [100]}, "observation.state": {"min": [0.573760449886322, -0.021476920694112778, 0.15022963285446167, -1.6427110433578491, -0.03921468183398247, 0.16126394271850586, -0.3903455436229706, -0.26723745465278625, 0.1679084450006485, 1.8150761127471924, 0.5834378600120544, 0.19372723996639252], "max": [0.7013168334960938, 0.11017251014709473, 0.16502289474010468, -0.7672554850578308, 0.3142639398574829, 0.402762770652771, -0.3890095055103302, -0.26514458656311035, 0.16819491982460022, 1.8796606063842773, 0.593958854675293, 0.22774453461170197], "mean": [0.6488110423088074, 0.04335953667759895, 0.15980292856693268, -1.1515392065048218, 0.15716201066970825, 0.23900878429412842, -0.3896200656890869, -0.26625993847846985, 0.16811694204807281, 1.8424906730651855, 0.5887362957000732, 0.2094597965478897], "std": [0.046710945665836334, 0.04364834725856781, 0.0035554661881178617, 0.35663652420043945, 0.08464420586824417, 0.05335940793156624, 0.00036202440969645977, 0.0004960150690749288, 8.352065924555063e-05, 0.018226036801934242, 0.0032842163927853107, 0.009009212255477905], "count": [318]}, "action": {"min": [-0.09073781967163086, -0.08931483328342438, 0.13205404579639435, 0.25287529826164246, -0.4395633935928345, 0.7586561441421509, -0.45311227440834045, 0.13683156669139862, -0.10815122723579407, 0.09998336434364319, 0.26948899030685425, -0.4938749372959137, -0.0677700862288475, 0.8243778347969055], "max": [-0.06627430021762848, -0.057076260447502136, 0.14896579086780548, 0.4490642249584198, -0.29436853528022766, 0.8486238121986389, 0.0007791809039190412, 0.13719700276851654, -0.10785171389579773, 0.10021450370550156, 0.2825833559036255, -0.4843340218067169, -0.04522756114602089, 0.8260021805763245], "mean": [-0.07604392617940903, -0.07253459841012955, 0.14425218105316162, 0.34813764691352844, -0.3649451434612274, 0.8034096956253052, -0.25380539894104004, 0.13697023689746857, -0.10795708745718002, 0.1001257598400116, 0.2766845226287842, -0.4888102114200592, -0.05857356637716293, 0.8252379298210144], "std": [0.008486640639603138, 0.009901391342282295, 0.0031287726014852524, 0.050489313900470734, 0.03352505713701248, 0.0363084152340889, 0.17532674968242645, 9.65128856478259e-05, 5.1388717110967264e-05, 6.23090672888793e-05, 0.0034545552916824818, 0.002208299934864044, 0.0067076911218464375, 0.00039333419408649206], "count": [318]}, "timestamp": {"min": [0.0], "max": [10.566666666666666], "mean": [5.283333333333333], "std": [3.059941296943577], "count": [318]}, "frame_index": {"min": [0], "max": [317], "mean": [158.5], "std": [91.79823890830731], "count": [318]}, "episode_index": {"min": [796], "max": [796], "mean": [796.0], "std": [0.0], "count": [318]}, "index": {"min": [387976], "max": [388293], "mean": [388134.5], "std": [91.79823890830731], "count": [318]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [318]}}} +{"episode_index": 797, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43995823529411765]], [[0.39305973583877996]], [[0.322780204248366]]], "std": [[[0.1965064475261384]], [[0.18522919188577466]], [[0.1831752847398885]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4495786165577342]], [[0.4167414651416122]], [[0.3492665277777778]]], "std": [[[0.19897114442656605]], [[0.17224829251415533]], [[0.1805258821050015]]], "count": [100]}, "observation.state": {"min": [0.5814059376716614, -0.010101329535245895, 0.1288965940475464, -1.3246114253997803, 0.2033151090145111, 0.07118286937475204, -0.5283430218696594, -0.2628818154335022, 0.16711771488189697, 1.3313214778900146, 0.4273989796638489, -0.0020339901093393564], "max": [0.6218112707138062, 0.016912780702114105, 0.13998247683048248, -1.1325353384017944, 0.44352206587791443, 0.1572766751050949, -0.387658029794693, -0.2120276242494583, 0.19535349309444427, 1.9568265676498413, 0.6335834264755249, 0.30611249804496765], "mean": [0.6173866391181946, 0.014007282443344593, 0.13017749786376953, -1.151050329208374, 0.42521390318870544, 0.08781322091817856, -0.4964885115623474, -0.24038511514663696, 0.1821170598268509, 1.6005581617355347, 0.5300847291946411, 0.13510189950466156], "std": [0.008608665317296982, 0.0058133709244430065, 0.0024911644868552685, 0.03961366042494774, 0.05118485540151596, 0.019030362367630005, 0.02737930603325367, 0.01461037714034319, 0.006564670708030462, 0.22925174236297607, 0.04620743915438652, 0.05977945774793625], "count": [211]}, "action": {"min": [-0.0973893254995346, -0.0776398628950119, 0.12170559912919998, 0.34679079055786133, -0.3251456022262573, 0.7986857295036316, -0.3216288387775421, 0.1053738072514534, -0.11919465661048889, 0.10049307346343994, 0.20071876049041748, -0.5329532027244568, -0.27185288071632385, 0.8011027574539185], "max": [-0.09610423445701599, -0.06505879014730453, 0.13166438043117523, 0.44116902351379395, -0.25744351744651794, 0.8617588877677917, -0.194521963596344, 0.1370895951986313, -0.10334283858537674, 0.11095450073480606, 0.3512554466724396, -0.4187237024307251, 0.031177105382084846, 0.8395379781723022], "mean": [-0.09673308581113815, -0.06636623293161392, 0.12286894768476486, 0.43129947781562805, -0.2671419084072113, 0.8036395907402039, -0.3086380064487457, 0.11532247811555862, -0.10935541242361069, 0.10613963007926941, 0.28098878264427185, -0.46542617678642273, -0.14608262479305267, 0.8186814785003662], "std": [0.00017614431271795183, 0.002719797194004059, 0.0022154373582452536, 0.018562735989689827, 0.015791382640600204, 0.01253866869956255, 0.02775077521800995, 0.0063825030811131, 0.005146157927811146, 0.002560483058914542, 0.026001283898949623, 0.041209444403648376, 0.10202746838331223, 0.007770112250000238], "count": [211]}, "timestamp": {"min": [0.0], "max": [7.0], "mean": [3.5], "std": [2.030325644378808], "count": [211]}, "frame_index": {"min": [0], "max": [210], "mean": [105.0], "std": [60.909769331364245], "count": [211]}, "episode_index": {"min": [797], "max": [797], "mean": [797.0], "std": [0.0], "count": [211]}, "index": {"min": [388294], "max": [388504], "mean": [388399.0], "std": [60.909769331364245], "count": [211]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [211]}}} +{"episode_index": 798, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4578050980392157]], [[0.40772608660130716]], [[0.3380720043572985]]], "std": [[[0.20476778692019598]], [[0.19712236080218637]], [[0.19926911400291913]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47675356753812637]], [[0.4391241230936819]], [[0.37299074618736383]]], "std": [[[0.2048177314313102]], [[0.1821882273457911]], [[0.19536236206893526]]], "count": [100]}, "observation.state": {"min": [0.6354418992996216, -0.021337909623980522, 0.13956765830516815, -1.3204175233840942, 0.247038796544075, 0.09969258308410645, -0.45062145590782166, -0.24560606479644775, 0.16741974651813507, 1.3812276124954224, 0.37820982933044434, -0.06229329854249954], "max": [0.6476901769638062, -0.013954980298876762, 0.14592337608337402, -1.268624186515808, 0.2687639892101288, 0.16151413321495056, -0.385495662689209, -0.20377975702285767, 0.18748241662979126, 1.9241149425506592, 0.5118403434753418, 0.2948189377784729], "mean": [0.643556535243988, -0.015889262780547142, 0.140635684132576, -1.279882788658142, 0.26314011216163635, 0.12179724872112274, -0.42329779267311096, -0.22207915782928467, 0.17346304655075073, 1.5681273937225342, 0.4688260853290558, 0.19352006912231445], "std": [0.0037104550283402205, 0.002329207258298993, 0.0015037215780466795, 0.012910228222608566, 0.005510924383997917, 0.017091378569602966, 0.02140364609658718, 0.016274014487862587, 0.006820013280957937, 0.20208805799484253, 0.039175938814878464, 0.11044710874557495], "count": [185]}, "action": {"min": [-0.08816597610712051, -0.07861635833978653, 0.12453140318393707, 0.3938741385936737, -0.3325958847999573, 0.8314616680145264, -0.23253418505191803, 0.12720659375190735, -0.11652956902980804, 0.10321573168039322, 0.19943851232528687, -0.4528612792491913, -0.2642415165901184, 0.8428856134414673], "max": [-0.08551289141178131, -0.07430770248174667, 0.12958745658397675, 0.39706486463546753, -0.30808672308921814, 0.8353980779647827, -0.1978406459093094, 0.13791285455226898, -0.09788084775209427, 0.11806441098451614, 0.3775201439857483, -0.36578139662742615, 0.02198668383061886, 0.8705627918243408], "mean": [-0.08741599321365356, -0.07511480152606964, 0.12559029459953308, 0.39542722702026367, -0.31553927063941956, 0.8328429460525513, -0.2242780178785324, 0.12994807958602905, -0.10462912172079086, 0.10809027403593063, 0.25468945503234863, -0.3950929045677185, -0.15328389406204224, 0.8597111701965332], "std": [0.0006381790153682232, 0.00098445697221905, 0.0012772834161296487, 0.0006952245021238923, 0.006846645846962929, 0.0007676673121750355, 0.009815570898354053, 0.0022067460231482983, 0.007203561719506979, 0.004286805167794228, 0.05600664019584656, 0.02979150041937828, 0.11096880584955215, 0.009860181249678135], "count": [185]}, "timestamp": {"min": [0.0], "max": [6.133333333333334], "mean": [3.066666666666667], "std": [1.7801373230424917], "count": [185]}, "frame_index": {"min": [0], "max": [184], "mean": [92.0], "std": [53.40411969127476], "count": [185]}, "episode_index": {"min": [798], "max": [798], "mean": [798.0], "std": [0.0], "count": [185]}, "index": {"min": [388505], "max": [388689], "mean": [388597.0], "std": [53.40411969127476], "count": [185]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [185]}}} diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/info.json b/Surgical/turin/mitic_lerobot_ex_vivo/meta/info.json new file mode 100644 index 0000000000000000000000000000000000000000..571c34af71f06dea4f9950c21bce0a732cb6d186 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/info.json @@ -0,0 +1,176 @@ +{ + "codebase_version": "v2.1", + "robot_type": "dvrk", + "total_episodes": 799, + "total_frames": 388690, + "total_tasks": 6, + "total_videos": 1598, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 30, + "splits": { + "train": "0:639", + "val": "639:718", + "test": "718:799", + "perfect": "2:15,16:26,27:29,31:40,41:43,44:47,49:72,76:77,78:98,99:100,121:140,141:148,149:163,164:170,171:185,186:187,188:191,193:195,196:205,206:207,208:209,210:214,217:219,240:258,259:276,277:287,288:394,395:396,397:401,402:404,405:407,409:412,413:422,423:429,430:437,439:446,447:450,451:452,453:479,481:485,486:487,488:539,559:609,629:779", + "recovery": "0:2,15:16,26:27,29:31,40:41,43:44,47:49,72:76,77:78,98:99,120:121,140:141,148:149,163:164,170:171,185:186,187:188,191:193,195:196,205:206,207:208,209:210,214:217,219:220,258:259,276:277,287:288,394:395,396:397,401:402,404:405,407:409,412:413,422:423,429:430,437:439,446:447,450:451,452:453,479:481,485:486,487:488", + "failure": "100:120,220:240,539:559,609:629,779:799" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.images.endoscope.left": { + "dtype": "video", + "shape": [ + 1080, + 1920, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 1080, + "video.width": 1920, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.endoscope.right": { + "dtype": "video", + "shape": [ + 1080, + 1920, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 1080, + "video.width": 1920, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.state": { + "dtype": "float32", + "shape": [ + 12 + ], + "names": [ + "PSM1_js_outer_yaw", + "PSM1_js_outer_pitch", + "PSM1_js_outer_insertion", + "PSM1_js_outer_roll", + "PSM1_js_outer_wrist_pitch", + "PSM1_js_outer_wrist_yaw", + "PSM2_js_outer_yaw", + "PSM2_js_outer_pitch", + "PSM2_js_outer_insertion", + "PSM2_js_outer_roll", + "PSM2_js_outer_wrist_pitch", + "PSM2_js_outer_wrist_yaw" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 14 + ], + "names": [ + "PSM1_pos_x", + "PSM1_pos_y", + "PSM1_pos_z", + "PSM1_ori_x", + "PSM1_ori_y", + "PSM1_ori_z", + "PSM1_ori_w", + "PSM2_pos_x", + "PSM2_pos_y", + "PSM2_pos_z", + "PSM2_ori_x", + "PSM2_ori_y", + "PSM2_ori_z", + "PSM2_ori_w" + ] + }, + "instruction.text": { + "dtype": "string", + "shape": [ + 1 + ], + "description": "Natural language task description" + }, + "observation.meta.demo_type": { + "dtype": "string", + "shape": [ + 1 + ], + "names": [ + "value" + ] + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + }, + "task_prompts": { + "Knot_tying_base": "Perform base knot tying on ex vivo tissue", + "Knot_tying_final": "Finish the knot tying on ex vivo tissue", + "Needle_extraction": "Extract the needle from the tissue", + "Needle_insertion": "Insert the needle into the tissue", + "Needle_positioning": "Position the needle for suturing", + "Tissue_Lift": "Lift the tissue flap to expose the workspace" + }, + "source_path": "/mnt/mitic-nas/Open_H_Embodiment/MITIC_UNITO/Ex_vivo", + "labels_used": { + "recovery": 54, + "perfect": 645, + "failure": 100 + } +} \ No newline at end of file diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/modality.json b/Surgical/turin/mitic_lerobot_ex_vivo/meta/modality.json new file mode 100644 index 0000000000000000000000000000000000000000..57c4beb7fd4fc3ff4d217048c756e5abf0052134 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/modality.json @@ -0,0 +1,46 @@ +{ + "video": { + "endoscope_left": { + "original_key": "observation.images.endoscope.left" + }, + "endoscope_right": { + "original_key": "observation.images.endoscope.right" + } + }, + "state": { + "psm1_joints": { + "start": 0, + "end": 6 + }, + "psm2_joints": { + "start": 6, + "end": 12 + }, + "psm1_pose": { + "start": 0, + "end": 7, + "original_key": "action" + }, + "psm2_pose": { + "start": 7, + "end": 14, + "original_key": "action" + } + }, + "action": { + "psm1_pose": { + "start": 0, + "end": 7 + }, + "psm2_pose": { + "start": 7, + "end": 14 + } + }, + "annotation": { + "instruction": { + "original_key": "instruction.text", + "is_text": true + } + } +} diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/percentile_stats.json b/Surgical/turin/mitic_lerobot_ex_vivo/meta/percentile_stats.json new file mode 100644 index 0000000000000000000000000000000000000000..887d72d84406fba629ea45205b25f6dd118d3aa7 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/percentile_stats.json @@ -0,0 +1,4322 @@ +{ + "state": { + "psm1_joints": { + "q01": [ + 0.3337761294841766, + -0.1883205409348011, + 0.09695054091513157, + -4.53810977935791, + -0.9725785851478577, + -1.1193717074394227 + ], + "q02": [ + 0.34936872124671936, + -0.1788662225008011, + 0.10504890725016594, + -4.537690162658691, + -0.8796958470344544, + -0.9998848593235016 + ], + "q98": [ + 0.6592819690704346, + 0.28905415534973145, + 0.16151801288127896, + 2.4697282314300537, + 1.119872808456421, + 1.3750462293624874 + ], + "q99": [ + 0.676948588490486, + 0.3060287535190582, + 0.1638630053400993, + 2.772648379802701, + 1.2018547058105469, + 1.3891472053527831 + ], + "mean": [ + 0.490536093711853, + -0.059541571885347366, + 0.13544967770576477, + -1.305800437927246, + 0.2026454210281372, + 0.22189632058143616 + ], + "std": [ + 0.07889800518751144, + 0.09694094210863113, + 0.012440672144293785, + 1.5271692276000977, + 0.5165963172912598, + 0.5797476768493652 + ], + "min": [ + 0.08974587917327881, + -0.28353241086006165, + 0.06284543871879578, + -4.556143283843994, + -1.3651353120803833, + -1.420839786529541 + ], + "max": [ + 0.753754198551178, + 0.35110631585121155, + 0.17488767206668854, + 4.23280143737793, + 1.4719849824905396, + 1.497558832168579 + ] + }, + "psm2_joints": { + "q01": [ + -0.6340101772546768, + -0.5166169220209121, + 0.14864478319883345, + -1.4719415891170502, + -1.0940485000610352, + -1.1427078974246978 + ], + "q02": [ + -0.6189538836479187, + -0.506742537021637, + 0.15212999284267426, + -0.051164351403713226, + -1.0074208974838257, + -1.0110493445396422 + ], + "q98": [ + -0.2733384072780609, + -0.03333131968975067, + 0.20160708039999004, + 4.53810977935791, + 1.079018473625183, + 1.1502966403961175 + ], + "q99": [ + -0.2558232545852661, + -0.024511950090527534, + 0.20354633241891856, + 4.538528919219971, + 1.215245008468628, + 1.3075583600997924 + ], + "mean": [ + -0.4912637770175934, + -0.32334327697753906, + 0.17848889529705048, + 2.4842658042907715, + -0.05362014099955559, + 0.05419819429516792 + ], + "std": [ + 0.08168958872556686, + 0.10889630764722824, + 0.012622548267245293, + 1.4718296527862549, + 0.5318542122840881, + 0.5422285795211792 + ], + "min": [ + -0.7376059293746948, + -0.5736677646636963, + 0.1285828948020935, + -4.542722702026367, + -1.4260751008987427, + -1.449070692062378 + ], + "max": [ + -0.1614900678396225, + 0.023948190733790398, + 0.22009319067001343, + 4.557191371917725, + 1.5165284872055054, + 1.9941186904907227 + ] + }, + "psm1_pose": { + "q01": [ + -0.14700351133942605, + -0.10851131416857243, + 0.10427004911005497, + -0.5011460065841675, + -0.6150340282917023, + -0.6405632281303406, + -0.5761803609132766 + ], + "q02": [ + -0.1420533201098442, + -0.1070335802435875, + 0.10728372931480408, + -0.4457537001371384, + -0.5974981498718261, + -0.6081210887432098, + -0.5497907090187073 + ], + "q98": [ + -0.07515962898731235, + -0.03122309055179364, + 0.1524435016512871, + 0.7307345950603484, + 0.78447340965271, + 0.91988286614418, + 0.900603014230728 + ], + "q99": [ + -0.07150086171925069, + -0.028944409191608456, + 0.15423167884349823, + 0.7529063141345977, + 0.8199422359466553, + 0.9468209326267242, + 0.9325071126222609 + ], + "mean": [ + -0.11395716667175293, + -0.08579336851835251, + 0.12895697355270386, + 0.3053778111934662, + -0.00404189620167017, + 0.4526602327823639, + 0.0988493487238884 + ], + "std": [ + 0.016442857682704926, + 0.01568719558417797, + 0.010110296308994293, + 0.30499783158302307, + 0.43391555547714233, + 0.4627501964569092, + 0.4432919919490814 + ], + "min": [ + -0.18929222226142883, + -0.11857771873474121, + 0.08011388778686523, + -0.635361909866333, + -0.6863210201263428, + -0.6879675984382629, + -0.6942304372787476 + ], + "max": [ + -0.06366249173879623, + -0.020531464368104935, + 0.16333672404289246, + 0.9134082198143005, + 0.9063971042633057, + 0.9975486993789673, + 0.996588945388794 + ] + }, + "psm2_pose": { + "q01": [ + 0.09982002854347229, + -0.15129468321800232, + 0.07232028566300869, + -0.5314237403869629, + -0.6077127730846406, + -0.5937735432386398, + -0.6009206730127334 + ], + "q02": [ + 0.1021451298892498, + -0.14915814250707626, + 0.07481731578707695, + -0.5060027039051056, + -0.5883738589286804, + -0.5624324238300323, + -0.5689133775234222 + ], + "q98": [ + 0.15627814829349518, + -0.07326109707355499, + 0.12157138153910632, + 0.5858983039855956, + 0.6551343512535094, + 0.9569090712070465, + 0.983917236328125 + ], + "q99": [ + 0.15869340568780893, + -0.0715140774846077, + 0.12382423132658005, + 0.6329265052080153, + 0.6983222079277037, + 0.9761039477586746, + 0.9898784345388412 + ], + "mean": [ + 0.12251029163599014, + -0.11671632528305054, + 0.0953560397028923, + 0.0446416512131691, + -0.25717195868492126, + 0.2683495283126831, + 0.5575048923492432 + ], + "std": [ + 0.012782727368175983, + 0.017551781609654427, + 0.011830410920083523, + 0.3181280195713043, + 0.26721063256263733, + 0.47126060724258423, + 0.39285674691200256 + ], + "min": [ + 0.08480814099311829, + -0.15859682857990265, + 0.0589338019490242, + -0.6420541405677795, + -0.7048074007034302, + -0.7033143639564514, + -0.705171525478363 + ], + "max": [ + 0.1723373681306839, + -0.06583588570356369, + 0.1314305067062378, + 0.8502479791641235, + 0.9033641219139099, + 0.9998450875282288, + 0.999701201915741 + ] + } + }, + "action": { + "psm1_pose": { + "q01": [ + [ + -0.0007519812881946564, + -0.0007759080082178116, + -0.0008505880832672119 + ], + [ + -0.0014736808836460114, + -0.0015219584852457046, + -0.0016633586585521698 + ], + [ + -0.0021723978221416473, + -0.0022251419723033905, + -0.0024558117240667345 + ], + [ + -0.0028488436341285706, + -0.002899744063615799, + -0.003230456039309502 + ], + [ + -0.003507616296410561, + -0.003536448031663895, + -0.00398563638329506 + ], + [ + -0.004123648181557656, + -0.004152193143963814, + -0.004702086150646209 + ], + [ + -0.004735311418771744, + -0.0047142674773931505, + -0.005398489534854889 + ], + [ + -0.005308364406228065, + -0.005264630615711212, + -0.006058434024453163 + ], + [ + -0.005858637019991875, + -0.005784541219472885, + -0.0066815105080604556 + ], + [ + -0.006409098133444786, + -0.006300958022475243, + -0.00727779895067215 + ], + [ + -0.006905774623155594, + -0.006780870445072651, + -0.007824077904224395 + ], + [ + -0.007384044975042343, + -0.007216451019048691, + -0.008353968411684036 + ], + [ + -0.007879526242613793, + -0.00765129640698433, + -0.008848125636577607 + ], + [ + -0.008314533457159996, + -0.008052696585655213, + -0.009320188388228417 + ], + [ + -0.008752749487757684, + -0.00843656711280346, + -0.0097592031955719 + ], + [ + -0.009172309711575509, + -0.008806799873709678, + -0.010191138982772827 + ], + [ + -0.009591310769319534, + -0.009162743166089058, + -0.01057745523750782 + ], + [ + -0.009994108378887177, + -0.00950442060828209, + -0.010967199206352234 + ], + [ + -0.0104176976531744, + -0.009823568128049374, + -0.011308427304029464 + ], + [ + -0.010800038352608681, + -0.01013971857726574, + -0.011658694222569465 + ], + [ + -0.011156957671046257, + -0.010439633801579475, + -0.011987295746803284 + ], + [ + -0.011476866379380226, + -0.010714216530323029, + -0.012269774079322815 + ], + [ + -0.011793518587946892, + -0.010993865057826043, + -0.012552293911576272 + ], + [ + -0.0121186875551939, + -0.011264045983552932, + -0.012812032476067544 + ], + [ + -0.012414588332176209, + -0.011495881602168084, + -0.0130896657705307 + ], + [ + -0.012763000577688218, + -0.011718615740537643, + -0.01333856113255024 + ], + [ + -0.013080435022711754, + -0.011945337355136872, + -0.0135702433437109 + ], + [ + -0.013374945521354676, + -0.01217466101050377, + -0.013798278495669366 + ], + [ + -0.013625456094741821, + -0.012391345500946045, + -0.014016707092523575 + ], + [ + -0.013885830789804458, + -0.012623292803764343, + -0.01420981340110302 + ], + [ + -0.014154326915740967, + -0.012844749987125396, + -0.014437555223703385 + ], + [ + -0.01441047839820385, + -0.013086806535720825, + -0.014641002267599106 + ], + [ + -0.014642595201730729, + -0.013313239514827728, + -0.01486164502799511 + ], + [ + -0.014866046458482742, + -0.0135385961830616, + -0.015033138543367386 + ], + [ + -0.015113628134131432, + -0.013723236545920373, + -0.015224068909883499 + ], + [ + -0.015368387922644616, + -0.013902201578021049, + -0.015391484051942825 + ], + [ + -0.015561659708619119, + -0.014091165289282798, + -0.01558790884912014 + ], + [ + -0.01575962223112583, + -0.014257524386048317, + -0.015768125355243683 + ], + [ + -0.015936651900410652, + -0.014432577341794968, + -0.01593988798558712 + ], + [ + -0.0161371398717165, + -0.014592861086130142, + -0.016101743578910827 + ], + [ + -0.016349175199866294, + -0.014800960049033165, + -0.016266250163316728 + ], + [ + -0.016527385041117667, + -0.014955026656389236, + -0.016446155682206153 + ], + [ + -0.016703716069459914, + -0.015112554281949997, + -0.016595179736614226 + ], + [ + -0.016893890500068665, + -0.015250052362680436, + -0.016739278957247736 + ], + [ + -0.017105718329548835, + -0.01539392925798893, + -0.016873080506920813 + ], + [ + -0.017272348776459695, + -0.015520064681768418, + -0.017038434743881226 + ], + [ + -0.01743542939424515, + -0.015669430121779442, + -0.01718774490058422 + ], + [ + -0.017546500712633133, + -0.015806530490517615, + -0.017323382124304773 + ], + [ + -0.01769408605992794, + -0.01591704398393631, + -0.017449991926550865 + ], + [ + -0.017844268903136253, + -0.016007975190877915, + -0.01759351447224617 + ] + ], + "q02": [ + [ + -0.0005672283470630646, + -0.0005942168831825257, + -0.0006593631207942963 + ], + [ + -0.0011150769889354706, + -0.001160290390253067, + -0.0013017851114273072 + ], + [ + -0.0016410814225673676, + -0.001709255874156952, + -0.0019284896552562714 + ], + [ + -0.002161139249801636, + -0.002238223105669022, + -0.0025386320054531096 + ], + [ + -0.0026608195900917056, + -0.0027381502091884612, + -0.003124183863401413 + ], + [ + -0.0031429560482501987, + -0.003219151347875595, + -0.0036958612501621245 + ], + [ + -0.0036070716381073, + -0.003665527403354645, + -0.004243756234645843 + ], + [ + -0.004046602100133896, + -0.004100063592195511, + -0.0047738470137119295 + ], + [ + -0.004473518878221512, + -0.004519408494234085, + -0.005276126116514206 + ], + [ + -0.004874414950609207, + -0.004922180473804474, + -0.005757811963558197 + ], + [ + -0.005280080139636993, + -0.005305726230144501, + -0.006230163276195526 + ], + [ + -0.005660694241523743, + -0.005668644458055496, + -0.006651093810796737 + ], + [ + -0.006029531210660934, + -0.00602444589138031, + -0.0070683231949806215 + ], + [ + -0.006373515725135804, + -0.006353750377893448, + -0.007454147189855576 + ], + [ + -0.006708962619304657, + -0.00666828915476799, + -0.007810079157352447 + ], + [ + -0.007002373337745667, + -0.006972300261259079, + -0.0081603741645813 + ], + [ + -0.0072974032163619995, + -0.007271016538143158, + -0.008487646728754043 + ], + [ + -0.007582514584064484, + -0.0075664550065994264, + -0.00878196969628334 + ], + [ + -0.0078713096678257, + -0.007856600433588028, + -0.00907026544213295 + ], + [ + -0.008145206719636916, + -0.008122147023677827, + -0.009347731620073319 + ], + [ + -0.00841221809387207, + -0.008367684334516526, + -0.009623939245939255 + ], + [ + -0.008664571046829224, + -0.00859690248966217, + -0.009863691478967667 + ], + [ + -0.008906374573707581, + -0.008845970630645753, + -0.010116333961486817 + ], + [ + -0.009140078127384186, + -0.009050455987453462, + -0.01034540519118309 + ], + [ + -0.009369857907295227, + -0.00925056129693985, + -0.010576761960983276 + ], + [ + -0.009577323496341706, + -0.009457837343215942, + -0.010802011936903 + ], + [ + -0.009810491353273392, + -0.009654784351587295, + -0.011029029488563538 + ], + [ + -0.010003161877393724, + -0.009876399338245393, + -0.011267222911119461 + ], + [ + -0.010228109508752824, + -0.01006746307015419, + -0.011490100622177124 + ], + [ + -0.010444696247577668, + -0.010268045365810394, + -0.011707247644662857 + ], + [ + -0.010622979402542114, + -0.010439543128013611, + -0.01190375730395317 + ], + [ + -0.01081144854426384, + -0.010604461282491684, + -0.012093310207128526 + ], + [ + -0.011011808365583419, + -0.010754463523626327, + -0.012279759347438812 + ], + [ + -0.01121297687292099, + -0.010905003547668457, + -0.012464025020599366 + ], + [ + -0.011397671401500702, + -0.01106077566742897, + -0.012632908076047897 + ], + [ + -0.011596315801143647, + -0.011191930323839187, + -0.012787372618913651 + ], + [ + -0.011775402426719666, + -0.011334472447633743, + -0.012940903306007386 + ], + [ + -0.011957233995199204, + -0.011483639180660248, + -0.013104262948036195 + ], + [ + -0.012126033753156662, + -0.01163965865969658, + -0.013248662352561951 + ], + [ + -0.012283088117837907, + -0.01177429884672165, + -0.013390697240829467 + ], + [ + -0.012430258393287659, + -0.011907943189144135, + -0.01353176862001419 + ], + [ + -0.012604424059391023, + -0.012040612101554871, + -0.013668976873159409 + ], + [ + -0.012743599563837051, + -0.01215886190533638, + -0.013793632835149765 + ], + [ + -0.012891953140497209, + -0.012295406013727188, + -0.013912134021520615 + ], + [ + -0.01302948608994484, + -0.012437552213668823, + -0.014036094844341278 + ], + [ + -0.01315969854593277, + -0.012579751014709473, + -0.014167244285345078 + ], + [ + -0.013281245976686477, + -0.012713132351636887, + -0.014307844787836074 + ], + [ + -0.013423057943582535, + -0.012859901338815689, + -0.014436802864074706 + ], + [ + -0.013560550510883332, + -0.0129948990046978, + -0.014560993611812591 + ], + [ + -0.013689285963773728, + -0.013124494552612305, + -0.014676833897829056 + ] + ], + "q98": [ + [ + 0.0005898846685886364, + 0.0006580054759979248, + 0.0005963882803916923 + ], + [ + 0.001164385825395584, + 0.001296723037958145, + 0.0011696748435497274 + ], + [ + 0.0017147293686866731, + 0.0019114281237125382, + 0.0017229016125202123 + ], + [ + 0.002255408763885483, + 0.0025073678791522978, + 0.0022693318128585716 + ], + [ + 0.0027646009624004066, + 0.0030845393240451786, + 0.0027936646342277514 + ], + [ + 0.003251743465661998, + 0.003628950864076613, + 0.0033003723621368337 + ], + [ + 0.0037249574065208423, + 0.004158388078212734, + 0.0037908132374286554 + ], + [ + 0.004175368100404737, + 0.004662352800369248, + 0.004250612407922743 + ], + [ + 0.004617826044559448, + 0.0051456131041049905, + 0.0046960270404815645 + ], + [ + 0.005049951225519178, + 0.005608388930559158, + 0.005126514136791226 + ], + [ + 0.0054575721919536534, + 0.006053844019770619, + 0.005528615713119498 + ], + [ + 0.005851491242647168, + 0.006481985747814174, + 0.005925921797752379 + ], + [ + 0.006218559890985477, + 0.006892305985093115, + 0.006285629272460937 + ], + [ + 0.006574977934360467, + 0.007287734895944595, + 0.006622665375471114 + ], + [ + 0.006913026124238957, + 0.007676874548196792, + 0.006958225816488249 + ], + [ + 0.007220767587423285, + 0.008031028956174842, + 0.007280270904302595 + ], + [ + 0.007514715790748583, + 0.008377119265496715, + 0.007573834061622611 + ], + [ + 0.007801207751035684, + 0.008711547404527653, + 0.007865259200334549 + ], + [ + 0.008069644272327401, + 0.009038163870573037, + 0.008132528066635131 + ], + [ + 0.008327175378799418, + 0.009350758343935011, + 0.008399895578622798 + ], + [ + 0.00858903422951693, + 0.009650973901152608, + 0.008624053150415414 + ], + [ + 0.008807438760995863, + 0.009967193752527236, + 0.008858335614204398 + ], + [ + 0.009051172584295266, + 0.010257753133773802, + 0.009082732796668994 + ], + [ + 0.009285673797130526, + 0.010534847676753976, + 0.009284932613372772 + ], + [ + 0.009493466168642035, + 0.010811878740787498, + 0.009496274590492213 + ], + [ + 0.00969452306628227, + 0.011078414767980575, + 0.009709980636835097 + ], + [ + 0.009891138970851896, + 0.011336014866828913, + 0.00990887433290481 + ], + [ + 0.010075610280036923, + 0.011589394360780691, + 0.010100455582141874 + ], + [ + 0.01028891593217849, + 0.01183056265115737, + 0.010276635289192197 + ], + [ + 0.010469660311937324, + 0.012052464336156839, + 0.010463131964206677 + ], + [ + 0.010658695250749564, + 0.012276079356670362, + 0.010634611546993241 + ], + [ + 0.01082372888922691, + 0.012474696040153496, + 0.010817347019910809 + ], + [ + 0.011009818762540804, + 0.012695673108100866, + 0.010977986752986908 + ], + [ + 0.011167148053646079, + 0.012901276126503942, + 0.011142264306545243 + ], + [ + 0.011333202570676755, + 0.013093616813421192, + 0.011303623467683791 + ], + [ + 0.01149832546710965, + 0.013276467174291604, + 0.011444582790136328 + ], + [ + 0.011620350927114475, + 0.013447143584489786, + 0.011609097570180875 + ], + [ + 0.011749698817729928, + 0.013614736944437022, + 0.011758757382631274 + ], + [ + 0.011905748397111825, + 0.013773182667791824, + 0.01192323818802832 + ], + [ + 0.01205570176243779, + 0.013909788578748692, + 0.012072583436965927 + ], + [ + 0.012216986566781983, + 0.014052505940198886, + 0.012215750664472577 + ], + [ + 0.01233834803104399, + 0.014170882143080193, + 0.012368161529302596 + ], + [ + 0.012475426942110032, + 0.014313771724700889, + 0.012501602321863174 + ], + [ + 0.01260611742734909, + 0.014418014436960202, + 0.012636303454637522 + ], + [ + 0.012714441269636152, + 0.01453690037131307, + 0.01275746092200279 + ], + [ + 0.01281898871064186, + 0.01465026110410687, + 0.012887895554304097 + ], + [ + 0.012922455668449379, + 0.014745499789714806, + 0.013022376298904417 + ], + [ + 0.01303558528423307, + 0.014850549325346945, + 0.01313814505934715 + ], + [ + 0.01314675137400625, + 0.014952642470598193, + 0.01326721936464308 + ], + [ + 0.013249694108962998, + 0.015067426711320867, + 0.013399384170770625 + ] + ], + "q99": [ + [ + 0.0007906841486692425, + 0.0008462619036436045, + 0.0007570360600948327 + ], + [ + 0.0015534265339374482, + 0.0016451893001794777, + 0.001480017676949501 + ], + [ + 0.0022871808707713975, + 0.0024190100282430625, + 0.002184547334909437 + ], + [ + 0.003006712347269057, + 0.0031733421236276567, + 0.002877729535102843 + ], + [ + 0.0036894554644822915, + 0.003891200944781302, + 0.003540937006473538 + ], + [ + 0.004348597005009649, + 0.004581242874264713, + 0.004165596216917035 + ], + [ + 0.004996494278311724, + 0.005251292660832401, + 0.004762810394167898 + ], + [ + 0.0056035557389259305, + 0.005878374278545373, + 0.0053482588380575164 + ], + [ + 0.006183164939284321, + 0.006494262814521777, + 0.005894780531525611 + ], + [ + 0.006746265664696647, + 0.007057115957140903, + 0.0064203892648220014 + ], + [ + 0.007271343618631363, + 0.007609085738658903, + 0.00693284288048744 + ], + [ + 0.007772538587450968, + 0.008119857758283612, + 0.00738906323909759 + ], + [ + 0.008219735324382749, + 0.008582874238491016, + 0.00783446349203586 + ], + [ + 0.00867680303752422, + 0.009064135178923599, + 0.00825340576469898 + ], + [ + 0.009098612889647483, + 0.009520993381738651, + 0.008642096966505036 + ], + [ + 0.009505898207426066, + 0.009974296912550924, + 0.009026778116822214 + ], + [ + 0.009902621284127219, + 0.010380724444985386, + 0.009348409548401812 + ], + [ + 0.010257864966988536, + 0.010800849795341488, + 0.009675367847084972 + ], + [ + 0.010614246875047662, + 0.011197691112756729, + 0.009969206228852265 + ], + [ + 0.010995543003082267, + 0.011601331755518904, + 0.010268862694501864 + ], + [ + 0.01131074458360672, + 0.011959618926048278, + 0.010531067252159111 + ], + [ + 0.011600275859236713, + 0.01234444484114646, + 0.010799260437488554 + ], + [ + 0.011860133409500095, + 0.012703972682356832, + 0.01105265974998474 + ], + [ + 0.012106327041983583, + 0.01307605244219303, + 0.011308994367718688 + ], + [ + 0.01234286718070507, + 0.013405821099877348, + 0.01154334329068659 + ], + [ + 0.012561714202165558, + 0.013750115036964383, + 0.011762357503175726 + ], + [ + 0.012794951200485183, + 0.014062147811055165, + 0.011978569775819776 + ], + [ + 0.01303757339715957, + 0.014398882947862122, + 0.01219275936484336 + ], + [ + 0.013252622559666617, + 0.014695549067109815, + 0.012407996132969824 + ], + [ + 0.013451018109917633, + 0.014960676059126845, + 0.012603884339332565 + ], + [ + 0.013633093833923329, + 0.015222541540861124, + 0.012786259055137632 + ], + [ + 0.013813231214880841, + 0.01547461114823816, + 0.012962491735815984 + ], + [ + 0.013951477855443933, + 0.015751032531261415, + 0.0131394026428461 + ], + [ + 0.014087472110986704, + 0.01599314138293266, + 0.013306847289204594 + ], + [ + 0.01425108604133123, + 0.016254877783358084, + 0.013495458140969266 + ], + [ + 0.014399456530809382, + 0.01648679763078687, + 0.013676416054368017 + ], + [ + 0.014547597169876067, + 0.01670498408377168, + 0.013870024159550631 + ], + [ + 0.014696506038308136, + 0.016928664445877043, + 0.014087525978684404 + ], + [ + 0.014838435202836986, + 0.017130669206380837, + 0.014255793988704666 + ], + [ + 0.014964062646031378, + 0.01727725006639957, + 0.014423112869262695 + ], + [ + 0.015092548429965953, + 0.0174500797688961, + 0.01460356593132017 + ], + [ + 0.015227003172039979, + 0.017621250487864008, + 0.014769952520728099 + ], + [ + 0.015324922874569834, + 0.017802856713533398, + 0.014934925213456123 + ], + [ + 0.015457683652639385, + 0.01795787528157232, + 0.01508508190512657 + ], + [ + 0.015575636699795718, + 0.018153172954916946, + 0.015234913825988756 + ], + [ + 0.015707123056054113, + 0.01830443784594534, + 0.015374443829059583 + ], + [ + 0.01584815293550491, + 0.018446644097566606, + 0.015511827692389478 + ], + [ + 0.015957177430391302, + 0.018595329821109764, + 0.015660116970539092 + ], + [ + 0.016098636165261266, + 0.01876465965062375, + 0.015817277207970614 + ], + [ + 0.016251704394817337, + 0.018907069824635976, + 0.015956329777836793 + ] + ], + "mean": [ + [ + -2.2845613329991465e-06, + -4.593245648720767e-06, + 2.2840790734335314e-06 + ], + [ + -4.878456365986494e-06, + -9.058847354026511e-06, + 4.592257937474642e-06 + ], + [ + -7.790405106788967e-06, + -1.3379672964219935e-05, + 6.931224106665468e-06 + ], + [ + -1.1010619346052408e-05, + -1.754098957462702e-05, + 9.289146873925347e-06 + ], + [ + -1.4552860193361994e-05, + -2.15487143577775e-05, + 1.1662454198813066e-05 + ], + [ + -1.8415306840324774e-05, + -2.5406487111467868e-05, + 1.4048113371245563e-05 + ], + [ + -2.259962093376089e-05, + -2.9103635824867524e-05, + 1.6430316463811323e-05 + ], + [ + -2.7113512260257266e-05, + -3.264926272095181e-05, + 1.880780291685369e-05 + ], + [ + -3.195711542502977e-05, + -3.604613812058233e-05, + 2.1183233911870047e-05 + ], + [ + -3.712179750436917e-05, + -3.927466241293587e-05, + 2.3549517209175974e-05 + ], + [ + -4.2612384277163073e-05, + -4.2336047044955194e-05, + 2.5905728762154467e-05 + ], + [ + -4.841994814341888e-05, + -4.524041651166044e-05, + 2.8253989512450062e-05 + ], + [ + -5.4531992645934224e-05, + -4.798357258550823e-05, + 3.057794310734607e-05 + ], + [ + -6.094072523410432e-05, + -5.056735244579613e-05, + 3.2865686080185696e-05 + ], + [ + -6.762327393516898e-05, + -5.2996911108493805e-05, + 3.511758768581785e-05 + ], + [ + -7.457823812728748e-05, + -5.5290674936259165e-05, + 3.7319969123927876e-05 + ], + [ + -8.180172153515741e-05, + -5.746338138123974e-05, + 3.947188815800473e-05 + ], + [ + -8.926388545660302e-05, + -5.952538049314171e-05, + 4.1584629798308015e-05 + ], + [ + -9.69427710515447e-05, + -6.148358806967735e-05, + 4.3656586058204994e-05 + ], + [ + -0.00010482685320312157, + -6.334127101581544e-05, + 4.569964585243724e-05 + ], + [ + -0.00011289498797850683, + -6.510754610644653e-05, + 4.7728368372190744e-05 + ], + [ + -0.00012112243712181225, + -6.678949284832925e-05, + 4.973594332113862e-05 + ], + [ + -0.00012948237417731434, + -6.839829438831657e-05, + 5.171188968233764e-05 + ], + [ + -0.00013794809638056904, + -6.995673902565613e-05, + 5.366628465708345e-05 + ], + [ + -0.00014650811499450356, + -7.146997086238116e-05, + 5.561043508350849e-05 + ], + [ + -0.0001551470486447215, + -7.29490930098109e-05, + 5.75375888729468e-05 + ], + [ + -0.00016384301125071943, + -7.440305489581078e-05, + 5.944090662524104e-05 + ], + [ + -0.00017258411389775574, + -7.582283433293924e-05, + 6.131683039711788e-05 + ], + [ + -0.00018137149163521826, + -7.723161979811266e-05, + 6.317224324448034e-05 + ], + [ + -0.00019020773470401764, + -7.864140206947923e-05, + 6.502078758785501e-05 + ], + [ + -0.00019908547983504832, + -8.004710980458185e-05, + 6.686383858323097e-05 + ], + [ + -0.00020801130449399352, + -8.146004984155297e-05, + 6.868624041089788e-05 + ], + [ + -0.00021696393378078938, + -8.286868978757411e-05, + 7.05117781762965e-05 + ], + [ + -0.00022593246831092983, + -8.42661174829118e-05, + 7.232413190649822e-05 + ], + [ + -0.00023490357853006572, + -8.565157622797415e-05, + 7.410623948089778e-05 + ], + [ + -0.00024387246230617166, + -8.703114144736901e-05, + 7.586700667161494e-05 + ], + [ + -0.00025284220464527607, + -8.840933151077479e-05, + 7.75912994868122e-05 + ], + [ + -0.00026182018336839974, + -8.977939432952553e-05, + 7.92905775597319e-05 + ], + [ + -0.00027080433210358024, + -9.114445128943771e-05, + 8.098367834463716e-05 + ], + [ + -0.000279787287581712, + -9.250340372091159e-05, + 8.26617397251539e-05 + ], + [ + -0.00028878406737931073, + -9.38507218961604e-05, + 8.434997289441526e-05 + ], + [ + -0.00029779408941976726, + -9.518914157524705e-05, + 8.606327173765749e-05 + ], + [ + -0.00030681423959322274, + -9.652143489802256e-05, + 8.781516953604296e-05 + ], + [ + -0.00031585266697220504, + -9.7840660600923e-05, + 8.96044512046501e-05 + ], + [ + -0.00032489385921508074, + -9.915106056723744e-05, + 9.144569776253775e-05 + ], + [ + -0.0003339621762279421, + -0.00010045595263363793, + 9.335391223430634e-05 + ], + [ + -0.0003430406213738024, + -0.00010174825001740828, + 9.5328752649948e-05 + ], + [ + -0.00035213763476349413, + -0.00010304080205969512, + 9.736444189911708e-05 + ], + [ + -0.0003612498694565147, + -0.00010433635907247663, + 9.947000944521278e-05 + ], + [ + -0.0003703562542796135, + -0.00010564168042037636, + 0.00010163846309296787 + ] + ], + "std": [ + [ + 0.0002497098466847092, + 0.00027018049149774015, + 0.00026647280901670456 + ], + [ + 0.0004898473271168768, + 0.0005291162524372339, + 0.0005230148672126234 + ], + [ + 0.0007225847220979631, + 0.0007788647199049592, + 0.0007730615325272083 + ], + [ + 0.0009487181669101119, + 0.0010204643476754427, + 0.001017794944345951 + ], + [ + 0.0011665999190881848, + 0.0012523316545411944, + 0.0012550163082778454 + ], + [ + 0.0013760164147242904, + 0.0014743665233254433, + 0.0014839788200333714 + ], + [ + 0.001577812246978283, + 0.0016875345027074218, + 0.0017050444148480892 + ], + [ + 0.0017722202464938164, + 0.00189229566603899, + 0.0019180193776264787 + ], + [ + 0.001959287328645587, + 0.0020891616586595774, + 0.002122783800587058 + ], + [ + 0.0021391422487795353, + 0.002278431784361601, + 0.002319264691323042 + ], + [ + 0.0023116241209208965, + 0.002460162155330181, + 0.002507331781089306 + ], + [ + 0.002476740162819624, + 0.0026344922371208668, + 0.0026871280279010534 + ], + [ + 0.002634674310684204, + 0.002801709109917283, + 0.0028587563429027796 + ], + [ + 0.002785662654787302, + 0.0029620283748954535, + 0.0030225624796003103 + ], + [ + 0.002929981565102935, + 0.0031159294303506613, + 0.0031788318883627653 + ], + [ + 0.0030682396609336138, + 0.0032638488337397575, + 0.0033279822673648596 + ], + [ + 0.003200831823050976, + 0.0034062969498336315, + 0.003470393130555749 + ], + [ + 0.0033282560762017965, + 0.0035435911267995834, + 0.0036063892766833305 + ], + [ + 0.0034509641118347645, + 0.0036762109957635403, + 0.003736355109140277 + ], + [ + 0.0035693799145519733, + 0.003804354462772608, + 0.0038607472088187933 + ], + [ + 0.0036839554086327553, + 0.003928366117179394, + 0.003979870583862066 + ], + [ + 0.0037949462421238422, + 0.004048345610499382, + 0.004094128031283617 + ], + [ + 0.0039026918821036816, + 0.00416460819542408, + 0.0042036790400743484 + ], + [ + 0.004007376730442047, + 0.004277259111404419, + 0.0043090167455375195 + ], + [ + 0.004109363071620464, + 0.004386383108794689, + 0.004410424269735813 + ], + [ + 0.004208746366202831, + 0.004492183681577444, + 0.004508123733103275 + ], + [ + 0.004305854439735413, + 0.004594890400767326, + 0.004602435044944286 + ], + [ + 0.004400710109621286, + 0.004694595001637936, + 0.004693620838224888 + ], + [ + 0.004493501503020525, + 0.004791301675140858, + 0.004781854804605246 + ], + [ + 0.004584277514368296, + 0.0048851557075977325, + 0.004867218900471926 + ], + [ + 0.004673105664551258, + 0.004976261407136917, + 0.004949977621436119 + ], + [ + 0.004759978502988815, + 0.005064719822257757, + 0.00503032561391592 + ], + [ + 0.004844991490244865, + 0.005150712560862303, + 0.0051083043217659 + ], + [ + 0.004928126465529203, + 0.005234104581177235, + 0.005184166133403778 + ], + [ + 0.005009595304727554, + 0.005315165035426617, + 0.005257909186184406 + ], + [ + 0.005089276470243931, + 0.005393946543335915, + 0.005329802632331848 + ], + [ + 0.005167247727513313, + 0.0054705324582755566, + 0.005399979650974274 + ], + [ + 0.005243595689535141, + 0.005544981453567743, + 0.005468395538628101 + ], + [ + 0.005318415351212025, + 0.005617394112050533, + 0.0055352626368403435 + ], + [ + 0.005391686223447323, + 0.005687961354851723, + 0.005600559059530497 + ], + [ + 0.005463451147079468, + 0.005756690166890621, + 0.005664493422955275 + ], + [ + 0.00553382933139801, + 0.0058236680924892426, + 0.005727056413888931 + ], + [ + 0.005602771416306496, + 0.005888964515179396, + 0.005788348615169525 + ], + [ + 0.00567041477188468, + 0.005952734965831041, + 0.005848398897796869 + ], + [ + 0.00573672354221344, + 0.006015000864863396, + 0.005907268263399601 + ], + [ + 0.0058019161224365234, + 0.00607571005821228, + 0.005965092219412327 + ], + [ + 0.005865730810910463, + 0.006135079078376293, + 0.006021867040544748 + ], + [ + 0.005928411148488522, + 0.006193147040903568, + 0.006077572703361511 + ], + [ + 0.0059898472391068935, + 0.0062498664483428, + 0.0061322953552007675 + ], + [ + 0.006050087045878172, + 0.006305250804871321, + 0.006186078768223524 + ] + ], + "min": [ + [ + -0.00629761815071106, + -0.002994127571582794, + -0.0038773566484451294 + ], + [ + -0.010465070605278015, + -0.00546158105134964, + -0.006148912012577057 + ], + [ + -0.014550700783729553, + -0.007723420858383179, + -0.008342869579792023 + ], + [ + -0.01842091977596283, + -0.010633692145347595, + -0.00953652709722519 + ], + [ + -0.02150660753250122, + -0.012845858931541443, + -0.01163366436958313 + ], + [ + -0.025355800986289978, + -0.015042528510093689, + -0.013603299856185913 + ], + [ + -0.028476089239120483, + -0.01790645346045494, + -0.016126126050949097 + ], + [ + -0.031277090311050415, + -0.02005956321954727, + -0.017951272428035736 + ], + [ + -0.03393259644508362, + -0.022186338901519775, + -0.019681699573993683 + ], + [ + -0.036488473415374756, + -0.02467390149831772, + -0.02139144390821457 + ], + [ + -0.03822624683380127, + -0.026498943567276, + -0.02293235808610916 + ], + [ + -0.03950399160385132, + -0.02795543521642685, + -0.024662785232067108 + ], + [ + -0.040494054555892944, + -0.02935255691409111, + -0.026131853461265564 + ], + [ + -0.040953636169433594, + -0.030638378113508224, + -0.027252495288848877 + ], + [ + -0.04121202230453491, + -0.03151755779981613, + -0.02823442965745926 + ], + [ + -0.041219860315322876, + -0.03202231600880623, + -0.02908191829919815 + ], + [ + -0.04121871292591095, + -0.032490286976099014, + -0.029652923345565796 + ], + [ + -0.04121917486190796, + -0.03292355686426163, + -0.030029907822608948 + ], + [ + -0.041227489709854126, + -0.03320503979921341, + -0.030174322426319122 + ], + [ + -0.04259490221738815, + -0.0335693433880806, + -0.030269242823123932 + ], + [ + -0.044025763869285583, + -0.03397165238857269, + -0.03023000806570053 + ], + [ + -0.04519442468881607, + -0.03455299139022827, + -0.030085884034633636 + ], + [ + -0.046304985880851746, + -0.035190075635910034, + -0.02987833321094513 + ], + [ + -0.04759271442890167, + -0.03616280481219292, + -0.029468797147274017 + ], + [ + -0.04885505139827728, + -0.037041984498500824, + -0.029866285622119904 + ], + [ + -0.05078067630529404, + -0.037820860743522644, + -0.030460797250270844 + ], + [ + -0.052440665662288666, + -0.03879387304186821, + -0.030883438885211945 + ], + [ + -0.054211921989917755, + -0.03967305272817612, + -0.03128407150506973 + ], + [ + -0.05598016828298569, + -0.04041890799999237, + -0.03163706511259079 + ], + [ + -0.058367080986499786, + -0.04103463143110275, + -0.031984053552150726 + ], + [ + -0.06008807569742203, + -0.04167264699935913, + -0.032156214118003845 + ], + [ + -0.06212867051362991, + -0.04217740520834923, + -0.032284364104270935 + ], + [ + -0.06355953216552734, + -0.04261067509651184, + -0.03238748013973236 + ], + [ + -0.06486630439758301, + -0.04301779717206955, + -0.032442718744277954 + ], + [ + -0.0660349652171135, + -0.04308127239346504, + -0.032488465309143066 + ], + [ + -0.06714552640914917, + -0.04314105585217476, + -0.03251561522483826 + ], + [ + -0.06814244389533997, + -0.043105240911245346, + -0.03251178562641144 + ], + [ + -0.0689573884010315, + -0.04308412969112396, + -0.032472625374794006 + ], + [ + -0.06952139735221863, + -0.04310893267393112, + -0.03251371532678604 + ], + [ + -0.06993836164474487, + -0.04314391314983368, + -0.032962553203105927 + ], + [ + -0.07021209597587585, + -0.043072644621133804, + -0.03340006619691849 + ], + [ + -0.0704546645283699, + -0.04291483387351036, + -0.03400631994009018 + ], + [ + -0.07063395529985428, + -0.04277830943465233, + -0.03446030616760254 + ], + [ + -0.07074597477912903, + -0.04258790239691734, + -0.035075172781944275 + ], + [ + -0.0708286315202713, + -0.04237815737724304, + -0.035579532384872437 + ], + [ + -0.07088956981897354, + -0.042139600962400436, + -0.03611405938863754 + ], + [ + -0.07087691873311996, + -0.041802991181612015, + -0.03662952035665512 + ], + [ + -0.07083138823509216, + -0.04131023585796356, + -0.037041641771793365 + ], + [ + -0.0707768052816391, + -0.040867943316698074, + -0.03738432377576828 + ], + [ + -0.0713096484541893, + -0.04037518799304962, + -0.03765746206045151 + ] + ], + "max": [ + [ + 0.005622968077659607, + 0.004217565059661865, + 0.0045098960399627686 + ], + [ + 0.009663239121437073, + 0.007455408573150635, + 0.007621482014656067 + ], + [ + 0.013332158327102661, + 0.010386548936367035, + 0.010749280452728271 + ], + [ + 0.017331033945083618, + 0.013476632535457611, + 0.012846454977989197 + ], + [ + 0.02066415548324585, + 0.0161113440990448, + 0.014064684510231018 + ], + [ + 0.022993624210357666, + 0.018124788999557495, + 0.014487132430076599 + ], + [ + 0.02494339644908905, + 0.019968077540397644, + 0.0163823664188385 + ], + [ + 0.026718869805336, + 0.021311722695827484, + 0.018123678863048553 + ], + [ + 0.028995782136917114, + 0.02215591073036194, + 0.0198187455534935 + ], + [ + 0.030823737382888794, + 0.02298537641763687, + 0.021913155913352966 + ], + [ + 0.032779812812805176, + 0.02352091670036316, + 0.02347336709499359 + ], + [ + 0.0351567268371582, + 0.02445707470178604, + 0.024825185537338257 + ], + [ + 0.03775060176849365, + 0.025386743247509003, + 0.026000864803791046 + ], + [ + 0.04012751579284668, + 0.026290960609912872, + 0.02710559219121933 + ], + [ + 0.04235421121120453, + 0.027123823761940002, + 0.028142906725406647 + ], + [ + 0.04443882405757904, + 0.028053492307662964, + 0.029098883271217346 + ], + [ + 0.046977654099464417, + 0.029095754027366638, + 0.030052535235881805 + ], + [ + 0.04867391288280487, + 0.030167963355779648, + 0.03055427223443985 + ], + [ + 0.05026896297931671, + 0.031552478671073914, + 0.031023748219013214 + ], + [ + 0.05200742185115814, + 0.03298201411962509, + 0.031435370445251465 + ], + [ + 0.05360247194766998, + 0.03428865969181061, + 0.03182066231966019 + ], + [ + 0.055029526352882385, + 0.035642560571432114, + 0.03212795406579971 + ], + [ + 0.0562942773103714, + 0.03707209601998329, + 0.032349005341529846 + ], + [ + 0.05753575265407562, + 0.038243718445301056, + 0.032569557428359985 + ], + [ + 0.05855342745780945, + 0.03927985578775406, + 0.03279031813144684 + ], + [ + 0.05957254767417908, + 0.04057030752301216, + 0.03301087021827698 + ], + [ + 0.06017841398715973, + 0.041405417025089264, + 0.033161938190460205 + ], + [ + 0.06072898209095001, + 0.04215819761157036, + 0.03328492492437363 + ], + [ + 0.061100199818611145, + 0.04308294877409935, + 0.03339749574661255 + ], + [ + 0.06145542860031128, + 0.04375430569052696, + 0.03360164910554886 + ], + [ + 0.06168365478515625, + 0.044410910457372665, + 0.033976949751377106 + ], + [ + 0.061898261308670044, + 0.04516313970088959, + 0.03430707007646561 + ], + [ + 0.061998218297958374, + 0.0458344966173172, + 0.03456511348485947 + ], + [ + 0.06214199960231781, + 0.04638838395476341, + 0.03477107733488083 + ], + [ + 0.06236948072910309, + 0.0468846932053566, + 0.034922607243061066 + ], + [ + 0.06259770691394806, + 0.047341227531433105, + 0.03506243973970413 + ], + [ + 0.06265409290790558, + 0.04792537912726402, + 0.035158880054950714 + ], + [ + 0.06267547607421875, + 0.04832317680120468, + 0.035217560827732086 + ], + [ + 0.06259657442569733, + 0.048712775111198425, + 0.0352395698428154 + ], + [ + 0.06249389052391052, + 0.04911025986075401, + 0.03522644191980362 + ], + [ + 0.06223095953464508, + 0.04949985817074776, + 0.03519885987043381 + ], + [ + 0.06193241477012634, + 0.04980437830090523, + 0.03537224978208542 + ], + [ + 0.06159059703350067, + 0.05010353773832321, + 0.036162927746772766 + ], + [ + 0.06122593581676483, + 0.05024421215057373, + 0.03681613504886627 + ], + [ + 0.06070208549499512, + 0.05037396401166916, + 0.03743397444486618 + ], + [ + 0.0602262020111084, + 0.05049104988574982, + 0.03793441504240036 + ], + [ + 0.05980353057384491, + 0.05051761493086815, + 0.038260623812675476 + ], + [ + 0.05942501127719879, + 0.05053943023085594, + 0.03847000002861023 + ], + [ + 0.05909505486488342, + 0.0505385659635067, + 0.03867451101541519 + ], + [ + 0.05889670550823212, + 0.05051514878869057, + 0.03878375142812729 + ] + ] + }, + "psm2_pose": { + "q01": [ + [ + -0.0007873573899269105, + -0.0007614824175834656, + -0.0008474363386631012 + ], + [ + -0.0015461386740207672, + -0.001505354568362236, + -0.0016704114526510238 + ], + [ + -0.002294325679540634, + -0.0022306475043296814, + -0.002481805831193924 + ], + [ + -0.0030273272097110747, + -0.002939899116754532, + -0.003286561444401741 + ], + [ + -0.0037321972101926806, + -0.00362812764942646, + -0.0040479983389377595 + ], + [ + -0.004393661543726921, + -0.004286268725991249, + -0.004788249507546425 + ], + [ + -0.0050401662290096285, + -0.004919984787702561, + -0.005523030757904053 + ], + [ + -0.005647142305970192, + -0.005540499538183212, + -0.0062086498737335205 + ], + [ + -0.00623527817428112, + -0.0061187101900577546, + -0.006889613941311836 + ], + [ + -0.006816513389348984, + -0.0067001874744892125, + -0.007534679695963859 + ], + [ + -0.007327837944030762, + -0.007229822650551796, + -0.008135382235050202 + ], + [ + -0.007835301160812378, + -0.007764445766806603, + -0.008731899410486221 + ], + [ + -0.008322678357362747, + -0.008254679739475251, + -0.009271337762475013 + ], + [ + -0.008766687288880349, + -0.008733079880475997, + -0.009807800874114037 + ], + [ + -0.009202920645475388, + -0.009178000390529633, + -0.010354801192879676 + ], + [ + -0.009601820260286331, + -0.009616419523954391, + -0.010838580429553985 + ], + [ + -0.009999732449650765, + -0.010003210231661796, + -0.011356861665844918 + ], + [ + -0.010373857021331787, + -0.010383295789361001, + -0.011824083551764489 + ], + [ + -0.010729758068919182, + -0.010748533830046654, + -0.012275174111127853 + ], + [ + -0.011088181063532829, + -0.011071865633130073, + -0.012717376276850701 + ], + [ + -0.011458077803254127, + -0.011430065631866455, + -0.013121304959058762 + ], + [ + -0.01180021531879902, + -0.011754721254110336, + -0.013495475798845292 + ], + [ + -0.012121627405285836, + -0.012076399177312852, + -0.013895756602287293 + ], + [ + -0.012439885884523392, + -0.012395920231938362, + -0.014259756356477738 + ], + [ + -0.012743347361683846, + -0.012695453092455865, + -0.01463708333671093 + ], + [ + -0.01304211586713791, + -0.012966683059930801, + -0.014962382167577743 + ], + [ + -0.013316261470317841, + -0.013254834935069085, + -0.015266346409916878 + ], + [ + -0.01358912706375122, + -0.013502125218510628, + -0.015587422773241997 + ], + [ + -0.0138736592233181, + -0.01374869279563427, + -0.015862207859754562 + ], + [ + -0.014128131791949272, + -0.013983419016003609, + -0.01612567022442818 + ], + [ + -0.014400763511657715, + -0.014181967377662658, + -0.016380831226706506 + ], + [ + -0.01463051252067089, + -0.01438990354537964, + -0.01662172593176365 + ], + [ + -0.0149000995606184, + -0.014589564204216003, + -0.016869975477457045 + ], + [ + -0.015144380182027817, + -0.01477394461631775, + -0.01706169806420803 + ], + [ + -0.015373130142688752, + -0.014997653663158417, + -0.01724459931254387 + ], + [ + -0.015588763132691384, + -0.015182712152600288, + -0.01744299501180649 + ], + [ + -0.015824351385235788, + -0.01535773642361164, + -0.01762408025562763 + ], + [ + -0.01602827899158001, + -0.015557259395718575, + -0.017797742187976837 + ], + [ + -0.01623373195528984, + -0.015747316256165503, + -0.017958536073565484 + ], + [ + -0.016451946794986724, + -0.015953719913959503, + -0.018114762976765633 + ], + [ + -0.01664794683456421, + -0.01613871529698372, + -0.018253209069371223 + ], + [ + -0.016869371980428694, + -0.016327187716960907, + -0.01836559683084488 + ], + [ + -0.01707030802965164, + -0.016513809338212015, + -0.018494933918118475 + ], + [ + -0.017240395396947862, + -0.016691385433077813, + -0.018621423542499543 + ], + [ + -0.017422801926732064, + -0.016865477412939072, + -0.01874687075614929 + ], + [ + -0.017573647126555444, + -0.017019725441932677, + -0.018821736201643943 + ], + [ + -0.0177695781737566, + -0.01719262309372425, + -0.0189136653393507 + ], + [ + -0.0179173094779253, + -0.017334275096654892, + -0.01900770790874958 + ], + [ + -0.01813205048441887, + -0.017482291907072067, + -0.0190949809551239 + ], + [ + -0.018309354186058044, + -0.017619308605790137, + -0.019195122718811037 + ] + ], + "q02": [ + [ + -0.0005905915796756744, + -0.0005692905187606812, + -0.000640350878238678 + ], + [ + -0.0011678674817085268, + -0.0011274605989456178, + -0.0012680433690547945 + ], + [ + -0.0017318576574325562, + -0.0016724979877471924, + -0.0018915963172912598 + ], + [ + -0.002287277728319168, + -0.002203856408596039, + -0.002499651163816452 + ], + [ + -0.002811439335346222, + -0.002719196826219559, + -0.003093078434467316 + ], + [ + -0.0033217766880989075, + -0.0032080228626728056, + -0.00366928830742836 + ], + [ + -0.0038163772225379942, + -0.0036891455948352813, + -0.004234868586063385 + ], + [ + -0.00427631214261055, + -0.004149378091096878, + -0.004772725105285644 + ], + [ + -0.004728077948093414, + -0.004599573612213135, + -0.005287117213010788 + ], + [ + -0.005164611041545868, + -0.0050220279395580296, + -0.00581586629152298 + ], + [ + -0.005574566572904587, + -0.005431390255689621, + -0.006303372979164124 + ], + [ + -0.0059629641473293304, + -0.005843180119991302, + -0.006774258613586426 + ], + [ + -0.0063136456906795506, + -0.006215766817331314, + -0.007238866090774536 + ], + [ + -0.006665378212928772, + -0.006605304628610611, + -0.00766806960105896 + ], + [ + -0.007003587782382965, + -0.006942624747753144, + -0.008097251951694489 + ], + [ + -0.007331581413745881, + -0.0072912415862083435, + -0.008510047644376755 + ], + [ + -0.007638281881809234, + -0.007624153047800064, + -0.008898311704397201 + ], + [ + -0.007946179807186126, + -0.007954166382551192, + -0.009280955493450165 + ], + [ + -0.008243395686149598, + -0.00827690288424492, + -0.009655059427022933 + ], + [ + -0.0085170578956604, + -0.008570963889360428, + -0.010013484060764313 + ], + [ + -0.008786069750785828, + -0.008872574865818024, + -0.010364720225334167 + ], + [ + -0.009030816256999969, + -0.009160026162862779, + -0.010693107545375825 + ], + [ + -0.009284464120864868, + -0.009422057420015334, + -0.011003421396017074 + ], + [ + -0.009513553529977799, + -0.009674805104732514, + -0.01130150943994522 + ], + [ + -0.009759365916252136, + -0.009898166954517364, + -0.011571346521377564 + ], + [ + -0.010014979839324952, + -0.010136763006448746, + -0.01184998095035553 + ], + [ + -0.010242046564817428, + -0.010363495647907258, + -0.012119958847761155 + ], + [ + -0.01048202157020569, + -0.010606170296669007, + -0.012352789789438249 + ], + [ + -0.010740209370851517, + -0.010806408226490021, + -0.012622296810150146 + ], + [ + -0.010981404334306716, + -0.011024319380521775, + -0.01287527471780777 + ], + [ + -0.011219118535518647, + -0.011240144819021225, + -0.013108617216348649 + ], + [ + -0.011432248800992965, + -0.011448595821857453, + -0.01332980126142502 + ], + [ + -0.011662431657314301, + -0.01165166437625885, + -0.01355382725596428 + ], + [ + -0.011880069971084595, + -0.011876357793807983, + -0.013763231486082076 + ], + [ + -0.01206207275390625, + -0.012085869312286376, + -0.013971975594758988 + ], + [ + -0.012231360524892806, + -0.012297778576612474, + -0.014172605127096177 + ], + [ + -0.012410627752542496, + -0.012491376101970673, + -0.01436415061354637 + ], + [ + -0.012567300200462341, + -0.012665715366601944, + -0.014529492408037185 + ], + [ + -0.012740600109100341, + -0.012822184264659881, + -0.01469110906124115 + ], + [ + -0.012897731810808182, + -0.012981310486793518, + -0.014839061945676803 + ], + [ + -0.01307864934206009, + -0.013146824985742569, + -0.014958525896072388 + ], + [ + -0.013234310150146485, + -0.01327529713511467, + -0.015089146941900253 + ], + [ + -0.01339782476425171, + -0.013406978845596313, + -0.015220424830913544 + ], + [ + -0.013539619594812393, + -0.01353744775056839, + -0.0153362175822258 + ], + [ + -0.013678734302520751, + -0.01368256911635399, + -0.015450446158647537 + ], + [ + -0.013805458098649978, + -0.013807535469532013, + -0.015554354339838029 + ], + [ + -0.013937272876501084, + -0.013934970051050186, + -0.015665087699890137 + ], + [ + -0.014077267944812774, + -0.014073835611343384, + -0.01576162502169609 + ], + [ + -0.014232307523488998, + -0.014189495891332627, + -0.01585914075374603 + ], + [ + -0.014365501403808593, + -0.014294898509979248, + -0.01595725119113922 + ] + ], + "q98": [ + [ + 0.0006113299727439868, + 0.0006247013807296753, + 0.0005323563516139978 + ], + [ + 0.0012082241475582112, + 0.0012352035939693449, + 0.0010515706241130806 + ], + [ + 0.0017919488251209228, + 0.0018324932456016511, + 0.001560640782117843 + ], + [ + 0.0023683117330074287, + 0.00241987168788909, + 0.0020560809969902005 + ], + [ + 0.002932682037353508, + 0.0029794970154762256, + 0.0025466766953468264 + ], + [ + 0.0034855435788631404, + 0.003528216630220413, + 0.0030075454711913988 + ], + [ + 0.0040058800578117275, + 0.004057246595621107, + 0.0034478077292442143 + ], + [ + 0.004523951113224029, + 0.00456486195325851, + 0.0038763596117496347 + ], + [ + 0.005013407617807384, + 0.005056744068861, + 0.004280507564544667 + ], + [ + 0.005488755553960797, + 0.005535764545202241, + 0.004673362523317336 + ], + [ + 0.00595181062817573, + 0.005978593081235882, + 0.005058347284793853 + ], + [ + 0.006397813558578491, + 0.006421475559473035, + 0.005410794466733931 + ], + [ + 0.006817640811204893, + 0.006852991729974745, + 0.005755346119403832 + ], + [ + 0.007226747721433639, + 0.0072621776163578015, + 0.006075249612331388 + ], + [ + 0.007630426138639441, + 0.0076470099389552935, + 0.0063979145884513755 + ], + [ + 0.008008781373500824, + 0.008037412017583822, + 0.00670266523957252 + ], + [ + 0.008403385430574414, + 0.008402504622936246, + 0.006978507488965986 + ], + [ + 0.008771555572748167, + 0.008755007982254023, + 0.007241562753915775 + ], + [ + 0.00912752091884612, + 0.009085918217897412, + 0.007491476088762274 + ], + [ + 0.009481423199176775, + 0.009390452802181214, + 0.007734526246786116 + ], + [ + 0.009820033758878704, + 0.009705836921930307, + 0.007970523685216875 + ], + [ + 0.010154272615909562, + 0.010003871023654923, + 0.008216519206762312 + ], + [ + 0.010469403415918349, + 0.010310402214527128, + 0.008420667946338646 + ], + [ + 0.01078758120536804, + 0.010591799914836882, + 0.00864490434527397 + ], + [ + 0.011086252778768539, + 0.010870921164751043, + 0.008843797743320444 + ], + [ + 0.01140857234597204, + 0.011151207834482183, + 0.009060705453157422 + ], + [ + 0.011696603298187253, + 0.011403740495443336, + 0.00926285743713377 + ], + [ + 0.012018378823995564, + 0.011657717972993848, + 0.009452784508466714 + ], + [ + 0.01231289416551588, + 0.011916943341493602, + 0.009629172980785364 + ], + [ + 0.01258259505033493, + 0.012168210595846168, + 0.009787525683641425 + ], + [ + 0.012850579023361182, + 0.012411035746335954, + 0.009951386004686353 + ], + [ + 0.013157780766487121, + 0.012647852599620812, + 0.010105909407138812 + ], + [ + 0.013465607315301885, + 0.012889487445354456, + 0.010243811458349227 + ], + [ + 0.01375285163521762, + 0.013134289234876593, + 0.010382831245660763 + ], + [ + 0.014039229452610009, + 0.013364296108484238, + 0.010522904992103562 + ], + [ + 0.014299877882003754, + 0.013579018712043735, + 0.01065670609474181 + ], + [ + 0.01459474518895146, + 0.013794454038143153, + 0.010786525011062621 + ], + [ + 0.014878578782081587, + 0.014011413902044289, + 0.010904273092746733 + ], + [ + 0.015154588222503606, + 0.014229961484670617, + 0.01102496340870854 + ], + [ + 0.015413318276405314, + 0.01443853855133051, + 0.011128988713026039 + ], + [ + 0.015670857131481145, + 0.01464353248476982, + 0.011238836199045166 + ], + [ + 0.015922348499298085, + 0.014825292527675626, + 0.011361537426710104 + ], + [ + 0.016159128397703143, + 0.01501790568232536, + 0.011460647284984561 + ], + [ + 0.016392606496810867, + 0.015201851576566684, + 0.011568111181259149 + ], + [ + 0.016629158109426473, + 0.01537596151232719, + 0.011661972701549492 + ], + [ + 0.016872954815626104, + 0.015547924786806099, + 0.011752071976661636 + ], + [ + 0.017107994109392163, + 0.015714542120695084, + 0.01184631168842313 + ], + [ + 0.017362987995147655, + 0.015883212536573404, + 0.011944697499275202 + ], + [ + 0.017606227844953505, + 0.016036323904991146, + 0.012019921839237196 + ], + [ + 0.017822683155536635, + 0.01618227183818816, + 0.012114645689725855 + ] + ], + "q99": [ + [ + 0.0007791063189506522, + 0.0008191531896591178, + 0.000685654059052466 + ], + [ + 0.0015346872061490968, + 0.0016124327480792951, + 0.0013474424183368677 + ], + [ + 0.0022729012370109533, + 0.0023807505518198, + 0.0019960679858922947 + ], + [ + 0.0029960960149764994, + 0.0031329314410686437, + 0.0026318565756082513 + ], + [ + 0.0037003555893897998, + 0.0038495744019746746, + 0.003234461545944211 + ], + [ + 0.004365640059113483, + 0.0045606699585914595, + 0.003819910660386076 + ], + [ + 0.005013393014669408, + 0.005217522233724582, + 0.0043668133765459 + ], + [ + 0.005645870789885501, + 0.00585823148488997, + 0.004908581227064128 + ], + [ + 0.006241944804787619, + 0.006468041613697976, + 0.005426534935832015 + ], + [ + 0.006817547678947447, + 0.007060439959168428, + 0.005911517813801754 + ], + [ + 0.007372559905052166, + 0.007599938362836829, + 0.006369600221514701 + ], + [ + 0.007904011756181712, + 0.008144090399146063, + 0.0068082837760448395 + ], + [ + 0.008437622636556603, + 0.0086377564817667, + 0.007226154506206506 + ], + [ + 0.008935164809226976, + 0.009115523695945739, + 0.007621112763881683 + ], + [ + 0.009423591569066046, + 0.009577067717909803, + 0.007984806150197981 + ], + [ + 0.00987685531377792, + 0.010010172426700586, + 0.00834369778633116 + ], + [ + 0.010312182083725911, + 0.010444094911217675, + 0.008677412867546079 + ], + [ + 0.010748023390769954, + 0.010843001678586005, + 0.009024116024374938 + ], + [ + 0.011156117245554924, + 0.011241764053702342, + 0.009360345005989045 + ], + [ + 0.011551034599542613, + 0.011617139801383014, + 0.009641901105642314 + ], + [ + 0.01197105981409546, + 0.012002155482768995, + 0.009940861612558362 + ], + [ + 0.012369298636913283, + 0.012394335269927975, + 0.01021742656826972 + ], + [ + 0.012785598114132879, + 0.012735944613814349, + 0.010476505979895571 + ], + [ + 0.013193123787641514, + 0.013095010295510284, + 0.01071625284850597 + ], + [ + 0.01358351491391658, + 0.01343732200562952, + 0.010980033650994259 + ], + [ + 0.01395132586359976, + 0.013774739578366266, + 0.01121957935392856 + ], + [ + 0.014280267283320415, + 0.014119272753596295, + 0.0114271932840347 + ], + [ + 0.014645510464906664, + 0.014404988363385156, + 0.011634282767772675 + ], + [ + 0.01500687554478645, + 0.014755266010761204, + 0.011842091754078837 + ], + [ + 0.015337619036436064, + 0.01504877917468547, + 0.01204726718366143 + ], + [ + 0.01569188728928564, + 0.015363128408789617, + 0.012241771817207307 + ], + [ + 0.016029363349080054, + 0.015666012912988567, + 0.012426011934876434 + ], + [ + 0.01640402019023894, + 0.015973980575799913, + 0.012621911242604252 + ], + [ + 0.016769578009843827, + 0.016263371556997287, + 0.012807369604706752 + ], + [ + 0.017103515565395355, + 0.016544438898563385, + 0.012991919144988054 + ], + [ + 0.0174240910261869, + 0.016826123446226096, + 0.013133764043450347 + ], + [ + 0.017738950401544565, + 0.017097500041127162, + 0.013294325694441767 + ], + [ + 0.01809627547860143, + 0.01736966721713543, + 0.013468961715698231 + ], + [ + 0.01840903230011461, + 0.017622448727488516, + 0.013611337989568708 + ], + [ + 0.018712663352489434, + 0.017863970324397068, + 0.013746628835797269 + ], + [ + 0.018996897637844085, + 0.01808651350438593, + 0.01387018904089926 + ], + [ + 0.019260656014084814, + 0.01829336024820802, + 0.013993963450193393 + ], + [ + 0.01953864984214302, + 0.018480764552950845, + 0.014107482135295866 + ], + [ + 0.01981721587479111, + 0.018650356233119943, + 0.014246353507041898 + ], + [ + 0.02009393393993371, + 0.018819475248455984, + 0.014375272020697591 + ], + [ + 0.020389118492603286, + 0.01901500247418879, + 0.014475694373249984 + ], + [ + 0.020668983161449408, + 0.019179638400673833, + 0.01462709777057171 + ], + [ + 0.02095159731805322, + 0.01932974115014076, + 0.0147185955941677 + ], + [ + 0.021221053600311263, + 0.019516581073403347, + 0.014803602844476684 + ], + [ + 0.021505745723843547, + 0.01969240389764309, + 0.014899505004286755 + ] + ], + "mean": [ + [ + -1.2946084098075517e-06, + 8.61324770085048e-06, + -1.194765104628459e-06 + ], + [ + -2.1646908408001764e-06, + 1.738186620059423e-05, + -2.689034317882033e-06 + ], + [ + -2.5832810024439823e-06, + 2.632387804624159e-05, + -4.5216497710498516e-06 + ], + [ + -2.54890187534329e-06, + 3.544535502442159e-05, + -6.696396667393856e-06 + ], + [ + -2.06787103707029e-06, + 4.474162415135652e-05, + -9.2172531367396e-06 + ], + [ + -1.1371405435056658e-06, + 5.421923196990974e-05, + -1.2102412256354e-05 + ], + [ + 2.3090169065653754e-07, + 6.390086491592228e-05, + -1.536108356958721e-05 + ], + [ + 2.026270522037521e-06, + 7.378818554570898e-05, + -1.899012022477109e-05 + ], + [ + 4.254460236552404e-06, + 8.38907653815113e-05, + -2.299227526236791e-05 + ], + [ + 6.905962891323725e-06, + 9.422216680832207e-05, + -2.7366517315385863e-05 + ], + [ + 9.973840860766359e-06, + 0.00010479730553925037, + -3.209531496395357e-05 + ], + [ + 1.345060627500061e-05, + 0.00011562249710550532, + -3.717067011166364e-05 + ], + [ + 1.7332493371213786e-05, + 0.00012669246643781662, + -4.2579547880450264e-05 + ], + [ + 2.1601690605166368e-05, + 0.00013801775639876723, + -4.830943726119585e-05 + ], + [ + 2.625730849104002e-05, + 0.0001495850010542199, + -5.435505590867251e-05 + ], + [ + 3.12763404508587e-05, + 0.0001613975182408467, + -6.0684211348416284e-05 + ], + [ + 3.662264862214215e-05, + 0.00017345714149996638, + -6.72800961183384e-05 + ], + [ + 4.228472971590236e-05, + 0.0001857616734923795, + -7.413181447191164e-05 + ], + [ + 4.823132621822879e-05, + 0.0001982879766728729, + -8.119819540297613e-05 + ], + [ + 5.442680048872717e-05, + 0.00021102414757478982, + -8.846895798342302e-05 + ], + [ + 6.0869417211506516e-05, + 0.0002239481982542202, + -9.591814159648493e-05 + ], + [ + 6.753046909580007e-05, + 0.000237049869610928, + -0.0001035144814522937 + ], + [ + 7.438288594130427e-05, + 0.0002503167779650539, + -0.00011123863805551082 + ], + [ + 8.141705620801076e-05, + 0.00026373635046184063, + -0.00011907370935659856 + ], + [ + 8.860289381118491e-05, + 0.0002773035375867039, + -0.0001269986532861367 + ], + [ + 9.590481931809336e-05, + 0.00029099659877829254, + -0.00013499637134373188 + ], + [ + 0.00010331864905310795, + 0.0003048251091968268, + -0.00014305637159850448 + ], + [ + 0.00011082263517891988, + 0.00031876066350378096, + -0.0001511720911366865 + ], + [ + 0.0001183954082080163, + 0.0003327803569845855, + -0.00015932079986669123 + ], + [ + 0.00012606283416971564, + 0.0003468704817350954, + -0.00016747323388699442 + ], + [ + 0.00013382874021772295, + 0.0003610096173360944, + -0.0001756099663907662 + ], + [ + 0.0001416802842868492, + 0.00037517223972827196, + -0.00018370691395830363 + ], + [ + 0.00014962888963054866, + 0.00038931946619413793, + -0.00019178539514541626 + ], + [ + 0.0001576610520714894, + 0.00040344573790207505, + -0.0001998130901483819 + ], + [ + 0.0001657720422372222, + 0.0004175420035608113, + -0.00020781690545845777 + ], + [ + 0.00017394630413036793, + 0.0004315869009587914, + -0.00021578486484941095 + ], + [ + 0.00018219294724985957, + 0.00044559399248100817, + -0.00022370726219378412 + ], + [ + 0.00019050907576456666, + 0.00045955623500049114, + -0.00023158628027886152 + ], + [ + 0.00019890660769306123, + 0.0004734416725113988, + -0.00023938975937198848 + ], + [ + 0.00020737417798954993, + 0.0004872679419349879, + -0.0002471361658535898 + ], + [ + 0.00021592828852590173, + 0.0005010036402381957, + -0.00025480639305897057 + ], + [ + 0.0002245518408017233, + 0.0005146423354744911, + -0.0002623997279442847 + ], + [ + 0.00023325813526753336, + 0.0005281760822981596, + -0.0002699089818634093 + ], + [ + 0.00024204586225096136, + 0.000541598245035857, + -0.0002773147134575993 + ], + [ + 0.0002509102341718972, + 0.0005548909539356828, + -0.00028461680631153286 + ], + [ + 0.00025982907391153276, + 0.0005680605536326766, + -0.0002918177633546293 + ], + [ + 0.000268807343672961, + 0.0005810919683426619, + -0.0002989163331221789 + ], + [ + 0.000277835875749588, + 0.0005939558031968772, + -0.0003058810834772885 + ], + [ + 0.00028688882593996823, + 0.000606663292273879, + -0.0003127243835479021 + ], + [ + 0.00029599133995361626, + 0.0006192138534970582, + -0.0003194161399733275 + ] + ], + "std": [ + [ + 0.00025060647749342024, + 0.0002563854504842311, + 0.0002458957314956933 + ], + [ + 0.0004941211082041264, + 0.0005052582710050046, + 0.00048494027578271925 + ], + [ + 0.0007324487087316811, + 0.0007484994130209088, + 0.0007189086172729731 + ], + [ + 0.0009656149777583778, + 0.0009858629200607538, + 0.0009478118736296892 + ], + [ + 0.0011914579663425684, + 0.0012149142567068338, + 0.001169586437754333 + ], + [ + 0.0014097053790464997, + 0.0014351351419463754, + 0.001383864670060575 + ], + [ + 0.0016209329478442669, + 0.0016471028793603182, + 0.001591172069311142 + ], + [ + 0.0018248534761369228, + 0.0018506533233448863, + 0.0017912242328748107 + ], + [ + 0.0020214177202433348, + 0.002046098466962576, + 0.001984022557735443 + ], + [ + 0.002210981212556362, + 0.0022339411079883575, + 0.0021699669305235147 + ], + [ + 0.0023935490753501654, + 0.0024142360780388117, + 0.002349014626815915 + ], + [ + 0.0025691010523587465, + 0.002587289782240987, + 0.0025212091859430075 + ], + [ + 0.0027379870880395174, + 0.002753616077825427, + 0.0026867494452744722 + ], + [ + 0.0029005890246480703, + 0.002913326257839799, + 0.0028459527529776096 + ], + [ + 0.0030572176910936832, + 0.0030668831896036863, + 0.0029989108443260193 + ], + [ + 0.003208314534276724, + 0.003214611206203699, + 0.0031458064913749695 + ], + [ + 0.003354341024532914, + 0.0033572702668607235, + 0.0032869616989046335 + ], + [ + 0.0034956717863678932, + 0.0034946955274790525, + 0.00342247961089015 + ], + [ + 0.003632670734077692, + 0.0036275151651352644, + 0.0035525867715477943 + ], + [ + 0.003765845438465476, + 0.0037559703923761845, + 0.00367752555757761 + ], + [ + 0.003895431524142623, + 0.003880387404933572, + 0.003797637764364481 + ], + [ + 0.004021777305752039, + 0.004000950139015913, + 0.0039131008088588715 + ], + [ + 0.004145143553614616, + 0.004117972683161497, + 0.00402409490197897 + ], + [ + 0.004265730734914541, + 0.004231447819620371, + 0.004130800720304251 + ], + [ + 0.004383767489343882, + 0.004341560415923595, + 0.00423345947638154 + ], + [ + 0.004499444738030434, + 0.0044486369006335735, + 0.004332232754677534 + ], + [ + 0.0046128034591674805, + 0.004552639089524746, + 0.004427324514836073 + ], + [ + 0.004724063910543919, + 0.004653692711144686, + 0.004518893081694841 + ], + [ + 0.004833295941352844, + 0.004752042703330517, + 0.004607091192156076 + ], + [ + 0.004940665792673826, + 0.0048477002419531345, + 0.004692004527896643 + ], + [ + 0.005046200938522816, + 0.004940750077366829, + 0.004773795139044523 + ], + [ + 0.005149863660335541, + 0.005031344946473837, + 0.0048525091260671616 + ], + [ + 0.005251763854175806, + 0.0051195863634347916, + 0.0049282098188996315 + ], + [ + 0.005351870320737362, + 0.0052054873667657375, + 0.00500116590410471 + ], + [ + 0.005450232420116663, + 0.005289287306368351, + 0.005071274936199188 + ], + [ + 0.005546924192458391, + 0.005371164530515671, + 0.005138708278536797 + ], + [ + 0.005641862750053406, + 0.005450810771435499, + 0.005203579552471638 + ], + [ + 0.005735115613788366, + 0.005528563633561134, + 0.005265966057777405 + ], + [ + 0.005826874636113644, + 0.0056044613011181355, + 0.005325767677277327 + ], + [ + 0.005917109549045563, + 0.005678636021912098, + 0.005383470095694065 + ], + [ + 0.006005854811519384, + 0.005751157645136118, + 0.005438647232949734 + ], + [ + 0.006093178875744343, + 0.005821991246193647, + 0.005491625517606735 + ], + [ + 0.006179149728268385, + 0.005891276523470879, + 0.005542482249438763 + ], + [ + 0.006263843271881342, + 0.0059589785523712635, + 0.005591404624283314 + ], + [ + 0.006347267888486385, + 0.006025581620633602, + 0.005638360511511564 + ], + [ + 0.0064293514005839825, + 0.006090675946325064, + 0.005683522205799818 + ], + [ + 0.006510179955512285, + 0.006154445465654135, + 0.005726927425712347 + ], + [ + 0.00658992026001215, + 0.006217023823410273, + 0.005768829956650734 + ], + [ + 0.006668495945632458, + 0.00627850741147995, + 0.0058091916143894196 + ], + [ + 0.00674596568569541, + 0.0063387369737029076, + 0.005848188418895006 + ] + ], + "min": [ + [ + -0.0036999136209487915, + -0.0033891499042510986, + -0.003771260380744934 + ], + [ + -0.006454676389694214, + -0.0060856640338897705, + -0.006683163344860077 + ], + [ + -0.008993282914161682, + -0.008883289992809296, + -0.009648159146308899 + ], + [ + -0.011466965079307556, + -0.011606268584728241, + -0.013029240071773529 + ], + [ + -0.013902977108955383, + -0.014902129769325256, + -0.015338487923145294 + ], + [ + -0.016376659274101257, + -0.01715303212404251, + -0.017583414912223816 + ], + [ + -0.018718942999839783, + -0.019272491335868835, + -0.01930386573076248 + ], + [ + -0.02039356529712677, + -0.02121126651763916, + -0.021077625453472137 + ], + [ + -0.021844789385795593, + -0.023294255137443542, + -0.02297671139240265 + ], + [ + -0.023478686809539795, + -0.024850919842720032, + -0.02494889497756958 + ], + [ + -0.024620115756988525, + -0.026364780962467194, + -0.026600345969200134 + ], + [ + -0.025748521089553833, + -0.027594268321990967, + -0.02818671613931656 + ], + [ + -0.02685527503490448, + -0.02839009463787079, + -0.030098900198936462 + ], + [ + -0.027834609150886536, + -0.028988823294639587, + -0.03135848045349121 + ], + [ + -0.028488069772720337, + -0.029490195214748383, + -0.032498665153980255 + ], + [ + -0.028980299830436707, + -0.02975229173898697, + -0.03345576673746109 + ], + [ + -0.029443249106407166, + -0.029777616262435913, + -0.03438307344913483 + ], + [ + -0.029808878898620605, + -0.029774941504001617, + -0.03530454263091087 + ], + [ + -0.030200302600860596, + -0.02960807830095291, + -0.035872701555490494 + ], + [ + -0.030435770750045776, + -0.02940674126148224, + -0.03639467433094978 + ], + [ + -0.030649438500404358, + -0.02920001745223999, + -0.03695402294397354 + ], + [ + -0.03102971613407135, + -0.029104083776474, + -0.037464164197444916 + ], + [ + -0.032475344836711884, + -0.02912869304418564, + -0.03793346509337425 + ], + [ + -0.033109553158283234, + -0.029024727642536163, + -0.03832743316888809 + ], + [ + -0.03336778283119202, + -0.028843186795711517, + -0.03863729536533356 + ], + [ + -0.03320474922657013, + -0.02863646298646927, + -0.0386832021176815 + ], + [ + -0.03278830647468567, + -0.028568431735038757, + -0.038711849600076675 + ], + [ + -0.032274022698402405, + -0.02936747670173645, + -0.03849402070045471 + ], + [ + -0.0325755774974823, + -0.02998589724302292, + -0.038170889019966125 + ], + [ + -0.03355388343334198, + -0.030545763671398163, + -0.03777308017015457 + ], + [ + -0.03453032672405243, + -0.031097039580345154, + -0.03715995326638222 + ], + [ + -0.03543822467327118, + -0.03136896342039108, + -0.036641985177993774 + ], + [ + -0.03641466796398163, + -0.0316065177321434, + -0.03634578734636307 + ], + [ + -0.03707514703273773, + -0.031837739050388336, + -0.03602451831102371 + ], + [ + -0.03770829737186432, + -0.032056428492069244, + -0.03661546856164932 + ], + [ + -0.038497671484947205, + -0.032293982803821564, + -0.03788577765226364 + ], + [ + -0.039058610796928406, + -0.03248005360364914, + -0.03916134685277939 + ], + [ + -0.03958352655172348, + -0.03264152258634567, + -0.040337786078453064 + ], + [ + -0.04011561721563339, + -0.03278283029794693, + -0.041383206844329834 + ], + [ + -0.040525831282138824, + -0.03285925090312958, + -0.042539678514003754 + ], + [ + -0.040840402245521545, + -0.03300856053829193, + -0.04349575936794281 + ], + [ + -0.04112820327281952, + -0.03322550654411316, + -0.04433852434158325 + ], + [ + -0.04152653366327286, + -0.03346925973892212, + -0.04522177577018738 + ], + [ + -0.04192723333835602, + -0.033637650310993195, + -0.04592306911945343 + ], + [ + -0.04244570434093475, + -0.03377373516559601, + -0.046457014977931976 + ], + [ + -0.04313602298498154, + -0.033888429403305054, + -0.04718450456857681 + ], + [ + -0.04366709291934967, + -0.03391379863023758, + -0.047885797917842865 + ], + [ + -0.044147931039333344, + -0.03392649441957474, + -0.04846221208572388 + ], + [ + -0.04476337879896164, + -0.03388290852308273, + -0.04918700456619263 + ], + [ + -0.04525706171989441, + -0.03375396877527237, + -0.04992391914129257 + ] + ], + "max": [ + [ + 0.0032347291707992554, + 0.006059810519218445, + 0.0028893351554870605 + ], + [ + 0.00562654435634613, + 0.01013580709695816, + 0.00509999692440033 + ], + [ + 0.00809413194656372, + 0.013829842209815979, + 0.007343225181102753 + ], + [ + 0.010652504861354828, + 0.016948580741882324, + 0.0098394975066185 + ], + [ + 0.013044320046901703, + 0.019977062940597534, + 0.011998631060123444 + ], + [ + 0.015511907637119293, + 0.02247072011232376, + 0.014020092785358429 + ], + [ + 0.01777995377779007, + 0.024291373789310455, + 0.016649171710014343 + ], + [ + 0.02031838148832321, + 0.025646835565567017, + 0.01928325742483139 + ], + [ + 0.022220388054847717, + 0.027089141309261322, + 0.021770350635051727 + ], + [ + 0.02393651008605957, + 0.028622835874557495, + 0.0241207554936409 + ], + [ + 0.02578764408826828, + 0.029822826385498047, + 0.026889115571975708 + ], + [ + 0.027503766119480133, + 0.03080315887928009, + 0.028660714626312256 + ], + [ + 0.029168494045734406, + 0.031717441976070404, + 0.030043907463550568 + ], + [ + 0.031049959361553192, + 0.031998410820961, + 0.031791895627975464 + ], + [ + 0.03228344768285751, + 0.03225700557231903, + 0.032910723239183426 + ], + [ + 0.03355739265680313, + 0.0322805792093277, + 0.03363610431551933 + ], + [ + 0.03530683368444443, + 0.03202731907367706, + 0.034312400966882706 + ], + [ + 0.03655087202787399, + 0.03176083415746689, + 0.03492552787065506 + ], + [ + 0.037784360349178314, + 0.03148510307073593, + 0.03514335677027702 + ], + [ + 0.03916563838720322, + 0.03145889937877655, + 0.03521762415766716 + ], + [ + 0.04039912670850754, + 0.031837329268455505, + 0.035171717405319214 + ], + [ + 0.04151000827550888, + 0.03234711289405823, + 0.03511500358581543 + ], + [ + 0.04253821820020676, + 0.03297644108533859, + 0.034805141389369965 + ], + [ + 0.04368887096643448, + 0.03347047418355942, + 0.03441485017538071 + ], + [ + 0.04465629905462265, + 0.03390116989612579, + 0.03402088209986687 + ], + [ + 0.04561960697174072, + 0.034270137548446655, + 0.03355158120393753 + ], + [ + 0.046256959438323975, + 0.03459443151950836, + 0.03299223259091377 + ], + [ + 0.046855732798576355, + 0.034963399171829224, + 0.03247025981545448 + ], + [ + 0.04734213650226593, + 0.0352194607257843, + 0.032176390290260315 + ], + [ + 0.04772477596998215, + 0.035333991050720215, + 0.03235360234975815 + ], + [ + 0.047777481377124786, + 0.03565432131290436, + 0.032516658306121826 + ], + [ + 0.04779737442731857, + 0.03611361235380173, + 0.03267063945531845 + ], + [ + 0.047787122428417206, + 0.03663015365600586, + 0.0328613743185997 + ], + [ + 0.04808314889669418, + 0.03699912130832672, + 0.033199578523635864 + ], + [ + 0.048437222838401794, + 0.03735969960689545, + 0.03346387296915054 + ], + [ + 0.0487024188041687, + 0.03762638568878174, + 0.03370177745819092 + ], + [ + 0.04909949004650116, + 0.03767503798007965, + 0.03393404930830002 + ], + [ + 0.049343980848789215, + 0.03775487095117569, + 0.034112349152565 + ], + [ + 0.04945388436317444, + 0.03787773847579956, + 0.03422463685274124 + ], + [ + 0.04953484237194061, + 0.037995681166648865, + 0.03427398204803467 + ], + [ + 0.049865081906318665, + 0.03809770941734314, + 0.03427068889141083 + ], + [ + 0.05072245001792908, + 0.03817995637655258, + 0.03421354293823242 + ], + [ + 0.05125022679567337, + 0.03824307769536972, + 0.03412960469722748 + ], + [ + 0.051736630499362946, + 0.03827451914548874, + 0.03402747958898544 + ], + [ + 0.052009277045726776, + 0.038212329149246216, + 0.03394901752471924 + ], + [ + 0.052133187651634216, + 0.03805049508810043, + 0.033852994441986084 + ], + [ + 0.052185893058776855, + 0.03780272603034973, + 0.03367412090301514 + ], + [ + 0.052107810974121094, + 0.03752514719963074, + 0.03350432217121124 + ], + [ + 0.05203413963317871, + 0.03733799606561661, + 0.033661797642707825 + ], + [ + 0.05188652127981186, + 0.03712109476327896, + 0.03379536420106888 + ] + ] + } + } +} \ No newline at end of file diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/relative_stats.json b/Surgical/turin/mitic_lerobot_ex_vivo/meta/relative_stats.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/relative_stats.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/stats.json b/Surgical/turin/mitic_lerobot_ex_vivo/meta/stats.json new file mode 100644 index 0000000000000000000000000000000000000000..2259e23d1e2ae5f4145530b0448f96d8bf081084 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/stats.json @@ -0,0 +1,206 @@ +{ + "observation.state": { + "mean": [ + 0.4883851408958435, + -0.05361379683017731, + 0.1351557821035385, + -1.3052406311035156, + 0.18482734262943268, + 0.23280136287212372, + -0.4871843159198761, + -0.3172003924846649, + 0.1776476502418518, + 2.5022614002227783, + -0.06214088946580887, + 0.06825006008148193 + ], + "std": [ + 0.07930784672498703, + 0.10401270538568497, + 0.012472662143409252, + 1.5181490182876587, + 0.5116838812828064, + 0.5786718130111694, + 0.08619413524866104, + 0.11189331114292145, + 0.01299253199249506, + 1.4874842166900635, + 0.5325409173965454, + 0.5480731129646301 + ], + "min": [ + 0.039509501308202744, + -0.28353241086006165, + 0.06000138074159622, + -4.556143283843994, + -1.3651353120803833, + -1.420839786529541, + -0.7376059293746948, + -0.5736677646636963, + 0.12677456438541412, + -4.542722702026367, + -1.4260751008987427, + -1.449070692062378 + ], + "max": [ + 0.753754198551178, + 0.35110631585121155, + 0.17488767206668854, + 4.23280143737793, + 1.4719849824905396, + 1.497558832168579, + -0.16143600642681122, + 0.023948190733790398, + 0.22009319067001343, + 4.557191371917725, + 1.5165284872055054, + 1.9941186904907227 + ], + "q01": [ + 0.3284624072909355, + -0.1878872212767601, + 0.09593842178583145, + -4.53810977935791, + -0.9642437696456909, + -1.1110887157917022, + -0.6354581892490387, + -0.5162346476316452, + 0.1468562676012516, + -1.4896373748779297, + -1.1062091588974, + -1.163364759683609 + ], + "q99": [ + 0.6753838658332825, + 0.30865445733070374, + 0.1636710102856159, + 2.8079581260681152, + 1.1933832168579102, + 1.3902146816253662, + -0.2517491146922117, + -0.021672612633556774, + 0.20324920117855072, + 4.538528919219971, + 1.2164897990226726, + 1.3308379650115967 + ] + }, + "action": { + "mean": [ + -0.11456333100795746, + -0.08494904637336731, + 0.12942607700824738, + 0.29876694083213806, + -0.006151739042252302, + 0.4512636065483093, + 0.09203306585550308, + 0.1232796311378479, + -0.11553408205509186, + 0.09576348215341568, + 0.03726581111550331, + -0.25213271379470825, + 0.26890507340431213, + 0.5507380366325378 + ], + "std": [ + 0.016498157754540443, + 0.01680959388613701, + 0.01033812202513218, + 0.30130699276924133, + 0.4376685917377472, + 0.4662517011165619, + 0.44565698504447937, + 0.01357427891343832, + 0.018004031851887703, + 0.01197794172912836, + 0.3186284303665161, + 0.2758747339248657, + 0.47457632422447205, + 0.3955913484096527 + ], + "min": [ + -0.1972917765378952, + -0.1191018596291542, + 0.07881224900484085, + -0.635361909866333, + -0.6863210201263428, + -0.6879675984382629, + -0.6942304372787476, + 0.08271746337413788, + -0.15859682857990265, + 0.0589338019490242, + -0.6420541405677795, + -0.7048074007034302, + -0.7033143639564514, + -0.705171525478363 + ], + "max": [ + -0.06366249173879623, + -0.020531464368104935, + 0.16333672404289246, + 0.9134082198143005, + 0.9063971042633057, + 0.9975486993789673, + 0.996588945388794, + 0.174923837184906, + -0.06583588570356369, + 0.1314305067062378, + 0.8502479791641235, + 0.9033641219139099, + 0.9998450875282288, + 0.999701201915741 + ], + "q01": [ + -0.1486950036883354, + -0.10890981532633305, + 0.104195229485631, + -0.4945234540104866, + -0.6143744516372681, + -0.6644203662872314, + -0.5771211838722229, + 0.09932134062051773, + -0.15116801917552947, + 0.07211737632751465, + -0.5329577833414078, + -0.6079039454460144, + -0.5979251527786255, + -0.600137613415718 + ], + "q99": [ + -0.07185213275253773, + -0.02822963425889612, + 0.15458894804120063, + 0.7519138228893277, + 0.8292129039764404, + 0.9431427085399627, + 0.9287681013345717, + 0.1605716697871685, + -0.07143326103687286, + 0.12386319786310196, + 0.6286413127183914, + 0.7269588279724117, + 0.9733435475826262, + 0.9895528084039688 + ] + }, + "timestamp": { + "mean": [ + 11.68423843383789 + ], + "std": [ + 10.761760711669922 + ], + "min": [ + 0.0 + ], + "max": [ + 118.69999694824219 + ], + "q01": [ + 0.13333334028720856 + ], + "q99": [ + 47.099998474121094 + ] + } +} \ No newline at end of file diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/stats_cosmos.json b/Surgical/turin/mitic_lerobot_ex_vivo/meta/stats_cosmos.json new file mode 100644 index 0000000000000000000000000000000000000000..cccb0033460b06f6164aed69384d40eeb34865ee --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/stats_cosmos.json @@ -0,0 +1,470 @@ +{ + "action.psm1_pose": { + "mean": [ + -0.00010843393769315597, + -3.984067127353564e-05, + 3.5335638049642004e-05, + 0.9741916825822373, + 0.007474019123132653, + -0.0004882582026715576, + -0.005855719665128013, + 0.9713499760812313, + -0.0013618986776464824 + ], + "std": [ + 0.0033981161902476315, + 0.0035197645242965774, + 0.0035560521135544034, + 0.08530246731106872, + 0.1757106509808931, + 0.11288809915010185, + 0.17605585743406651, + 0.0910338406945929, + 0.13099715671649576 + ], + "min": [ + -0.06355953216552734, + -0.04261067509651184, + -0.03238748013973236, + -0.8163193464279175, + -0.9999952912330627, + -0.9917141795158386, + -0.9999973773956299, + -0.9783952236175537, + -0.9723159074783325 + ], + "max": [ + 0.061998218297958374, + 0.0458344966173172, + 0.03878185898065567, + 1.0, + 0.9999940991401672, + 0.9598066806793213, + 0.9999846816062927, + 1.0, + 0.9453224539756775 + ], + "q01": [ + -0.010671588853001594, + -0.009902753978967666, + -0.011463710367679595, + 0.5971510696411133, + -0.5776714515686036, + -0.365093514919281, + -0.6168794810771941, + 0.5630949330329895, + -0.4168875393271446 + ], + "q99": [ + 0.010563958585262302, + 0.011707150414586068, + 0.010278001800179482, + 1.0, + 0.6363994938135149, + 0.3590057110786438, + 0.5965503102540972, + 1.0, + 0.41868470281362535 + ] + }, + "action.psm2_pose": { + "mean": [ + 8.104929685102414e-05, + 0.00021674307098695802, + -9.774351212069283e-05, + 0.9855482659107211, + -0.005121543348826868, + -0.001278211287563536, + 0.003810467815853512, + 0.9834872732261906, + -0.0032214516887404602 + ], + "std": [ + 0.003581111082063761, + 0.003542448923352223, + 0.0034553062803246255, + 0.06339552291205128, + 0.12365506548954115, + 0.09673253936409072, + 0.12480282846193713, + 0.07103708960608282, + 0.11002668860912858 + ], + "min": [ + -0.04037708044052124, + -0.03735368698835373, + -0.038711849600076675, + -0.8614951372146606, + -0.9999787211418152, + -0.999866783618927, + -0.9999956488609314, + -0.9994173645973206, + -0.9988884925842285 + ], + "max": [ + 0.047787122428417206, + 0.03663015365600586, + 0.035171717405319214, + 1.0, + 0.9998984336853027, + 0.9957902431488037, + 0.9998234510421753, + 1.0, + 0.9834176301956177 + ], + "q01": [ + -0.010793376639485359, + -0.010862471386790275, + -0.012717538997530937, + 0.717755720615387, + -0.4773791265487671, + -0.32207715064287185, + -0.4278817278146743, + 0.6879345065355301, + -0.3701258164644241 + ], + "q99": [ + 0.012027791813015944, + 0.011805244386196137, + 0.009609498158097267, + 1.0, + 0.4056023156642915, + 0.33110179990530014, + 0.46921330511569986, + 1.0, + 0.3799831938743592 + ] + }, + "state.psm1_pose": { + "mean": [ + -0.11897202051494092, + -0.08552702002427823, + 0.12854886737996252, + 0.2918778286874832, + 0.01809812269527912, + 0.43606173786500896, + 0.12291358111620165 + ], + "std": [ + 0.012223750362818473, + 0.01705833494345576, + 0.010357956851324665, + 0.3006594128111135, + 0.43697078186840327, + 0.4677140085176359, + 0.4573032502649797 + ], + "min": [ + -0.1972917765378952, + -0.11909574270248413, + 0.07881224900484085, + -0.635361909866333, + -0.684159517288208, + -0.6879675984382629, + -0.6942304372787476 + ], + "max": [ + -0.06873984634876251, + -0.020531464368104935, + 0.16333672404289246, + 0.9134082198143005, + 0.9063971042633057, + 0.9975486993789673, + 0.996588945388794 + ], + "q01": [ + -0.14904303550720216, + -0.10892165601253509, + 0.10371921509504319, + -0.48771277666091917, + -0.615600860118866, + -0.6644203662872314, + -0.5782026290893555 + ], + "q99": [ + -0.08959309607744216, + -0.028227567672729492, + 0.15458764135837555, + 0.7485551118850708, + 0.825931477546692, + 0.9508526086807251, + 0.934945559501648 + ] + }, + "state.psm2_pose": { + "mean": [ + 0.12168451534958107, + -0.117372205137917, + 0.09480141013492731, + 0.008084441370891022, + -0.2593001423118023, + 0.3436965686252823, + 0.5260973031243577 + ], + "std": [ + 0.013485805219209779, + 0.018455334212482594, + 0.012178062594328713, + 0.3188772404141896, + 0.2803533493785275, + 0.4576174883087873, + 0.38483491739019904 + ], + "min": [ + 0.08467704057693481, + -0.15859682857990265, + 0.0589338019490242, + -0.6379287838935852, + -0.7048074007034302, + -0.7033143639564514, + -0.705171525478363 + ], + "max": [ + 0.1723373681306839, + -0.06583588570356369, + 0.1314305067062378, + 0.8502479791641235, + 0.9033641219139099, + 0.9998450875282288, + 0.999701201915741 + ], + "q01": [ + 0.09894567728042603, + -0.15157766044139862, + 0.07210772931575775, + -0.535261082649231, + -0.6117035627365113, + -0.5849064826965332, + -0.5916226625442504 + ], + "q99": [ + 0.15982903540134433, + -0.07119570672512054, + 0.12408614903688431, + 0.6337105154991152, + 0.72389395236969, + 0.978326451778412, + 0.9903406023979188 + ] + }, + "action": { + "mean": [ + -0.00010843393769315597, + -3.984067127353564e-05, + 3.5335638049642004e-05, + 0.9741916825822373, + 0.007474019123132653, + -0.0004882582026715576, + -0.005855719665128013, + 0.9713499760812313, + -0.0013618986776464824, + 8.104929685102414e-05, + 0.00021674307098695802, + -9.774351212069283e-05, + 0.9855482659107211, + -0.005121543348826868, + -0.001278211287563536, + 0.003810467815853512, + 0.9834872732261906, + -0.0032214516887404602 + ], + "std": [ + 0.0033981161902476315, + 0.0035197645242965774, + 0.0035560521135544034, + 0.08530246731106872, + 0.1757106509808931, + 0.11288809915010185, + 0.17605585743406651, + 0.0910338406945929, + 0.13099715671649576, + 0.003581111082063761, + 0.003542448923352223, + 0.0034553062803246255, + 0.06339552291205128, + 0.12365506548954115, + 0.09673253936409072, + 0.12480282846193713, + 0.07103708960608282, + 0.11002668860912858 + ], + "min": [ + -0.06355953216552734, + -0.04261067509651184, + -0.03238748013973236, + -0.8163193464279175, + -0.9999952912330627, + -0.9917141795158386, + -0.9999973773956299, + -0.9783952236175537, + -0.9723159074783325, + -0.04037708044052124, + -0.03735368698835373, + -0.038711849600076675, + -0.8614951372146606, + -0.9999787211418152, + -0.999866783618927, + -0.9999956488609314, + -0.9994173645973206, + -0.9988884925842285 + ], + "max": [ + 0.061998218297958374, + 0.0458344966173172, + 0.03878185898065567, + 1.0, + 0.9999940991401672, + 0.9598066806793213, + 0.9999846816062927, + 1.0, + 0.9453224539756775, + 0.047787122428417206, + 0.03663015365600586, + 0.035171717405319214, + 1.0, + 0.9998984336853027, + 0.9957902431488037, + 0.9998234510421753, + 1.0, + 0.9834176301956177 + ], + "q01": [ + -0.010671588853001594, + -0.009902753978967666, + -0.011463710367679595, + 0.5971510696411133, + -0.5776714515686036, + -0.365093514919281, + -0.6168794810771941, + 0.5630949330329895, + -0.4168875393271446, + -0.010793376639485359, + -0.010862471386790275, + -0.012717538997530937, + 0.717755720615387, + -0.4773791265487671, + -0.32207715064287185, + -0.4278817278146743, + 0.6879345065355301, + -0.3701258164644241 + ], + "q99": [ + 0.010563958585262302, + 0.011707150414586068, + 0.010278001800179482, + 1.0, + 0.6363994938135149, + 0.3590057110786438, + 0.5965503102540972, + 1.0, + 0.41868470281362535, + 0.012027791813015944, + 0.011805244386196137, + 0.009609498158097267, + 1.0, + 0.4056023156642915, + 0.33110179990530014, + 0.46921330511569986, + 1.0, + 0.3799831938743592 + ] + }, + "state": { + "mean": [ + -0.11897202051494092, + -0.08552702002427823, + 0.12854886737996252, + 0.2918778286874832, + 0.01809812269527912, + 0.43606173786500896, + 0.12291358111620165, + 0.12168451534958107, + -0.117372205137917, + 0.09480141013492731, + 0.008084441370891022, + -0.2593001423118023, + 0.3436965686252823, + 0.5260973031243577 + ], + "std": [ + 0.012223750362818473, + 0.01705833494345576, + 0.010357956851324665, + 0.3006594128111135, + 0.43697078186840327, + 0.4677140085176359, + 0.4573032502649797, + 0.013485805219209779, + 0.018455334212482594, + 0.012178062594328713, + 0.3188772404141896, + 0.2803533493785275, + 0.4576174883087873, + 0.38483491739019904 + ], + "min": [ + -0.1972917765378952, + -0.11909574270248413, + 0.07881224900484085, + -0.635361909866333, + -0.684159517288208, + -0.6879675984382629, + -0.6942304372787476, + 0.08467704057693481, + -0.15859682857990265, + 0.0589338019490242, + -0.6379287838935852, + -0.7048074007034302, + -0.7033143639564514, + -0.705171525478363 + ], + "max": [ + -0.06873984634876251, + -0.020531464368104935, + 0.16333672404289246, + 0.9134082198143005, + 0.9063971042633057, + 0.9975486993789673, + 0.996588945388794, + 0.1723373681306839, + -0.06583588570356369, + 0.1314305067062378, + 0.8502479791641235, + 0.9033641219139099, + 0.9998450875282288, + 0.999701201915741 + ], + "q01": [ + -0.14904303550720216, + -0.10892165601253509, + 0.10371921509504319, + -0.48771277666091917, + -0.615600860118866, + -0.6644203662872314, + -0.5782026290893555, + 0.09894567728042603, + -0.15157766044139862, + 0.07210772931575775, + -0.535261082649231, + -0.6117035627365113, + -0.5849064826965332, + -0.5916226625442504 + ], + "q99": [ + -0.08959309607744216, + -0.028227567672729492, + 0.15458764135837555, + 0.7485551118850708, + 0.825931477546692, + 0.9508526086807251, + 0.934945559501648, + 0.15982903540134433, + -0.07119570672512054, + 0.12408614903688431, + 0.6337105154991152, + 0.72389395236969, + 0.978326451778412, + 0.9903406023979188 + ] + } +} \ No newline at end of file diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/tasks.jsonl b/Surgical/turin/mitic_lerobot_ex_vivo/meta/tasks.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..bfa2ce39b05ce6f5451d484a271e52b6db153c7d --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/tasks.jsonl @@ -0,0 +1,6 @@ +{"task_index": 0, "task": "Knot_tying_base"} +{"task_index": 1, "task": "Knot_tying_final"} +{"task_index": 2, "task": "Needle_extraction"} +{"task_index": 3, "task": "Needle_insertion"} +{"task_index": 4, "task": "Needle_positioning"} +{"task_index": 5, "task": "Tissue_Lift"} diff --git a/Surgical/turin/mitic_lerobot_ex_vivo/meta/temporal_stats.json b/Surgical/turin/mitic_lerobot_ex_vivo/meta/temporal_stats.json new file mode 100644 index 0000000000000000000000000000000000000000..776b54ca458979ad44271b39f89eca48ee3fffae --- /dev/null +++ b/Surgical/turin/mitic_lerobot_ex_vivo/meta/temporal_stats.json @@ -0,0 +1,4322 @@ +{ + "state": { + "psm1_joints": { + "q01": [ + 0.3337761294841766, + -0.1883205409348011, + 0.09695054091513157, + -4.53810977935791, + -0.9725785851478577, + -1.1193717074394227 + ], + "q02": [ + 0.34936872124671936, + -0.1788662225008011, + 0.10504890725016594, + -4.537690162658691, + -0.8796958470344544, + -0.9998848593235016 + ], + "q98": [ + 0.6592819690704346, + 0.28905415534973145, + 0.16151801288127896, + 2.4697282314300537, + 1.119872808456421, + 1.3750462293624874 + ], + "q99": [ + 0.676948588490486, + 0.3060287535190582, + 0.1638630053400993, + 2.772648379802701, + 1.2018547058105469, + 1.3891472053527831 + ], + "mean": [ + 0.49066048860549927, + -0.059549327939748764, + 0.13543912768363953, + -1.3058314323425293, + 0.202605202794075, + 0.22191694378852844 + ], + "std": [ + 0.07890473306179047, + 0.09694767743349075, + 0.01244165375828743, + 1.5269309282302856, + 0.5166023373603821, + 0.5797452926635742 + ], + "min": [ + 0.08974587917327881, + -0.28353241086006165, + 0.06284543871879578, + -4.556143283843994, + -1.3651353120803833, + -1.420839786529541 + ], + "max": [ + 0.753754198551178, + 0.35110631585121155, + 0.17488767206668854, + 4.23280143737793, + 1.4719849824905396, + 1.497558832168579 + ] + }, + "psm2_joints": { + "q01": [ + -0.6340101772546768, + -0.5166169220209121, + 0.14864478319883345, + -1.4719415891170502, + -1.0940485000610352, + -1.1427078974246978 + ], + "q02": [ + -0.6189538836479187, + -0.506742537021637, + 0.15212999284267426, + -0.051164351403713226, + -1.0074208974838257, + -1.0110493445396422 + ], + "q98": [ + -0.2733384072780609, + -0.03333131968975067, + 0.20160708039999004, + 4.53810977935791, + 1.079018473625183, + 1.1502966403961175 + ], + "q99": [ + -0.2558232545852661, + -0.024511950090527534, + 0.20354633241891856, + 4.538528919219971, + 1.215245008468628, + 1.3075583600997924 + ], + "mean": [ + -0.49131035804748535, + -0.32336610555648804, + 0.17848075926303864, + 2.483591079711914, + -0.053619857877492905, + 0.05420106276869774 + ], + "std": [ + 0.08169039338827133, + 0.10889644920825958, + 0.012622799724340439, + 1.472276210784912, + 0.5318530797958374, + 0.5422285795211792 + ], + "min": [ + -0.7376059293746948, + -0.5736677646636963, + 0.1285828948020935, + -4.542722702026367, + -1.4260751008987427, + -1.449070692062378 + ], + "max": [ + -0.1614900678396225, + 0.023948190733790398, + 0.22009319067001343, + 4.557191371917725, + 1.5165284872055054, + 1.9941186904907227 + ] + }, + "psm1_pose": { + "q01": [ + -0.14700351133942605, + -0.10851131416857243, + 0.10427004911005497, + -0.5011460065841675, + -0.6150340282917023, + -0.6405632281303406, + -0.5761803609132766 + ], + "q02": [ + -0.1420533201098442, + -0.1070335802435875, + 0.10728372931480408, + -0.4457537001371384, + -0.5974981498718261, + -0.6081210887432098, + -0.5497907090187073 + ], + "q98": [ + -0.07515962898731235, + -0.03122309055179364, + 0.1524435016512871, + 0.7307345950603484, + 0.78447340965271, + 0.91988286614418, + 0.900603014230728 + ], + "q99": [ + -0.07150086171925069, + -0.028944409191608456, + 0.15423167884349823, + 0.7529063141345977, + 0.8199422359466553, + 0.9468209326267242, + 0.9325071126222609 + ], + "mean": [ + -0.11395841091871262, + -0.08579684048891068, + 0.12895378470420837, + 0.30538496375083923, + -0.004042970947921276, + 0.4526439309120178, + 0.09884082525968552 + ], + "std": [ + 0.016442464664578438, + 0.015686577185988426, + 0.010110571049153805, + 0.3049955666065216, + 0.43393126130104065, + 0.46275782585144043, + 0.4432884156703949 + ], + "min": [ + -0.18929222226142883, + -0.11857771873474121, + 0.08011388778686523, + -0.635361909866333, + -0.6863210201263428, + -0.6879675984382629, + -0.6942304372787476 + ], + "max": [ + -0.06366249173879623, + -0.020531464368104935, + 0.16333672404289246, + 0.9134082198143005, + 0.9063971042633057, + 0.9975486993789673, + 0.996588945388794 + ] + }, + "psm2_pose": { + "q01": [ + 0.09982002854347229, + -0.15129468321800232, + 0.07232028566300869, + -0.5314237403869629, + -0.6077127730846406, + -0.5937735432386398, + -0.6009206730127334 + ], + "q02": [ + 0.1021451298892498, + -0.14915814250707626, + 0.07481731578707695, + -0.5060027039051056, + -0.5883738589286804, + -0.5624324238300323, + -0.5689133775234222 + ], + "q98": [ + 0.15627814829349518, + -0.07326109707355499, + 0.12157138153910632, + 0.5858983039855956, + 0.6551343512535094, + 0.9569090712070465, + 0.983917236328125 + ], + "q99": [ + 0.15869340568780893, + -0.0715140774846077, + 0.12382423132658005, + 0.6329265052080153, + 0.6983222079277037, + 0.9761039477586746, + 0.9898784345388412 + ], + "mean": [ + 0.1225055381655693, + -0.11671210825443268, + 0.09535897523164749, + 0.0446426086127758, + -0.2571812868118286, + 0.26833266019821167, + 0.5574407577514648 + ], + "std": [ + 0.01278232503682375, + 0.017551910132169724, + 0.011830533854663372, + 0.3181338310241699, + 0.26721975207328796, + 0.4712674915790558, + 0.3928562104701996 + ], + "min": [ + 0.08480814099311829, + -0.15859682857990265, + 0.0589338019490242, + -0.6420541405677795, + -0.7048074007034302, + -0.7033143639564514, + -0.705171525478363 + ], + "max": [ + 0.1723373681306839, + -0.06583588570356369, + 0.1314305067062378, + 0.8502479791641235, + 0.9033641219139099, + 0.9998450875282288, + 0.999701201915741 + ] + } + }, + "action": { + "psm1_pose": { + "q01": [ + [ + -0.0007519812881946564, + -0.0007759080082178116, + -0.0008505880832672119 + ], + [ + -0.0014736808836460114, + -0.0015219584852457046, + -0.0016633586585521698 + ], + [ + -0.0021723978221416473, + -0.0022251419723033905, + -0.0024558117240667345 + ], + [ + -0.0028488436341285706, + -0.002899744063615799, + -0.003230456039309502 + ], + [ + -0.003507616296410561, + -0.003536448031663895, + -0.00398563638329506 + ], + [ + -0.004123648181557656, + -0.004152193143963814, + -0.004702086150646209 + ], + [ + -0.004735311418771744, + -0.0047142674773931505, + -0.005398489534854889 + ], + [ + -0.005308364406228065, + -0.005264630615711212, + -0.006058434024453163 + ], + [ + -0.005858637019991875, + -0.005784541219472885, + -0.0066815105080604556 + ], + [ + -0.006409098133444786, + -0.006300958022475243, + -0.00727779895067215 + ], + [ + -0.006905774623155594, + -0.006780870445072651, + -0.007824077904224395 + ], + [ + -0.007384044975042343, + -0.007216451019048691, + -0.008353968411684036 + ], + [ + -0.007879526242613793, + -0.00765129640698433, + -0.008848125636577607 + ], + [ + -0.008314533457159996, + -0.008052696585655213, + -0.009320188388228417 + ], + [ + -0.008752749487757684, + -0.00843656711280346, + -0.0097592031955719 + ], + [ + -0.009172309711575509, + -0.008806799873709678, + -0.010191138982772827 + ], + [ + -0.009591310769319534, + -0.009162743166089058, + -0.01057745523750782 + ], + [ + -0.009994108378887177, + -0.00950442060828209, + -0.010967199206352234 + ], + [ + -0.0104176976531744, + -0.009823568128049374, + -0.011308427304029464 + ], + [ + -0.010800038352608681, + -0.01013971857726574, + -0.011658694222569465 + ], + [ + -0.011156957671046257, + -0.010439633801579475, + -0.011987295746803284 + ], + [ + -0.011476866379380226, + -0.010714216530323029, + -0.012269774079322815 + ], + [ + -0.011793518587946892, + -0.010993865057826043, + -0.012552293911576272 + ], + [ + -0.0121186875551939, + -0.011264045983552932, + -0.012812032476067544 + ], + [ + -0.012414588332176209, + -0.011495881602168084, + -0.0130896657705307 + ], + [ + -0.012763000577688218, + -0.011718615740537643, + -0.01333856113255024 + ], + [ + -0.013080435022711754, + -0.011945337355136872, + -0.0135702433437109 + ], + [ + -0.013374945521354676, + -0.01217466101050377, + -0.013798278495669366 + ], + [ + -0.013625456094741821, + -0.012391345500946045, + -0.014016707092523575 + ], + [ + -0.013885830789804458, + -0.012623292803764343, + -0.01420981340110302 + ], + [ + -0.014154326915740967, + -0.012844749987125396, + -0.014437555223703385 + ], + [ + -0.01441047839820385, + -0.013086806535720825, + -0.014641002267599106 + ], + [ + -0.014642595201730729, + -0.013313239514827728, + -0.01486164502799511 + ], + [ + -0.014866046458482742, + -0.0135385961830616, + -0.015033138543367386 + ], + [ + -0.015113628134131432, + -0.013723236545920373, + -0.015224068909883499 + ], + [ + -0.015368387922644616, + -0.013902201578021049, + -0.015391484051942825 + ], + [ + -0.015561659708619119, + -0.014091165289282798, + -0.01558790884912014 + ], + [ + -0.01575962223112583, + -0.014257524386048317, + -0.015768125355243683 + ], + [ + -0.015936651900410652, + -0.014432577341794968, + -0.01593988798558712 + ], + [ + -0.0161371398717165, + -0.014592861086130142, + -0.016101743578910827 + ], + [ + -0.016349175199866294, + -0.014800960049033165, + -0.016266250163316728 + ], + [ + -0.016527385041117667, + -0.014955026656389236, + -0.016446155682206153 + ], + [ + -0.016703716069459914, + -0.015112554281949997, + -0.016595179736614226 + ], + [ + -0.016893890500068665, + -0.015250052362680436, + -0.016739278957247736 + ], + [ + -0.017105718329548835, + -0.01539392925798893, + -0.016873080506920813 + ], + [ + -0.017272348776459695, + -0.015520064681768418, + -0.017038434743881226 + ], + [ + -0.01743542939424515, + -0.015669430121779442, + -0.01718774490058422 + ], + [ + -0.017546500712633133, + -0.015806530490517615, + -0.017323382124304773 + ], + [ + -0.01769408605992794, + -0.01591704398393631, + -0.017449991926550865 + ], + [ + -0.017844268903136253, + -0.016007975190877915, + -0.01759351447224617 + ] + ], + "q02": [ + [ + -0.0005672283470630646, + -0.0005942168831825257, + -0.0006593631207942963 + ], + [ + -0.0011150769889354706, + -0.001160290390253067, + -0.0013017851114273072 + ], + [ + -0.0016410814225673676, + -0.001709255874156952, + -0.0019284896552562714 + ], + [ + -0.002161139249801636, + -0.002238223105669022, + -0.0025386320054531096 + ], + [ + -0.0026608195900917056, + -0.0027381502091884612, + -0.003124183863401413 + ], + [ + -0.0031429560482501987, + -0.003219151347875595, + -0.0036958612501621245 + ], + [ + -0.0036070716381073, + -0.003665527403354645, + -0.004243756234645843 + ], + [ + -0.004046602100133896, + -0.004100063592195511, + -0.0047738470137119295 + ], + [ + -0.004473518878221512, + -0.004519408494234085, + -0.005276126116514206 + ], + [ + -0.004874414950609207, + -0.004922180473804474, + -0.005757811963558197 + ], + [ + -0.005280080139636993, + -0.005305726230144501, + -0.006230163276195526 + ], + [ + -0.005660694241523743, + -0.005668644458055496, + -0.006651093810796737 + ], + [ + -0.006029531210660934, + -0.00602444589138031, + -0.0070683231949806215 + ], + [ + -0.006373515725135804, + -0.006353750377893448, + -0.007454147189855576 + ], + [ + -0.006708962619304657, + -0.00666828915476799, + -0.007810079157352447 + ], + [ + -0.007002373337745667, + -0.006972300261259079, + -0.0081603741645813 + ], + [ + -0.0072974032163619995, + -0.007271016538143158, + -0.008487646728754043 + ], + [ + -0.007582514584064484, + -0.0075664550065994264, + -0.00878196969628334 + ], + [ + -0.0078713096678257, + -0.007856600433588028, + -0.00907026544213295 + ], + [ + -0.008145206719636916, + -0.008122147023677827, + -0.009347731620073319 + ], + [ + -0.00841221809387207, + -0.008367684334516526, + -0.009623939245939255 + ], + [ + -0.008664571046829224, + -0.00859690248966217, + -0.009863691478967667 + ], + [ + -0.008906374573707581, + -0.008845970630645753, + -0.010116333961486817 + ], + [ + -0.009140078127384186, + -0.009050455987453462, + -0.01034540519118309 + ], + [ + -0.009369857907295227, + -0.00925056129693985, + -0.010576761960983276 + ], + [ + -0.009577323496341706, + -0.009457837343215942, + -0.010802011936903 + ], + [ + -0.009810491353273392, + -0.009654784351587295, + -0.011029029488563538 + ], + [ + -0.010003161877393724, + -0.009876399338245393, + -0.011267222911119461 + ], + [ + -0.010228109508752824, + -0.01006746307015419, + -0.011490100622177124 + ], + [ + -0.010444696247577668, + -0.010268045365810394, + -0.011707247644662857 + ], + [ + -0.010622979402542114, + -0.010439543128013611, + -0.01190375730395317 + ], + [ + -0.01081144854426384, + -0.010604461282491684, + -0.012093310207128526 + ], + [ + -0.011011808365583419, + -0.010754463523626327, + -0.012279759347438812 + ], + [ + -0.01121297687292099, + -0.010905003547668457, + -0.012464025020599366 + ], + [ + -0.011397671401500702, + -0.01106077566742897, + -0.012632908076047897 + ], + [ + -0.011596315801143647, + -0.011191930323839187, + -0.012787372618913651 + ], + [ + -0.011775402426719666, + -0.011334472447633743, + -0.012940903306007386 + ], + [ + -0.011957233995199204, + -0.011483639180660248, + -0.013104262948036195 + ], + [ + -0.012126033753156662, + -0.01163965865969658, + -0.013248662352561951 + ], + [ + -0.012283088117837907, + -0.01177429884672165, + -0.013390697240829467 + ], + [ + -0.012430258393287659, + -0.011907943189144135, + -0.01353176862001419 + ], + [ + -0.012604424059391023, + -0.012040612101554871, + -0.013668976873159409 + ], + [ + -0.012743599563837051, + -0.01215886190533638, + -0.013793632835149765 + ], + [ + -0.012891953140497209, + -0.012295406013727188, + -0.013912134021520615 + ], + [ + -0.01302948608994484, + -0.012437552213668823, + -0.014036094844341278 + ], + [ + -0.01315969854593277, + -0.012579751014709473, + -0.014167244285345078 + ], + [ + -0.013281245976686477, + -0.012713132351636887, + -0.014307844787836074 + ], + [ + -0.013423057943582535, + -0.012859901338815689, + -0.014436802864074706 + ], + [ + -0.013560550510883332, + -0.0129948990046978, + -0.014560993611812591 + ], + [ + -0.013689285963773728, + -0.013124494552612305, + -0.014676833897829056 + ] + ], + "q98": [ + [ + 0.0005898846685886364, + 0.0006580054759979248, + 0.0005963882803916923 + ], + [ + 0.001164385825395584, + 0.001296723037958145, + 0.0011696748435497274 + ], + [ + 0.0017147293686866731, + 0.0019114281237125382, + 0.0017229016125202123 + ], + [ + 0.002255408763885483, + 0.0025073678791522978, + 0.0022693318128585716 + ], + [ + 0.0027646009624004066, + 0.0030845393240451786, + 0.0027936646342277514 + ], + [ + 0.003251743465661998, + 0.003628950864076613, + 0.0033003723621368337 + ], + [ + 0.0037249574065208423, + 0.004158388078212734, + 0.0037908132374286554 + ], + [ + 0.004175368100404737, + 0.004662352800369248, + 0.004250612407922743 + ], + [ + 0.004617826044559448, + 0.0051456131041049905, + 0.0046960270404815645 + ], + [ + 0.005049951225519178, + 0.005608388930559158, + 0.005126514136791226 + ], + [ + 0.0054575721919536534, + 0.006053844019770619, + 0.005528615713119498 + ], + [ + 0.005851491242647168, + 0.006481985747814174, + 0.005925921797752379 + ], + [ + 0.006218559890985477, + 0.006892305985093115, + 0.006285629272460937 + ], + [ + 0.006574977934360467, + 0.007287734895944595, + 0.006622665375471114 + ], + [ + 0.006913026124238957, + 0.007676874548196792, + 0.006958225816488249 + ], + [ + 0.007220767587423285, + 0.008031028956174842, + 0.007280270904302595 + ], + [ + 0.007514715790748583, + 0.008377119265496715, + 0.007573834061622611 + ], + [ + 0.007801207751035684, + 0.008711547404527653, + 0.007865259200334549 + ], + [ + 0.008069644272327401, + 0.009038163870573037, + 0.008132528066635131 + ], + [ + 0.008327175378799418, + 0.009350758343935011, + 0.008399895578622798 + ], + [ + 0.00858903422951693, + 0.009650973901152608, + 0.008624053150415414 + ], + [ + 0.008807438760995863, + 0.009967193752527236, + 0.008858335614204398 + ], + [ + 0.009051172584295266, + 0.010257753133773802, + 0.009082732796668994 + ], + [ + 0.009285673797130526, + 0.010534847676753976, + 0.009284932613372772 + ], + [ + 0.009493466168642035, + 0.010811878740787498, + 0.009496274590492213 + ], + [ + 0.00969452306628227, + 0.011078414767980575, + 0.009709980636835097 + ], + [ + 0.009891138970851896, + 0.011336014866828913, + 0.00990887433290481 + ], + [ + 0.010075610280036923, + 0.011589394360780691, + 0.010100455582141874 + ], + [ + 0.01028891593217849, + 0.01183056265115737, + 0.010276635289192197 + ], + [ + 0.010469660311937324, + 0.012052464336156839, + 0.010463131964206677 + ], + [ + 0.010658695250749564, + 0.012276079356670362, + 0.010634611546993241 + ], + [ + 0.01082372888922691, + 0.012474696040153496, + 0.010817347019910809 + ], + [ + 0.011009818762540804, + 0.012695673108100866, + 0.010977986752986908 + ], + [ + 0.011167148053646079, + 0.012901276126503942, + 0.011142264306545243 + ], + [ + 0.011333202570676755, + 0.013093616813421192, + 0.011303623467683791 + ], + [ + 0.01149832546710965, + 0.013276467174291604, + 0.011444582790136328 + ], + [ + 0.011620350927114475, + 0.013447143584489786, + 0.011609097570180875 + ], + [ + 0.011749698817729928, + 0.013614736944437022, + 0.011758757382631274 + ], + [ + 0.011905748397111825, + 0.013773182667791824, + 0.01192323818802832 + ], + [ + 0.01205570176243779, + 0.013909788578748692, + 0.012072583436965927 + ], + [ + 0.012216986566781983, + 0.014052505940198886, + 0.012215750664472577 + ], + [ + 0.01233834803104399, + 0.014170882143080193, + 0.012368161529302596 + ], + [ + 0.012475426942110032, + 0.014313771724700889, + 0.012501602321863174 + ], + [ + 0.01260611742734909, + 0.014418014436960202, + 0.012636303454637522 + ], + [ + 0.012714441269636152, + 0.01453690037131307, + 0.01275746092200279 + ], + [ + 0.01281898871064186, + 0.01465026110410687, + 0.012887895554304097 + ], + [ + 0.012922455668449379, + 0.014745499789714806, + 0.013022376298904417 + ], + [ + 0.01303558528423307, + 0.014850549325346945, + 0.01313814505934715 + ], + [ + 0.01314675137400625, + 0.014952642470598193, + 0.01326721936464308 + ], + [ + 0.013249694108962998, + 0.015067426711320867, + 0.013399384170770625 + ] + ], + "q99": [ + [ + 0.0007906841486692425, + 0.0008462619036436045, + 0.0007570360600948327 + ], + [ + 0.0015534265339374482, + 0.0016451893001794777, + 0.001480017676949501 + ], + [ + 0.0022871808707713975, + 0.0024190100282430625, + 0.002184547334909437 + ], + [ + 0.003006712347269057, + 0.0031733421236276567, + 0.002877729535102843 + ], + [ + 0.0036894554644822915, + 0.003891200944781302, + 0.003540937006473538 + ], + [ + 0.004348597005009649, + 0.004581242874264713, + 0.004165596216917035 + ], + [ + 0.004996494278311724, + 0.005251292660832401, + 0.004762810394167898 + ], + [ + 0.0056035557389259305, + 0.005878374278545373, + 0.0053482588380575164 + ], + [ + 0.006183164939284321, + 0.006494262814521777, + 0.005894780531525611 + ], + [ + 0.006746265664696647, + 0.007057115957140903, + 0.0064203892648220014 + ], + [ + 0.007271343618631363, + 0.007609085738658903, + 0.00693284288048744 + ], + [ + 0.007772538587450968, + 0.008119857758283612, + 0.00738906323909759 + ], + [ + 0.008219735324382749, + 0.008582874238491016, + 0.00783446349203586 + ], + [ + 0.00867680303752422, + 0.009064135178923599, + 0.00825340576469898 + ], + [ + 0.009098612889647483, + 0.009520993381738651, + 0.008642096966505036 + ], + [ + 0.009505898207426066, + 0.009974296912550924, + 0.009026778116822214 + ], + [ + 0.009902621284127219, + 0.010380724444985386, + 0.009348409548401812 + ], + [ + 0.010257864966988536, + 0.010800849795341488, + 0.009675367847084972 + ], + [ + 0.010614246875047662, + 0.011197691112756729, + 0.009969206228852265 + ], + [ + 0.010995543003082267, + 0.011601331755518904, + 0.010268862694501864 + ], + [ + 0.01131074458360672, + 0.011959618926048278, + 0.010531067252159111 + ], + [ + 0.011600275859236713, + 0.01234444484114646, + 0.010799260437488554 + ], + [ + 0.011860133409500095, + 0.012703972682356832, + 0.01105265974998474 + ], + [ + 0.012106327041983583, + 0.01307605244219303, + 0.011308994367718688 + ], + [ + 0.01234286718070507, + 0.013405821099877348, + 0.01154334329068659 + ], + [ + 0.012561714202165558, + 0.013750115036964383, + 0.011762357503175726 + ], + [ + 0.012794951200485183, + 0.014062147811055165, + 0.011978569775819776 + ], + [ + 0.01303757339715957, + 0.014398882947862122, + 0.01219275936484336 + ], + [ + 0.013252622559666617, + 0.014695549067109815, + 0.012407996132969824 + ], + [ + 0.013451018109917633, + 0.014960676059126845, + 0.012603884339332565 + ], + [ + 0.013633093833923329, + 0.015222541540861124, + 0.012786259055137632 + ], + [ + 0.013813231214880841, + 0.01547461114823816, + 0.012962491735815984 + ], + [ + 0.013951477855443933, + 0.015751032531261415, + 0.0131394026428461 + ], + [ + 0.014087472110986704, + 0.01599314138293266, + 0.013306847289204594 + ], + [ + 0.01425108604133123, + 0.016254877783358084, + 0.013495458140969266 + ], + [ + 0.014399456530809382, + 0.01648679763078687, + 0.013676416054368017 + ], + [ + 0.014547597169876067, + 0.01670498408377168, + 0.013870024159550631 + ], + [ + 0.014696506038308136, + 0.016928664445877043, + 0.014087525978684404 + ], + [ + 0.014838435202836986, + 0.017130669206380837, + 0.014255793988704666 + ], + [ + 0.014964062646031378, + 0.01727725006639957, + 0.014423112869262695 + ], + [ + 0.015092548429965953, + 0.0174500797688961, + 0.01460356593132017 + ], + [ + 0.015227003172039979, + 0.017621250487864008, + 0.014769952520728099 + ], + [ + 0.015324922874569834, + 0.017802856713533398, + 0.014934925213456123 + ], + [ + 0.015457683652639385, + 0.01795787528157232, + 0.01508508190512657 + ], + [ + 0.015575636699795718, + 0.018153172954916946, + 0.015234913825988756 + ], + [ + 0.015707123056054113, + 0.01830443784594534, + 0.015374443829059583 + ], + [ + 0.01584815293550491, + 0.018446644097566606, + 0.015511827692389478 + ], + [ + 0.015957177430391302, + 0.018595329821109764, + 0.015660116970539092 + ], + [ + 0.016098636165261266, + 0.01876465965062375, + 0.015817277207970614 + ], + [ + 0.016251704394817337, + 0.018907069824635976, + 0.015956329777836793 + ] + ], + "mean": [ + [ + -2.284540641994681e-06, + -4.593211542669451e-06, + 2.2840442852611886e-06 + ], + [ + -4.87847455588053e-06, + -9.058977411768865e-06, + 4.592280674842186e-06 + ], + [ + -7.790342351654544e-06, + -1.3379907613852993e-05, + 6.931007192179095e-06 + ], + [ + -1.1010677553713322e-05, + -1.7541202396387234e-05, + 9.289205991080962e-06 + ], + [ + -1.455285837437259e-05, + -2.1548696167883463e-05, + 1.1662432370940223e-05 + ], + [ + -1.8415297745377757e-05, + -2.5406199711142108e-05, + 1.4048415323486552e-05 + ], + [ + -2.2599679141421802e-05, + -2.910364310082514e-05, + 1.6430169125669636e-05 + ], + [ + -2.711385786824394e-05, + -3.2649295462761074e-05, + 1.88079120562179e-05 + ], + [ + -3.195704994141124e-05, + -3.604604353313334e-05, + 2.1183284843573347e-05 + ], + [ + -3.712204852490686e-05, + -3.9274451410165057e-05, + 2.354904790990986e-05 + ], + [ + -4.261212961864658e-05, + -4.2336196202086285e-05, + 2.5905554139171727e-05 + ], + [ + -4.841999907512218e-05, + -4.524019459495321e-05, + 2.8253565687919036e-05 + ], + [ + -5.453182166093029e-05, + -4.798334339284338e-05, + 3.057813592022285e-05 + ], + [ + -6.094097625464201e-05, + -5.056638110545464e-05, + 3.28654314216692e-05 + ], + [ + -6.762428529327735e-05, + -5.299675831338391e-05, + 3.5117511288262904e-05 + ], + [ + -7.457795436494052e-05, + -5.529052214114927e-05, + 3.7320169212762266e-05 + ], + [ + -8.180147415259853e-05, + -5.7463879784336314e-05, + 3.947164077544585e-05 + ], + [ + -8.92640309757553e-05, + -5.9525449614739046e-05, + 4.158458614256233e-05 + ], + [ + -9.694242180557922e-05, + -6.148269312689081e-05, + 4.3657099013216794e-05 + ], + [ + -0.00010482738434802741, + -6.334056524792686e-05, + 4.569978773361072e-05 + ], + [ + -0.0001128960502683185, + -6.510717503260821e-05, + 4.772785905515775e-05 + ], + [ + -0.00012112026161048561, + -6.678878708044067e-05, + 4.973667819285765e-05 + ], + [ + -0.00012948206858709455, + -6.839782872702926e-05, + 5.171171869733371e-05 + ], + [ + -0.00013794809638056904, + -6.995665171416476e-05, + 5.366601544665173e-05 + ], + [ + -0.0001465073728468269, + -7.146962161641568e-05, + 5.5610380513826385e-05 + ], + [ + -0.00015514712140429765, + -7.294946408364922e-05, + 5.7536806707503274e-05 + ], + [ + -0.00016384314221795648, + -7.440345507347956e-05, + 5.944081203779206e-05 + ], + [ + -0.00017258508887607604, + -7.582266698591411e-05, + 6.131787085905671e-05 + ], + [ + -0.0001813715643947944, + -7.723188173258677e-05, + 6.317303632386029e-05 + ], + [ + -0.00019020613399334252, + -7.864263898227364e-05, + 6.502171163447201e-05 + ], + [ + -0.00019908600370399654, + -8.004779374459758e-05, + 6.686242704745382e-05 + ], + [ + -0.0002080097037833184, + -8.145910396706313e-05, + 6.868504715384915e-05 + ], + [ + -0.000216963846469298, + -8.286807860713452e-05, + 7.051227294141427e-05 + ], + [ + -0.00022593069297727197, + -8.426549902651459e-05, + 7.232385542010888e-05 + ], + [ + -0.00023490158491767943, + -8.565215830458328e-05, + 7.410682155750692e-05 + ], + [ + -0.0002438718220219016, + -8.703265484655276e-05, + 7.586723222630098e-05 + ], + [ + -0.0002528460754547268, + -8.84084656718187e-05, + 7.759169966448098e-05 + ], + [ + -0.000261818669969216, + -8.977893594419584e-05, + 7.929179264465347e-05 + ], + [ + -0.0002708029933273792, + -9.114308340940624e-05, + 8.098347461782396e-05 + ], + [ + -0.00027978644357062876, + -9.250323637388647e-05, + 8.266256918432191e-05 + ], + [ + -0.0002887834270950407, + -9.384933218825608e-05, + 8.434972551185638e-05 + ], + [ + -0.00029779630131088197, + -9.518893784843385e-05, + 8.606418850831687e-05 + ], + [ + -0.0003068149962928146, + -9.652056178310886e-05, + 8.781370706856251e-05 + ], + [ + -0.00031585097895003855, + -9.783964196685702e-05, + 8.96039346116595e-05 + ], + [ + -0.0003248947614338249, + -9.915225382428616e-05, + 9.144622163148597e-05 + ], + [ + -0.0003339594404678792, + -0.0001004562436719425, + 9.33553819777444e-05 + ], + [ + -0.0003430394281167537, + -0.00010174480121349916, + 9.532899275654927e-05 + ], + [ + -0.00035213804221712053, + -0.00010303848830517381, + 9.736203355714679e-05 + ], + [ + -0.00036124963662587106, + -0.00010433638817630708, + 9.946789941750467e-05 + ], + [ + -0.00037035628338344395, + -0.00010564511467237025, + 0.00010163990373257548 + ] + ], + "std": [ + [ + 0.00024970961385406554, + 0.0002701823250390589, + 0.00026647100457921624 + ], + [ + 0.0004898491897620261, + 0.0005291194538585842, + 0.0005230155074968934 + ], + [ + 0.0007225761073641479, + 0.0007788709481246769, + 0.0007730614161118865 + ], + [ + 0.0009487116476520896, + 0.0010204537538811564, + 0.0010177933145314455 + ], + [ + 0.0011666037607938051, + 0.0012523418990895152, + 0.0012550154933705926 + ], + [ + 0.0013760129222646356, + 0.0014743729261681437, + 0.0014839684590697289 + ], + [ + 0.00157782225869596, + 0.0016875416040420532, + 0.001705056638456881 + ], + [ + 0.0017722162883728743, + 0.001892294269055128, + 0.0019180075032636523 + ], + [ + 0.0019592896569520235, + 0.0020891819149255753, + 0.0021227893885225058 + ], + [ + 0.0021391259506344795, + 0.0022784455213695765, + 0.0023192830849438906 + ], + [ + 0.002311635296791792, + 0.0024601833429187536, + 0.0025073490105569363 + ], + [ + 0.0024767485447227955, + 0.002634495496749878, + 0.002687126398086548 + ], + [ + 0.002634654054418206, + 0.00280168023891747, + 0.0028587570413947105 + ], + [ + 0.0027856554370373487, + 0.002962048165500164, + 0.003022567369043827 + ], + [ + 0.0029299918096512556, + 0.003115947125479579, + 0.00317883538082242 + ], + [ + 0.0030682433862239122, + 0.0032638630364090204, + 0.003328001592308283 + ], + [ + 0.0032008502166718245, + 0.0034063123166561127, + 0.0034703745041042566 + ], + [ + 0.00332826841622591, + 0.0035436172038316727, + 0.0036063832230865955 + ], + [ + 0.003450963879004121, + 0.003676224034279585, + 0.0037363595329225063 + ], + [ + 0.0035693664103746414, + 0.003804365172982216, + 0.0038607304450124502 + ], + [ + 0.003683954942971468, + 0.003928355872631073, + 0.003979844972491264 + ], + [ + 0.0037949210964143276, + 0.0040484084747731686, + 0.004094075411558151 + ], + [ + 0.003902677446603775, + 0.004164648707956076, + 0.004203689284622669 + ], + [ + 0.004007407929748297, + 0.004277295432984829, + 0.004309024196118116 + ], + [ + 0.004109357018023729, + 0.0043864077888429165, + 0.004410390742123127 + ], + [ + 0.004208742640912533, + 0.004492169711738825, + 0.004508150741457939 + ], + [ + 0.004305864684283733, + 0.004594921134412289, + 0.004602458328008652 + ], + [ + 0.004400772508233786, + 0.004694594070315361, + 0.00469364644959569 + ], + [ + 0.004493522923439741, + 0.004791316110640764, + 0.0047818333841860294 + ], + [ + 0.004584312904626131, + 0.004885171074420214, + 0.004867217503488064 + ], + [ + 0.004673126619309187, + 0.004976289812475443, + 0.0049499766901135445 + ], + [ + 0.004759996198117733, + 0.005064773838967085, + 0.005030294880270958 + ], + [ + 0.004844986833631992, + 0.005150694865733385, + 0.005108310841023922 + ], + [ + 0.004928170703351498, + 0.00523411575704813, + 0.005184160079807043 + ], + [ + 0.005009607411921024, + 0.005315202288329601, + 0.005257904063910246 + ], + [ + 0.005089295096695423, + 0.005393945146352053, + 0.005329820327460766 + ], + [ + 0.005167276598513126, + 0.005470522679388523, + 0.00539995776489377 + ], + [ + 0.005243667867034674, + 0.0055450075305998325, + 0.005468348506838083 + ], + [ + 0.005318437237292528, + 0.005617439281195402, + 0.005535245873034 + ], + [ + 0.0053916508331894875, + 0.005688008386641741, + 0.005600520875304937 + ], + [ + 0.005463473033159971, + 0.005756749305874109, + 0.005664453376084566 + ], + [ + 0.005533783230930567, + 0.0058237421326339245, + 0.005727049428969622 + ], + [ + 0.005602759774774313, + 0.0058890460059046745, + 0.005788297858089209 + ], + [ + 0.005670395214110613, + 0.005952777806669474, + 0.005848387721925974 + ], + [ + 0.005736672319471836, + 0.006014998536556959, + 0.005907251033931971 + ], + [ + 0.005801877472549677, + 0.0060757603496313095, + 0.005965120159089565 + ], + [ + 0.005865765269845724, + 0.00613511772826314, + 0.006021849345415831 + ], + [ + 0.005928403697907925, + 0.006193151697516441, + 0.006077572237700224 + ], + [ + 0.005989849101752043, + 0.00624987343326211, + 0.006132297217845917 + ], + [ + 0.006050172261893749, + 0.006305281072854996, + 0.006186087615787983 + ] + ], + "min": [ + [ + -0.00629761815071106, + -0.002994127571582794, + -0.0038773566484451294 + ], + [ + -0.010465070605278015, + -0.00546158105134964, + -0.006148912012577057 + ], + [ + -0.014550700783729553, + -0.007723420858383179, + -0.008342869579792023 + ], + [ + -0.01842091977596283, + -0.010633692145347595, + -0.00953652709722519 + ], + [ + -0.02150660753250122, + -0.012845858931541443, + -0.01163366436958313 + ], + [ + -0.025355800986289978, + -0.015042528510093689, + -0.013603299856185913 + ], + [ + -0.028476089239120483, + -0.01790645346045494, + -0.016126126050949097 + ], + [ + -0.031277090311050415, + -0.02005956321954727, + -0.017951272428035736 + ], + [ + -0.03393259644508362, + -0.022186338901519775, + -0.019681699573993683 + ], + [ + -0.036488473415374756, + -0.02467390149831772, + -0.02139144390821457 + ], + [ + -0.03822624683380127, + -0.026498943567276, + -0.02293235808610916 + ], + [ + -0.03950399160385132, + -0.02795543521642685, + -0.024662785232067108 + ], + [ + -0.040494054555892944, + -0.02935255691409111, + -0.026131853461265564 + ], + [ + -0.040953636169433594, + -0.030638378113508224, + -0.027252495288848877 + ], + [ + -0.04121202230453491, + -0.03151755779981613, + -0.02823442965745926 + ], + [ + -0.041219860315322876, + -0.03202231600880623, + -0.02908191829919815 + ], + [ + -0.04121871292591095, + -0.032490286976099014, + -0.029652923345565796 + ], + [ + -0.04121917486190796, + -0.03292355686426163, + -0.030029907822608948 + ], + [ + -0.041227489709854126, + -0.03320503979921341, + -0.030174322426319122 + ], + [ + -0.04259490221738815, + -0.0335693433880806, + -0.030269242823123932 + ], + [ + -0.044025763869285583, + -0.03397165238857269, + -0.03023000806570053 + ], + [ + -0.04519442468881607, + -0.03455299139022827, + -0.030085884034633636 + ], + [ + -0.046304985880851746, + -0.035190075635910034, + -0.02987833321094513 + ], + [ + -0.04759271442890167, + -0.03616280481219292, + -0.029468797147274017 + ], + [ + -0.04885505139827728, + -0.037041984498500824, + -0.029866285622119904 + ], + [ + -0.05078067630529404, + -0.037820860743522644, + -0.030460797250270844 + ], + [ + -0.052440665662288666, + -0.03879387304186821, + -0.030883438885211945 + ], + [ + -0.054211921989917755, + -0.03967305272817612, + -0.03128407150506973 + ], + [ + -0.05598016828298569, + -0.04041890799999237, + -0.03163706511259079 + ], + [ + -0.058367080986499786, + -0.04103463143110275, + -0.031984053552150726 + ], + [ + -0.06008807569742203, + -0.04167264699935913, + -0.032156214118003845 + ], + [ + -0.06212867051362991, + -0.04217740520834923, + -0.032284364104270935 + ], + [ + -0.06355953216552734, + -0.04261067509651184, + -0.03238748013973236 + ], + [ + -0.06486630439758301, + -0.04301779717206955, + -0.032442718744277954 + ], + [ + -0.0660349652171135, + -0.04308127239346504, + -0.032488465309143066 + ], + [ + -0.06714552640914917, + -0.04314105585217476, + -0.03251561522483826 + ], + [ + -0.06814244389533997, + -0.043105240911245346, + -0.03251178562641144 + ], + [ + -0.0689573884010315, + -0.04308412969112396, + -0.032472625374794006 + ], + [ + -0.06952139735221863, + -0.04310893267393112, + -0.03251371532678604 + ], + [ + -0.06993836164474487, + -0.04314391314983368, + -0.032962553203105927 + ], + [ + -0.07021209597587585, + -0.043072644621133804, + -0.03340006619691849 + ], + [ + -0.0704546645283699, + -0.04291483387351036, + -0.03400631994009018 + ], + [ + -0.07063395529985428, + -0.04277830943465233, + -0.03446030616760254 + ], + [ + -0.07074597477912903, + -0.04258790239691734, + -0.035075172781944275 + ], + [ + -0.0708286315202713, + -0.04237815737724304, + -0.035579532384872437 + ], + [ + -0.07088956981897354, + -0.042139600962400436, + -0.03611405938863754 + ], + [ + -0.07087691873311996, + -0.041802991181612015, + -0.03662952035665512 + ], + [ + -0.07083138823509216, + -0.04131023585796356, + -0.037041641771793365 + ], + [ + -0.0707768052816391, + -0.040867943316698074, + -0.03738432377576828 + ], + [ + -0.0713096484541893, + -0.04037518799304962, + -0.03765746206045151 + ] + ], + "max": [ + [ + 0.005622968077659607, + 0.004217565059661865, + 0.0045098960399627686 + ], + [ + 0.009663239121437073, + 0.007455408573150635, + 0.007621482014656067 + ], + [ + 0.013332158327102661, + 0.010386548936367035, + 0.010749280452728271 + ], + [ + 0.017331033945083618, + 0.013476632535457611, + 0.012846454977989197 + ], + [ + 0.02066415548324585, + 0.0161113440990448, + 0.014064684510231018 + ], + [ + 0.022993624210357666, + 0.018124788999557495, + 0.014487132430076599 + ], + [ + 0.02494339644908905, + 0.019968077540397644, + 0.0163823664188385 + ], + [ + 0.026718869805336, + 0.021311722695827484, + 0.018123678863048553 + ], + [ + 0.028995782136917114, + 0.02215591073036194, + 0.0198187455534935 + ], + [ + 0.030823737382888794, + 0.02298537641763687, + 0.021913155913352966 + ], + [ + 0.032779812812805176, + 0.02352091670036316, + 0.02347336709499359 + ], + [ + 0.0351567268371582, + 0.02445707470178604, + 0.024825185537338257 + ], + [ + 0.03775060176849365, + 0.025386743247509003, + 0.026000864803791046 + ], + [ + 0.04012751579284668, + 0.026290960609912872, + 0.02710559219121933 + ], + [ + 0.04235421121120453, + 0.027123823761940002, + 0.028142906725406647 + ], + [ + 0.04443882405757904, + 0.028053492307662964, + 0.029098883271217346 + ], + [ + 0.046977654099464417, + 0.029095754027366638, + 0.030052535235881805 + ], + [ + 0.04867391288280487, + 0.030167963355779648, + 0.03055427223443985 + ], + [ + 0.05026896297931671, + 0.031552478671073914, + 0.031023748219013214 + ], + [ + 0.05200742185115814, + 0.03298201411962509, + 0.031435370445251465 + ], + [ + 0.05360247194766998, + 0.03428865969181061, + 0.03182066231966019 + ], + [ + 0.055029526352882385, + 0.035642560571432114, + 0.03212795406579971 + ], + [ + 0.0562942773103714, + 0.03707209601998329, + 0.032349005341529846 + ], + [ + 0.05753575265407562, + 0.038243718445301056, + 0.032569557428359985 + ], + [ + 0.05855342745780945, + 0.03927985578775406, + 0.03279031813144684 + ], + [ + 0.05957254767417908, + 0.04057030752301216, + 0.03301087021827698 + ], + [ + 0.06017841398715973, + 0.041405417025089264, + 0.033161938190460205 + ], + [ + 0.06072898209095001, + 0.04215819761157036, + 0.03328492492437363 + ], + [ + 0.061100199818611145, + 0.04308294877409935, + 0.03339749574661255 + ], + [ + 0.06145542860031128, + 0.04375430569052696, + 0.03360164910554886 + ], + [ + 0.06168365478515625, + 0.044410910457372665, + 0.033976949751377106 + ], + [ + 0.061898261308670044, + 0.04516313970088959, + 0.03430707007646561 + ], + [ + 0.061998218297958374, + 0.0458344966173172, + 0.03456511348485947 + ], + [ + 0.06214199960231781, + 0.04638838395476341, + 0.03477107733488083 + ], + [ + 0.06236948072910309, + 0.0468846932053566, + 0.034922607243061066 + ], + [ + 0.06259770691394806, + 0.047341227531433105, + 0.03506243973970413 + ], + [ + 0.06265409290790558, + 0.04792537912726402, + 0.035158880054950714 + ], + [ + 0.06267547607421875, + 0.04832317680120468, + 0.035217560827732086 + ], + [ + 0.06259657442569733, + 0.048712775111198425, + 0.0352395698428154 + ], + [ + 0.06249389052391052, + 0.04911025986075401, + 0.03522644191980362 + ], + [ + 0.06223095953464508, + 0.04949985817074776, + 0.03519885987043381 + ], + [ + 0.06193241477012634, + 0.04980437830090523, + 0.03537224978208542 + ], + [ + 0.06159059703350067, + 0.05010353773832321, + 0.036162927746772766 + ], + [ + 0.06122593581676483, + 0.05024421215057373, + 0.03681613504886627 + ], + [ + 0.06070208549499512, + 0.05037396401166916, + 0.03743397444486618 + ], + [ + 0.0602262020111084, + 0.05049104988574982, + 0.03793441504240036 + ], + [ + 0.05980353057384491, + 0.05051761493086815, + 0.038260623812675476 + ], + [ + 0.05942501127719879, + 0.05053943023085594, + 0.03847000002861023 + ], + [ + 0.05909505486488342, + 0.0505385659635067, + 0.03867451101541519 + ], + [ + 0.05889670550823212, + 0.05051514878869057, + 0.03878375142812729 + ] + ] + }, + "psm2_pose": { + "q01": [ + [ + -0.0007873573899269105, + -0.0007614824175834656, + -0.0008474363386631012 + ], + [ + -0.0015461386740207672, + -0.001505354568362236, + -0.0016704114526510238 + ], + [ + -0.002294325679540634, + -0.0022306475043296814, + -0.002481805831193924 + ], + [ + -0.0030273272097110747, + -0.002939899116754532, + -0.003286561444401741 + ], + [ + -0.0037321972101926806, + -0.00362812764942646, + -0.0040479983389377595 + ], + [ + -0.004393661543726921, + -0.004286268725991249, + -0.004788249507546425 + ], + [ + -0.0050401662290096285, + -0.004919984787702561, + -0.005523030757904053 + ], + [ + -0.005647142305970192, + -0.005540499538183212, + -0.0062086498737335205 + ], + [ + -0.00623527817428112, + -0.0061187101900577546, + -0.006889613941311836 + ], + [ + -0.006816513389348984, + -0.0067001874744892125, + -0.007534679695963859 + ], + [ + -0.007327837944030762, + -0.007229822650551796, + -0.008135382235050202 + ], + [ + -0.007835301160812378, + -0.007764445766806603, + -0.008731899410486221 + ], + [ + -0.008322678357362747, + -0.008254679739475251, + -0.009271337762475013 + ], + [ + -0.008766687288880349, + -0.008733079880475997, + -0.009807800874114037 + ], + [ + -0.009202920645475388, + -0.009178000390529633, + -0.010354801192879676 + ], + [ + -0.009601820260286331, + -0.009616419523954391, + -0.010838580429553985 + ], + [ + -0.009999732449650765, + -0.010003210231661796, + -0.011356861665844918 + ], + [ + -0.010373857021331787, + -0.010383295789361001, + -0.011824083551764489 + ], + [ + -0.010729758068919182, + -0.010748533830046654, + -0.012275174111127853 + ], + [ + -0.011088181063532829, + -0.011071865633130073, + -0.012717376276850701 + ], + [ + -0.011458077803254127, + -0.011430065631866455, + -0.013121304959058762 + ], + [ + -0.01180021531879902, + -0.011754721254110336, + -0.013495475798845292 + ], + [ + -0.012121627405285836, + -0.012076399177312852, + -0.013895756602287293 + ], + [ + -0.012439885884523392, + -0.012395920231938362, + -0.014259756356477738 + ], + [ + -0.012743347361683846, + -0.012695453092455865, + -0.01463708333671093 + ], + [ + -0.01304211586713791, + -0.012966683059930801, + -0.014962382167577743 + ], + [ + -0.013316261470317841, + -0.013254834935069085, + -0.015266346409916878 + ], + [ + -0.01358912706375122, + -0.013502125218510628, + -0.015587422773241997 + ], + [ + -0.0138736592233181, + -0.01374869279563427, + -0.015862207859754562 + ], + [ + -0.014128131791949272, + -0.013983419016003609, + -0.01612567022442818 + ], + [ + -0.014400763511657715, + -0.014181967377662658, + -0.016380831226706506 + ], + [ + -0.01463051252067089, + -0.01438990354537964, + -0.01662172593176365 + ], + [ + -0.0149000995606184, + -0.014589564204216003, + -0.016869975477457045 + ], + [ + -0.015144380182027817, + -0.01477394461631775, + -0.01706169806420803 + ], + [ + -0.015373130142688752, + -0.014997653663158417, + -0.01724459931254387 + ], + [ + -0.015588763132691384, + -0.015182712152600288, + -0.01744299501180649 + ], + [ + -0.015824351385235788, + -0.01535773642361164, + -0.01762408025562763 + ], + [ + -0.01602827899158001, + -0.015557259395718575, + -0.017797742187976837 + ], + [ + -0.01623373195528984, + -0.015747316256165503, + -0.017958536073565484 + ], + [ + -0.016451946794986724, + -0.015953719913959503, + -0.018114762976765633 + ], + [ + -0.01664794683456421, + -0.01613871529698372, + -0.018253209069371223 + ], + [ + -0.016869371980428694, + -0.016327187716960907, + -0.01836559683084488 + ], + [ + -0.01707030802965164, + -0.016513809338212015, + -0.018494933918118475 + ], + [ + -0.017240395396947862, + -0.016691385433077813, + -0.018621423542499543 + ], + [ + -0.017422801926732064, + -0.016865477412939072, + -0.01874687075614929 + ], + [ + -0.017573647126555444, + -0.017019725441932677, + -0.018821736201643943 + ], + [ + -0.0177695781737566, + -0.01719262309372425, + -0.0189136653393507 + ], + [ + -0.0179173094779253, + -0.017334275096654892, + -0.01900770790874958 + ], + [ + -0.01813205048441887, + -0.017482291907072067, + -0.0190949809551239 + ], + [ + -0.018309354186058044, + -0.017619308605790137, + -0.019195122718811037 + ] + ], + "q02": [ + [ + -0.0005905915796756744, + -0.0005692905187606812, + -0.000640350878238678 + ], + [ + -0.0011678674817085268, + -0.0011274605989456178, + -0.0012680433690547945 + ], + [ + -0.0017318576574325562, + -0.0016724979877471924, + -0.0018915963172912598 + ], + [ + -0.002287277728319168, + -0.002203856408596039, + -0.002499651163816452 + ], + [ + -0.002811439335346222, + -0.002719196826219559, + -0.003093078434467316 + ], + [ + -0.0033217766880989075, + -0.0032080228626728056, + -0.00366928830742836 + ], + [ + -0.0038163772225379942, + -0.0036891455948352813, + -0.004234868586063385 + ], + [ + -0.00427631214261055, + -0.004149378091096878, + -0.004772725105285644 + ], + [ + -0.004728077948093414, + -0.004599573612213135, + -0.005287117213010788 + ], + [ + -0.005164611041545868, + -0.0050220279395580296, + -0.00581586629152298 + ], + [ + -0.005574566572904587, + -0.005431390255689621, + -0.006303372979164124 + ], + [ + -0.0059629641473293304, + -0.005843180119991302, + -0.006774258613586426 + ], + [ + -0.0063136456906795506, + -0.006215766817331314, + -0.007238866090774536 + ], + [ + -0.006665378212928772, + -0.006605304628610611, + -0.00766806960105896 + ], + [ + -0.007003587782382965, + -0.006942624747753144, + -0.008097251951694489 + ], + [ + -0.007331581413745881, + -0.0072912415862083435, + -0.008510047644376755 + ], + [ + -0.007638281881809234, + -0.007624153047800064, + -0.008898311704397201 + ], + [ + -0.007946179807186126, + -0.007954166382551192, + -0.009280955493450165 + ], + [ + -0.008243395686149598, + -0.00827690288424492, + -0.009655059427022933 + ], + [ + -0.0085170578956604, + -0.008570963889360428, + -0.010013484060764313 + ], + [ + -0.008786069750785828, + -0.008872574865818024, + -0.010364720225334167 + ], + [ + -0.009030816256999969, + -0.009160026162862779, + -0.010693107545375825 + ], + [ + -0.009284464120864868, + -0.009422057420015334, + -0.011003421396017074 + ], + [ + -0.009513553529977799, + -0.009674805104732514, + -0.01130150943994522 + ], + [ + -0.009759365916252136, + -0.009898166954517364, + -0.011571346521377564 + ], + [ + -0.010014979839324952, + -0.010136763006448746, + -0.01184998095035553 + ], + [ + -0.010242046564817428, + -0.010363495647907258, + -0.012119958847761155 + ], + [ + -0.01048202157020569, + -0.010606170296669007, + -0.012352789789438249 + ], + [ + -0.010740209370851517, + -0.010806408226490021, + -0.012622296810150146 + ], + [ + -0.010981404334306716, + -0.011024319380521775, + -0.01287527471780777 + ], + [ + -0.011219118535518647, + -0.011240144819021225, + -0.013108617216348649 + ], + [ + -0.011432248800992965, + -0.011448595821857453, + -0.01332980126142502 + ], + [ + -0.011662431657314301, + -0.01165166437625885, + -0.01355382725596428 + ], + [ + -0.011880069971084595, + -0.011876357793807983, + -0.013763231486082076 + ], + [ + -0.01206207275390625, + -0.012085869312286376, + -0.013971975594758988 + ], + [ + -0.012231360524892806, + -0.012297778576612474, + -0.014172605127096177 + ], + [ + -0.012410627752542496, + -0.012491376101970673, + -0.01436415061354637 + ], + [ + -0.012567300200462341, + -0.012665715366601944, + -0.014529492408037185 + ], + [ + -0.012740600109100341, + -0.012822184264659881, + -0.01469110906124115 + ], + [ + -0.012897731810808182, + -0.012981310486793518, + -0.014839061945676803 + ], + [ + -0.01307864934206009, + -0.013146824985742569, + -0.014958525896072388 + ], + [ + -0.013234310150146485, + -0.01327529713511467, + -0.015089146941900253 + ], + [ + -0.01339782476425171, + -0.013406978845596313, + -0.015220424830913544 + ], + [ + -0.013539619594812393, + -0.01353744775056839, + -0.0153362175822258 + ], + [ + -0.013678734302520751, + -0.01368256911635399, + -0.015450446158647537 + ], + [ + -0.013805458098649978, + -0.013807535469532013, + -0.015554354339838029 + ], + [ + -0.013937272876501084, + -0.013934970051050186, + -0.015665087699890137 + ], + [ + -0.014077267944812774, + -0.014073835611343384, + -0.01576162502169609 + ], + [ + -0.014232307523488998, + -0.014189495891332627, + -0.01585914075374603 + ], + [ + -0.014365501403808593, + -0.014294898509979248, + -0.01595725119113922 + ] + ], + "q98": [ + [ + 0.0006113299727439868, + 0.0006247013807296753, + 0.0005323563516139978 + ], + [ + 0.0012082241475582112, + 0.0012352035939693449, + 0.0010515706241130806 + ], + [ + 0.0017919488251209228, + 0.0018324932456016511, + 0.001560640782117843 + ], + [ + 0.0023683117330074287, + 0.00241987168788909, + 0.0020560809969902005 + ], + [ + 0.002932682037353508, + 0.0029794970154762256, + 0.0025466766953468264 + ], + [ + 0.0034855435788631404, + 0.003528216630220413, + 0.0030075454711913988 + ], + [ + 0.0040058800578117275, + 0.004057246595621107, + 0.0034478077292442143 + ], + [ + 0.004523951113224029, + 0.00456486195325851, + 0.0038763596117496347 + ], + [ + 0.005013407617807384, + 0.005056744068861, + 0.004280507564544667 + ], + [ + 0.005488755553960797, + 0.005535764545202241, + 0.004673362523317336 + ], + [ + 0.00595181062817573, + 0.005978593081235882, + 0.005058347284793853 + ], + [ + 0.006397813558578491, + 0.006421475559473035, + 0.005410794466733931 + ], + [ + 0.006817640811204893, + 0.006852991729974745, + 0.005755346119403832 + ], + [ + 0.007226747721433639, + 0.0072621776163578015, + 0.006075249612331388 + ], + [ + 0.007630426138639441, + 0.0076470099389552935, + 0.0063979145884513755 + ], + [ + 0.008008781373500824, + 0.008037412017583822, + 0.00670266523957252 + ], + [ + 0.008403385430574414, + 0.008402504622936246, + 0.006978507488965986 + ], + [ + 0.008771555572748167, + 0.008755007982254023, + 0.007241562753915775 + ], + [ + 0.00912752091884612, + 0.009085918217897412, + 0.007491476088762274 + ], + [ + 0.009481423199176775, + 0.009390452802181214, + 0.007734526246786116 + ], + [ + 0.009820033758878704, + 0.009705836921930307, + 0.007970523685216875 + ], + [ + 0.010154272615909562, + 0.010003871023654923, + 0.008216519206762312 + ], + [ + 0.010469403415918349, + 0.010310402214527128, + 0.008420667946338646 + ], + [ + 0.01078758120536804, + 0.010591799914836882, + 0.00864490434527397 + ], + [ + 0.011086252778768539, + 0.010870921164751043, + 0.008843797743320444 + ], + [ + 0.01140857234597204, + 0.011151207834482183, + 0.009060705453157422 + ], + [ + 0.011696603298187253, + 0.011403740495443336, + 0.00926285743713377 + ], + [ + 0.012018378823995564, + 0.011657717972993848, + 0.009452784508466714 + ], + [ + 0.01231289416551588, + 0.011916943341493602, + 0.009629172980785364 + ], + [ + 0.01258259505033493, + 0.012168210595846168, + 0.009787525683641425 + ], + [ + 0.012850579023361182, + 0.012411035746335954, + 0.009951386004686353 + ], + [ + 0.013157780766487121, + 0.012647852599620812, + 0.010105909407138812 + ], + [ + 0.013465607315301885, + 0.012889487445354456, + 0.010243811458349227 + ], + [ + 0.01375285163521762, + 0.013134289234876593, + 0.010382831245660763 + ], + [ + 0.014039229452610009, + 0.013364296108484238, + 0.010522904992103562 + ], + [ + 0.014299877882003754, + 0.013579018712043735, + 0.01065670609474181 + ], + [ + 0.01459474518895146, + 0.013794454038143153, + 0.010786525011062621 + ], + [ + 0.014878578782081587, + 0.014011413902044289, + 0.010904273092746733 + ], + [ + 0.015154588222503606, + 0.014229961484670617, + 0.01102496340870854 + ], + [ + 0.015413318276405314, + 0.01443853855133051, + 0.011128988713026039 + ], + [ + 0.015670857131481145, + 0.01464353248476982, + 0.011238836199045166 + ], + [ + 0.015922348499298085, + 0.014825292527675626, + 0.011361537426710104 + ], + [ + 0.016159128397703143, + 0.01501790568232536, + 0.011460647284984561 + ], + [ + 0.016392606496810867, + 0.015201851576566684, + 0.011568111181259149 + ], + [ + 0.016629158109426473, + 0.01537596151232719, + 0.011661972701549492 + ], + [ + 0.016872954815626104, + 0.015547924786806099, + 0.011752071976661636 + ], + [ + 0.017107994109392163, + 0.015714542120695084, + 0.01184631168842313 + ], + [ + 0.017362987995147655, + 0.015883212536573404, + 0.011944697499275202 + ], + [ + 0.017606227844953505, + 0.016036323904991146, + 0.012019921839237196 + ], + [ + 0.017822683155536635, + 0.01618227183818816, + 0.012114645689725855 + ] + ], + "q99": [ + [ + 0.0007791063189506522, + 0.0008191531896591178, + 0.000685654059052466 + ], + [ + 0.0015346872061490968, + 0.0016124327480792951, + 0.0013474424183368677 + ], + [ + 0.0022729012370109533, + 0.0023807505518198, + 0.0019960679858922947 + ], + [ + 0.0029960960149764994, + 0.0031329314410686437, + 0.0026318565756082513 + ], + [ + 0.0037003555893897998, + 0.0038495744019746746, + 0.003234461545944211 + ], + [ + 0.004365640059113483, + 0.0045606699585914595, + 0.003819910660386076 + ], + [ + 0.005013393014669408, + 0.005217522233724582, + 0.0043668133765459 + ], + [ + 0.005645870789885501, + 0.00585823148488997, + 0.004908581227064128 + ], + [ + 0.006241944804787619, + 0.006468041613697976, + 0.005426534935832015 + ], + [ + 0.006817547678947447, + 0.007060439959168428, + 0.005911517813801754 + ], + [ + 0.007372559905052166, + 0.007599938362836829, + 0.006369600221514701 + ], + [ + 0.007904011756181712, + 0.008144090399146063, + 0.0068082837760448395 + ], + [ + 0.008437622636556603, + 0.0086377564817667, + 0.007226154506206506 + ], + [ + 0.008935164809226976, + 0.009115523695945739, + 0.007621112763881683 + ], + [ + 0.009423591569066046, + 0.009577067717909803, + 0.007984806150197981 + ], + [ + 0.00987685531377792, + 0.010010172426700586, + 0.00834369778633116 + ], + [ + 0.010312182083725911, + 0.010444094911217675, + 0.008677412867546079 + ], + [ + 0.010748023390769954, + 0.010843001678586005, + 0.009024116024374938 + ], + [ + 0.011156117245554924, + 0.011241764053702342, + 0.009360345005989045 + ], + [ + 0.011551034599542613, + 0.011617139801383014, + 0.009641901105642314 + ], + [ + 0.01197105981409546, + 0.012002155482768995, + 0.009940861612558362 + ], + [ + 0.012369298636913283, + 0.012394335269927975, + 0.01021742656826972 + ], + [ + 0.012785598114132879, + 0.012735944613814349, + 0.010476505979895571 + ], + [ + 0.013193123787641514, + 0.013095010295510284, + 0.01071625284850597 + ], + [ + 0.01358351491391658, + 0.01343732200562952, + 0.010980033650994259 + ], + [ + 0.01395132586359976, + 0.013774739578366266, + 0.01121957935392856 + ], + [ + 0.014280267283320415, + 0.014119272753596295, + 0.0114271932840347 + ], + [ + 0.014645510464906664, + 0.014404988363385156, + 0.011634282767772675 + ], + [ + 0.01500687554478645, + 0.014755266010761204, + 0.011842091754078837 + ], + [ + 0.015337619036436064, + 0.01504877917468547, + 0.01204726718366143 + ], + [ + 0.01569188728928564, + 0.015363128408789617, + 0.012241771817207307 + ], + [ + 0.016029363349080054, + 0.015666012912988567, + 0.012426011934876434 + ], + [ + 0.01640402019023894, + 0.015973980575799913, + 0.012621911242604252 + ], + [ + 0.016769578009843827, + 0.016263371556997287, + 0.012807369604706752 + ], + [ + 0.017103515565395355, + 0.016544438898563385, + 0.012991919144988054 + ], + [ + 0.0174240910261869, + 0.016826123446226096, + 0.013133764043450347 + ], + [ + 0.017738950401544565, + 0.017097500041127162, + 0.013294325694441767 + ], + [ + 0.01809627547860143, + 0.01736966721713543, + 0.013468961715698231 + ], + [ + 0.01840903230011461, + 0.017622448727488516, + 0.013611337989568708 + ], + [ + 0.018712663352489434, + 0.017863970324397068, + 0.013746628835797269 + ], + [ + 0.018996897637844085, + 0.01808651350438593, + 0.01387018904089926 + ], + [ + 0.019260656014084814, + 0.01829336024820802, + 0.013993963450193393 + ], + [ + 0.01953864984214302, + 0.018480764552950845, + 0.014107482135295866 + ], + [ + 0.01981721587479111, + 0.018650356233119943, + 0.014246353507041898 + ], + [ + 0.02009393393993371, + 0.018819475248455984, + 0.014375272020697591 + ], + [ + 0.020389118492603286, + 0.01901500247418879, + 0.014475694373249984 + ], + [ + 0.020668983161449408, + 0.019179638400673833, + 0.01462709777057171 + ], + [ + 0.02095159731805322, + 0.01932974115014076, + 0.0147185955941677 + ], + [ + 0.021221053600311263, + 0.019516581073403347, + 0.014803602844476684 + ], + [ + 0.021505745723843547, + 0.01969240389764309, + 0.014899505004286755 + ] + ], + "mean": [ + [ + -1.2945806702191476e-06, + 8.613380487076938e-06, + -1.1947494158448535e-06 + ], + [ + -2.164581474062288e-06, + 1.7381727957399562e-05, + -2.689016355361673e-06 + ], + [ + -2.5834765438048635e-06, + 2.6323885322199203e-05, + -4.521716618910432e-06 + ], + [ + -2.549084911152022e-06, + 3.544495484675281e-05, + -6.696343461953802e-06 + ], + [ + -2.0677782686107093e-06, + 4.474179513636045e-05, + -9.217440492648166e-06 + ], + [ + -1.137263780037756e-06, + 5.4219479352468625e-05, + -1.2101697393518407e-05 + ], + [ + 2.307162816350683e-07, + 6.390151247614995e-05, + -1.5361641999334097e-05 + ], + [ + 2.0261825284251245e-06, + 7.378861482720822e-05, + -1.8990358512382954e-05 + ], + [ + 4.254433861206053e-06, + 8.389061986235902e-05, + -2.2992206140770577e-05 + ], + [ + 6.905892405484337e-06, + 9.422157745575532e-05, + -2.7366279027774e-05 + ], + [ + 9.973957276088186e-06, + 0.00010479726188350469, + -3.209561691619456e-05 + ], + [ + 1.3450464393827133e-05, + 0.00011562060535652563, + -3.7170026189414784e-05 + ], + [ + 1.7332420611637644e-05, + 0.00012669336865656078, + -4.257911859895103e-05 + ], + [ + 2.1601894331979565e-05, + 0.00013801590830553323, + -4.830948091694154e-05 + ], + [ + 2.625702109071426e-05, + 0.0001495828910265118, + -5.4355426982510835e-05 + ], + [ + 3.1275856599677354e-05, + 0.0001613970089238137, + -6.068363654776476e-05 + ], + [ + 3.662251401692629e-05, + 0.0001734583347570151, + -6.728142034262419e-05 + ], + [ + 4.228466423228383e-05, + 0.00018576158618088812, + -7.413137063849717e-05 + ], + [ + 4.823116250918247e-05, + 0.0001982876710826531, + -8.119766425807029e-05 + ], + [ + 5.442664769361727e-05, + 0.00021102585014887154, + -8.846829587128013e-05 + ], + [ + 6.0869493609061465e-05, + 0.00022394985717255622, + -9.591857087798417e-05 + ], + [ + 6.752995977876708e-05, + 0.0002370510483160615, + -0.0001035135064739734 + ], + [ + 7.438194006681442e-05, + 0.0002503160503692925, + -0.00011123796866741031 + ], + [ + 8.141723810695112e-05, + 0.00026373614673502743, + -0.00011907338921446353 + ], + [ + 8.860252273734659e-05, + 0.0002773044107016176, + -0.00012699957005679607 + ], + [ + 9.59054013947025e-05, + 0.0002910020702984184, + -0.00013499727356247604 + ], + [ + 0.0001033184744301252, + 0.00030482554575428367, + -0.0001430554548278451 + ], + [ + 0.00011082184209953994, + 0.0003187551046721637, + -0.00015117297880351543 + ], + [ + 0.00011839744547614828, + 0.00033277846523560584, + -0.00015932112000882626 + ], + [ + 0.0001260631688637659, + 0.00034687138395383954, + -0.00016747403424233198 + ], + [ + 0.00013382935139816254, + 0.00036101139266975224, + -0.0001756077544996515 + ], + [ + 0.00014168056077323854, + 0.0003751686308532953, + -0.00018370909674558789 + ], + [ + 0.0001496271725045517, + 0.00038932266761548817, + -0.00019178791262675077 + ], + [ + 0.00015766129945404828, + 0.0004034479206893593, + -0.0001998136140173301 + ], + [ + 0.0001657694228924811, + 0.000417537143221125, + -0.00020781841885764152 + ], + [ + 0.0001739465951686725, + 0.0004315809055697173, + -0.0002157840208383277 + ], + [ + 0.0001821911137085408, + 0.0004456005699466914, + -0.00022370652004610747 + ], + [ + 0.00019050792616326362, + 0.0004595514328684658, + -0.00023158502881415188 + ], + [ + 0.000198905254364945, + 0.0004734451649710536, + -0.0002393915638094768 + ], + [ + 0.00020737387239933014, + 0.00048726669047027826, + -0.00024713604943826795 + ], + [ + 0.00021592767734546214, + 0.0005009950837120414, + -0.0002548050833866 + ], + [ + 0.00022455182624980807, + 0.0005146494368091226, + -0.0002623986511025578 + ], + [ + 0.00023325669462792575, + 0.0005281780613586307, + -0.0002699070901144296 + ], + [ + 0.00024204349028877914, + 0.000541596906259656, + -0.00027731459704227746 + ], + [ + 0.00025090391864068806, + 0.0005548938643187284, + -0.0002846161078196019 + ], + [ + 0.0002598260180093348, + 0.0005680570029653609, + -0.0002918178215622902 + ], + [ + 0.0002688101667445153, + 0.0005810834118165076, + -0.00029891528538428247 + ], + [ + 0.0002778356720227748, + 0.0005939585971646011, + -0.00030587680521421134 + ], + [ + 0.00028689083410426974, + 0.0006066660862416029, + -0.00031272205524146557 + ], + [ + 0.00029598810942843556, + 0.0006192116416059434, + -0.00031942102941684425 + ] + ], + "std": [ + [ + 0.0002506036253180355, + 0.0002563824236858636, + 0.0002458956150803715 + ], + [ + 0.0004941149381920695, + 0.0005052576889283955, + 0.00048493934446014464 + ], + [ + 0.0007324484759010375, + 0.0007484896923415363, + 0.0007189078605733812 + ], + [ + 0.000965606071986258, + 0.0009858573321253061, + 0.0009478112915530801 + ], + [ + 0.001191464252769947, + 0.0012149200774729252, + 0.0011695887660607696 + ], + [ + 0.0014096853556111455, + 0.0014351337449625134, + 0.001383862691000104 + ], + [ + 0.0016209298046305776, + 0.0016471544513478875, + 0.0015911891823634505 + ], + [ + 0.001824861392378807, + 0.0018506351625546813, + 0.0017911895411089063 + ], + [ + 0.0020214079413563013, + 0.002046092413365841, + 0.0019840183667838573 + ], + [ + 0.002210980514064431, + 0.0022339781280606985, + 0.002169966697692871 + ], + [ + 0.002393557922914624, + 0.002414251212030649, + 0.002349015325307846 + ], + [ + 0.002569084521383047, + 0.00258724601007998, + 0.0025211703032255173 + ], + [ + 0.0027379405219107866, + 0.0027536035049706697, + 0.002686736872419715 + ], + [ + 0.0029005648102611303, + 0.0029133399948477745, + 0.002845908049494028 + ], + [ + 0.0030571913812309504, + 0.0030669118277728558, + 0.002998903626576066 + ], + [ + 0.0032083133701235056, + 0.003214716911315918, + 0.0031458388548344374 + ], + [ + 0.0033543738536536694, + 0.003357273992151022, + 0.0032869710121303797 + ], + [ + 0.0034956689924001694, + 0.003494706703349948, + 0.0034224558621644974 + ], + [ + 0.003632644657045603, + 0.0036275051534175873, + 0.003552543930709362 + ], + [ + 0.003765784204006195, + 0.0037559601478278637, + 0.0036775029730051756 + ], + [ + 0.0038953516632318497, + 0.003880408825352788, + 0.0037976561579853296 + ], + [ + 0.004021712113171816, + 0.004000951070338488, + 0.003913146909326315 + ], + [ + 0.004145103041082621, + 0.004117861390113831, + 0.004024091642349958 + ], + [ + 0.00426567904651165, + 0.004231335129588842, + 0.004130796529352665 + ], + [ + 0.004383767489343882, + 0.0043414682149887085, + 0.0042334734462201595 + ], + [ + 0.004499432165175676, + 0.00444849394261837, + 0.004332285840064287 + ], + [ + 0.00461279833689332, + 0.004552645608782768, + 0.004427372012287378 + ], + [ + 0.004724081140011549, + 0.00465375417843461, + 0.004518894944339991 + ], + [ + 0.00483333645388484, + 0.00475207157433033, + 0.00460706977173686 + ], + [ + 0.004940744023770094, + 0.004847758915275335, + 0.0046919770538806915 + ], + [ + 0.005046216305345297, + 0.004940779414027929, + 0.00477376114577055 + ], + [ + 0.00514986040070653, + 0.0050313882529735565, + 0.0048524788580834866 + ], + [ + 0.0052517312578856945, + 0.005119615700095892, + 0.004928229376673698 + ], + [ + 0.005351815838366747, + 0.0052055371925234795, + 0.005001121666282415 + ], + [ + 0.005450176540762186, + 0.005289207212626934, + 0.005071294028311968 + ], + [ + 0.005546886473894119, + 0.005371090956032276, + 0.005138693377375603 + ], + [ + 0.005641826428472996, + 0.00545073626562953, + 0.005203539505600929 + ], + [ + 0.0057351309806108475, + 0.005528483539819717, + 0.0052658445201814175 + ], + [ + 0.00582682341337204, + 0.005604357458651066, + 0.005325722973793745 + ], + [ + 0.005917113274335861, + 0.0056785838678479195, + 0.0053835115395486355 + ], + [ + 0.006005860399454832, + 0.005751157645136118, + 0.005438691936433315 + ], + [ + 0.006093224044889212, + 0.005821955390274525, + 0.005491702351719141 + ], + [ + 0.006179167423397303, + 0.005891187582165003, + 0.005542580503970385 + ], + [ + 0.00626384885981679, + 0.005959003698080778, + 0.005591510329395533 + ], + [ + 0.006347205024212599, + 0.0060256351716816425, + 0.005638448987156153 + ], + [ + 0.006429286208003759, + 0.006090671755373478, + 0.005683571100234985 + ], + [ + 0.0065101683139801025, + 0.006154409609735012, + 0.005727009382098913 + ], + [ + 0.006589899770915508, + 0.006216992624104023, + 0.005768919363617897 + ], + [ + 0.0066684759221971035, + 0.006278402637690306, + 0.0058092777617275715 + ], + [ + 0.006745942402631044, + 0.00633861031383276, + 0.005848264321684837 + ] + ], + "min": [ + [ + -0.0036999136209487915, + -0.0033891499042510986, + -0.003771260380744934 + ], + [ + -0.006454676389694214, + -0.0060856640338897705, + -0.006683163344860077 + ], + [ + -0.008993282914161682, + -0.008883289992809296, + -0.009648159146308899 + ], + [ + -0.011466965079307556, + -0.011606268584728241, + -0.013029240071773529 + ], + [ + -0.013902977108955383, + -0.014902129769325256, + -0.015338487923145294 + ], + [ + -0.016376659274101257, + -0.01715303212404251, + -0.017583414912223816 + ], + [ + -0.018718942999839783, + -0.019272491335868835, + -0.01930386573076248 + ], + [ + -0.02039356529712677, + -0.02121126651763916, + -0.021077625453472137 + ], + [ + -0.021844789385795593, + -0.023294255137443542, + -0.02297671139240265 + ], + [ + -0.023478686809539795, + -0.024850919842720032, + -0.02494889497756958 + ], + [ + -0.024620115756988525, + -0.026364780962467194, + -0.026600345969200134 + ], + [ + -0.025748521089553833, + -0.027594268321990967, + -0.02818671613931656 + ], + [ + -0.02685527503490448, + -0.02839009463787079, + -0.030098900198936462 + ], + [ + -0.027834609150886536, + -0.028988823294639587, + -0.03135848045349121 + ], + [ + -0.028488069772720337, + -0.029490195214748383, + -0.032498665153980255 + ], + [ + -0.028980299830436707, + -0.02975229173898697, + -0.03345576673746109 + ], + [ + -0.029443249106407166, + -0.029777616262435913, + -0.03438307344913483 + ], + [ + -0.029808878898620605, + -0.029774941504001617, + -0.03530454263091087 + ], + [ + -0.030200302600860596, + -0.02960807830095291, + -0.035872701555490494 + ], + [ + -0.030435770750045776, + -0.02940674126148224, + -0.03639467433094978 + ], + [ + -0.030649438500404358, + -0.02920001745223999, + -0.03695402294397354 + ], + [ + -0.03102971613407135, + -0.029104083776474, + -0.037464164197444916 + ], + [ + -0.032475344836711884, + -0.02912869304418564, + -0.03793346509337425 + ], + [ + -0.033109553158283234, + -0.029024727642536163, + -0.03832743316888809 + ], + [ + -0.03336778283119202, + -0.028843186795711517, + -0.03863729536533356 + ], + [ + -0.03320474922657013, + -0.02863646298646927, + -0.0386832021176815 + ], + [ + -0.03278830647468567, + -0.028568431735038757, + -0.038711849600076675 + ], + [ + -0.032274022698402405, + -0.02936747670173645, + -0.03849402070045471 + ], + [ + -0.0325755774974823, + -0.02998589724302292, + -0.038170889019966125 + ], + [ + -0.03355388343334198, + -0.030545763671398163, + -0.03777308017015457 + ], + [ + -0.03453032672405243, + -0.031097039580345154, + -0.03715995326638222 + ], + [ + -0.03543822467327118, + -0.03136896342039108, + -0.036641985177993774 + ], + [ + -0.03641466796398163, + -0.0316065177321434, + -0.03634578734636307 + ], + [ + -0.03707514703273773, + -0.031837739050388336, + -0.03602451831102371 + ], + [ + -0.03770829737186432, + -0.032056428492069244, + -0.03661546856164932 + ], + [ + -0.038497671484947205, + -0.032293982803821564, + -0.03788577765226364 + ], + [ + -0.039058610796928406, + -0.03248005360364914, + -0.03916134685277939 + ], + [ + -0.03958352655172348, + -0.03264152258634567, + -0.040337786078453064 + ], + [ + -0.04011561721563339, + -0.03278283029794693, + -0.041383206844329834 + ], + [ + -0.040525831282138824, + -0.03285925090312958, + -0.042539678514003754 + ], + [ + -0.040840402245521545, + -0.03300856053829193, + -0.04349575936794281 + ], + [ + -0.04112820327281952, + -0.03322550654411316, + -0.04433852434158325 + ], + [ + -0.04152653366327286, + -0.03346925973892212, + -0.04522177577018738 + ], + [ + -0.04192723333835602, + -0.033637650310993195, + -0.04592306911945343 + ], + [ + -0.04244570434093475, + -0.03377373516559601, + -0.046457014977931976 + ], + [ + -0.04313602298498154, + -0.033888429403305054, + -0.04718450456857681 + ], + [ + -0.04366709291934967, + -0.03391379863023758, + -0.047885797917842865 + ], + [ + -0.044147931039333344, + -0.03392649441957474, + -0.04846221208572388 + ], + [ + -0.04476337879896164, + -0.03388290852308273, + -0.04918700456619263 + ], + [ + -0.04525706171989441, + -0.03375396877527237, + -0.04992391914129257 + ] + ], + "max": [ + [ + 0.0032347291707992554, + 0.006059810519218445, + 0.0028893351554870605 + ], + [ + 0.00562654435634613, + 0.01013580709695816, + 0.00509999692440033 + ], + [ + 0.00809413194656372, + 0.013829842209815979, + 0.007343225181102753 + ], + [ + 0.010652504861354828, + 0.016948580741882324, + 0.0098394975066185 + ], + [ + 0.013044320046901703, + 0.019977062940597534, + 0.011998631060123444 + ], + [ + 0.015511907637119293, + 0.02247072011232376, + 0.014020092785358429 + ], + [ + 0.01777995377779007, + 0.024291373789310455, + 0.016649171710014343 + ], + [ + 0.02031838148832321, + 0.025646835565567017, + 0.01928325742483139 + ], + [ + 0.022220388054847717, + 0.027089141309261322, + 0.021770350635051727 + ], + [ + 0.02393651008605957, + 0.028622835874557495, + 0.0241207554936409 + ], + [ + 0.02578764408826828, + 0.029822826385498047, + 0.026889115571975708 + ], + [ + 0.027503766119480133, + 0.03080315887928009, + 0.028660714626312256 + ], + [ + 0.029168494045734406, + 0.031717441976070404, + 0.030043907463550568 + ], + [ + 0.031049959361553192, + 0.031998410820961, + 0.031791895627975464 + ], + [ + 0.03228344768285751, + 0.03225700557231903, + 0.032910723239183426 + ], + [ + 0.03355739265680313, + 0.0322805792093277, + 0.03363610431551933 + ], + [ + 0.03530683368444443, + 0.03202731907367706, + 0.034312400966882706 + ], + [ + 0.03655087202787399, + 0.03176083415746689, + 0.03492552787065506 + ], + [ + 0.037784360349178314, + 0.03148510307073593, + 0.03514335677027702 + ], + [ + 0.03916563838720322, + 0.03145889937877655, + 0.03521762415766716 + ], + [ + 0.04039912670850754, + 0.031837329268455505, + 0.035171717405319214 + ], + [ + 0.04151000827550888, + 0.03234711289405823, + 0.03511500358581543 + ], + [ + 0.04253821820020676, + 0.03297644108533859, + 0.034805141389369965 + ], + [ + 0.04368887096643448, + 0.03347047418355942, + 0.03441485017538071 + ], + [ + 0.04465629905462265, + 0.03390116989612579, + 0.03402088209986687 + ], + [ + 0.04561960697174072, + 0.034270137548446655, + 0.03355158120393753 + ], + [ + 0.046256959438323975, + 0.03459443151950836, + 0.03299223259091377 + ], + [ + 0.046855732798576355, + 0.034963399171829224, + 0.03247025981545448 + ], + [ + 0.04734213650226593, + 0.0352194607257843, + 0.032176390290260315 + ], + [ + 0.04772477596998215, + 0.035333991050720215, + 0.03235360234975815 + ], + [ + 0.047777481377124786, + 0.03565432131290436, + 0.032516658306121826 + ], + [ + 0.04779737442731857, + 0.03611361235380173, + 0.03267063945531845 + ], + [ + 0.047787122428417206, + 0.03663015365600586, + 0.0328613743185997 + ], + [ + 0.04808314889669418, + 0.03699912130832672, + 0.033199578523635864 + ], + [ + 0.048437222838401794, + 0.03735969960689545, + 0.03346387296915054 + ], + [ + 0.0487024188041687, + 0.03762638568878174, + 0.03370177745819092 + ], + [ + 0.04909949004650116, + 0.03767503798007965, + 0.03393404930830002 + ], + [ + 0.049343980848789215, + 0.03775487095117569, + 0.034112349152565 + ], + [ + 0.04945388436317444, + 0.03787773847579956, + 0.03422463685274124 + ], + [ + 0.04953484237194061, + 0.037995681166648865, + 0.03427398204803467 + ], + [ + 0.049865081906318665, + 0.03809770941734314, + 0.03427068889141083 + ], + [ + 0.05072245001792908, + 0.03817995637655258, + 0.03421354293823242 + ], + [ + 0.05125022679567337, + 0.03824307769536972, + 0.03412960469722748 + ], + [ + 0.051736630499362946, + 0.03827451914548874, + 0.03402747958898544 + ], + [ + 0.052009277045726776, + 0.038212329149246216, + 0.03394901752471924 + ], + [ + 0.052133187651634216, + 0.03805049508810043, + 0.033852994441986084 + ], + [ + 0.052185893058776855, + 0.03780272603034973, + 0.03367412090301514 + ], + [ + 0.052107810974121094, + 0.03752514719963074, + 0.03350432217121124 + ], + [ + 0.05203413963317871, + 0.03733799606561661, + 0.033661797642707825 + ], + [ + 0.05188652127981186, + 0.03712109476327896, + 0.03379536420106888 + ] + ] + } + } +} \ No newline at end of file diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000005.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000005.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cf30b920db14e6826d00d627465ea49f59d28c1d --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000005.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da59bcca1a03579df38fd0b29bcd14642692e8e4c9780b9f679ca0604dac958 +size 133906 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000016.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000016.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e56cbb5612ba1e6f1d840f99a099b6a404a733ec --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000016.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1be00e79c1df829ee8aca087009b9f0b6057b6d36ff7b925792c3ad18aee88a +size 110362 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000024.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000024.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c601cb5133c2a00d1868caa00fd7f1779b4a3eee --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000024.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c8a2d990112e6ab1b2fd313831d0cdfd093023828d171220322161609e7a81 +size 85576 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000032.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000032.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b392f4a781a95707f9fbf2de785385a0ffa99332 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000032.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c436d6cac68342be3f9b66d7dc82dc5118beb9232df5eb68957eaae8311352 +size 97637 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000060.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000060.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c1bcaa3b5d2112d9c89d4a18065f147ceb5bdbe8 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000060.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b3868c726f2a29782951a35d80f493cc6f0cfc03e67d0c822c2d86de0818ef5 +size 260717 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000074.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000074.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0851d9dee33eb66f2560afddd6b32a61f6379cb0 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000074.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adebc7a71b94965c0f08efa00931c03d386b644d123f2db19a8fb71a5379480b +size 209831 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000097.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000097.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0bf570a22b002bb3585c0d1014a473b72229a3ef --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000097.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f102271ea70381208b608eb9439fc422422fa61e825dd753d5133400c40866 +size 111386 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000174.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000174.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6179a7e65c3ea2cb60b4df7cea2d1b903b68d6fe --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000174.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8cae9b870c3c12e406f6bb0e96964a992f1b3f3dc0c2d95d97b36415e187c6 +size 53197 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000195.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000195.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e4f721687b64c45df8319dde5aa2e834fd2585cc --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000195.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a36f19eb3d4228eaafbdf86308327b4a499e01257fed2228cd39d55826713f1 +size 88766 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000202.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000202.parquet new file mode 100644 index 0000000000000000000000000000000000000000..fb43ac7e549f07b4c6ce870a71735e2bdccc8f6c --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000202.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93c0376f55b20457e121a760e8ae3e4bc48fce17c82845ff0476757d3059f6c +size 62294 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000205.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000205.parquet new file mode 100644 index 0000000000000000000000000000000000000000..89af04d794ed7e059b420539a9bcfd3d314266f8 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000205.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dd21669b2279065f89761c4a8203d69076b81877d38bf581bae67d9523667b9 +size 99155 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000213.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000213.parquet new file mode 100644 index 0000000000000000000000000000000000000000..26087208ef71a3b3477e4b4395c8e35c29128fb0 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000213.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19d7754a014e3fbcafa90634779841c947bc26264b07e5807e97fc752e5f61f5 +size 91099 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000234.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000234.parquet new file mode 100644 index 0000000000000000000000000000000000000000..77b3eb768ca328d9957414d50472dd1f289c2d64 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000234.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78942e38f49037f910d4faf39df95994ab74ffed90aa91550f7ee61b84b4a798 +size 40456 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000306.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000306.parquet new file mode 100644 index 0000000000000000000000000000000000000000..41cf99988678a13e82510be659a25a5f8db7dd74 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000306.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c0ef4ada1ebf773d237861fbb78027bbf65904ab9e36ffd113f0244cbd3023 +size 79567 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000328.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000328.parquet new file mode 100644 index 0000000000000000000000000000000000000000..08367de58ff9bc172150579421615e38a34f565e --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000328.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735278d21a11bca533f4db26e7711d73250c6ab763924d8adbcbff507a719085 +size 54789 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000329.parquet b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000329.parquet new file mode 100644 index 0000000000000000000000000000000000000000..fe5470cf87ae890cd5934223988a8838a1357b81 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/data/chunk-000/episode_000329.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a536c89175c77b621749eabb8b7df6eb67fa2b51f4ab9b378271b89c7803af1b +size 68758 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000012.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000012.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f69ad3d15ab5418cfc2e7be249254ff1cbe5a372 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000012.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfa693897013836ae62938ad9d9f73e86d901473f5cd3abc1738eee8a4236a55 +size 35592666 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000044.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000044.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2f943fac2ffe6ebec10a72276c97cb05abbd85f9 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000044.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c58954c7a2bd6b235591eef347193164daf7548c442155031aa70e2d59612a +size 26758543 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000048.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000048.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9d418e69251a0da9881deb70d06bcb702d90c0da --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000048.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f9d8eeb89974224daf97a66ee218cd3a2aff383942e80a53411b1898f6bb27a +size 57985183 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000052.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000052.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4190092fade42ae85176d91542b891828639cf21 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000052.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829bca178d647f1dbfbb0044fcac5264ea1d74c98861f5ff5bfed4b25cd895e5 +size 28419882 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000056.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000056.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1fe0e3c9ed929b9b5b43ccab7f0b13280da59cf4 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000056.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b38ac71fc96b91d6d167d9273b9d925eb7c08486cee4c94101c0eb3378674d6d +size 29672075 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000070.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000070.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b9055caf30340e5b5c78d034cd36818a89abf687 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000070.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa0aec7e94bd93b390355b0b06ed3a6fc9089061b8b992b3a909d649fdcee8f +size 90784954 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000112.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000112.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..50fa2de64c30113bea64da2a3f39bfb43e10ca6c --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000112.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8bf1c574555260faf6824de7fa0e7b593fc5d521bc3f0eab11a2ab4bc40bb49 +size 16152953 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000115.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000115.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..71f06a241d0c4066045f8cdbdc7cb29dbfb4ee2f --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000115.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb7e7bd93c188965331f1350eec6f27c5d6f2f75a7418fc95d676041c5c0425 +size 18317085 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000116.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000116.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..61f43f6e277cba284a7d49a6f6ebfb02e4839956 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000116.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c88cbec226f45285e7f36c0308df3932832b1c337ad68ada2e28eb3ec5c30be +size 18885228 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000139.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000139.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9533faaedf6121a0c78a4fa436419ab6cbac172a --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000139.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd49c61487e32ef8f08554a731ac18f11e07b03a51403d043b17bdc4da3225a +size 33690478 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000145.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000145.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8078a4fba2394b71e4dd5efed6516555f6d46523 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000145.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:887b338c5cc025dcc2240130ff5e81d3a28814c5a23e067dd46309c7777e6726 +size 49010136 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000162.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000162.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eef0c7e508c33cd5ad8d0607386efb322bb59a39 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000162.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81a753d5f2eadd1ad51c27633e422383b79f38514b13c6c0f6391170a2a8ad1b +size 26521945 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000168.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000168.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..baef537af5538d9499aa7fe7aee76beebc6bd702 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000168.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2908cea44bd05a3d142cf21226b7d058de576f7ae23d8cf83c246f32750f73c7 +size 37821830 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000182.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000182.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f870c045072c6b15baaa928ba01a536b38aa3d46 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000182.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff2b8f2adeaaad44509bf3ffdd692ca4c35f96618e9126fa68969990cf8aa17 +size 40386516 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000184.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000184.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..62ecf2f589d866e2ca0ae5b8109c44d1bf01621b --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000184.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01f4b365c348f0c7839a4ca50669b57714ae305d1ccb5ae532044f918e968e0b +size 56318779 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000186.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000186.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..aa7f264025e938d23e93dafaea6033261d6bdd99 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000186.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:855d2f07672b89c77a9bf4dc582cd845fb211200c15d10dd61084f4672ccfd2a +size 42090722 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000187.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000187.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..582339d9194c9b48dc0303d6e3deaa6226013a31 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000187.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4071f9d23d114d100661f10697dc675be74c431db2d61e3b2aa4e4db64643b +size 46569514 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000190.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000190.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b7b65b767bfe8d0bfae98b5218e28ac0eb5acfba --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000190.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d5afe40a522a9580581b20924d5f2cce5b01c9120bacec23df3e5015933efd +size 27251484 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000191.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000191.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4a3fccc4ff5e379e19ab3ffc3117afb75ec4ffc2 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000191.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5422b88b83be0fcb34dc1cbfbdb09122903e3f0c3eadce031004bf5d366446cc +size 45381630 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000194.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000194.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8e1a537530876352d483497bad99f97ebda4f405 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000194.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf6dec8d1083150dac48ce2831a8a5be7584ab9c362401df55c17bf1f48b018 +size 66746173 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000195.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000195.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..95ee6d5162135100ac39a3f71cce49d3a3efea22 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000195.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e5edb99ab2c5ec0e73e277c19c73acf7398c57eb872c2c6ea782d2d6f65d5ff +size 35291653 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000209.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000209.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e10192f8e163a49b3dc82a3ae05aa64bc904798d --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000209.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:873ba46665f13779a46b9725626d0a231467751877b81344aae0233b3e360f9b +size 28733918 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000222.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000222.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e33b8c6fdad4ce1b22398edad5e000d2789d3f58 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000222.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407e5374c86af7576a0d4b3c73a0fe68e55ae661960c8b01be6eb35b164e3df8 +size 33240234 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000228.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000228.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..49344bfa851f6832980dc3ee568e9c6f3ffa528f --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000228.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c18bef1738d373caecc619d5ca330cc5aedb3e600bc7ffe4a0ed7057548f4cc +size 26005120 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000262.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000262.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..48780cc3f8582618013957b6fd515880cc0380be --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000262.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7811aad61d93a41affac6067911dc9f2370adf05440609cf1c91ff7595845d +size 73463989 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000263.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000263.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5c9e6f81c07c6dc16d7ba59d8f7d2dde9a96adba --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000263.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c9eb4da60b532ea3e7551fdc3092962bf476a83c7b6b537d4f515a5a3483236 +size 66816296 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000287.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000287.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0470edc5197604b3caaf85855c36f0b41ba106fb --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000287.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:551b76174492f7096e459e11b988aa27caa7941de4422ab17a36b729cc2809e4 +size 37248182 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000296.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000296.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..090704c8074d1f104be38286c94600d24b881769 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000296.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0090fdd40db52cc7f8e4a487eec07de1f9a4359819154185d7ba623564d887bf +size 38050522 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000299.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000299.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ef854c77673cfdb88ee4f2c51c31dd5679377d4b --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000299.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6b42badd3f48db7fdb2429e8b276eb48b14c5b6f05d393693aad8a5c4cf8894 +size 19905279 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000308.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000308.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5cd2c9412dfe3797d123de595001e764c9984556 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000308.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78df9dbb72514496ad067f095bb024ac71c476ab7346dfd6ec41ef8a3050bafb +size 48666400 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000334.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000334.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3d021edcfb3b343de7c2c61f9fb0fc3813f4bb72 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000334.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee6a08f2b4bcdc180eae9362a08b65742ed746409320ddbc8ebdc7c13cbac58 +size 12763907 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000338.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000338.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..12ae997c851d8a6d1015fab929089109ef7efd49 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000338.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09cbcc64a871beb7d40f6ac6f3c13ce2e8daefac3f62944469bb8dec9c4e4e2f +size 13311505 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000342.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000342.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a27919dcdd17e4aa55dd19ea91d2505d9b6518e0 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000342.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63f707eaf3a7f130c2cda0cdd2df338e26e2af408007b66b2b99da350d276b0 +size 15194755 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000346.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000346.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6ba5664fac4acbe62d9cf975a2e2eb94d30bf811 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000346.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4319701cac10596adf2246e24e63e2b3af40abd1877861fa4a02c444b6546d88 +size 15472732 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000352.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000352.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..abca1b57f93a13362db77e181014cdbe57ab657f --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000352.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66604e8910e7025f56e0cc428d9152fa77d96fd7aae3c00a23a5bc99fc60a0e4 +size 19117832 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000354.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000354.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b67a53cfd3dbe7f67478ccb0c89e440780acc5cf --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000354.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27723c0f79fb2f32e02c563fbfd778c32892a9ee8e6b43ba631e48a215c99d19 +size 25091660 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000360.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000360.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c4bc008d86bbb524d8776bf7ade0b7a80d99b66d --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000360.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a581d497cb85db42be783545a66b4f703fa062672d067e4765c04b1fd88493ca +size 12035624 diff --git a/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000365.mp4 b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000365.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6fc51987be32b465b38a37ce51f0843a447db653 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_pad_3dmed/videos/chunk-000/observation.images.endoscope.left/episode_000365.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a940dcdcbb31c159e3d21b558fde7226af5017c4a1cd6202ab58e35a6134fc4 +size 12119130 diff --git a/Surgical/turin/mitic_lerobot_plastic_tube/meta/README.md b/Surgical/turin/mitic_lerobot_plastic_tube/meta/README.md new file mode 100644 index 0000000000000000000000000000000000000000..d024d218854f7dc900e3488c2dda2f9fed4ed6d8 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_tube/meta/README.md @@ -0,0 +1,160 @@ +# DVRK Suturing Subtasks Dataset - README + +--- + +## At a Glance + +Teleoperated demonstrations of a dVRK robot performing suturing subtasksk, like tissue lifting, needle insertion, needle extraction, knot tying on plastic phantom. + +--- + +## Dataset Overview + +| | | +| :--- | :--- | +| **Total Trajectories** | 480 | +| **Total Hours** | [TO be filled] | +| **Data Type** | Ex-Vivo | +| **License** | CC BY 4.0 | +| **Version** | 1.0 | + +--- + +## Tasks & Domain + +### Domain + +- [x] **Surgical Robotics** +- [ ] **Ultrasound Robotics** +- [ ] **Other Healthcare Robotics** + +### Demonstrated Skills + +- Bimanual manipulation +- Pick and place +- Needle handling +- Knot tying +- Soft tissue manipulation + +--- + +## Data Collection Details + +### Collection Method + +- [x] **Human Teleoperation** +- [ ] **Programmatic/State-Machine** +- [ ] **AI Policy / Autonomous** +- [ ] **Other** + +### Operator Details + +| | Description | +| :--- | :--- | +| **Operator Count** | 5 operators | +| **Operator Skill Level** | Expert (Surgeons) and Novice (ML researchers with minimal surgical experience) | +| **Collection Period** | [To be filled] | + +### Recovery Demonstrations + +- [x] **Yes** +- [] **No** + +For each task, recovery demonstrations and errors are recorded. + +--- + +## Diversity Dimensions + +- [x] **Target Object** (different wounds for suturing and different anatomical specimens) +- [] **Spatial Layout** +- [x] **Camera Position / Angle** (different position and orientations) +- [x] **Lighting Conditions** +- [ ] **Robot Embodiment** +- [x] **Task Execution** (different operators performed the tasks differently) +- [x] **Background / Scene** (different background conditions) + +We have recorded tasks on a plastic phantom. Camera position and lighting condition were changed after every 20 episodes circa. We recruited 3 expert surgeons and 2 ML researchers that performed the tasks according to their expertise and own techniques. The background conditions change between colon and stomach episodes. + +--- + +## Equipment & Setup + +### Robotic Platform(s) + +- **Robot 1:** dVRK (da Vinci Research Kit) + +### Sensors & Cameras + +| Type | Model/Details | +| :--- | :--- | +| **Primary Camera** | Stereo Endoscope (left), 1920x1080 @ 30 fps | +| **Secondary Camera** | Stereo Endoscope (right), 1920x1080 @ 30 fps | + +--- + +## Action & State Space Representation + +### Action Space Representation + +**Primary Action Representation:** +- [x] **Absolute Cartesian** (position/orientation relative to robot base) + +**Orientation Representation:** +- [x] **Quaternions** (x, y, z, w) + +**Action Dimensions:** +``` +action: [psm1_x, psm1_y, psm1_z, psm1_qx, psm1_qy, psm1_qz, psm1_qw, + psm2_x, psm2_y, psm2_z, psm2_qx, psm2_qy, psm2_qz, psm2_qw] +- psm1_x, psm1_y, psm1_z: PSM1 absolute cartesian positions +- psm1_qx, psm1_qy, psm1_qz, psm1_qw: PSM1 absolute cartesian orientations +- psm2_x, psm2_y, psm2_z: PSM2 absolute cartesian positions +- psm2_qx, psm2_qy, psm2_qz, psm2_qw: PSM2 absolute cartesian orientations +``` + +### State Space Representation + +**State Information Included:** +- [x] **Joint Positions** (all articulated joints) + +**State Dimensions:** +``` +observation.state: [psm1_j1, psm1_j2, psm1_j3, psm1_j4, psm1_j5, psm1_j6, + psm2_j1, psm2_j2, psm2_j3, psm2_j4, psm2_j5, psm2_j6] +- psm1_j1-j6: PSM1 6-DOF joint positions (radians) +- psm2_j1-j6: PSM2 6-DOF joint positions (radians) +``` + +--- + +## Data Synchronization Approach + +All data are acquired using rosbag and all ROS messages are stamped with their header.stamp fields. +Data is synchronized offline post collection. The right camera serves as the reference timestamp source. For each frame acquired, only the (time) closest data is saved from robot kinematics, with a tolerance of 0.1 secs. + +**Synchronization Method:** +- Reference stream: `/decklink/right/image_raw/compressed` (right stereo camera) +- Tolerance: 0.1 seconds +- Framework: ROS (Robot Operating System) + +Messages from the following topics are synchronized: +- `/decklink/left/image_raw/compressed` - Left camera images +- `/decklink/right/image_raw/compressed` - Right camera images +- `/PSM1/measured_js` - PSM1 joint states +- `/PSM1/measured_cp` - PSM1 absolute cartesian position +- `/PSM2/measured_js` - PSM2 joint states +- `/PSM2/measured_cp` - PSM2 absolute cartesian position + +--- + +## Attribution & Contact + +| | | +| :--- | :--- | +| **Dataset Lead** | Matteo Pescio, Francesco Marzola, Luigi Muratore, Federica Barontini, Giovanni Distefano, Federico Lavagno, Giulio Dagnino, Alberto Arezzo | +| **Institution** | MITIC Lab - Università degli Studi di Torino | +| **Contact Email** | matteo.pescio@unito.it, francesco.marzola@unito.it, luigi.muratore@studenti.polito.it, federica.barontini@unito.it, giovanni.distefano@unito.it, federico.lavagno@unito.it, giulio.dagnino@unito.it, alberto.arezzo@unito.it | +| **Citation (BibTeX)** |
@misc{dvrk_suturing_subtasks_2025,
author = {Pescio, Matteo and Marzola, Francesco and Muratore, Luigi and Barontini, Federica and Distefano, Giovanni and Lavagno, Federico and Dagnino, Giulio and Arezzo, Alberto},
title = {DVRK Suturing Subtasks Dataset},
year = {2025},
publisher = {Open-H-Embodiment},
}
| + +--- diff --git a/Surgical/turin/mitic_lerobot_plastic_tube/meta/episodes.jsonl b/Surgical/turin/mitic_lerobot_plastic_tube/meta/episodes.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..0d95e42e0a238af2c01502b035e6ae5c0fbcdeaf --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_tube/meta/episodes.jsonl @@ -0,0 +1,480 @@ +{"episode_index": 0, "tasks": ["Knot_tying_base"], "length": 643} +{"episode_index": 1, "tasks": ["Knot_tying_base"], "length": 501} +{"episode_index": 2, "tasks": ["Knot_tying_base"], "length": 627} +{"episode_index": 3, "tasks": ["Knot_tying_base"], "length": 615} +{"episode_index": 4, "tasks": ["Knot_tying_base"], "length": 633} +{"episode_index": 5, "tasks": ["Knot_tying_base"], "length": 390} +{"episode_index": 6, "tasks": ["Knot_tying_base"], "length": 417} +{"episode_index": 7, "tasks": ["Knot_tying_base"], "length": 835} +{"episode_index": 8, "tasks": ["Knot_tying_base"], "length": 462} +{"episode_index": 9, "tasks": ["Knot_tying_base"], "length": 413} +{"episode_index": 10, "tasks": ["Knot_tying_base"], "length": 853} +{"episode_index": 11, "tasks": ["Knot_tying_base"], "length": 429} +{"episode_index": 12, "tasks": ["Knot_tying_base"], "length": 386} +{"episode_index": 13, "tasks": ["Knot_tying_base"], "length": 429} +{"episode_index": 14, "tasks": ["Knot_tying_base"], "length": 573} +{"episode_index": 15, "tasks": ["Knot_tying_base"], "length": 496} +{"episode_index": 16, "tasks": ["Knot_tying_base"], "length": 350} +{"episode_index": 17, "tasks": ["Knot_tying_base"], "length": 862} +{"episode_index": 18, "tasks": ["Knot_tying_base"], "length": 388} +{"episode_index": 19, "tasks": ["Knot_tying_base"], "length": 473} +{"episode_index": 20, "tasks": ["Knot_tying_base"], "length": 376} +{"episode_index": 21, "tasks": ["Knot_tying_base"], "length": 358} +{"episode_index": 22, "tasks": ["Knot_tying_base"], "length": 560} +{"episode_index": 23, "tasks": ["Knot_tying_base"], "length": 358} +{"episode_index": 24, "tasks": ["Knot_tying_base"], "length": 438} +{"episode_index": 25, "tasks": ["Knot_tying_base"], "length": 384} +{"episode_index": 26, "tasks": ["Knot_tying_base"], "length": 787} +{"episode_index": 27, "tasks": ["Knot_tying_base"], "length": 414} +{"episode_index": 28, "tasks": ["Knot_tying_base"], "length": 994} +{"episode_index": 29, "tasks": ["Knot_tying_base"], "length": 434} +{"episode_index": 30, "tasks": ["Knot_tying_base"], "length": 450} +{"episode_index": 31, "tasks": ["Knot_tying_base"], "length": 484} +{"episode_index": 32, "tasks": ["Knot_tying_base"], "length": 386} +{"episode_index": 33, "tasks": ["Knot_tying_base"], "length": 410} +{"episode_index": 34, "tasks": ["Knot_tying_base"], "length": 410} +{"episode_index": 35, "tasks": ["Knot_tying_base"], "length": 548} +{"episode_index": 36, "tasks": ["Knot_tying_base"], "length": 322} +{"episode_index": 37, "tasks": ["Knot_tying_base"], "length": 439} +{"episode_index": 38, "tasks": ["Knot_tying_base"], "length": 559} +{"episode_index": 39, "tasks": ["Knot_tying_base"], "length": 418} +{"episode_index": 40, "tasks": ["Knot_tying_base"], "length": 484} +{"episode_index": 41, "tasks": ["Knot_tying_base"], "length": 400} +{"episode_index": 42, "tasks": ["Knot_tying_base"], "length": 595} +{"episode_index": 43, "tasks": ["Knot_tying_base"], "length": 317} +{"episode_index": 44, "tasks": ["Knot_tying_base"], "length": 394} +{"episode_index": 45, "tasks": ["Knot_tying_base"], "length": 321} +{"episode_index": 46, "tasks": ["Knot_tying_base"], "length": 709} +{"episode_index": 47, "tasks": ["Knot_tying_base"], "length": 490} +{"episode_index": 48, "tasks": ["Knot_tying_base"], "length": 322} +{"episode_index": 49, "tasks": ["Knot_tying_base"], "length": 426} +{"episode_index": 50, "tasks": ["Knot_tying_base"], "length": 1026} +{"episode_index": 51, "tasks": ["Knot_tying_base"], "length": 441} +{"episode_index": 52, "tasks": ["Knot_tying_base"], "length": 722} +{"episode_index": 53, "tasks": ["Knot_tying_base"], "length": 771} +{"episode_index": 54, "tasks": ["Knot_tying_base"], "length": 418} +{"episode_index": 55, "tasks": ["Knot_tying_base"], "length": 397} +{"episode_index": 56, "tasks": ["Knot_tying_base"], "length": 333} +{"episode_index": 57, "tasks": ["Knot_tying_base"], "length": 699} +{"episode_index": 58, "tasks": ["Knot_tying_base"], "length": 346} +{"episode_index": 59, "tasks": ["Knot_tying_base"], "length": 360} +{"episode_index": 60, "tasks": ["Knot_tying_final"], "length": 967} +{"episode_index": 61, "tasks": ["Knot_tying_final"], "length": 1416} +{"episode_index": 62, "tasks": ["Knot_tying_final"], "length": 1157} +{"episode_index": 63, "tasks": ["Knot_tying_final"], "length": 1214} +{"episode_index": 64, "tasks": ["Knot_tying_final"], "length": 1155} +{"episode_index": 65, "tasks": ["Knot_tying_final"], "length": 1639} +{"episode_index": 66, "tasks": ["Knot_tying_final"], "length": 1201} +{"episode_index": 67, "tasks": ["Knot_tying_final"], "length": 905} +{"episode_index": 68, "tasks": ["Knot_tying_final"], "length": 1298} +{"episode_index": 69, "tasks": ["Knot_tying_final"], "length": 1060} +{"episode_index": 70, "tasks": ["Knot_tying_final"], "length": 1428} +{"episode_index": 71, "tasks": ["Knot_tying_final"], "length": 991} +{"episode_index": 72, "tasks": ["Knot_tying_final"], "length": 950} +{"episode_index": 73, "tasks": ["Knot_tying_final"], "length": 1012} +{"episode_index": 74, "tasks": ["Knot_tying_final"], "length": 719} +{"episode_index": 75, "tasks": ["Knot_tying_final"], "length": 994} +{"episode_index": 76, "tasks": ["Knot_tying_final"], "length": 1132} +{"episode_index": 77, "tasks": ["Knot_tying_final"], "length": 907} +{"episode_index": 78, "tasks": ["Knot_tying_final"], "length": 874} +{"episode_index": 79, "tasks": ["Knot_tying_final"], "length": 621} +{"episode_index": 80, "tasks": ["Knot_tying_final"], "length": 561} +{"episode_index": 81, "tasks": ["Knot_tying_final"], "length": 1244} +{"episode_index": 82, "tasks": ["Knot_tying_final"], "length": 1221} +{"episode_index": 83, "tasks": ["Knot_tying_final"], "length": 902} +{"episode_index": 84, "tasks": ["Knot_tying_final"], "length": 1021} +{"episode_index": 85, "tasks": ["Knot_tying_final"], "length": 722} +{"episode_index": 86, "tasks": ["Knot_tying_final"], "length": 717} +{"episode_index": 87, "tasks": ["Knot_tying_final"], "length": 600} +{"episode_index": 88, "tasks": ["Knot_tying_final"], "length": 418} +{"episode_index": 89, "tasks": ["Knot_tying_final"], "length": 728} +{"episode_index": 90, "tasks": ["Knot_tying_final"], "length": 581} +{"episode_index": 91, "tasks": ["Knot_tying_final"], "length": 993} +{"episode_index": 92, "tasks": ["Knot_tying_final"], "length": 522} +{"episode_index": 93, "tasks": ["Knot_tying_final"], "length": 585} +{"episode_index": 94, "tasks": ["Knot_tying_final"], "length": 495} +{"episode_index": 95, "tasks": ["Knot_tying_final"], "length": 644} +{"episode_index": 96, "tasks": ["Knot_tying_final"], "length": 624} +{"episode_index": 97, "tasks": ["Knot_tying_final"], "length": 806} +{"episode_index": 98, "tasks": ["Knot_tying_final"], "length": 858} +{"episode_index": 99, "tasks": ["Knot_tying_final"], "length": 538} +{"episode_index": 100, "tasks": ["Knot_tying_final"], "length": 634} +{"episode_index": 101, "tasks": ["Knot_tying_final"], "length": 557} +{"episode_index": 102, "tasks": ["Knot_tying_final"], "length": 583} +{"episode_index": 103, "tasks": ["Knot_tying_final"], "length": 509} +{"episode_index": 104, "tasks": ["Knot_tying_final"], "length": 717} +{"episode_index": 105, "tasks": ["Knot_tying_final"], "length": 584} +{"episode_index": 106, "tasks": ["Knot_tying_final"], "length": 596} +{"episode_index": 107, "tasks": ["Knot_tying_final"], "length": 721} +{"episode_index": 108, "tasks": ["Knot_tying_final"], "length": 788} +{"episode_index": 109, "tasks": ["Knot_tying_final"], "length": 710} +{"episode_index": 110, "tasks": ["Knot_tying_final"], "length": 680} +{"episode_index": 111, "tasks": ["Knot_tying_final"], "length": 394} +{"episode_index": 112, "tasks": ["Knot_tying_final"], "length": 471} +{"episode_index": 113, "tasks": ["Knot_tying_final"], "length": 489} +{"episode_index": 114, "tasks": ["Knot_tying_final"], "length": 478} +{"episode_index": 115, "tasks": ["Knot_tying_final"], "length": 372} +{"episode_index": 116, "tasks": ["Knot_tying_final"], "length": 488} +{"episode_index": 117, "tasks": ["Knot_tying_final"], "length": 454} +{"episode_index": 118, "tasks": ["Knot_tying_final"], "length": 458} +{"episode_index": 119, "tasks": ["Knot_tying_final"], "length": 476} +{"episode_index": 120, "tasks": ["Needle_extraction"], "length": 608} +{"episode_index": 121, "tasks": ["Needle_extraction"], "length": 660} +{"episode_index": 122, "tasks": ["Needle_extraction"], "length": 505} +{"episode_index": 123, "tasks": ["Needle_extraction"], "length": 220} +{"episode_index": 124, "tasks": ["Needle_extraction"], "length": 481} +{"episode_index": 125, "tasks": ["Needle_extraction"], "length": 451} +{"episode_index": 126, "tasks": ["Needle_extraction"], "length": 458} +{"episode_index": 127, "tasks": ["Needle_extraction"], "length": 506} +{"episode_index": 128, "tasks": ["Needle_extraction"], "length": 548} +{"episode_index": 129, "tasks": ["Needle_extraction"], "length": 596} +{"episode_index": 130, "tasks": ["Needle_extraction"], "length": 958} +{"episode_index": 131, "tasks": ["Needle_extraction"], "length": 684} +{"episode_index": 132, "tasks": ["Needle_extraction"], "length": 792} +{"episode_index": 133, "tasks": ["Needle_extraction"], "length": 520} +{"episode_index": 134, "tasks": ["Needle_extraction"], "length": 442} +{"episode_index": 135, "tasks": ["Needle_extraction"], "length": 499} +{"episode_index": 136, "tasks": ["Needle_extraction"], "length": 711} +{"episode_index": 137, "tasks": ["Needle_extraction"], "length": 433} +{"episode_index": 138, "tasks": ["Needle_extraction"], "length": 735} +{"episode_index": 139, "tasks": ["Needle_extraction"], "length": 392} +{"episode_index": 140, "tasks": ["Needle_extraction"], "length": 119} +{"episode_index": 141, "tasks": ["Needle_extraction"], "length": 198} +{"episode_index": 142, "tasks": ["Needle_extraction"], "length": 347} +{"episode_index": 143, "tasks": ["Needle_extraction"], "length": 260} +{"episode_index": 144, "tasks": ["Needle_extraction"], "length": 311} +{"episode_index": 145, "tasks": ["Needle_extraction"], "length": 445} +{"episode_index": 146, "tasks": ["Needle_extraction"], "length": 236} +{"episode_index": 147, "tasks": ["Needle_extraction"], "length": 312} +{"episode_index": 148, "tasks": ["Needle_extraction"], "length": 376} +{"episode_index": 149, "tasks": ["Needle_extraction"], "length": 271} +{"episode_index": 150, "tasks": ["Needle_extraction"], "length": 449} +{"episode_index": 151, "tasks": ["Needle_extraction"], "length": 401} +{"episode_index": 152, "tasks": ["Needle_extraction"], "length": 214} +{"episode_index": 153, "tasks": ["Needle_extraction"], "length": 373} +{"episode_index": 154, "tasks": ["Needle_extraction"], "length": 492} +{"episode_index": 155, "tasks": ["Needle_extraction"], "length": 227} +{"episode_index": 156, "tasks": ["Needle_extraction"], "length": 385} +{"episode_index": 157, "tasks": ["Needle_extraction"], "length": 290} +{"episode_index": 158, "tasks": ["Needle_extraction"], "length": 282} +{"episode_index": 159, "tasks": ["Needle_extraction"], "length": 473} +{"episode_index": 160, "tasks": ["Needle_extraction"], "length": 501} +{"episode_index": 161, "tasks": ["Needle_extraction"], "length": 471} +{"episode_index": 162, "tasks": ["Needle_extraction"], "length": 280} +{"episode_index": 163, "tasks": ["Needle_extraction"], "length": 240} +{"episode_index": 164, "tasks": ["Needle_extraction"], "length": 464} +{"episode_index": 165, "tasks": ["Needle_extraction"], "length": 393} +{"episode_index": 166, "tasks": ["Needle_extraction"], "length": 378} +{"episode_index": 167, "tasks": ["Needle_extraction"], "length": 328} +{"episode_index": 168, "tasks": ["Needle_extraction"], "length": 469} +{"episode_index": 169, "tasks": ["Needle_extraction"], "length": 442} +{"episode_index": 170, "tasks": ["Needle_extraction"], "length": 189} +{"episode_index": 171, "tasks": ["Needle_extraction"], "length": 165} +{"episode_index": 172, "tasks": ["Needle_extraction"], "length": 195} +{"episode_index": 173, "tasks": ["Needle_extraction"], "length": 152} +{"episode_index": 174, "tasks": ["Needle_extraction"], "length": 201} +{"episode_index": 175, "tasks": ["Needle_extraction"], "length": 159} +{"episode_index": 176, "tasks": ["Needle_extraction"], "length": 179} +{"episode_index": 177, "tasks": ["Needle_extraction"], "length": 134} +{"episode_index": 178, "tasks": ["Needle_extraction"], "length": 133} +{"episode_index": 179, "tasks": ["Needle_extraction"], "length": 149} +{"episode_index": 180, "tasks": ["Needle_extraction"], "length": 168} +{"episode_index": 181, "tasks": ["Needle_extraction"], "length": 145} +{"episode_index": 182, "tasks": ["Needle_extraction"], "length": 161} +{"episode_index": 183, "tasks": ["Needle_extraction"], "length": 160} +{"episode_index": 184, "tasks": ["Needle_extraction"], "length": 144} +{"episode_index": 185, "tasks": ["Needle_extraction"], "length": 136} +{"episode_index": 186, "tasks": ["Needle_extraction"], "length": 181} +{"episode_index": 187, "tasks": ["Needle_extraction"], "length": 150} +{"episode_index": 188, "tasks": ["Needle_extraction"], "length": 210} +{"episode_index": 189, "tasks": ["Needle_extraction"], "length": 135} +{"episode_index": 190, "tasks": ["Needle_extraction"], "length": 140} +{"episode_index": 191, "tasks": ["Needle_extraction"], "length": 154} +{"episode_index": 192, "tasks": ["Needle_extraction"], "length": 178} +{"episode_index": 193, "tasks": ["Needle_extraction"], "length": 121} +{"episode_index": 194, "tasks": ["Needle_extraction"], "length": 151} +{"episode_index": 195, "tasks": ["Needle_extraction"], "length": 137} +{"episode_index": 196, "tasks": ["Needle_extraction"], "length": 126} +{"episode_index": 197, "tasks": ["Needle_extraction"], "length": 146} +{"episode_index": 198, "tasks": ["Needle_extraction"], "length": 135} +{"episode_index": 199, "tasks": ["Needle_extraction"], "length": 163} +{"episode_index": 200, "tasks": ["Needle_extraction"], "length": 133} +{"episode_index": 201, "tasks": ["Needle_extraction"], "length": 150} +{"episode_index": 202, "tasks": ["Needle_extraction"], "length": 149} +{"episode_index": 203, "tasks": ["Needle_extraction"], "length": 149} +{"episode_index": 204, "tasks": ["Needle_extraction"], "length": 166} +{"episode_index": 205, "tasks": ["Needle_extraction"], "length": 130} +{"episode_index": 206, "tasks": ["Needle_extraction"], "length": 146} +{"episode_index": 207, "tasks": ["Needle_extraction"], "length": 153} +{"episode_index": 208, "tasks": ["Needle_extraction"], "length": 147} +{"episode_index": 209, "tasks": ["Needle_extraction"], "length": 130} +{"episode_index": 210, "tasks": ["Needle_extraction"], "length": 119} +{"episode_index": 211, "tasks": ["Needle_extraction"], "length": 103} +{"episode_index": 212, "tasks": ["Needle_extraction"], "length": 150} +{"episode_index": 213, "tasks": ["Needle_extraction"], "length": 123} +{"episode_index": 214, "tasks": ["Needle_extraction"], "length": 141} +{"episode_index": 215, "tasks": ["Needle_extraction"], "length": 155} +{"episode_index": 216, "tasks": ["Needle_extraction"], "length": 167} +{"episode_index": 217, "tasks": ["Needle_extraction"], "length": 198} +{"episode_index": 218, "tasks": ["Needle_extraction"], "length": 170} +{"episode_index": 219, "tasks": ["Needle_extraction"], "length": 129} +{"episode_index": 220, "tasks": ["Needle_insertion"], "length": 337} +{"episode_index": 221, "tasks": ["Needle_insertion"], "length": 417} +{"episode_index": 222, "tasks": ["Needle_insertion"], "length": 491} +{"episode_index": 223, "tasks": ["Needle_insertion"], "length": 359} +{"episode_index": 224, "tasks": ["Needle_insertion"], "length": 329} +{"episode_index": 225, "tasks": ["Needle_insertion"], "length": 309} +{"episode_index": 226, "tasks": ["Needle_insertion"], "length": 281} +{"episode_index": 227, "tasks": ["Needle_insertion"], "length": 262} +{"episode_index": 228, "tasks": ["Needle_insertion"], "length": 307} +{"episode_index": 229, "tasks": ["Needle_insertion"], "length": 374} +{"episode_index": 230, "tasks": ["Needle_insertion"], "length": 732} +{"episode_index": 231, "tasks": ["Needle_insertion"], "length": 378} +{"episode_index": 232, "tasks": ["Needle_insertion"], "length": 300} +{"episode_index": 233, "tasks": ["Needle_insertion"], "length": 295} +{"episode_index": 234, "tasks": ["Needle_insertion"], "length": 301} +{"episode_index": 235, "tasks": ["Needle_insertion"], "length": 257} +{"episode_index": 236, "tasks": ["Needle_insertion"], "length": 290} +{"episode_index": 237, "tasks": ["Needle_insertion"], "length": 286} +{"episode_index": 238, "tasks": ["Needle_insertion"], "length": 303} +{"episode_index": 239, "tasks": ["Needle_insertion"], "length": 392} +{"episode_index": 240, "tasks": ["Needle_insertion"], "length": 274} +{"episode_index": 241, "tasks": ["Needle_insertion"], "length": 400} +{"episode_index": 242, "tasks": ["Needle_insertion"], "length": 267} +{"episode_index": 243, "tasks": ["Needle_insertion"], "length": 255} +{"episode_index": 244, "tasks": ["Needle_insertion"], "length": 357} +{"episode_index": 245, "tasks": ["Needle_insertion"], "length": 257} +{"episode_index": 246, "tasks": ["Needle_insertion"], "length": 198} +{"episode_index": 247, "tasks": ["Needle_insertion"], "length": 585} +{"episode_index": 248, "tasks": ["Needle_insertion"], "length": 427} +{"episode_index": 249, "tasks": ["Needle_insertion"], "length": 414} +{"episode_index": 250, "tasks": ["Needle_insertion"], "length": 477} +{"episode_index": 251, "tasks": ["Needle_insertion"], "length": 426} +{"episode_index": 252, "tasks": ["Needle_insertion"], "length": 469} +{"episode_index": 253, "tasks": ["Needle_insertion"], "length": 234} +{"episode_index": 254, "tasks": ["Needle_insertion"], "length": 293} +{"episode_index": 255, "tasks": ["Needle_insertion"], "length": 285} +{"episode_index": 256, "tasks": ["Needle_insertion"], "length": 236} +{"episode_index": 257, "tasks": ["Needle_insertion"], "length": 210} +{"episode_index": 258, "tasks": ["Needle_insertion"], "length": 295} +{"episode_index": 259, "tasks": ["Needle_insertion"], "length": 251} +{"episode_index": 260, "tasks": ["Needle_insertion"], "length": 362} +{"episode_index": 261, "tasks": ["Needle_insertion"], "length": 254} +{"episode_index": 262, "tasks": ["Needle_insertion"], "length": 331} +{"episode_index": 263, "tasks": ["Needle_insertion"], "length": 229} +{"episode_index": 264, "tasks": ["Needle_insertion"], "length": 188} +{"episode_index": 265, "tasks": ["Needle_insertion"], "length": 400} +{"episode_index": 266, "tasks": ["Needle_insertion"], "length": 602} +{"episode_index": 267, "tasks": ["Needle_insertion"], "length": 258} +{"episode_index": 268, "tasks": ["Needle_insertion"], "length": 229} +{"episode_index": 269, "tasks": ["Needle_insertion"], "length": 224} +{"episode_index": 270, "tasks": ["Needle_insertion"], "length": 305} +{"episode_index": 271, "tasks": ["Needle_insertion"], "length": 250} +{"episode_index": 272, "tasks": ["Needle_insertion"], "length": 308} +{"episode_index": 273, "tasks": ["Needle_insertion"], "length": 288} +{"episode_index": 274, "tasks": ["Needle_insertion"], "length": 246} +{"episode_index": 275, "tasks": ["Needle_insertion"], "length": 299} +{"episode_index": 276, "tasks": ["Needle_insertion"], "length": 347} +{"episode_index": 277, "tasks": ["Needle_insertion"], "length": 406} +{"episode_index": 278, "tasks": ["Needle_insertion"], "length": 286} +{"episode_index": 279, "tasks": ["Needle_insertion"], "length": 285} +{"episode_index": 280, "tasks": ["Needle_insertion"], "length": 327} +{"episode_index": 281, "tasks": ["Needle_insertion"], "length": 286} +{"episode_index": 282, "tasks": ["Needle_insertion"], "length": 251} +{"episode_index": 283, "tasks": ["Needle_insertion"], "length": 219} +{"episode_index": 284, "tasks": ["Needle_insertion"], "length": 213} +{"episode_index": 285, "tasks": ["Needle_insertion"], "length": 206} +{"episode_index": 286, "tasks": ["Needle_insertion"], "length": 295} +{"episode_index": 287, "tasks": ["Needle_insertion"], "length": 215} +{"episode_index": 288, "tasks": ["Needle_insertion"], "length": 255} +{"episode_index": 289, "tasks": ["Needle_insertion"], "length": 222} +{"episode_index": 290, "tasks": ["Needle_insertion"], "length": 243} +{"episode_index": 291, "tasks": ["Needle_insertion"], "length": 218} +{"episode_index": 292, "tasks": ["Needle_insertion"], "length": 256} +{"episode_index": 293, "tasks": ["Needle_insertion"], "length": 299} +{"episode_index": 294, "tasks": ["Needle_insertion"], "length": 258} +{"episode_index": 295, "tasks": ["Needle_insertion"], "length": 280} +{"episode_index": 296, "tasks": ["Needle_insertion"], "length": 190} +{"episode_index": 297, "tasks": ["Needle_insertion"], "length": 268} +{"episode_index": 298, "tasks": ["Needle_insertion"], "length": 237} +{"episode_index": 299, "tasks": ["Needle_insertion"], "length": 205} +{"episode_index": 300, "tasks": ["Needle_insertion"], "length": 251} +{"episode_index": 301, "tasks": ["Needle_insertion"], "length": 225} +{"episode_index": 302, "tasks": ["Needle_insertion"], "length": 216} +{"episode_index": 303, "tasks": ["Needle_insertion"], "length": 220} +{"episode_index": 304, "tasks": ["Needle_insertion"], "length": 234} +{"episode_index": 305, "tasks": ["Needle_insertion"], "length": 235} +{"episode_index": 306, "tasks": ["Needle_insertion"], "length": 268} +{"episode_index": 307, "tasks": ["Needle_insertion"], "length": 204} +{"episode_index": 308, "tasks": ["Needle_insertion"], "length": 261} +{"episode_index": 309, "tasks": ["Needle_insertion"], "length": 205} +{"episode_index": 310, "tasks": ["Needle_insertion"], "length": 251} +{"episode_index": 311, "tasks": ["Needle_insertion"], "length": 302} +{"episode_index": 312, "tasks": ["Needle_insertion"], "length": 205} +{"episode_index": 313, "tasks": ["Needle_insertion"], "length": 210} +{"episode_index": 314, "tasks": ["Needle_insertion"], "length": 246} +{"episode_index": 315, "tasks": ["Needle_insertion"], "length": 225} +{"episode_index": 316, "tasks": ["Needle_insertion"], "length": 229} +{"episode_index": 317, "tasks": ["Needle_insertion"], "length": 253} +{"episode_index": 318, "tasks": ["Needle_insertion"], "length": 261} +{"episode_index": 319, "tasks": ["Needle_insertion"], "length": 300} +{"episode_index": 320, "tasks": ["Needle_positioning"], "length": 1061} +{"episode_index": 321, "tasks": ["Needle_positioning"], "length": 747} +{"episode_index": 322, "tasks": ["Needle_positioning"], "length": 852} +{"episode_index": 323, "tasks": ["Needle_positioning"], "length": 994} +{"episode_index": 324, "tasks": ["Needle_positioning"], "length": 736} +{"episode_index": 325, "tasks": ["Needle_positioning"], "length": 703} +{"episode_index": 326, "tasks": ["Needle_positioning"], "length": 991} +{"episode_index": 327, "tasks": ["Needle_positioning"], "length": 792} +{"episode_index": 328, "tasks": ["Needle_positioning"], "length": 804} +{"episode_index": 329, "tasks": ["Needle_positioning"], "length": 802} +{"episode_index": 330, "tasks": ["Needle_positioning"], "length": 699} +{"episode_index": 331, "tasks": ["Needle_positioning"], "length": 1413} +{"episode_index": 332, "tasks": ["Needle_positioning"], "length": 1101} +{"episode_index": 333, "tasks": ["Needle_positioning"], "length": 1081} +{"episode_index": 334, "tasks": ["Needle_positioning"], "length": 1125} +{"episode_index": 335, "tasks": ["Needle_positioning"], "length": 942} +{"episode_index": 336, "tasks": ["Needle_positioning"], "length": 1346} +{"episode_index": 337, "tasks": ["Needle_positioning"], "length": 1997} +{"episode_index": 338, "tasks": ["Needle_positioning"], "length": 1121} +{"episode_index": 339, "tasks": ["Needle_positioning"], "length": 1038} +{"episode_index": 340, "tasks": ["Needle_positioning"], "length": 1126} +{"episode_index": 341, "tasks": ["Needle_positioning"], "length": 1404} +{"episode_index": 342, "tasks": ["Needle_positioning"], "length": 752} +{"episode_index": 343, "tasks": ["Needle_positioning"], "length": 1209} +{"episode_index": 344, "tasks": ["Needle_positioning"], "length": 1331} +{"episode_index": 345, "tasks": ["Needle_positioning"], "length": 1152} +{"episode_index": 346, "tasks": ["Needle_positioning"], "length": 1243} +{"episode_index": 347, "tasks": ["Needle_positioning"], "length": 1201} +{"episode_index": 348, "tasks": ["Needle_positioning"], "length": 1144} +{"episode_index": 349, "tasks": ["Needle_positioning"], "length": 937} +{"episode_index": 350, "tasks": ["Needle_positioning"], "length": 938} +{"episode_index": 351, "tasks": ["Needle_positioning"], "length": 1274} +{"episode_index": 352, "tasks": ["Needle_positioning"], "length": 978} +{"episode_index": 353, "tasks": ["Needle_positioning"], "length": 1255} +{"episode_index": 354, "tasks": ["Needle_positioning"], "length": 1155} +{"episode_index": 355, "tasks": ["Needle_positioning"], "length": 1264} +{"episode_index": 356, "tasks": ["Needle_positioning"], "length": 1482} +{"episode_index": 357, "tasks": ["Needle_positioning"], "length": 787} +{"episode_index": 358, "tasks": ["Needle_positioning"], "length": 1564} +{"episode_index": 359, "tasks": ["Needle_positioning"], "length": 1332} +{"episode_index": 360, "tasks": ["Needle_positioning"], "length": 1105} +{"episode_index": 361, "tasks": ["Needle_positioning"], "length": 1311} +{"episode_index": 362, "tasks": ["Needle_positioning"], "length": 1089} +{"episode_index": 363, "tasks": ["Needle_positioning"], "length": 1296} +{"episode_index": 364, "tasks": ["Needle_positioning"], "length": 977} +{"episode_index": 365, "tasks": ["Needle_positioning"], "length": 1287} +{"episode_index": 366, "tasks": ["Needle_positioning"], "length": 1489} +{"episode_index": 367, "tasks": ["Needle_positioning"], "length": 1407} +{"episode_index": 368, "tasks": ["Needle_positioning"], "length": 1064} +{"episode_index": 369, "tasks": ["Needle_positioning"], "length": 1296} +{"episode_index": 370, "tasks": ["Needle_positioning"], "length": 545} +{"episode_index": 371, "tasks": ["Needle_positioning"], "length": 564} +{"episode_index": 372, "tasks": ["Needle_positioning"], "length": 514} +{"episode_index": 373, "tasks": ["Needle_positioning"], "length": 447} +{"episode_index": 374, "tasks": ["Needle_positioning"], "length": 508} +{"episode_index": 375, "tasks": ["Needle_positioning"], "length": 415} +{"episode_index": 376, "tasks": ["Needle_positioning"], "length": 450} +{"episode_index": 377, "tasks": ["Needle_positioning"], "length": 717} +{"episode_index": 378, "tasks": ["Needle_positioning"], "length": 514} +{"episode_index": 379, "tasks": ["Needle_positioning"], "length": 423} +{"episode_index": 380, "tasks": ["Tissue_lift"], "length": 245} +{"episode_index": 381, "tasks": ["Tissue_lift"], "length": 146} +{"episode_index": 382, "tasks": ["Tissue_lift"], "length": 88} +{"episode_index": 383, "tasks": ["Tissue_lift"], "length": 226} +{"episode_index": 384, "tasks": ["Tissue_lift"], "length": 236} +{"episode_index": 385, "tasks": ["Tissue_lift"], "length": 119} +{"episode_index": 386, "tasks": ["Tissue_lift"], "length": 168} +{"episode_index": 387, "tasks": ["Tissue_lift"], "length": 146} +{"episode_index": 388, "tasks": ["Tissue_lift"], "length": 101} +{"episode_index": 389, "tasks": ["Tissue_lift"], "length": 122} +{"episode_index": 390, "tasks": ["Tissue_lift"], "length": 256} +{"episode_index": 391, "tasks": ["Tissue_lift"], "length": 247} +{"episode_index": 392, "tasks": ["Tissue_lift"], "length": 202} +{"episode_index": 393, "tasks": ["Tissue_lift"], "length": 163} +{"episode_index": 394, "tasks": ["Tissue_lift"], "length": 165} +{"episode_index": 395, "tasks": ["Tissue_lift"], "length": 367} +{"episode_index": 396, "tasks": ["Tissue_lift"], "length": 170} +{"episode_index": 397, "tasks": ["Tissue_lift"], "length": 231} +{"episode_index": 398, "tasks": ["Tissue_lift"], "length": 148} +{"episode_index": 399, "tasks": ["Tissue_lift"], "length": 316} +{"episode_index": 400, "tasks": ["Tissue_lift"], "length": 248} +{"episode_index": 401, "tasks": ["Tissue_lift"], "length": 229} +{"episode_index": 402, "tasks": ["Tissue_lift"], "length": 192} +{"episode_index": 403, "tasks": ["Tissue_lift"], "length": 238} +{"episode_index": 404, "tasks": ["Tissue_lift"], "length": 145} +{"episode_index": 405, "tasks": ["Tissue_lift"], "length": 404} +{"episode_index": 406, "tasks": ["Tissue_lift"], "length": 172} +{"episode_index": 407, "tasks": ["Tissue_lift"], "length": 138} +{"episode_index": 408, "tasks": ["Tissue_lift"], "length": 160} +{"episode_index": 409, "tasks": ["Tissue_lift"], "length": 238} +{"episode_index": 410, "tasks": ["Tissue_lift"], "length": 246} +{"episode_index": 411, "tasks": ["Tissue_lift"], "length": 248} +{"episode_index": 412, "tasks": ["Tissue_lift"], "length": 180} +{"episode_index": 413, "tasks": ["Tissue_lift"], "length": 246} +{"episode_index": 414, "tasks": ["Tissue_lift"], "length": 112} +{"episode_index": 415, "tasks": ["Tissue_lift"], "length": 239} +{"episode_index": 416, "tasks": ["Tissue_lift"], "length": 198} +{"episode_index": 417, "tasks": ["Tissue_lift"], "length": 215} +{"episode_index": 418, "tasks": ["Tissue_lift"], "length": 204} +{"episode_index": 419, "tasks": ["Tissue_lift"], "length": 175} +{"episode_index": 420, "tasks": ["Tissue_lift"], "length": 211} +{"episode_index": 421, "tasks": ["Tissue_lift"], "length": 183} +{"episode_index": 422, "tasks": ["Tissue_lift"], "length": 258} +{"episode_index": 423, "tasks": ["Tissue_lift"], "length": 170} +{"episode_index": 424, "tasks": ["Tissue_lift"], "length": 156} +{"episode_index": 425, "tasks": ["Tissue_lift"], "length": 136} +{"episode_index": 426, "tasks": ["Tissue_lift"], "length": 141} +{"episode_index": 427, "tasks": ["Tissue_lift"], "length": 376} +{"episode_index": 428, "tasks": ["Tissue_lift"], "length": 257} +{"episode_index": 429, "tasks": ["Tissue_lift"], "length": 209} +{"episode_index": 430, "tasks": ["Tissue_lift"], "length": 170} +{"episode_index": 431, "tasks": ["Tissue_lift"], "length": 190} +{"episode_index": 432, "tasks": ["Tissue_lift"], "length": 162} +{"episode_index": 433, "tasks": ["Tissue_lift"], "length": 183} +{"episode_index": 434, "tasks": ["Tissue_lift"], "length": 149} +{"episode_index": 435, "tasks": ["Tissue_lift"], "length": 154} +{"episode_index": 436, "tasks": ["Tissue_lift"], "length": 148} +{"episode_index": 437, "tasks": ["Tissue_lift"], "length": 146} +{"episode_index": 438, "tasks": ["Tissue_lift"], "length": 157} +{"episode_index": 439, "tasks": ["Tissue_lift"], "length": 152} +{"episode_index": 440, "tasks": ["Tissue_lift"], "length": 129} +{"episode_index": 441, "tasks": ["Tissue_lift"], "length": 225} +{"episode_index": 442, "tasks": ["Tissue_lift"], "length": 168} +{"episode_index": 443, "tasks": ["Tissue_lift"], "length": 157} +{"episode_index": 444, "tasks": ["Tissue_lift"], "length": 145} +{"episode_index": 445, "tasks": ["Tissue_lift"], "length": 132} +{"episode_index": 446, "tasks": ["Tissue_lift"], "length": 138} +{"episode_index": 447, "tasks": ["Tissue_lift"], "length": 172} +{"episode_index": 448, "tasks": ["Tissue_lift"], "length": 140} +{"episode_index": 449, "tasks": ["Tissue_lift"], "length": 150} +{"episode_index": 450, "tasks": ["Tissue_lift"], "length": 289} +{"episode_index": 451, "tasks": ["Tissue_lift"], "length": 144} +{"episode_index": 452, "tasks": ["Tissue_lift"], "length": 153} +{"episode_index": 453, "tasks": ["Tissue_lift"], "length": 144} +{"episode_index": 454, "tasks": ["Tissue_lift"], "length": 128} +{"episode_index": 455, "tasks": ["Tissue_lift"], "length": 162} +{"episode_index": 456, "tasks": ["Tissue_lift"], "length": 296} +{"episode_index": 457, "tasks": ["Tissue_lift"], "length": 181} +{"episode_index": 458, "tasks": ["Tissue_lift"], "length": 146} +{"episode_index": 459, "tasks": ["Tissue_lift"], "length": 150} +{"episode_index": 460, "tasks": ["Tissue_lift"], "length": 219} +{"episode_index": 461, "tasks": ["Tissue_lift"], "length": 161} +{"episode_index": 462, "tasks": ["Tissue_lift"], "length": 158} +{"episode_index": 463, "tasks": ["Tissue_lift"], "length": 158} +{"episode_index": 464, "tasks": ["Tissue_lift"], "length": 148} +{"episode_index": 465, "tasks": ["Tissue_lift"], "length": 154} +{"episode_index": 466, "tasks": ["Tissue_lift"], "length": 125} +{"episode_index": 467, "tasks": ["Tissue_lift"], "length": 152} +{"episode_index": 468, "tasks": ["Tissue_lift"], "length": 163} +{"episode_index": 469, "tasks": ["Tissue_lift"], "length": 171} +{"episode_index": 470, "tasks": ["Tissue_lift"], "length": 138} +{"episode_index": 471, "tasks": ["Tissue_lift"], "length": 160} +{"episode_index": 472, "tasks": ["Tissue_lift"], "length": 144} +{"episode_index": 473, "tasks": ["Tissue_lift"], "length": 167} +{"episode_index": 474, "tasks": ["Tissue_lift"], "length": 162} +{"episode_index": 475, "tasks": ["Tissue_lift"], "length": 143} +{"episode_index": 476, "tasks": ["Tissue_lift"], "length": 137} +{"episode_index": 477, "tasks": ["Tissue_lift"], "length": 139} +{"episode_index": 478, "tasks": ["Tissue_lift"], "length": 152} +{"episode_index": 479, "tasks": ["Tissue_lift"], "length": 146} diff --git a/Surgical/turin/mitic_lerobot_plastic_tube/meta/episodes_stats.jsonl b/Surgical/turin/mitic_lerobot_plastic_tube/meta/episodes_stats.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..f4d21610fbbdd8103e6d1a390898df552d5de863 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_tube/meta/episodes_stats.jsonl @@ -0,0 +1,480 @@ +{"episode_index": 0, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5441351663149949]], [[0.5055866849364418]], [[0.45039098819755374]]], "std": [[[0.26542219064654743]], [[0.25187204750908854]], [[0.2519375833134551]]], "count": [127]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5615977926166091]], [[0.5288831227591649]], [[0.47671097087128816]]], "std": [[[0.2438763414017831]], [[0.2213482102032391]], [[0.2356503082699404]]], "count": [127]}, "observation.state": {"min": [0.610960841178894, -0.0269137192517519, 0.12547828257083893, -1.9211792945861816, 0.02842039056122303, -0.45666036009788513, -0.5637749433517456, -0.13645297288894653, 0.12582828104496002, 0.26546746492385864, 0.5357517004013062, -0.85935378074646], "max": [0.8033649921417236, 0.07667901366949081, 0.15616795420646667, -0.7488027811050415, 0.842637300491333, 0.82078617811203, -0.28307676315307617, 0.057364460080862045, 0.15014278888702393, 1.3374024629592896, 1.0626220703125, 0.29863789677619934], "mean": [0.7112860083580017, 0.015043776482343674, 0.13802428543567657, -1.1659228801727295, 0.4523405134677887, 0.30432701110839844, -0.43322059512138367, -0.07277598232030869, 0.13936160504817963, 1.0173163414001465, 0.7375550270080566, 0.04936591908335686], "std": [0.06315091997385025, 0.026805410161614418, 0.00654922379180789, 0.2715323567390442, 0.18434956669807434, 0.3511941134929657, 0.08116614073514938, 0.06936675310134888, 0.006337841507047415, 0.1881135255098343, 0.15407314896583557, 0.17526328563690186], "count": [643]}, "action": {"min": [-0.09615344554185867, -0.07445456832647324, 0.10901862382888794, 0.38555026054382324, -0.5544799566268921, 0.5699338316917419, -0.5272258520126343, 0.12079809606075287, -0.07320889830589294, 0.08573435992002487, -0.24509340524673462, -0.596948504447937, -0.504953920841217, -0.5949089527130127], "max": [-0.05933349207043648, -0.05069974809885025, 0.1260397583246231, 0.6948432326316833, 0.009370659478008747, 0.9129195809364319, -0.010627751238644123, 0.16018414497375488, -0.04803723469376564, 0.10894884169101715, 0.3066944181919098, 0.6126652359962463, 0.4937998056411743, 0.820184588432312], "mean": [-0.0791994258761406, -0.06355073302984238, 0.11862008273601532, 0.5098792910575867, -0.3340689539909363, 0.7139894366264343, -0.2609183192253113, 0.1407439410686493, -0.06321733444929123, 0.09660758823156357, 0.167350634932518, -0.4119439125061035, -0.3911876976490021, 0.7683870792388916], "std": [0.01222908403724432, 0.006891524884849787, 0.004145284183323383, 0.06884600222110748, 0.1651671677827835, 0.06961201876401901, 0.11703033000230789, 0.0115769999101758, 0.008665261790156364, 0.006806620396673679, 0.08858469873666763, 0.1190045028924942, 0.11224506050348282, 0.1556939333677292], "count": [643]}, "timestamp": {"min": [0.0], "max": [21.4], "mean": [10.7], "std": [6.187262902303588], "count": [643]}, "frame_index": {"min": [0], "max": [642], "mean": [321.0], "std": [185.61788706910764], "count": [643]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [643]}, "index": {"min": [0], "max": [642], "mean": [321.0], "std": [185.61788706910764], "count": [643]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [643]}}} +{"episode_index": 1, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5469266884531591]], [[0.5087573373793962]], [[0.4536271734619774]]], "std": [[[0.26655227657603625]], [[0.2519086207460008]], [[0.25195770835956616]]], "count": [105]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.564603545492271]], [[0.5322609036207075]], [[0.4804558641975309]]], "std": [[[0.24458115476321135]], [[0.22101091502994658]], [[0.23543893715150993]]], "count": [105]}, "observation.state": {"min": [0.5968745946884155, -0.06609886884689331, 0.12671363353729248, -1.684019923210144, 0.2780552804470062, -0.2470560371875763, -0.5033290982246399, -0.19440434873104095, 0.12896010279655457, 1.0956299304962158, 0.41633141040802, -0.31641945242881775], "max": [0.7760574221611023, 0.05563456937670708, 0.146255224943161, -0.6655558943748474, 0.8519285917282104, 1.2838674783706665, -0.3398929238319397, -0.03617328032851219, 0.14936372637748718, 1.3101427555084229, 0.8474195599555969, 0.361599326133728], "mean": [0.6998757123947144, 0.011559476144611835, 0.13708941638469696, -1.127316951751709, 0.5776131749153137, 0.4610820412635803, -0.44935736060142517, -0.11322509497404099, 0.14011916518211365, 1.1986509561538696, 0.6105219721794128, 0.06584580987691879], "std": [0.05838415399193764, 0.02758733741939068, 0.005775778088718653, 0.2282031625509262, 0.1546502262353897, 0.4204257130622864, 0.050629667937755585, 0.03955761343240738, 0.006628906819969416, 0.06728309392929077, 0.1381533145904541, 0.2088163197040558], "count": [501]}, "action": {"min": [-0.10158183425664902, -0.07914479076862335, 0.10840096324682236, -0.6179667115211487, -0.6226323843002319, -0.5949730277061462, -0.46282073855400085, 0.12992510199546814, -0.08025791496038437, 0.08472546190023422, 0.045427028089761734, -0.5107473731040955, -0.4338805377483368, 0.7405847907066345], "max": [-0.06786208599805832, -0.05448557808995247, 0.12727172672748566, 0.7129045724868774, 0.6198596358299255, 0.830941915512085, 0.14680324494838715, 0.15435920655727386, -0.05856306850910187, 0.09777259826660156, 0.43959978222846985, -0.3759121894836426, -0.18792212009429932, 0.8378678560256958], "mean": [-0.08101390302181244, -0.06354783475399017, 0.11839695274829865, 0.4994421899318695, -0.28983235359191895, 0.5983143448829651, -0.2213543951511383, 0.13852468132972717, -0.06934314221143723, 0.09366931021213531, 0.23023976385593414, -0.4056392014026642, -0.3197002708911896, 0.810502827167511], "std": [0.010975050739943981, 0.006155174691230059, 0.0046400390565395355, 0.2805637717247009, 0.2692432403564453, 0.2970609962940216, 0.14185886085033417, 0.00773391779512167, 0.007206996902823448, 0.0026602966245263815, 0.12528559565544128, 0.028474008664488792, 0.07942424714565277, 0.02253836579620838], "count": [501]}, "timestamp": {"min": [0.0], "max": [16.666666666666668], "mean": [8.333333333333334], "std": [4.82086514442592], "count": [501]}, "frame_index": {"min": [0], "max": [500], "mean": [250.0], "std": [144.62595433277758], "count": [501]}, "episode_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [501]}, "index": {"min": [643], "max": [1143], "mean": [893.0], "std": [144.62595433277758], "count": [501]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [501]}}} +{"episode_index": 2, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.544509816993464]], [[0.5061877603485838]], [[0.4513454967320262]]], "std": [[[0.26978046577185]], [[0.2550983191205764]], [[0.25515654336833693]]], "count": [125]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5619061437908497]], [[0.5295362549019608]], [[0.4777431982570806]]], "std": [[[0.24662513486951015]], [[0.22412107963563122]], [[0.23812569148079382]]], "count": [125]}, "observation.state": {"min": [0.5894221663475037, -0.0646778866648674, 0.12053553014993668, -1.6842296123504639, 0.19825956225395203, -0.4449733793735504, -0.5571720004081726, -0.14029116928577423, 0.13080862164497375, 0.4904647767543793, 0.46374428272247314, -0.349718302488327], "max": [0.7920589447021484, 0.04761837050318718, 0.15166723728179932, -0.8110806941986084, 1.0492316484451294, 0.5703415274620056, -0.34970077872276306, -0.08898133039474487, 0.15585683286190033, 0.9341686964035034, 1.0240905284881592, 0.0666845366358757], "mean": [0.6867293119430542, -0.003308676416054368, 0.1351936310529709, -1.2036560773849487, 0.5020830035209656, 0.2180132269859314, -0.4737744629383087, -0.11615706980228424, 0.14194202423095703, 0.7973757386207581, 0.7450600266456604, -0.01337392721325159], "std": [0.06592847406864166, 0.024732135236263275, 0.008623090572655201, 0.18181607127189636, 0.21034257113933563, 0.2751353681087494, 0.06115187704563141, 0.012330341152846813, 0.0070986757054924965, 0.09227950125932693, 0.15729542076587677, 0.09478643536567688], "count": [627]}, "action": {"min": [-0.10646554827690125, -0.08060616999864578, 0.10461251437664032, 0.38327279686927795, -0.5133585333824158, 0.5783447623252869, -0.5588951706886292, 0.12187401950359344, -0.07659333199262619, 0.09120965749025345, 0.07959285378456116, -0.5092103481292725, -0.5573160648345947, 0.6228470802307129], "max": [-0.062136247754096985, -0.05524950101971626, 0.12553896009922028, 0.7393991351127625, -0.01791827194392681, 0.8378086686134338, -0.05244964361190796, 0.15381963551044464, -0.06113279238343239, 0.10595480352640152, 0.39658957719802856, -0.3484586179256439, -0.4044150412082672, 0.777609646320343], "mean": [-0.08399373292922974, -0.06657744944095612, 0.11704108119010925, 0.5043439865112305, -0.3118043541908264, 0.7305163145065308, -0.2664790451526642, 0.13544350862503052, -0.0674908310174942, 0.0944976881146431, 0.20339252054691315, -0.3981802761554718, -0.493723064661026, 0.7400113940238953], "std": [0.013992088846862316, 0.00589115172624588, 0.004857557825744152, 0.09136921912431717, 0.1383109837770462, 0.05385841429233551, 0.11563444137573242, 0.009887204505503178, 0.004112858325242996, 0.003248314606025815, 0.07483337819576263, 0.02539154700934887, 0.04332686960697174, 0.024142052978277206], "count": [627]}, "timestamp": {"min": [0.0], "max": [20.866666666666667], "mean": [10.433333333333332], "std": [6.033302639578156], "count": [627]}, "frame_index": {"min": [0], "max": [626], "mean": [313.0], "std": [180.99907918734468], "count": [627]}, "episode_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [627]}, "index": {"min": [1144], "max": [1770], "mean": [1457.0], "std": [180.99907918734468], "count": [627]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [627]}}} +{"episode_index": 3, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5366363537736685]], [[0.5002838443417114]], [[0.4461870073684397]]], "std": [[[0.2720591644228014]], [[0.2570956048793877]], [[0.2565601605580554]]], "count": [123]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5531277609508122]], [[0.5230485657225853]], [[0.47167203136900654]]], "std": [[[0.2500711659284444]], [[0.2268244741803381]], [[0.24026455272305441]]], "count": [123]}, "observation.state": {"min": [0.5909512639045715, -0.043741561472415924, 0.11421740800142288, -1.673325777053833, 0.2579697072505951, -0.36983969807624817, -0.6230469346046448, -0.22775112092494965, 0.12826141715049744, 1.1652469635009766, 0.14633768796920776, -0.04052932932972908], "max": [0.7966694235801697, 0.03872951120138168, 0.15237370133399963, -0.3933783173561096, 0.9717587828636169, 0.8860045671463013, -0.3836113214492798, -0.04242869094014168, 0.15502850711345673, 1.4487478733062744, 0.8310232162475586, 0.6029160618782043], "mean": [0.6993669271469116, 0.0023882214445620775, 0.1289902776479721, -0.9707116484642029, 0.5194476842880249, 0.26092883944511414, -0.533821702003479, -0.13205593824386597, 0.1455155909061432, 1.2863112688064575, 0.33321619033813477, 0.30242156982421875], "std": [0.06880031526088715, 0.0195794515311718, 0.01039199624210596, 0.257280170917511, 0.2392854243516922, 0.2837549149990082, 0.06151922792196274, 0.0457424558699131, 0.008090794086456299, 0.06877238303422928, 0.1507096141576767, 0.15132036805152893], "count": [615]}, "action": {"min": [-0.11010082811117172, -0.07283047586679459, 0.10147937387228012, -0.5827423334121704, -0.4462836980819702, -0.6290385723114014, -0.6136600971221924, 0.11729146540164948, -0.08362101763486862, 0.07733963429927826, 0.004177801311016083, -0.5229977965354919, -0.39862704277038574, 0.7589440941810608], "max": [-0.06147345155477524, -0.05485698580741882, 0.12240958213806152, 0.7444097399711609, 0.19254551827907562, 0.8377751111984253, 0.6292701363563538, 0.15107139945030212, -0.06411220133304596, 0.10683661699295044, 0.36215320229530334, -0.2622091472148895, -0.2167225182056427, 0.9164088368415833], "mean": [-0.08660851418972015, -0.06190592423081398, 0.1126546710729599, 0.45283281803131104, -0.3066628873348236, 0.6474416255950928, -0.3170320391654968, 0.12759904563426971, -0.07330404222011566, 0.09196504205465317, 0.17560817301273346, -0.3165355622768402, -0.28395384550094604, 0.8795384168624878], "std": [0.015427600592374802, 0.0036475020460784435, 0.004897633567452431, 0.21859411895275116, 0.15680930018424988, 0.24795310199260712, 0.21761508285999298, 0.009499756619334221, 0.006562286522239447, 0.005950809922069311, 0.09444282948970795, 0.04501289129257202, 0.054650478065013885, 0.028592271730303764], "count": [615]}, "timestamp": {"min": [0.0], "max": [20.466666666666665], "mean": [10.233333333333333], "std": [5.9178324360141135], "count": [615]}, "frame_index": {"min": [0], "max": [614], "mean": [307.0], "std": [177.5349730804234], "count": [615]}, "episode_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [615]}, "index": {"min": [1771], "max": [2385], "mean": [2078.0], "std": [177.5349730804234], "count": [615]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [615]}}} +{"episode_index": 4, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5415687571324826]], [[0.5028233781166788]], [[0.44800533207110005]]], "std": [[[0.2705181254656922]], [[0.2547279902067448]], [[0.2532614173096168]]], "count": [126]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5601083380883217]], [[0.5272567953107168]], [[0.4757443675000865]]], "std": [[[0.24836273764084674]], [[0.2239197154759811]], [[0.23625920762720456]]], "count": [126]}, "observation.state": {"min": [0.6011375188827515, -0.07263229787349701, 0.12324607372283936, -1.6718579530715942, 0.404580682516098, -0.3821386694908142, -0.5605623126029968, -0.23328830301761627, 0.12912863492965698, 1.1662955284118652, 0.5435400009155273, 0.037564050406217575], "max": [0.7834635376930237, 0.04155603051185608, 0.1490940898656845, -0.546451985836029, 0.9911611676216125, 0.6943298578262329, -0.2768368124961853, -0.07030004262924194, 0.15596702694892883, 1.764750599861145, 1.1008802652359009, 1.0267889499664307], "mean": [0.7189629673957825, -0.007332885637879372, 0.13581614196300507, -1.262089729309082, 0.5928754210472107, 0.16384822130203247, -0.44310954213142395, -0.1616002321243286, 0.14060965180397034, 1.3867520093917847, 0.8445370197296143, 0.6116456985473633], "std": [0.05460193008184433, 0.036003679037094116, 0.007333117071539164, 0.24455443024635315, 0.14233672618865967, 0.22905096411705017, 0.09619008004665375, 0.041937846690416336, 0.008671591989696026, 0.14727236330509186, 0.14399833977222443, 0.21272149682044983], "count": [633]}, "action": {"min": [-0.1022987812757492, -0.07734795659780502, 0.09943613409996033, 0.4533219039440155, -0.36794260144233704, 0.4996870160102844, -0.5197192430496216, 0.11968320608139038, -0.08612846583127975, 0.07419077306985855, -0.07986662536859512, -0.5637083053588867, -0.4786311686038971, 0.7147233486175537], "max": [-0.06272028386592865, -0.05484461039304733, 0.1218959167599678, 0.6970035433769226, -0.07354775071144104, 0.8258088231086731, -0.10079600661993027, 0.16015920042991638, -0.06194259598851204, 0.09878577291965485, 0.2782536745071411, -0.342049241065979, -0.28880348801612854, 0.877596914768219], "mean": [-0.07903226464986801, -0.06523473560810089, 0.11335816234350204, 0.5628925561904907, -0.26248136162757874, 0.7248284816741943, -0.25331026315689087, 0.1382632851600647, -0.07392144203186035, 0.0881062000989914, 0.021226007491350174, -0.4420025646686554, -0.4034198820590973, 0.7925547361373901], "std": [0.011472989805042744, 0.00579495495185256, 0.00590134784579277, 0.05896572396159172, 0.07559303194284439, 0.07592879235744476, 0.09878009557723999, 0.013597536832094193, 0.006354349199682474, 0.005537992808967829, 0.09126477688550949, 0.035353515297174454, 0.0569743737578392, 0.021632961928844452], "count": [633]}, "timestamp": {"min": [0.0], "max": [21.066666666666666], "mean": [10.533333333333333], "std": [6.091037739231365], "count": [633]}, "frame_index": {"min": [0], "max": [632], "mean": [316.0], "std": [182.73113217694095], "count": [633]}, "episode_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [633]}, "index": {"min": [2386], "max": [3018], "mean": [2702.0], "std": [182.73113217694095], "count": [633]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [633]}}} +{"episode_index": 5, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5413480010893246]], [[0.5036846105664488]], [[0.4492345561002179]]], "std": [[[0.26935961313724255]], [[0.2542646501333874]], [[0.2534842022313927]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5595399019607843]], [[0.5278333278867102]], [[0.47652649509803924]]], "std": [[[0.24695495177372118]], [[0.223109850851335]], [[0.23628939252283748]]], "count": [100]}, "observation.state": {"min": [0.6006278395652771, -0.05802088975906372, 0.11509889364242554, -1.591336965560913, 0.30715885758399963, -0.06954006105661392, -0.5385602116584778, -0.22242243587970734, 0.1269884556531906, 1.225637674331665, 0.6383657455444336, 0.46775832772254944], "max": [0.7987004518508911, 0.032111119478940964, 0.14798316359519958, -0.8073062896728516, 1.033928394317627, 0.5723032355308533, -0.23016832768917084, -0.11316893249750137, 0.15382684767246246, 1.6490017175674438, 1.118369698524475, 0.8460925221443176], "mean": [0.715900182723999, 0.0003891257510986179, 0.13083243370056152, -1.072645664215088, 0.6040534973144531, 0.24044425785541534, -0.43614301085472107, -0.14463038742542267, 0.1415509730577469, 1.3172321319580078, 0.8592504262924194, 0.6055465936660767], "std": [0.060184404253959656, 0.02231346257030964, 0.010488040745258331, 0.22635766863822937, 0.21482032537460327, 0.17490123212337494, 0.09915242344141006, 0.027476882562041283, 0.008765161037445068, 0.0975339487195015, 0.14815421402454376, 0.08784066140651703], "count": [390]}, "action": {"min": [-0.1081845611333847, -0.07661052793264389, 0.10160565376281738, 0.4323790967464447, -0.4299536347389221, 0.5684260129928589, -0.5363768339157104, 0.12167537957429886, -0.08010321855545044, 0.07581339031457901, -0.054907042533159256, -0.5073100924491882, -0.4881954491138458, 0.7643227577209473], "max": [-0.06418351083993912, -0.054601844400167465, 0.11750845611095428, 0.7166908979415894, -0.0970773696899414, 0.783908486366272, -0.05276258662343025, 0.16629067063331604, -0.06544198095798492, 0.09846121817827225, 0.09231187403202057, -0.37102437019348145, -0.3714485466480255, 0.83385169506073], "mean": [-0.08286240696907043, -0.06165118142962456, 0.11140507459640503, 0.5438472032546997, -0.2928946912288666, 0.6902741193771362, -0.32764896750450134, 0.1383679360151291, -0.07245945930480957, 0.09070441126823425, 0.00966519396752119, -0.425258070230484, -0.43100327253341675, 0.793229341506958], "std": [0.014377185143530369, 0.005107237491756678, 0.00396426348015666, 0.08090045303106308, 0.10014329850673676, 0.054201554507017136, 0.12287909537553787, 0.014162987470626831, 0.005124613177031279, 0.004260051529854536, 0.04555180296301842, 0.024484332650899887, 0.032032452523708344, 0.019620250910520554], "count": [390]}, "timestamp": {"min": [0.0], "max": [12.966666666666667], "mean": [6.483333333333333], "std": [3.752764413168077], "count": [390]}, "frame_index": {"min": [0], "max": [389], "mean": [194.5], "std": [112.5829323950423], "count": [390]}, "episode_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [390]}, "index": {"min": [3019], "max": [3408], "mean": [3213.5], "std": [112.5829323950423], "count": [390]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [390]}}} +{"episode_index": 6, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5378772467320261]], [[0.5006057516339869]], [[0.4464619934640523]]], "std": [[[0.2707178738612844]], [[0.25511780738210604]], [[0.25414301701766523]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5564190223311546]], [[0.5251186002178649]], [[0.47400412581699347]]], "std": [[[0.24845437667475467]], [[0.22415820020378704]], [[0.23728776283770087]]], "count": [100]}, "observation.state": {"min": [0.6078022718429565, -0.06185908988118172, 0.11682813614606857, -1.5682710409164429, 0.2014022022485733, -0.38123783469200134, -0.5344054102897644, -0.23416097462177277, 0.12972232699394226, 1.108001708984375, 0.7751388549804688, 0.20659391582012177], "max": [0.8016582727432251, 0.04951044172048569, 0.1484018713235855, -0.7479640245437622, 0.8632693886756897, 0.8425681591033936, -0.3219066560268402, -0.14657746255397797, 0.15192647278308868, 1.5022187232971191, 1.149659514427185, 0.6610420346260071], "mean": [0.7235028147697449, -0.004220682196319103, 0.13120484352111816, -1.009686827659607, 0.4653146266937256, 0.2556750476360321, -0.4406256079673767, -0.17081864178180695, 0.14154869318008423, 1.1812764406204224, 0.9531882405281067, 0.461141437292099], "std": [0.06327607482671738, 0.027054153382778168, 0.009311607107520103, 0.2250158041715622, 0.21411293745040894, 0.32621118426322937, 0.0617351196706295, 0.019842706620693207, 0.0072036972269415855, 0.09587600827217102, 0.10809023678302765, 0.10293775796890259], "count": [417]}, "action": {"min": [-0.10643012821674347, -0.07429387420415878, 0.09992430359125137, 0.3677857220172882, -0.516366720199585, 0.5260226130485535, -0.5710827112197876, 0.12418162822723389, -0.0801137313246727, 0.0751090720295906, -0.03321040794253349, -0.5749232172966003, -0.5172403454780579, 0.6897832751274109], "max": [-0.06344568729400635, -0.05423753708600998, 0.12038934975862503, 0.72280353307724, -0.013767411932349205, 0.8209999203681946, -0.10880615562200546, 0.15588124096393585, -0.0672130137681961, 0.09731654077768326, 0.183518648147583, -0.4099617600440979, -0.4112722873687744, 0.7948135733604431], "mean": [-0.08206020295619965, -0.06288223713636398, 0.11128143966197968, 0.4880085289478302, -0.3302024304866791, 0.696773111820221, -0.34192362427711487, 0.1382589340209961, -0.07399456202983856, 0.08897776156663895, 0.05715637654066086, -0.4428369998931885, -0.4732869863510132, 0.7555780410766602], "std": [0.01398158073425293, 0.004875555168837309, 0.005477295722812414, 0.10435667634010315, 0.14586584270000458, 0.06957368552684784, 0.11576592922210693, 0.009527471847832203, 0.003922104369848967, 0.004210221115499735, 0.05388565734028816, 0.03946730121970177, 0.03026544488966465, 0.018762752413749695], "count": [417]}, "timestamp": {"min": [0.0], "max": [13.866666666666667], "mean": [6.933333333333332], "std": [4.012572833076148], "count": [417]}, "frame_index": {"min": [0], "max": [416], "mean": [208.0], "std": [120.37718499228443], "count": [417]}, "episode_index": {"min": [6], "max": [6], "mean": [6.0], "std": [0.0], "count": [417]}, "index": {"min": [3409], "max": [3825], "mean": [3617.0], "std": [120.37718499228443], "count": [417]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [417]}}} +{"episode_index": 7, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5468175065008082]], [[0.5078339658444023]], [[0.4528396549300724]]], "std": [[[0.2703559017803744]], [[0.25370425763102333]], [[0.25167702160327765]]], "count": [155]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5667155228758171]], [[0.5330745537283014]], [[0.4813673062056364]]], "std": [[[0.24749034399686634]], [[0.22166486630308224]], [[0.23357487110175082]]], "count": [155]}, "observation.state": {"min": [0.583946704864502, -0.07737406343221664, 0.11340981721878052, -2.385852098464966, -0.5796120166778564, -0.6721936464309692, -0.5931058526039124, -0.30724120140075684, 0.13200509548187256, 0.3239709734916687, 0.4454349875450134, -0.5885382294654846], "max": [0.8120839595794678, 0.04929419979453087, 0.14872853457927704, -0.6577973365783691, 0.8854045271873474, 0.512515664100647, -0.18791726231575012, -0.11279823631048203, 0.1597275584936142, 1.8243025541305542, 1.3807117938995361, 0.8863540887832642], "mean": [0.7196819186210632, -0.011079865507781506, 0.1290970742702484, -1.3522615432739258, 0.3633725047111511, -0.08040142059326172, -0.4250664710998535, -0.21973729133605957, 0.146077960729599, 1.0882673263549805, 1.0311458110809326, 0.20136071741580963], "std": [0.06785470247268677, 0.022595712915062904, 0.008773557841777802, 0.4043751060962677, 0.34091636538505554, 0.24440202116966248, 0.08149990439414978, 0.04194594547152519, 0.008355204947292805, 0.3951387405395508, 0.24180608987808228, 0.40016844868659973], "count": [835]}, "action": {"min": [-0.11012684553861618, -0.07729443907737732, 0.09580093622207642, 0.202418714761734, -0.42233118414878845, 0.5794129967689514, -0.556620180606842, 0.11487593501806259, -0.09102848172187805, 0.07480408996343613, -0.3229455351829529, -0.5991449356079102, -0.5856251120567322, -0.5997523665428162], "max": [-0.06469078361988068, -0.054970867931842804, 0.12258386611938477, 0.7157387137413025, 0.0709766075015068, 0.9606857299804688, 0.2669793665409088, 0.1697341352701187, -0.061716463416814804, 0.09615661948919296, 0.38902202248573303, 0.6036083698272705, 0.4646921753883362, 0.8837553858757019], "mean": [-0.08426912128925323, -0.06404322385787964, 0.10982050746679306, 0.44732972979545593, -0.1719541698694229, 0.7964819073677063, -0.2519334554672241, 0.13941775262355804, -0.08134951442480087, 0.08871742337942123, 0.11832217127084732, -0.488694429397583, -0.44235682487487793, 0.6953401565551758], "std": [0.012968272902071476, 0.00433413777500391, 0.006229802966117859, 0.11801362782716751, 0.11687716096639633, 0.09515156596899033, 0.18929243087768555, 0.012095422483980656, 0.007462635170668364, 0.004405358340591192, 0.11620970070362091, 0.11324500292539597, 0.13929633796215057, 0.1492213010787964], "count": [835]}, "timestamp": {"min": [0.0], "max": [27.8], "mean": [13.9], "std": [8.03478548424149], "count": [835]}, "frame_index": {"min": [0], "max": [834], "mean": [417.0], "std": [241.04356452724474], "count": [835]}, "episode_index": {"min": [7], "max": [7], "mean": [7.0], "std": [0.0], "count": [835]}, "index": {"min": [3826], "max": [4660], "mean": [4243.0], "std": [241.04356452724474], "count": [835]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [835]}}} +{"episode_index": 8, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5361516938997821]], [[0.49851519063180827]], [[0.444132962962963]]], "std": [[[0.27467698314650957]], [[0.2573725459606645]], [[0.25498796119274186]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5556324128540305]], [[0.5240338453159041]], [[0.47266261982570806]]], "std": [[[0.25259802430283956]], [[0.2261406711886585]], [[0.23756019554638522]]], "count": [100]}, "observation.state": {"min": [0.6214251518249512, -0.08042453974485397, 0.11979533731937408, -1.4103745222091675, 0.30387958884239197, -0.2859059274196625, -0.5173149704933167, -0.2670134902000427, 0.13286323845386505, 0.87964928150177, 0.8882738947868347, 0.22264423966407776], "max": [0.8095200061798096, 0.02981746941804886, 0.14877650141716003, 0.013000779785215855, 1.0451326370239258, 1.0687791109085083, -0.3433835804462433, -0.18557727336883545, 0.15564942359924316, 1.354177713394165, 1.272632360458374, 0.8117824196815491], "mean": [0.7348362803459167, -0.025801537558436394, 0.1349770873785019, -0.9296281933784485, 0.6328978538513184, 0.30885985493659973, -0.440339595079422, -0.21811239421367645, 0.1438112109899521, 1.0807878971099854, 1.1086208820343018, 0.46027809381484985], "std": [0.058228131383657455, 0.024539105594158173, 0.007071296218782663, 0.28866174817085266, 0.17653745412826538, 0.3717302083969116, 0.05141093209385872, 0.02037840522825718, 0.007134740706533194, 0.1321745067834854, 0.12148866802453995, 0.15373371541500092], "count": [462]}, "action": {"min": [-0.10202720016241074, -0.07575158774852753, 0.09436193108558655, -0.6134793758392334, -0.5912380814552307, -0.6269491314888, -0.6253162622451782, 0.1270327866077423, -0.08729855716228485, 0.07648959755897522, -0.055108536034822464, -0.5709364414215088, -0.5937516689300537, 0.6275781393051147], "max": [-0.06295982748270035, -0.058501243591308594, 0.12360946834087372, 0.7403353452682495, 0.5969075560569763, 0.8364384174346924, 0.6317591071128845, 0.15201731026172638, -0.07098241150379181, 0.09488706290721893, 0.17124633491039276, -0.3931922912597656, -0.4489268362522125, 0.7540647983551025], "mean": [-0.07819485664367676, -0.06548525393009186, 0.11067978292703629, 0.4619963467121124, -0.2604718506336212, 0.5655108690261841, -0.28360435366630554, 0.13801033794879913, -0.07874763011932373, 0.08641741424798965, 0.04636120796203613, -0.4524223804473877, -0.5408356189727783, 0.7016488313674927], "std": [0.011141203343868256, 0.004410078749060631, 0.005936390720307827, 0.30559536814689636, 0.19306468963623047, 0.3438358008861542, 0.26380670070648193, 0.008093356154859066, 0.004238169174641371, 0.004247779957950115, 0.06348249316215515, 0.04300866648554802, 0.039125584065914154, 0.030649909749627113], "count": [462]}, "timestamp": {"min": [0.0], "max": [15.366666666666667], "mean": [7.683333333333333], "std": [4.445586658782027], "count": [462]}, "frame_index": {"min": [0], "max": [461], "mean": [230.5], "std": [133.3675997634608], "count": [462]}, "episode_index": {"min": [8], "max": [8], "mean": [8.0], "std": [0.0], "count": [462]}, "index": {"min": [4661], "max": [5122], "mean": [4891.5], "std": [133.3675997634608], "count": [462]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [462]}}} +{"episode_index": 9, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5884548529411764]], [[0.5512922549019608]], [[0.4989589678649237]]], "std": [[[0.2862763265113771]], [[0.2789058089500551]], [[0.2863407694863509]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.612350089869281]], [[0.5795892864923747]], [[0.5310133605664488]]], "std": [[[0.2621935517664819]], [[0.24705544915383584]], [[0.2700613825448236]]], "count": [100]}, "observation.state": {"min": [0.6468329429626465, -0.07070934027433395, 0.12363754957914352, -1.5611416101455688, 0.08717408776283264, -0.382567822933197, -0.567844808101654, -0.3179989755153656, 0.1238851398229599, 0.599084198474884, 0.8927828669548035, 0.2079484462738037], "max": [0.8212817311286926, 0.03110717050731182, 0.14798316359519958, -0.7303500771522522, 0.9175140857696533, 0.8193701505661011, -0.2667123079299927, -0.031748149544000626, 0.1480998396873474, 1.376824140548706, 1.3695076704025269, 0.8381732106208801], "mean": [0.751642107963562, -0.012120548635721207, 0.134668231010437, -1.017391324043274, 0.4957030117511749, 0.23643268644809723, -0.46297088265419006, -0.2333340346813202, 0.1367211490869522, 0.9649124145507812, 1.047929048538208, 0.49293598532676697], "std": [0.053372662514448166, 0.02760707214474678, 0.006600031163543463, 0.18346816301345825, 0.26523274183273315, 0.33253908157348633, 0.07763582468032837, 0.06795402616262436, 0.007636331953108311, 0.19127731025218964, 0.1254715472459793, 0.16096597909927368], "count": [413]}, "action": {"min": [-0.09590402990579605, -0.07415461540222168, 0.09943727403879166, -0.4878999888896942, -0.5171883702278137, -0.624077558517456, -0.6255667805671692, 0.1224687397480011, -0.08169765025377274, 0.06496838480234146, -0.14026153087615967, -0.4666740596294403, -0.6377686262130737, 0.6579549312591553], "max": [-0.06162926182150841, -0.05592240393161774, 0.11834800243377686, 0.7118791937828064, 0.05390114709734917, 0.8081913590431213, 0.6289398670196533, 0.16635777056217194, -0.052801743149757385, 0.09198356419801712, 0.13537254929542542, -0.32845279574394226, -0.5064572691917419, 0.7443047165870667], "mean": [-0.07627898454666138, -0.0635376125574112, 0.10987310856580734, 0.461443692445755, -0.3178667724132538, 0.6336239576339722, -0.29430902004241943, 0.13914203643798828, -0.07491815835237503, 0.07990038394927979, 0.031191105023026466, -0.3939433991909027, -0.577707827091217, 0.7086598873138428], "std": [0.011174790561199188, 0.005059991497546434, 0.005574507638812065, 0.2243950515985489, 0.1614077240228653, 0.27013131976127625, 0.2203560471534729, 0.011092003434896469, 0.007751960773020983, 0.005751514341682196, 0.07178785651922226, 0.036878108978271484, 0.030874397605657578, 0.02059031091630459], "count": [413]}, "timestamp": {"min": [0.0], "max": [13.733333333333333], "mean": [6.866666666666667], "std": [3.974082703383679], "count": [413]}, "frame_index": {"min": [0], "max": [412], "mean": [206.0], "std": [119.22248110151038], "count": [413]}, "episode_index": {"min": [9], "max": [9], "mean": [9.0], "std": [0.0], "count": [413]}, "index": {"min": [5123], "max": [5535], "mean": [5329.0], "std": [119.22248110151038], "count": [413]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [413]}}} +{"episode_index": 10, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5859374991327033]], [[0.5498179578979504]], [[0.49800990799716915]]], "std": [[[0.2879721172878386]], [[0.2803542191551178]], [[0.28753353397078274]]], "count": [157]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6092554171350069]], [[0.5778916590344559]], [[0.5293326290884365]]], "std": [[[0.26398142197944224]], [[0.24854824854006635]], [[0.2715300654842389]]], "count": [157]}, "observation.state": {"min": [0.5938858985900879, -0.07639326900243759, 0.11649758368730545, -1.6628412008285522, -0.09769509732723236, -0.20279759168624878, -0.6084741353988647, -0.22990575432777405, 0.12719327211380005, 0.13545970618724823, 0.07419361919164658, -0.5225393176078796], "max": [0.8436313271522522, 0.022928789258003235, 0.14947909116744995, -0.13986319303512573, 0.9761311411857605, 1.2052782773971558, -0.33081871271133423, -0.025206999853253365, 0.15404333174228668, 1.378082275390625, 1.145696997642517, 1.043365478515625], "mean": [0.7485135197639465, -0.013270186260342598, 0.13045792281627655, -0.9135965704917908, 0.3948242664337158, 0.3986591398715973, -0.5138391256332397, -0.17904669046401978, 0.1420748233795166, 1.0417920351028442, 0.4817412495613098, 0.4913884699344635], "std": [0.06501827389001846, 0.022982260212302208, 0.008304699324071407, 0.24481317400932312, 0.3184441328048706, 0.30561432242393494, 0.06861905008554459, 0.050378765910863876, 0.006927394773811102, 0.21924786269664764, 0.2552163004875183, 0.28251025080680847], "count": [853]}, "action": {"min": [-0.10788320004940033, -0.07734937965869904, 0.0954168289899826, -0.5804514288902283, -0.5828941464424133, -0.5394085049629211, -0.6016502380371094, 0.1171330139040947, -0.08661618083715439, 0.074761763215065, -0.4200899600982666, -0.49792417883872986, -0.6202346086502075, -0.6154285073280334], "max": [-0.060832440853118896, -0.052641939371824265, 0.11838142573833466, 0.7482422590255737, 0.5906931757926941, 0.8420445322990417, 0.24488650262355804, 0.15696002542972565, -0.058387622237205505, 0.10024148970842361, 0.39551764726638794, 0.3250241279602051, 0.6538980603218079, 0.9427456259727478], "mean": [-0.08001963049173355, -0.06290488690137863, 0.10783993452787399, 0.47014132142066956, -0.3907974362373352, 0.6484752893447876, -0.339931845664978, 0.13195233047008514, -0.07561561465263367, 0.08707405626773834, 0.0737525001168251, -0.2521997392177582, -0.40578925609588623, 0.8148517608642578], "std": [0.013420470058918, 0.006075956393033266, 0.005747789982706308, 0.174169659614563, 0.1676626354455948, 0.13081057369709015, 0.12088649719953537, 0.009596644900739193, 0.00687253987416625, 0.006071575917303562, 0.12600840628147125, 0.11904437094926834, 0.17098036408424377, 0.2074218988418579], "count": [853]}, "timestamp": {"min": [0.0], "max": [28.4], "mean": [14.200000000000003], "std": [8.207990686587742], "count": [853]}, "frame_index": {"min": [0], "max": [852], "mean": [426.0], "std": [246.23972059763227], "count": [853]}, "episode_index": {"min": [10], "max": [10], "mean": [10.0], "std": [0.0], "count": [853]}, "index": {"min": [5536], "max": [6388], "mean": [5962.0], "std": [246.23972059763227], "count": [853]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [853]}}} +{"episode_index": 11, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.594948431372549]], [[0.5577525708061002]], [[0.5056888235294118]]], "std": [[[0.28211451769741086]], [[0.27568069290370073]], [[0.28352938673494055]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6177028376906318]], [[0.5850967211328976]], [[0.5364591094771243]]], "std": [[[0.25720077814425973]], [[0.24314348583443035]], [[0.26709765162356464]]], "count": [100]}, "observation.state": {"min": [0.603678286075592, -0.0524141900241375, 0.11880886554718018, -1.5779168605804443, -0.08580771833658218, -0.2891574800014496, -0.6160192489624023, -0.31317225098609924, 0.12364532798528671, 1.0440462827682495, 0.266577810049057, 0.2575831115245819], "max": [0.8051567077636719, 0.05776603892445564, 0.14957760274410248, -0.5594527721405029, 0.9400591254234314, 1.0761202573776245, -0.41518956422805786, -0.08559876680374146, 0.14495374262332916, 1.3699043989181519, 0.7387935519218445, 0.5871930718421936], "mean": [0.728874146938324, 0.006207094993442297, 0.1313728243112564, -1.0081593990325928, 0.46904435753822327, 0.3695104420185089, -0.5340858101844788, -0.21476168930530548, 0.13360001146793365, 1.1741743087768555, 0.5075046420097351, 0.4339350759983063], "std": [0.057508379220962524, 0.026881637051701546, 0.009133313782513142, 0.20361076295375824, 0.3216336667537689, 0.37440791726112366, 0.055901143699884415, 0.05459463223814964, 0.006811459548771381, 0.09967536479234695, 0.16140426695346832, 0.09250617027282715], "count": [429]}, "action": {"min": [-0.10619857162237167, -0.07205518335103989, 0.09877170622348785, -0.5654414892196655, -0.5699935555458069, -0.5463437438011169, -0.5624399781227112, 0.12545910477638245, -0.08359095454216003, 0.060886017978191376, 0.0047585247084498405, -0.45834022760391235, -0.4711255133152008, 0.7937779426574707], "max": [-0.06522103399038315, -0.05124364420771599, 0.12144721299409866, 0.7534939050674438, 0.6020159125328064, 0.8504239916801453, 0.2364456057548523, 0.14772143959999084, -0.058850809931755066, 0.08766285330057144, 0.2614733874797821, -0.2455136626958847, -0.2824431359767914, 0.8824820518493652], "mean": [-0.08162673562765121, -0.06099167466163635, 0.11181154102087021, 0.4840708076953888, -0.3336007595062256, 0.6508510708808899, -0.3012498915195465, 0.13388468325138092, -0.07375101745128632, 0.07717966288328171, 0.14583855867385864, -0.3238460421562195, -0.38619762659072876, 0.8439234495162964], "std": [0.012745819985866547, 0.00613967003300786, 0.005931244697421789, 0.20633001625537872, 0.2042618989944458, 0.1941262036561966, 0.1343415081501007, 0.006743813864886761, 0.007090135011821985, 0.007142640650272369, 0.07675851881504059, 0.05618716776371002, 0.05336601659655571, 0.024532638490200043], "count": [429]}, "timestamp": {"min": [0.0], "max": [14.266666666666667], "mean": [7.133333333333334], "std": [4.128043209650396], "count": [429]}, "frame_index": {"min": [0], "max": [428], "mean": [214.0], "std": [123.84129628951187], "count": [429]}, "episode_index": {"min": [11], "max": [11], "mean": [11.0], "std": [0.0], "count": [429]}, "index": {"min": [6389], "max": [6817], "mean": [6603.0], "std": [123.84129628951187], "count": [429]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [429]}}} +{"episode_index": 12, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5892286791938998]], [[0.5521550108932461]], [[0.5003271105664489]]], "std": [[[0.284466907718113]], [[0.2779828383756102]], [[0.28578911364228393]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6124769090413943]], [[0.5802866067538126]], [[0.5317677723311547]]], "std": [[[0.25987452342991035]], [[0.24577296377887783]], [[0.26945699959094893]]], "count": [100]}, "observation.state": {"min": [0.6583706736564636, -0.0790962278842926, 0.12094256281852722, -1.529268741607666, -0.04331377148628235, -0.06800396740436554, -0.5658755302429199, -0.28238946199417114, 0.12366476655006409, 0.7972411513328552, 0.5249574184417725, -0.28888651728630066], "max": [0.8129489421844482, 0.0408300906419754, 0.14524929225444794, -0.5967775583267212, 0.8769330382347107, 1.118116855621338, -0.34503626823425293, -0.06521075963973999, 0.14532707631587982, 1.0872423648834229, 1.0430830717086792, 0.41535142064094543], "mean": [0.746452271938324, -0.009212580509483814, 0.13204282522201538, -0.9162358045578003, 0.39027929306030273, 0.45385801792144775, -0.4980084002017975, -0.1915271133184433, 0.13441571593284607, 0.9047677516937256, 0.7449255585670471, 0.09992383420467377], "std": [0.04805987700819969, 0.032184798270463943, 0.007525836583226919, 0.20380091667175293, 0.2906052768230438, 0.3441581130027771, 0.07054281234741211, 0.05382787063717842, 0.0076914262026548386, 0.069924496114254, 0.13597780466079712, 0.18964062631130219], "count": [386]}, "action": {"min": [-0.09880925714969635, -0.0750768706202507, 0.09529834985733032, -0.6091457605361938, -0.6156786680221558, -0.5889521241188049, -0.5660421848297119, 0.12526321411132812, -0.08066316694021225, 0.06589840352535248, 0.024132825434207916, -0.5615705847740173, -0.5239419341087341, 0.6276417374610901], "max": [-0.06760173290967941, -0.05534782633185387, 0.12279040366411209, 0.7080647349357605, 0.6579224467277527, 0.8225952982902527, 0.19199250638484955, 0.15606370568275452, -0.05609103664755821, 0.08966867625713348, 0.3748103380203247, -0.34622642397880554, -0.41978922486305237, 0.8026784658432007], "mean": [-0.07926250249147415, -0.06293617933988571, 0.10992523282766342, 0.39277371764183044, -0.3087770640850067, 0.5730161070823669, -0.29401081800460815, 0.1364997774362564, -0.07059130817651749, 0.08158419281244278, 0.21053095161914825, -0.3941541612148285, -0.473616361618042, 0.7479422688484192], "std": [0.010042370297014713, 0.005152080673724413, 0.007225650362670422, 0.31204622983932495, 0.3019377291202545, 0.3387967646121979, 0.17964719235897064, 0.009870970621705055, 0.006836221553385258, 0.005463484674692154, 0.10288310796022415, 0.05661524832248688, 0.027345949783921242, 0.04528616741299629], "count": [386]}, "timestamp": {"min": [0.0], "max": [12.833333333333334], "mean": [6.416666666666666], "std": [3.714274267381629], "count": [386]}, "frame_index": {"min": [0], "max": [385], "mean": [192.5], "std": [111.42822802144886], "count": [386]}, "episode_index": {"min": [12], "max": [12], "mean": [12.0], "std": [0.0], "count": [386]}, "index": {"min": [6818], "max": [7203], "mean": [7010.5], "std": [111.42822802144886], "count": [386]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [386]}}} +{"episode_index": 13, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5912689950980392]], [[0.5541394035947712]], [[0.5021618518518518]]], "std": [[[0.28184326049736613]], [[0.27663477400637937]], [[0.28523178957529866]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6142480773420479]], [[0.5817084095860567]], [[0.5333105964052287]]], "std": [[[0.25686520821256764]], [[0.24435900296380905]], [[0.2688799602490871]]], "count": [100]}, "observation.state": {"min": [0.637611985206604, -0.0426449291408062, 0.1168086901307106, -1.6164997816085815, 0.13267403841018677, -0.32135075330734253, -0.567922055721283, -0.2221830189228058, 0.12276384979486465, 0.8400179147720337, 0.404580682516098, 0.3114190101623535], "max": [0.8027549386024475, 0.04401957988739014, 0.14714966714382172, -0.7777400016784668, 0.9273518919944763, 1.0108308792114258, -0.3705521821975708, -0.09736049175262451, 0.1446322649717331, 1.2447195053100586, 1.108668565750122, 0.760912299156189], "mean": [0.7411535382270813, 0.0011956742964684963, 0.1319168359041214, -1.0412888526916504, 0.4202588200569153, 0.2684403955936432, -0.502917468547821, -0.17948193848133087, 0.13362738490104675, 1.0355314016342163, 0.6796956658363342, 0.5545234680175781], "std": [0.049327999353408813, 0.02098562754690647, 0.009846819564700127, 0.24549493193626404, 0.24076597392559052, 0.32944440841674805, 0.06333564221858978, 0.035129375755786896, 0.007224000990390778, 0.09545538574457169, 0.13871148228645325, 0.10134036839008331], "count": [429]}, "action": {"min": [-0.10292665660381317, -0.07251860201358795, 0.10055426508188248, 0.3451926112174988, -0.5443000793457031, 0.48671984672546387, -0.5077021718025208, 0.1253737360239029, -0.07691726833581924, 0.07133829593658447, -0.05071201175451279, -0.46056580543518066, -0.5661656856536865, 0.6856740713119507], "max": [-0.06408043950796127, -0.05580848082900047, 0.11988669633865356, 0.7229892015457153, -0.07523449510335922, 0.8553984761238098, -0.06365065276622772, 0.15361246466636658, -0.05812523141503334, 0.08759822696447372, 0.1827525645494461, -0.23599015176296234, -0.42612823843955994, 0.8654517531394958], "mean": [-0.07941346615552902, -0.061711620539426804, 0.11067770421504974, 0.48290592432022095, -0.33889567852020264, 0.7027561068534851, -0.3174577057361603, 0.13602492213249207, -0.06975336372852325, 0.08149063587188721, 0.0514458566904068, -0.3049222230911255, -0.4954511523246765, 0.8075509071350098], "std": [0.012552570551633835, 0.00410508131608367, 0.00471417186781764, 0.11902929097414017, 0.1438077837228775, 0.0855257511138916, 0.12305548042058945, 0.00901196151971817, 0.00563707435503602, 0.004249936435371637, 0.06107259541749954, 0.04207732528448105, 0.023162025958299637, 0.02700328268110752], "count": [429]}, "timestamp": {"min": [0.0], "max": [14.266666666666667], "mean": [7.133333333333334], "std": [4.128043209650396], "count": [429]}, "frame_index": {"min": [0], "max": [428], "mean": [214.0], "std": [123.84129628951187], "count": [429]}, "episode_index": {"min": [13], "max": [13], "mean": [13.0], "std": [0.0], "count": [429]}, "index": {"min": [7204], "max": [7632], "mean": [7418.0], "std": [123.84129628951187], "count": [429]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [429]}}} +{"episode_index": 14, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5852442158724839]], [[0.5491149540062938]], [[0.4973497430311156]]], "std": [[[0.2839139704918675]], [[0.27750464167222094]], [[0.28577850351958134]]], "count": [117]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6081280119360185]], [[0.5767506889745452]], [[0.5286831834348175]]], "std": [[[0.25979753746629275]], [[0.24590714761687715]], [[0.2696682239166698]]], "count": [117]}, "observation.state": {"min": [0.6387549638748169, -0.07485645264387131, 0.11220557242631912, -1.6001439094543457, -0.008061549626290798, -0.27474620938301086, -0.624699592590332, -0.2838567793369293, 0.11790017038583755, 1.2669466733932495, 0.3891407549381256, 0.15649643540382385], "max": [0.8304640650749207, 0.03442021831870079, 0.14976687729358673, -0.29440468549728394, 0.8968819975852966, 0.9046525359153748, -0.39389026165008545, -0.19217248260974884, 0.13937580585479736, 1.463635802268982, 0.6979392170906067, 0.7694029808044434], "mean": [0.7577745318412781, -0.006183531600981951, 0.13248054683208466, -0.9606726765632629, 0.4384211599826813, 0.3275991976261139, -0.5545403361320496, -0.2250693291425705, 0.12920573353767395, 1.3218971490859985, 0.5300731062889099, 0.5643727779388428], "std": [0.04774460569024086, 0.030565766617655754, 0.009024864062666893, 0.2743135094642639, 0.2566559314727783, 0.29522839188575745, 0.05898255109786987, 0.022671695798635483, 0.006557800341397524, 0.05092437565326691, 0.09004859626293182, 0.14473994076251984], "count": [573]}, "action": {"min": [-0.10626829415559769, -0.07596515864133835, 0.09461458027362823, -0.5545007586479187, -0.5727358460426331, -0.5787003040313721, -0.5877277255058289, 0.12122207134962082, -0.0786418691277504, 0.06190690025687218, -0.028439415618777275, -0.4516368508338928, -0.41820305585861206, 0.8188270926475525], "max": [-0.062352254986763, -0.05474737659096718, 0.11755100637674332, 0.6996500492095947, 0.31550511717796326, 0.821861982345581, 0.594903826713562, 0.15350547432899475, -0.06528784334659576, 0.07644481956958771, 0.2981172502040863, -0.31103041768074036, -0.24802924692630768, 0.8755019903182983], "mean": [-0.07715032249689102, -0.06180986762046814, 0.10880613327026367, 0.4801904559135437, -0.3534349203109741, 0.6625614166259766, -0.32678091526031494, 0.13362200558185577, -0.07159162312746048, 0.07202407717704773, 0.09623733907938004, -0.3601893186569214, -0.3609636723995209, 0.8496748208999634], "std": [0.011742621660232544, 0.00505548482760787, 0.005585775710642338, 0.15886923670768738, 0.14340880513191223, 0.15198077261447906, 0.17269518971443176, 0.008306599222123623, 0.003061251249164343, 0.004020961932837963, 0.07480026036500931, 0.036456745117902756, 0.04022061452269554, 0.01477804221212864], "count": [573]}, "timestamp": {"min": [0.0], "max": [19.066666666666666], "mean": [9.533333333333333], "std": [5.513686674153759], "count": [573]}, "frame_index": {"min": [0], "max": [572], "mean": [286.0], "std": [165.41060022461278], "count": [573]}, "episode_index": {"min": [14], "max": [14], "mean": [14.0], "std": [0.0], "count": [573]}, "index": {"min": [7633], "max": [8205], "mean": [7919.0], "std": [165.41060022461278], "count": [573]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [573]}}} +{"episode_index": 15, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5922714752567694]], [[0.5557287529826745]], [[0.5036605223570909]]], "std": [[[0.28351913579014154]], [[0.2766655224045998]], [[0.2848913089253452]]], "count": [105]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6148917859736487]], [[0.5829674732856105]], [[0.5346997017325449]]], "std": [[[0.2583354538336684]], [[0.2445256345423383]], [[0.26840872394294546]]], "count": [105]}, "observation.state": {"min": [0.6194018125534058, -0.09336783736944199, 0.11651962250471115, -1.5565284490585327, 0.11518456786870956, -0.4128807485103607, -0.6203902959823608, -0.31567442417144775, 0.12021274864673615, 1.0253838300704956, 0.43341097235679626, 0.12441478669643402], "max": [0.7977351546287537, 0.07466337829828262, 0.1470433622598648, -0.7917892336845398, 0.8050622344017029, 0.9402655959129333, -0.43324530124664307, -0.2089153677225113, 0.14320634305477142, 1.3350958824157715, 0.7881193161010742, 0.6144870519638062], "mean": [0.7286769151687622, -0.001723246299661696, 0.13257691264152527, -1.173095464706421, 0.4451121985912323, 0.41432708501815796, -0.5526203513145447, -0.2458362877368927, 0.1298254430294037, 1.168384313583374, 0.6130346059799194, 0.45675283670425415], "std": [0.0555577352643013, 0.03585081547498703, 0.00933427456766367, 0.1709671914577484, 0.2000601589679718, 0.2972594201564789, 0.05371934175491333, 0.02773706428706646, 0.0066429246217012405, 0.08023729175329208, 0.11181676387786865, 0.14094671607017517], "count": [496]}, "action": {"min": [-0.10550155490636826, -0.07729886472225189, 0.09908024221658707, 0.34131792187690735, -0.5472566485404968, 0.5164100527763367, -0.5004724264144897, 0.12463631480932236, -0.08065348863601685, 0.05688147991895676, 0.048104170709848404, -0.5257986187934875, -0.46567028760910034, 0.7221352458000183], "max": [-0.06413178145885468, -0.049767911434173584, 0.12406077235937119, 0.706053614616394, -0.04222739487886429, 0.8420060276985168, 0.01943894848227501, 0.148334801197052, -0.06805089861154556, 0.081020787358284, 0.30031833052635193, -0.30782392621040344, -0.35037508606910706, 0.8525113463401794], "mean": [-0.08034096658229828, -0.06324830651283264, 0.11159530282020569, 0.5185626149177551, -0.3846893608570099, 0.698029100894928, -0.21776099503040314, 0.13369879126548767, -0.07293156534433365, 0.07112520188093185, 0.14212360978126526, -0.35823002457618713, -0.4197905659675598, 0.8161070942878723], "std": [0.013021803461015224, 0.005791511852294207, 0.006074588745832443, 0.11176104843616486, 0.1108173280954361, 0.09210295230150223, 0.12323899567127228, 0.007216924801468849, 0.0033169409725815058, 0.005831864662468433, 0.07130077481269836, 0.05150826275348663, 0.029463835060596466, 0.024756474420428276], "count": [496]}, "timestamp": {"min": [0.0], "max": [16.5], "mean": [8.25], "std": [4.77275252518572], "count": [496]}, "frame_index": {"min": [0], "max": [495], "mean": [247.5], "std": [143.1825757555716], "count": [496]}, "episode_index": {"min": [15], "max": [15], "mean": [15.0], "std": [0.0], "count": [496]}, "index": {"min": [8206], "max": [8701], "mean": [8453.5], "std": [143.1825757555716], "count": [496]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [496]}}} +{"episode_index": 16, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5956691966230937]], [[0.5578854357298475]], [[0.50538125]]], "std": [[[0.28342781870390454]], [[0.27642288329889536]], [[0.28438962135171497]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6193127805010893]], [[0.5857064188453159]], [[0.5372229656862746]]], "std": [[[0.2570734939466857]], [[0.24365142298879225]], [[0.2671241884338001]]], "count": [100]}, "observation.state": {"min": [0.6103198528289795, -0.06149611994624138, 0.11006668955087662, -1.7909618616104126, 0.10739628970623016, -0.27092674374580383, -0.5903488993644714, -0.2847217321395874, 0.12692883610725403, 0.85008305311203, 0.6298942565917969, 0.26355767250061035], "max": [0.7851470708847046, 0.05988207086920738, 0.14102597534656525, -0.6156496405601501, 1.0096070766448975, 0.7815476059913635, -0.3685905933380127, -0.14988279342651367, 0.14942334592342377, 1.652356743812561, 1.077378749847412, 0.977145791053772], "mean": [0.7183950543403625, -0.0090161869302392, 0.12871913611888885, -1.1144601106643677, 0.5241815447807312, 0.26307421922683716, -0.5032237768173218, -0.21187153458595276, 0.13654449582099915, 1.2638282775878906, 0.8783313632011414, 0.6875995397567749], "std": [0.052264679223299026, 0.030077658593654633, 0.00916727352887392, 0.21476174890995026, 0.30004310607910156, 0.2582298517227173, 0.06900916248559952, 0.036711934953927994, 0.007566299755126238, 0.16642709076404572, 0.13055026531219482, 0.20728656649589539], "count": [350]}, "action": {"min": [-0.10881781578063965, -0.0709296464920044, 0.09703061729669571, -0.5230467915534973, -0.43618249893188477, -0.5983700752258301, -0.5951368808746338, 0.1197289302945137, -0.08438799530267715, 0.0661420077085495, -0.11734262108802795, -0.5293056964874268, -0.5772104859352112, 0.6783185005187988], "max": [-0.07053618133068085, -0.05110929533839226, 0.12068893015384674, 0.764821469783783, 0.12253305315971375, 0.8421918749809265, 0.6013271808624268, 0.15153031051158905, -0.06648734211921692, 0.08756578713655472, 0.19073937833309174, -0.3085680305957794, -0.41076189279556274, 0.7976663112640381], "mean": [-0.08432042598724365, -0.06271504610776901, 0.10941316932439804, 0.5136104226112366, -0.312858909368515, 0.6964508295059204, -0.2809146046638489, 0.13417431712150574, -0.07409173995256424, 0.07876640558242798, 0.014397180639207363, -0.408632755279541, -0.4881995916366577, 0.7625846862792969], "std": [0.012260204181075096, 0.004672451410442591, 0.005397352389991283, 0.15608541667461395, 0.11341875046491623, 0.1406598836183548, 0.13173943758010864, 0.00949809979647398, 0.005143255461007357, 0.005452064331620932, 0.09207849949598312, 0.050733692944049835, 0.03391255438327789, 0.027113240212202072], "count": [350]}, "timestamp": {"min": [0.0], "max": [11.633333333333333], "mean": [5.816666666666667], "std": [3.3678628238097823], "count": [350]}, "frame_index": {"min": [0], "max": [349], "mean": [174.5], "std": [101.03588471429346], "count": [350]}, "episode_index": {"min": [16], "max": [16], "mean": [16.0], "std": [0.0], "count": [350]}, "index": {"min": [8702], "max": [9051], "mean": [8876.5], "std": [101.03588471429346], "count": [350]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [350]}}} +{"episode_index": 17, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5692514216028829]], [[0.535706397898083]], [[0.4850506124881819]]], "std": [[[0.29202509481049915]], [[0.28440170561037575]], [[0.2917683216918966]]], "count": [159]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5934721040407778]], [[0.5648395695454982]], [[0.5175695078171031]]], "std": [[[0.27006228406778954]], [[0.2540388751605923]], [[0.2765838558452777]]], "count": [159]}, "observation.state": {"min": [0.6635217666625977, -0.078154057264328, 0.11173500865697861, -2.050557851791382, -0.007241730112582445, -0.2832692563533783, -0.5804792046546936, -0.27627304196357727, 0.12667216360569, 0.02096899040043354, 0.4371001720428467, -1.0133308172225952], "max": [0.854420006275177, 0.03447427973151207, 0.14258931577205658, -0.305518239736557, 0.8285637497901917, 0.9984556436538696, -0.3621807396411896, -0.18599429726600647, 0.1533251851797104, 1.4644745588302612, 1.2932645082473755, 0.9371823072433472], "mean": [0.7917968034744263, -0.024290289729833603, 0.12912842631340027, -1.161354660987854, 0.4595378339290619, 0.35192763805389404, -0.5159497261047363, -0.21901841461658478, 0.14214392006397247, 0.9477158188819885, 0.7357084155082703, 0.3725278377532959], "std": [0.047010499984025955, 0.028955260291695595, 0.007356299087405205, 0.3250237703323364, 0.23633629083633423, 0.2538908123970032, 0.04971669986844063, 0.018181951716542244, 0.007139191962778568, 0.3633342981338501, 0.18419425189495087, 0.4800752103328705], "count": [862]}, "action": {"min": [-0.1035686731338501, -0.07510939985513687, 0.08580446988344193, -0.5941990613937378, -0.6039248704910278, -0.6059250831604004, -0.5763806700706482, 0.12009786814451218, -0.08903443068265915, 0.07116089761257172, -0.5059251189231873, -0.5137567520141602, -0.6261252164840698, -0.6285400390625], "max": [-0.06615371257066727, -0.053790006786584854, 0.11913615465164185, 0.7131391167640686, 0.6640011668205261, 0.9046981334686279, 0.5547446608543396, 0.15430307388305664, -0.0687485784292221, 0.09351687133312225, 0.40257686376571655, 0.5376272201538086, 0.6350780725479126, 0.8680043816566467], "mean": [-0.07516558468341827, -0.061570409685373306, 0.10099086165428162, 0.5061284899711609, -0.3206344544887543, 0.6358410120010376, -0.2160530537366867, 0.13142064213752747, -0.07780762761831284, 0.08355061709880829, 0.009478730149567127, -0.2244781106710434, -0.35923638939857483, 0.6359248161315918], "std": [0.008878007531166077, 0.004624637775123119, 0.008546610362827778, 0.23250386118888855, 0.20898275077342987, 0.24507680535316467, 0.1796119660139084, 0.007628312800079584, 0.004656561650335789, 0.004769388120621443, 0.17446044087409973, 0.27702662348747253, 0.3675425052642822, 0.41689401865005493], "count": [862]}, "timestamp": {"min": [0.0], "max": [28.7], "mean": [14.349999999999996], "std": [8.294593285856623], "count": [862]}, "frame_index": {"min": [0], "max": [861], "mean": [430.5], "std": [248.8377985756987], "count": [862]}, "episode_index": {"min": [17], "max": [17], "mean": [17.0], "std": [0.0], "count": [862]}, "index": {"min": [9052], "max": [9913], "mean": [9482.5], "std": [248.8377985756987], "count": [862]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [862]}}} +{"episode_index": 18, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5837676552287582]], [[0.5480518409586057]], [[0.4967816721132898]]], "std": [[[0.28655501260882543]], [[0.2801133320288889]], [[0.2881460373143604]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6074708932461874]], [[0.576479970043573]], [[0.5286372222222222]]], "std": [[[0.2629332021293609]], [[0.24850358020991306]], [[0.2721932379931905]]], "count": [100]}, "observation.state": {"min": [0.6630275249481201, -0.07020735740661621, 0.11151724308729172, -1.579594373703003, 0.09468909353017807, -0.32114630937576294, -0.5857847332954407, -0.26926079392433167, 0.12635457515716553, 0.7590776085853577, 0.6017471551895142, 0.42300745844841003], "max": [0.833306074142456, 0.032767560333013535, 0.14201763272285461, -0.6341024041175842, 0.9885650873184204, 0.8021665811538696, -0.3545892834663391, -0.19415722787380219, 0.14744651317596436, 1.2050881385803223, 1.0270966291427612, 0.7826571464538574], "mean": [0.763038158416748, -0.012942930683493614, 0.13055145740509033, -1.1349323987960815, 0.39665311574935913, 0.21402889490127563, -0.48783260583877563, -0.22741654515266418, 0.13598987460136414, 0.9822807908058167, 0.8008836507797241, 0.6511874794960022], "std": [0.05253187194466591, 0.02361481264233589, 0.007672795094549656, 0.18333746492862701, 0.26714611053466797, 0.2768934369087219, 0.06845283508300781, 0.020253924652934074, 0.006751120090484619, 0.09517230093479156, 0.1302318572998047, 0.08315856009721756], "count": [388]}, "action": {"min": [-0.10076252371072769, -0.06989464163780212, 0.09603589028120041, 0.3354996144771576, -0.5420933365821838, 0.5541521310806274, -0.6418750286102295, 0.12147529423236847, -0.08225496113300323, 0.07020875811576843, -0.07660916447639465, -0.3798863887786865, -0.5885697603225708, 0.7194601893424988], "max": [-0.06353551894426346, -0.05324706435203552, 0.11944257467985153, 0.7413570284843445, -0.05840388312935829, 0.8523893356323242, -0.09056813269853592, 0.1543424427509308, -0.06855662167072296, 0.09012074023485184, 0.11626358330249786, -0.1997009515762329, -0.5062175393104553, 0.8075932264328003], "mean": [-0.07775521278381348, -0.062225762754678726, 0.10628731548786163, 0.47588446736335754, -0.3273754417896271, 0.7267911434173584, -0.28469130396842957, 0.13684728741645813, -0.07518088817596436, 0.0798770934343338, 0.014622999355196953, -0.28680628538131714, -0.5522255301475525, 0.7789814472198486], "std": [0.011643298901617527, 0.004402796737849712, 0.005323970690369606, 0.11694187670946121, 0.12480136752128601, 0.0906439945101738, 0.14006227254867554, 0.009391565807163715, 0.004335854668170214, 0.0041319094598293304, 0.054514236748218536, 0.04451952129602432, 0.019785869866609573, 0.020421724766492844], "count": [388]}, "timestamp": {"min": [0.0], "max": [12.9], "mean": [6.449999999999998], "std": [3.7335193406043405], "count": [388]}, "frame_index": {"min": [0], "max": [387], "mean": [193.5], "std": [112.0055802181302], "count": [388]}, "episode_index": {"min": [18], "max": [18], "mean": [18.0], "std": [0.0], "count": [388]}, "index": {"min": [9914], "max": [10301], "mean": [10107.5], "std": [112.0055802181302], "count": [388]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [388]}}} +{"episode_index": 19, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5790691667205936]], [[0.5348417216721673]], [[0.4786679986626114]]], "std": [[[0.2749289303603094]], [[0.26669577736184213]], [[0.272129676035026]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6010175424405186]], [[0.5618000388274121]], [[0.5090431173019263]]], "std": [[[0.2496979935094839]], [[0.2351450914690123]], [[0.2558647503344287]]], "count": [101]}, "observation.state": {"min": [0.6048367023468018, -0.0689176693558693, 0.12070923298597336, -1.3862602710723877, 0.3055192232131958, -0.363486647605896, -0.5164268612861633, -0.2281140834093094, 0.12979362905025482, 0.6399737000465393, 0.616503894329071, -0.3958709239959717], "max": [0.8207797408103943, 0.030551129952073097, 0.15245018899440765, -0.556936502456665, 1.170974850654602, 1.0953657627105713, -0.30124837160110474, -0.09191597253084183, 0.15333425998687744, 1.1302287578582764, 1.3115737438201904, 0.377765029668808], "mean": [0.7440710663795471, -0.014981632120907307, 0.14010979235172272, -0.9890660643577576, 0.71026611328125, 0.43812358379364014, -0.4387074410915375, -0.16084454953670502, 0.14217689633369446, 0.9146822690963745, 1.0006771087646484, 0.1157943457365036], "std": [0.05739763379096985, 0.026639027521014214, 0.008492651395499706, 0.15542683005332947, 0.23131638765335083, 0.34203389286994934, 0.055592816323041916, 0.03658309578895569, 0.007560399826616049, 0.11153929680585861, 0.21272270381450653, 0.1849774271249771], "count": [473]}, "action": {"min": [-0.10439348965883255, -0.07281497865915298, 0.10180793702602386, -0.5786930918693542, -0.4979984164237976, -0.5835162997245789, -0.5880205631256104, 0.12522390484809875, -0.08333797007799149, 0.08104187250137329, -0.028871554881334305, -0.6230182647705078, -0.5964842438697815, 0.6473879814147949], "max": [-0.05960695445537567, -0.0564415417611599, 0.12034901976585388, 0.7771888971328735, 0.009940396063029766, 0.7462612986564636, 0.5920324325561523, 0.15837977826595306, -0.06383752077817917, 0.10517386347055435, 0.3747982382774353, -0.35978713631629944, -0.378810316324234, 0.792421281337738], "mean": [-0.07319898158311844, -0.06473641842603683, 0.11292476207017899, 0.5719423294067383, -0.33635708689689636, 0.5753097534179688, -0.27501368522644043, 0.13914920389652252, -0.07189730554819107, 0.09149562567472458, 0.12965808808803558, -0.4642607271671295, -0.49885281920433044, 0.7071841955184937], "std": [0.012832148000597954, 0.005065316334366798, 0.004916212987154722, 0.22178606688976288, 0.14012107253074646, 0.2155427783727646, 0.19455274939537048, 0.00892346166074276, 0.005109838675707579, 0.0059731705114245415, 0.09868083149194717, 0.05839157849550247, 0.06073910742998123, 0.04300985857844353], "count": [473]}, "timestamp": {"min": [0.0], "max": [15.733333333333333], "mean": [7.866666666666667], "std": [4.551434450319542], "count": [473]}, "frame_index": {"min": [0], "max": [472], "mean": [236.0], "std": [136.54303350958628], "count": [473]}, "episode_index": {"min": [19], "max": [19], "mean": [19.0], "std": [0.0], "count": [473]}, "index": {"min": [10302], "max": [10774], "mean": [10538.0], "std": [136.54303350958628], "count": [473]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [473]}}} +{"episode_index": 20, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5953547412854031]], [[0.5475266203703704]], [[0.48979963235294116]]], "std": [[[0.268780489167326]], [[0.2622189553128004]], [[0.267816304559135]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.61783022875817]], [[0.57445325708061]], [[0.520241220043573]]], "std": [[[0.2398578041812237]], [[0.2283226552841413]], [[0.24961734280827022]]], "count": [100]}, "observation.state": {"min": [0.6048212647438049, -0.12737876176834106, 0.12301144003868103, -1.6108381748199463, 0.37315428256988525, -0.3756067752838135, -0.4872503876686096, -0.24532033503055573, 0.13323397934436798, 0.30572792887687683, 0.8952423334121704, -0.6661858558654785], "max": [0.8231120109558105, 0.016349030658602715, 0.15223370492458344, -0.328374445438385, 1.1317601203918457, 1.0368767976760864, -0.23875601589679718, -0.10634975135326385, 0.15268352627754211, 1.3483062982559204, 1.3684145212173462, 0.4922209084033966], "mean": [0.7336609959602356, -0.04230113700032234, 0.13955259323120117, -1.1132780313491821, 0.7086035013198853, 0.3524283468723297, -0.3947198688983917, -0.18735121190547943, 0.14410912990570068, 0.8534930348396301, 1.1936213970184326, 0.22364255785942078], "std": [0.059078115969896317, 0.03324536606669426, 0.007734606973826885, 0.2681642472743988, 0.2278623729944229, 0.3445985019207001, 0.06679780781269073, 0.04033757746219635, 0.005784483626484871, 0.22725769877433777, 0.1331474334001541, 0.22007398307323456], "count": [376]}, "action": {"min": [-0.10277383029460907, -0.08057808130979538, 0.09459388256072998, -0.5698940753936768, -0.5228776931762695, -0.6220307946205139, -0.6196371912956238, 0.13208897411823273, -0.08599121123552322, 0.0783429741859436, -0.19618535041809082, -0.6040332317352295, -0.6144304275512695, -0.6130942106246948], "max": [-0.061235249042510986, -0.060535818338394165, 0.1256895661354065, 0.7590309977531433, 0.13404439389705658, 0.7836978435516357, 0.6301417350769043, 0.16588953137397766, -0.06459968537092209, 0.10180498659610748, 0.1698470413684845, 0.6333875060081482, 0.5397519469261169, 0.7479465007781982], "mean": [-0.07495419681072235, -0.0699324980378151, 0.11076710373163223, 0.522531270980835, -0.308746874332428, 0.552237331867218, -0.18139523267745972, 0.14409369230270386, -0.07551074773073196, 0.09219758957624435, 0.030059149488806725, -0.4288177192211151, -0.5285722613334656, 0.6365277171134949], "std": [0.012345854192972183, 0.00541394017636776, 0.0067817592062056065, 0.30113619565963745, 0.14153854548931122, 0.3329664468765259, 0.26866963505744934, 0.009917113929986954, 0.005515690427273512, 0.006187409162521362, 0.06865633279085159, 0.19874761998653412, 0.1902606338262558, 0.2241477519273758], "count": [376]}, "timestamp": {"min": [0.0], "max": [12.5], "mean": [6.25], "std": [3.6180488910154014], "count": [376]}, "frame_index": {"min": [0], "max": [375], "mean": [187.5], "std": [108.54146673046205], "count": [376]}, "episode_index": {"min": [20], "max": [20], "mean": [20.0], "std": [0.0], "count": [376]}, "index": {"min": [10775], "max": [11150], "mean": [10962.5], "std": [108.54146673046205], "count": [376]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [376]}}} +{"episode_index": 21, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5908336356209151]], [[0.5454859286492375]], [[0.48881741557734204]]], "std": [[[0.270908305791672]], [[0.2636004463924063]], [[0.26924187103997616]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6132768545751633]], [[0.572295438453159]], [[0.5193507189542484]]], "std": [[[0.24262235831928158]], [[0.2303355339469513]], [[0.2513507499720004]]], "count": [100]}, "observation.state": {"min": [0.6075165271759033, -0.09554564952850342, 0.11792738735675812, -1.5791749954223633, 0.13404041528701782, -0.13426780700683594, -0.4924091696739197, -0.2544794976711273, 0.1328062117099762, 0.8626644015312195, 0.766804039478302, -0.020152900367975235], "max": [0.8064849972724915, 0.028157079592347145, 0.15008185803890228, -0.5634368658065796, 1.0205379724502563, 1.133148193359375, -0.2510274350643158, -0.14658519625663757, 0.1520068496465683, 1.256042718887329, 1.3913694620132446, 0.6570213437080383], "mean": [0.7388787269592285, -0.03443678095936775, 0.13510580360889435, -1.0915229320526123, 0.6221463084220886, 0.3397206962108612, -0.41719353199005127, -0.19588711857795715, 0.14379920065402985, 0.9988270998001099, 1.0466256141662598, 0.4210132658481598], "std": [0.05649157613515854, 0.028684256598353386, 0.008444167673587799, 0.2259797602891922, 0.25508594512939453, 0.2985479235649109, 0.06525085121393204, 0.022849872708320618, 0.005705674644559622, 0.08248979598283768, 0.1603589653968811, 0.16703608632087708], "count": [358]}, "action": {"min": [-0.10547708719968796, -0.0779346376657486, 0.09671145677566528, -0.6108230948448181, -0.5790510773658752, -0.5899831652641296, -0.5907463431358337, 0.1285204440355301, -0.08217303454875946, 0.07781819999217987, -0.07018278539180756, -0.5774390697479248, -0.5921375751495361, 0.6097927093505859], "max": [-0.06355627626180649, -0.05939604714512825, 0.12653782963752747, 0.7722811102867126, 0.7025325298309326, 0.8024908900260925, 0.6060132384300232, 0.1631530523300171, -0.06872003525495529, 0.09509321302175522, 0.23677171766757965, -0.33606982231140137, -0.42270198464393616, 0.7807906270027161], "mean": [-0.07726490497589111, -0.06714259088039398, 0.1086355447769165, 0.48872482776641846, -0.2567715048789978, 0.5728434324264526, -0.22287613153457642, 0.1408272385597229, -0.07714824378490448, 0.09022223949432373, 0.03816256299614906, -0.414071649312973, -0.5398263335227966, 0.7227374315261841], "std": [0.012314037419855595, 0.004693292081356049, 0.006333521101623774, 0.313610702753067, 0.24220360815525055, 0.3349001705646515, 0.2195919156074524, 0.00938841700553894, 0.004034386016428471, 0.0044258227571845055, 0.07133397459983826, 0.07153807580471039, 0.03635542839765549, 0.04241301864385605], "count": [358]}, "timestamp": {"min": [0.0], "max": [11.9], "mean": [5.95], "std": [3.4448431668864754], "count": [358]}, "frame_index": {"min": [0], "max": [357], "mean": [178.5], "std": [103.34529500659427], "count": [358]}, "episode_index": {"min": [21], "max": [21], "mean": [21.0], "std": [0.0], "count": [358]}, "index": {"min": [11151], "max": [11508], "mean": [11329.5], "std": [103.34529500659427], "count": [358]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [358]}}} +{"episode_index": 22, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5965161504215212]], [[0.5494285995074357]], [[0.4917718196457327]]], "std": [[[0.2685884461867957]], [[0.26120839582355254]], [[0.26705434788161564]]], "count": [115]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6202626480060623]], [[0.5770714265416311]], [[0.5233211992043194]]], "std": [[[0.23920368788417562]], [[0.22693177562024128]], [[0.24824846004634346]]], "count": [115]}, "observation.state": {"min": [0.6174788475036621, -0.09831810742616653, 0.11708220839500427, -1.8159148693084717, 0.1936139166355133, -0.7925611734390259, -0.4836824834346771, -0.2931394875049591, 0.1228688508272171, -0.36989307403564453, 0.7745923399925232, -0.835029125213623], "max": [0.798538327217102, 0.05095459148287773, 0.1452907770872116, -0.9150869250297546, 0.8605366945266724, 0.8310421705245972, -0.25593137741088867, -0.07443170249462128, 0.15005722641944885, 1.7876067161560059, 1.389593243598938, 0.7964672446250916], "mean": [0.7300437092781067, -0.02213456854224205, 0.1354762613773346, -1.3963514566421509, 0.5139815807342529, -0.012802780605852604, -0.39138323068618774, -0.18981797993183136, 0.14083291590213776, 1.0919713973999023, 1.0853408575057983, 0.28349265456199646], "std": [0.05392034351825714, 0.029091762378811836, 0.00833447091281414, 0.3232557773590088, 0.17108720541000366, 0.35051265358924866, 0.06735967099666595, 0.05917678400874138, 0.006404553540050983, 0.5016543865203857, 0.12907710671424866, 0.30030176043510437], "count": [560]}, "action": {"min": [-0.10396551340818405, -0.08001965284347534, 0.09757015109062195, -0.5383010506629944, -0.5990869998931885, -0.6045570373535156, -0.5353850722312927, 0.13002967834472656, -0.09240531921386719, 0.07443142682313919, -0.2157827764749527, -0.6552401781082153, -0.6639194488525391, -0.6726471185684204], "max": [-0.0646723210811615, -0.05536341294646263, 0.11860360950231552, 0.6853211522102356, 0.6305080652236938, 0.8403345346450806, 0.22609730064868927, 0.16185182332992554, -0.06235808879137039, 0.09887899458408356, 0.21983380615711212, 0.7053775787353516, 0.7854427099227905, 0.8091715574264526], "mean": [-0.07788611948490143, -0.06754569709300995, 0.11082203686237335, 0.5152275562286377, -0.18932373821735382, 0.7335391640663147, -0.2284536063671112, 0.14528052508831024, -0.07616729289293289, 0.08877955377101898, 0.0392596460878849, -0.380400687456131, -0.27973276376724243, 0.5275018215179443], "std": [0.011890631169080734, 0.005781985353678465, 0.004631696734577417, 0.14018501341342926, 0.17481893301010132, 0.18286678194999695, 0.1573942005634308, 0.010080068372189999, 0.00730768870562315, 0.006084768567234278, 0.10396319627761841, 0.32276076078414917, 0.40786445140838623, 0.4646601676940918], "count": [560]}, "timestamp": {"min": [0.0], "max": [18.633333333333333], "mean": [9.316666666666666], "std": [5.3885939209077955], "count": [560]}, "frame_index": {"min": [0], "max": [559], "mean": [279.5], "std": [161.65781762723384], "count": [560]}, "episode_index": {"min": [22], "max": [22], "mean": [22.0], "std": [0.0], "count": [560]}, "index": {"min": [11509], "max": [12068], "mean": [11788.5], "std": [161.65781762723384], "count": [560]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [560]}}} +{"episode_index": 23, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.595503431372549]], [[0.5490395833333332]], [[0.4914984749455338]]], "std": [[[0.2687249361063769]], [[0.2615486334080766]], [[0.2671937860431625]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6176746759259258]], [[0.5755550517429194]], [[0.5218599428104576]]], "std": [[[0.2399149208727407]], [[0.22765049398521012]], [[0.24894688868003761]]], "count": [100]}, "observation.state": {"min": [0.6285455226898193, -0.10760855674743652, 0.11581055074930191, -1.6362106800079346, 0.2676708996295929, -0.42367246747016907, -0.5267598628997803, -0.23813818395137787, 0.13683636486530304, 0.8949567079544067, 0.8696913123130798, 0.3550336956977844], "max": [0.8253670930862427, 0.03231963887810707, 0.15160241723060608, -0.7074938416481018, 0.8248745203018188, 0.6543068289756775, -0.2657083570957184, -0.0493173711001873, 0.1530892550945282, 1.5301074981689453, 1.293674349784851, 0.915616512298584], "mean": [0.729027271270752, -0.02900548465549946, 0.1344105452299118, -1.1800140142440796, 0.5369831323623657, 0.1387467235326767, -0.4064585864543915, -0.16967524588108063, 0.14454174041748047, 1.2281759977340698, 1.0616737604141235, 0.6533965468406677], "std": [0.06218619644641876, 0.03592545539140701, 0.011358997784554958, 0.22950738668441772, 0.16971082985401154, 0.2623171806335449, 0.07434936612844467, 0.05745691433548927, 0.004958920180797577, 0.1728280782699585, 0.09771149605512619, 0.1517896056175232], "count": [358]}, "action": {"min": [-0.10269768536090851, -0.08015820384025574, 0.09435084462165833, 0.38213446736335754, -0.4572184085845947, 0.5622326135635376, -0.5824667811393738, 0.12335458397865295, -0.08246606588363647, 0.07982014864683151, -0.11161715537309647, -0.5587826371192932, -0.5680442452430725, 0.6527602672576904], "max": [-0.06109621375799179, -0.05538620427250862, 0.11883316934108734, 0.7068855166435242, -0.029624124988913536, 0.7992809414863586, -0.06856869906187057, 0.1587936133146286, -0.06425821781158447, 0.10606369376182556, 0.14076729118824005, -0.34135639667510986, -0.39486032724380493, 0.7699463963508606], "mean": [-0.07872173935174942, -0.06748662889003754, 0.10960868000984192, 0.516532838344574, -0.28428176045417786, 0.7192737460136414, -0.293161541223526, 0.14119620621204376, -0.07611087709665298, 0.09182830154895782, -0.02123618870973587, -0.43411436676979065, -0.515086829662323, 0.7331521511077881], "std": [0.015283330343663692, 0.006585805676877499, 0.005545293912291527, 0.10596347600221634, 0.11457520723342896, 0.06627751141786575, 0.14258655905723572, 0.00999754760414362, 0.005866526626050472, 0.007811421062797308, 0.06183285638689995, 0.05272411182522774, 0.03363451734185219, 0.023084377869963646], "count": [358]}, "timestamp": {"min": [0.0], "max": [11.9], "mean": [5.95], "std": [3.4448431668864754], "count": [358]}, "frame_index": {"min": [0], "max": [357], "mean": [178.5], "std": [103.34529500659427], "count": [358]}, "episode_index": {"min": [23], "max": [23], "mean": [23.0], "std": [0.0], "count": [358]}, "index": {"min": [12069], "max": [12426], "mean": [12247.5], "std": [103.34529500659427], "count": [358]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [358]}}} +{"episode_index": 24, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5933404820261439]], [[0.5475463289760348]], [[0.4907009041394335]]], "std": [[[0.27122469926246184]], [[0.2640073132426837]], [[0.2693452312408784]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6149874509803921]], [[0.5739570288671024]], [[0.5204629003267974]]], "std": [[[0.24256519726612769]], [[0.2302277333959811]], [[0.25137264351947264]]], "count": [100]}, "observation.state": {"min": [0.6187298893928528, -0.10990992933511734, 0.11218094080686569, -1.663260579109192, 0.43628033995628357, -0.452897846698761, -0.49837884306907654, -0.2298053652048111, 0.13514989614486694, 0.876084566116333, 0.7726793885231018, 0.40295109152793884], "max": [0.7913870215415955, 0.02550818957388401, 0.1497642695903778, -0.6622008681297302, 1.0937751531600952, 0.8252392411231995, -0.3071407973766327, -0.13915592432022095, 0.1581033170223236, 1.6982789039611816, 1.3276969194412231, 1.0364381074905396], "mean": [0.7224951386451721, -0.04390896484255791, 0.13387031853199005, -1.191020131111145, 0.6822673082351685, 0.1296623796224594, -0.42739757895469666, -0.1885993480682373, 0.14985840022563934, 1.109495997428894, 1.1232929229736328, 0.5573964715003967], "std": [0.050656192004680634, 0.029287470504641533, 0.012168969959020615, 0.19512231647968292, 0.16724137961864471, 0.3166083097457886, 0.060356687754392624, 0.02494112402200699, 0.005983815528452396, 0.1956823319196701, 0.1383591741323471, 0.1368434578180313], "count": [438]}, "action": {"min": [-0.10630453377962112, -0.07988680899143219, 0.09950406849384308, 0.48048990964889526, -0.5212643146514893, 0.48824891448020935, -0.5647032260894775, 0.12594735622406006, -0.08547496050596237, 0.08082202821969986, -0.1144113689661026, -0.5497135519981384, -0.5966132879257202, 0.6651644110679626], "max": [-0.063408762216568, -0.060588475316762924, 0.12193698436021805, 0.7292463779449463, 0.006702939979732037, 0.7961335182189941, -0.1095830425620079, 0.1547456979751587, -0.07290837913751602, 0.10461626946926117, 0.07673264294862747, -0.32602307200431824, -0.44010135531425476, 0.7885989546775818], "mean": [-0.07962046563625336, -0.0687340795993805, 0.10817693918943405, 0.5721156001091003, -0.25207579135894775, 0.6911466121673584, -0.2995869219303131, 0.13681991398334503, -0.07981541752815247, 0.09334642440080643, -0.0029688638169318438, -0.4429429769515991, -0.550857424736023, 0.7031697034835815], "std": [0.013890824280679226, 0.004631031304597855, 0.005501079373061657, 0.07640230655670166, 0.1129942387342453, 0.09322702884674072, 0.12003941088914871, 0.009350414387881756, 0.003945520147681236, 0.004715264774858952, 0.0367334708571434, 0.04899192601442337, 0.03462459146976471, 0.03086467832326889], "count": [438]}, "timestamp": {"min": [0.0], "max": [14.566666666666666], "mean": [7.283333333333334], "std": [4.21464598047579], "count": [438]}, "frame_index": {"min": [0], "max": [437], "mean": [218.5], "std": [126.43937941427373], "count": [438]}, "episode_index": {"min": [24], "max": [24], "mean": [24.0], "std": [0.0], "count": [438]}, "index": {"min": [12427], "max": [12864], "mean": [12645.5], "std": [126.43937941427373], "count": [438]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [438]}}} +{"episode_index": 25, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5965651062091503]], [[0.5505804466230937]], [[0.4929589052287582]]], "std": [[[0.2709646304065566]], [[0.2618881700771916]], [[0.26741457863129675]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6179416258169935]], [[0.5764389814814815]], [[0.5227214079520698]]], "std": [[[0.24490514883103462]], [[0.22926563793098484]], [[0.2505303439989486]]], "count": [100]}, "observation.state": {"min": [0.6377973556518555, -0.030527960509061813, 0.12739290297031403, -1.4537804126739502, 0.35962727665901184, 0.09349870681762695, -0.5130288600921631, -0.2562634348869324, 0.1321178823709488, 0.5827283263206482, 0.6681524515151978, -0.4367244243621826], "max": [0.7757562398910522, 0.08874964714050293, 0.14108820259571075, -0.6445868611335754, 0.8403144478797913, 0.45169392228126526, -0.27551621198654175, -0.09365358203649521, 0.15073390305042267, 1.0453044176101685, 0.9496236443519592, -0.18512006103992462], "mean": [0.7129320502281189, 0.013405724428594112, 0.135007843375206, -1.027707815170288, 0.5684293508529663, 0.3092534840106964, -0.4219774901866913, -0.18212778866291046, 0.14120814204216003, 0.8709170818328857, 0.7760728001594543, -0.27478671073913574], "std": [0.04547073692083359, 0.02831728756427765, 0.0031827292405068874, 0.2765527367591858, 0.14687712490558624, 0.10245656222105026, 0.09293388575315475, 0.05380649492144585, 0.006348731461912394, 0.16034157574176788, 0.07025331258773804, 0.09267551451921463], "count": [384]}, "action": {"min": [-0.09098929166793823, -0.069806769490242, 0.10326861590147018, 0.4099622666835785, -0.41746148467063904, 0.6441909670829773, -0.46155983209609985, 0.1278463900089264, -0.08590301126241684, 0.08053836226463318, 0.18305036425590515, -0.5528519153594971, -0.5331011414527893, 0.6493988037109375], "max": [-0.07268771529197693, -0.04843342304229736, 0.12582170963287354, 0.6666819453239441, -0.15863777697086334, 0.7419829964637756, -0.11512433737516403, 0.16295751929283142, -0.06369329988956451, 0.09849633276462555, 0.43941500782966614, -0.36147281527519226, -0.323163241147995, 0.7535473108291626], "mean": [-0.08089917153120041, -0.06175745651125908, 0.11625486612319946, 0.5432723164558411, -0.3217751085758209, 0.6845768094062805, -0.3272533416748047, 0.14209173619747162, -0.07558152824640274, 0.09059319645166397, 0.3224518597126007, -0.4531272351741791, -0.4041935205459595, 0.7138836979866028], "std": [0.00644131563603878, 0.005741135682910681, 0.007548268884420395, 0.08578857779502869, 0.07069534808397293, 0.02584618702530861, 0.11202926933765411, 0.013264209032058716, 0.007233167067170143, 0.005547951906919479, 0.08560867607593536, 0.0609273761510849, 0.07452137023210526, 0.03321928158402443], "count": [384]}, "timestamp": {"min": [0.0], "max": [12.766666666666667], "mean": [6.383333333333333], "std": [3.6950291934896455], "count": [384]}, "frame_index": {"min": [0], "max": [383], "mean": [191.5], "std": [110.85087580468937], "count": [384]}, "episode_index": {"min": [25], "max": [25], "mean": [25.0], "std": [0.0], "count": [384]}, "index": {"min": [12865], "max": [13248], "mean": [13056.5], "std": [110.85087580468937], "count": [384]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [384]}}} +{"episode_index": 26, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5846575490932109]], [[0.5412307399311076]], [[0.4846516148501443]]], "std": [[[0.2739574974329044]], [[0.2646364312898933]], [[0.2701219865751624]]], "count": [148]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6060898711211211]], [[0.5676460927839605]], [[0.5149602194105871]]], "std": [[[0.2490348870149088]], [[0.232930245242819]], [[0.25363398586015967]]], "count": [148]}, "observation.state": {"min": [0.6445083618164062, -0.056901101022958755, 0.13333380222320557, -1.4057613611221313, 0.4857427477836609, 0.000619170197751373, -0.5704241991043091, -0.23946650326251984, 0.12165551632642746, 0.8486152291297913, 0.42097705602645874, -0.024737810716032982], "max": [0.8086550831794739, 0.043278198689222336, 0.1446543037891388, -0.26211243867874146, 1.0004523992538452, 0.780551552772522, -0.2384316474199295, -0.04181088134646416, 0.14882317185401917, 1.2264764308929443, 0.7698100209236145, 0.12070333957672119], "mean": [0.7346540689468384, 0.0016294758534058928, 0.1392994374036789, -0.911048948764801, 0.7090831995010376, 0.38517943024635315, -0.46276548504829407, -0.16291537880897522, 0.13641667366027832, 1.1039880514144897, 0.5792190432548523, 0.054225239902734756], "std": [0.04511849582195282, 0.026775946840643883, 0.0020075147040188313, 0.3564230799674988, 0.1452319622039795, 0.19673049449920654, 0.1134502962231636, 0.06113016977906227, 0.008509340696036816, 0.12590210139751434, 0.09939412027597427, 0.03542656451463699], "count": [787]}, "action": {"min": [-0.09011421352624893, -0.07069430500268936, 0.09922222048044205, -0.44521215558052063, -0.4660923182964325, -0.5785015225410461, -0.57813560962677, 0.12344788014888763, -0.08304528892040253, 0.07422157377004623, 0.10667876154184341, -0.4590097665786743, -0.46274250745773315, 0.7625554203987122], "max": [-0.06636746972799301, -0.05581231042742729, 0.12872350215911865, 0.7398592233657837, 0.3651924431324005, 0.7669521570205688, 0.6208574771881104, 0.16895520687103271, -0.0551508329808712, 0.09391718357801437, 0.3344200551509857, -0.2903715670108795, -0.27991387248039246, 0.8366184830665588], "mean": [-0.07535606622695923, -0.06258800625801086, 0.11547642946243286, 0.4457184672355652, -0.1870873123407364, 0.4187113344669342, -0.1493455171585083, 0.13915026187896729, -0.07165703177452087, 0.0861370861530304, 0.25540992617607117, -0.3809756338596344, -0.3527432382106781, 0.8084446787834167], "std": [0.006820248905569315, 0.003953470848500729, 0.008460442535579205, 0.4025034010410309, 0.2613544762134552, 0.45126011967658997, 0.36709538102149963, 0.015255794860422611, 0.008656667545437813, 0.0050621251575648785, 0.07403738796710968, 0.04865536093711853, 0.05834604427218437, 0.018943188712000847], "count": [787]}, "timestamp": {"min": [0.0], "max": [26.2], "mean": [13.100000000000001], "std": [7.572904917459937], "count": [787]}, "frame_index": {"min": [0], "max": [786], "mean": [393.0], "std": [227.1871475237981], "count": [787]}, "episode_index": {"min": [26], "max": [26], "mean": [26.0], "std": [0.0], "count": [787]}, "index": {"min": [13249], "max": [14035], "mean": [13642.0], "std": [227.1871475237981], "count": [787]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [787]}}} +{"episode_index": 27, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5787767265795207]], [[0.5360040305010894]], [[0.4801558823529412]]], "std": [[[0.27661214449766053]], [[0.266829616281434]], [[0.27177907528789413]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6002074863834423]], [[0.5628071541394335]], [[0.5105117102396515]]], "std": [[[0.2519151365004834]], [[0.23531391191729595]], [[0.2554098546521444]]], "count": [100]}, "observation.state": {"min": [0.6367161870002747, -0.04720133915543556, 0.1341387927532196, -1.2013137340545654, 0.4418824315071106, 0.21756021678447723, -0.5857924818992615, -0.23366673290729523, 0.12200810760259628, 0.9668803215026855, 0.4332743287086487, 0.11108102649450302], "max": [0.8145784139633179, 0.02148463949561119, 0.1442563384771347, -0.09498954564332962, 0.9646536707878113, 0.7617148756980896, -0.24138173460960388, -0.08836351335048676, 0.14500689506530762, 1.2604461908340454, 0.7939947247505188, 0.1806308776140213], "mean": [0.7424220442771912, -0.006307937670499086, 0.13843367993831635, -0.6322395205497742, 0.7171229124069214, 0.495084673166275, -0.49369028210639954, -0.17652836441993713, 0.1350691318511963, 1.1855193376541138, 0.5724712014198303, 0.14810171723365784], "std": [0.04565861076116562, 0.01766703650355339, 0.0022914314176887274, 0.35593512654304504, 0.16095204651355743, 0.13578063249588013, 0.11198877543210983, 0.04088935628533363, 0.007331250235438347, 0.08993317186832428, 0.09670642763376236, 0.01567654125392437], "count": [414]}, "action": {"min": [-0.0907742977142334, -0.06744999438524246, 0.10113326460123062, -0.5700048804283142, -0.42015594244003296, -0.5607445240020752, -0.6034013032913208, 0.12312614917755127, -0.07944991439580917, 0.0723501592874527, 0.12806303799152374, -0.46567094326019287, -0.4278617203235626, 0.7788338661193848], "max": [-0.06399404257535934, -0.05779653042554855, 0.12922343611717224, 0.7397133708000183, 0.3824796974658966, 0.7286620736122131, 0.6525368690490723, 0.16805389523506165, -0.06005670502781868, 0.09076885133981705, 0.28969788551330566, -0.31162166595458984, -0.28676655888557434, 0.8459320664405823], "mean": [-0.07569699734449387, -0.0624273307621479, 0.11454963684082031, 0.22253970801830292, -0.11310014128684998, 0.1991192251443863, -0.027255399152636528, 0.13642041385173798, -0.0715385228395462, 0.08253280073404312, 0.2319619059562683, -0.3923843204975128, -0.3389080762863159, 0.8195837736129761], "std": [0.007334235589951277, 0.002231199759989977, 0.007601425051689148, 0.5420050621032715, 0.31066277623176575, 0.5242606997489929, 0.481833279132843, 0.014402908273041248, 0.005847595166414976, 0.004661004990339279, 0.04676792398095131, 0.03951849788427353, 0.04040836542844772, 0.016446975991129875], "count": [414]}, "timestamp": {"min": [0.0], "max": [13.766666666666667], "mean": [6.883333333333333], "std": [3.9837052360092366], "count": [414]}, "frame_index": {"min": [0], "max": [413], "mean": [206.5], "std": [119.5111570802771], "count": [414]}, "episode_index": {"min": [27], "max": [27], "mean": [27.0], "std": [0.0], "count": [414]}, "index": {"min": [14036], "max": [14449], "mean": [14242.5], "std": [119.5111570802771], "count": [414]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [414]}}} +{"episode_index": 28, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5933688917814458]], [[0.5486105649102077]], [[0.49121171362455845]]], "std": [[[0.27041228477186563]], [[0.26100431030059273]], [[0.2664189528958797]]], "count": [177]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6152258240709969]], [[0.5750818408970619]], [[0.5216066445724554]]], "std": [[[0.24361549628284876]], [[0.22812455426299816]], [[0.24902636764888356]]], "count": [177]}, "observation.state": {"min": [0.6546483635902405, -0.08773797005414963, 0.12755753099918365, -2.771052598953247, -0.6569482684135437, -0.3743095397949219, -0.5897696614265442, -0.2459767609834671, 0.12187719345092773, 0.9922528266906738, 0.44502508640289307, -0.00023450612206943333], "max": [0.8186096549034119, 0.052391018718481064, 0.14764483273029327, 0.1088290810585022, 0.9418354034423828, 0.8978054523468018, -0.256703644990921, -0.11091388761997223, 0.1441500335931778, 1.3778725862503052, 0.7260863780975342, 0.2718210816383362], "mean": [0.7442695498466492, -0.02077680639922619, 0.140375554561615, -0.9099218845367432, 0.6037760376930237, 0.5003981590270996, -0.46904921531677246, -0.18320249021053314, 0.1334286630153656, 1.257968544960022, 0.5827656388282776, 0.1296396553516388], "std": [0.036412931978702545, 0.03530920296907425, 0.004093863070011139, 0.3912941813468933, 0.26745831966400146, 0.2628081142902374, 0.09033700823783875, 0.03884514793753624, 0.006750559434294701, 0.10944812744855881, 0.08123878389596939, 0.052239179611206055], "count": [994]}, "action": {"min": [-0.09008033573627472, -0.0757904201745987, 0.09890133887529373, -0.5548660755157471, -0.527458131313324, -0.6158812046051025, -0.5947104096412659, 0.12271545827388763, -0.08086070418357849, 0.07019012421369553, 0.15597392618656158, -0.4876142740249634, -0.41478216648101807, 0.7717582583427429], "max": [-0.06192857772111893, -0.05292930081486702, 0.12648771703243256, 0.7253369688987732, 0.34892845153808594, 0.9756989479064941, 0.7124818563461304, 0.1664554923772812, -0.06185070425271988, 0.08966277539730072, 0.3400709629058838, -0.32423633337020874, -0.24120107293128967, 0.8506380915641785], "mean": [-0.07356840372085571, -0.06631643325090408, 0.1137775182723999, 0.5187678933143616, -0.3301098942756653, 0.5587930679321289, -0.25512343645095825, 0.13982832431793213, -0.07229012250900269, 0.08225154876708984, 0.24380917847156525, -0.40514975786209106, -0.30373820662498474, 0.8231545090675354], "std": [0.007341846823692322, 0.005007930099964142, 0.006725854240357876, 0.2670588791370392, 0.18116052448749542, 0.2652924358844757, 0.26467010378837585, 0.011664320714771748, 0.005742410663515329, 0.004533672705292702, 0.049579013139009476, 0.03981833532452583, 0.04806426167488098, 0.014694488607347012], "count": [994]}, "timestamp": {"min": [0.0], "max": [33.1], "mean": [16.55], "std": [9.564764619279568], "count": [994]}, "frame_index": {"min": [0], "max": [993], "mean": [496.5], "std": [286.94293857838704], "count": [994]}, "episode_index": {"min": [28], "max": [28], "mean": [28.0], "std": [0.0], "count": [994]}, "index": {"min": [14450], "max": [15443], "mean": [14946.5], "std": [286.94293857838704], "count": [994]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [994]}}} +{"episode_index": 29, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5959351797385621]], [[0.5509099019607843]], [[0.4934748120915033]]], "std": [[[0.2716241329843753]], [[0.2620616654314234]], [[0.2675170047043106]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6186178322440087]], [[0.5776010375816993]], [[0.5243377423747277]]], "std": [[[0.24460494654998813]], [[0.22897123299243294]], [[0.24956332310754675]]], "count": [100]}, "observation.state": {"min": [0.6563782691955566, -0.05823713168501854, 0.12693141400814056, -1.5080900192260742, -0.08129871636629105, -0.2464095950126648, -0.5494029521942139, -0.24757537245750427, 0.12407179921865463, 1.0306260585784912, 0.4808238446712494, 0.12787218391895294], "max": [0.8036507368087769, 0.04071424901485443, 0.1426878273487091, 0.5607109069824219, 0.9441581964492798, 1.118983268737793, -0.26985543966293335, -0.12513144314289093, 0.1430741250514984, 1.3726303577423096, 0.7401599287986755, 0.21849441528320312], "mean": [0.7331510782241821, -0.0042176274582743645, 0.1382518857717514, -0.6064841151237488, 0.6446207761764526, 0.5485888123512268, -0.42647790908813477, -0.18859200179576874, 0.13421808183193207, 1.2211837768554688, 0.5959073305130005, 0.16835637390613556], "std": [0.04153567552566528, 0.027258673682808876, 0.0035040490329265594, 0.672519326210022, 0.2477627396583557, 0.2640704810619354, 0.11273462325334549, 0.04868767037987709, 0.005763887893408537, 0.13800404965877533, 0.07132011651992798, 0.019850973039865494], "count": [434]}, "action": {"min": [-0.08935336023569107, -0.07051312923431396, 0.09828721731901169, -0.5597372651100159, -0.38178524374961853, -0.5695223212242126, -0.5725910663604736, 0.1298605352640152, -0.08325042575597763, 0.07281190901994705, 0.15699954330921173, -0.4609299600124359, -0.39869844913482666, 0.7987117171287537], "max": [-0.06706760078668594, -0.05649106577038765, 0.13063611090183258, 0.7420556545257568, 0.5707309246063232, 0.7880275249481201, 0.7633619904518127, 0.1634950041770935, -0.06715989857912064, 0.09257341176271439, 0.29158687591552734, -0.295448899269104, -0.26216596364974976, 0.8585003614425659], "mean": [-0.07706161588430405, -0.06378695368766785, 0.11531642079353333, 0.21139691770076752, -0.0398934930562973, 0.2387142926454544, 0.08658380061388016, 0.14438989758491516, -0.0741923525929451, 0.08427341282367706, 0.22319979965686798, -0.377462774515152, -0.32409530878067017, 0.8322280645370483], "std": [0.007220773492008448, 0.00251824245788157, 0.009015445597469807, 0.5451236367225647, 0.3453390896320343, 0.4830900728702545, 0.48932984471321106, 0.013935166411101818, 0.006032497622072697, 0.006532734725624323, 0.050492074340581894, 0.06309421360492706, 0.05616375058889389, 0.0194537490606308], "count": [434]}, "timestamp": {"min": [0.0], "max": [14.433333333333334], "mean": [7.216666666666668], "std": [4.176155861288917], "count": [434]}, "frame_index": {"min": [0], "max": [433], "mean": [216.5], "std": [125.28467583866751], "count": [434]}, "episode_index": {"min": [29], "max": [29], "mean": [29.0], "std": [0.0], "count": [434]}, "index": {"min": [15444], "max": [15877], "mean": [15660.5], "std": [125.28467583866751], "count": [434]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [434]}}} +{"episode_index": 30, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6004498883442266]], [[0.5553597630718954]], [[0.4977342510893246]]], "std": [[[0.26851774076627294]], [[0.25908243164976413]], [[0.2649039387463898]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6224128567538126]], [[0.5813428213507625]], [[0.5282066203703705]]], "std": [[[0.24127958215811965]], [[0.2259769334952091]], [[0.246958518919252]]], "count": [100]}, "observation.state": {"min": [0.6102426052093506, -0.06296344101428986, 0.13037437200546265, -1.1776187419891357, 0.5615760087966919, 0.23068836331367493, -0.5752741098403931, -0.25152167677879333, 0.11974737793207169, 1.0077698230743408, 0.5662216544151306, 0.06555656343698502], "max": [0.787850022315979, 0.036821991205215454, 0.14152765274047852, -0.15118645131587982, 0.9546791911125183, 0.6705531477928162, -0.1959952414035797, -0.12520095705986023, 0.14242078363895416, 1.3615168333053589, 0.8194090723991394, 0.225070983171463], "mean": [0.7087543606758118, 0.0017019066726788878, 0.13728240132331848, -0.515043318271637, 0.7241982817649841, 0.49553626775741577, -0.433963418006897, -0.1930655688047409, 0.13213494420051575, 1.2465084791183472, 0.6633977890014648, 0.17993971705436707], "std": [0.05632656440138817, 0.027854081243276596, 0.0025611903984099627, 0.34702566266059875, 0.09562116861343384, 0.10295703262090683, 0.13174526393413544, 0.04077121242880821, 0.007959659211337566, 0.1382826566696167, 0.09101404249668121, 0.038959987461566925], "count": [450]}, "action": {"min": [-0.09696269780397415, -0.07047552615404129, 0.1018388494849205, -0.5963149070739746, -0.42688506841659546, -0.5769742727279663, -0.5951018333435059, 0.12604902684688568, -0.08132467418909073, 0.07524663209915161, 0.10832911729812622, -0.4729308784008026, -0.4262787997722626, 0.78577721118927], "max": [-0.06975474953651428, -0.055217549204826355, 0.13130232691764832, 0.7099542617797852, 0.34764382243156433, 0.7152979373931885, 0.6335346102714539, 0.1730124056339264, -0.06242713704705238, 0.08715908974409103, 0.3058699369430542, -0.3245176076889038, -0.26794490218162537, 0.8442699313163757], "mean": [-0.08153409510850906, -0.06243134289979935, 0.11868102103471756, -0.02104402706027031, -0.0006378839607350528, -0.031243063509464264, 0.17958609759807587, 0.14373338222503662, -0.0726490393280983, 0.08138470351696014, 0.21198680996894836, -0.410849928855896, -0.32723161578178406, 0.8182482719421387], "std": [0.00874057225883007, 0.003489666385576129, 0.008627159520983696, 0.5569310188293457, 0.30738526582717896, 0.5645153522491455, 0.49294421076774597, 0.016632569953799248, 0.006467852741479874, 0.0036440598778426647, 0.059025730937719345, 0.050523921847343445, 0.058434005826711655, 0.014203502796590328], "count": [450]}, "timestamp": {"min": [0.0], "max": [14.966666666666667], "mean": [7.483333333333333], "std": [4.330116327237342], "count": [450]}, "frame_index": {"min": [0], "max": [449], "mean": [224.5], "std": [129.90348981712026], "count": [450]}, "episode_index": {"min": [30], "max": [30], "mean": [30.0], "std": [0.0], "count": [450]}, "index": {"min": [15878], "max": [16327], "mean": [16102.5], "std": [129.90348981712026], "count": [450]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [450]}}} +{"episode_index": 31, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5948942482602534]], [[0.5499033832518984]], [[0.4920504843792965]]], "std": [[[0.2695637472292044]], [[0.2598482358949505]], [[0.26528770915484073]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6169457823042918]], [[0.576090889861878]], [[0.5223687020115491]]], "std": [[[0.24272941817867652]], [[0.22717586620163252]], [[0.24774691381025118]]], "count": [103]}, "observation.state": {"min": [0.5988901853561401, -0.09169972687959671, 0.1290028840303421, -1.0759191513061523, 0.42480286955833435, 0.2740420997142792, -0.5663620829582214, -0.269199013710022, 0.12201718986034393, 0.9689772129058838, 0.46073827147483826, -0.013020469807088375], "max": [0.8172350525856018, 0.03501487150788307, 0.14449484646320343, -0.2920980751514435, 1.0146626234054565, 0.8404445648193359, -0.25644105672836304, -0.12744054198265076, 0.14100654423236847, 1.3982125520706177, 0.7489046454429626, 0.2436581254005432], "mean": [0.7425854206085205, -0.028209121897816658, 0.13921965658664703, -0.7317743897438049, 0.7178961634635925, 0.541827380657196, -0.4697108566761017, -0.20796911418437958, 0.13263070583343506, 1.2555580139160156, 0.5903482437133789, 0.14625784754753113], "std": [0.0579078271985054, 0.03601427376270294, 0.0034130702260881662, 0.2506560981273651, 0.13669048249721527, 0.1639871597290039, 0.09187459200620651, 0.039868902415037155, 0.005829069297760725, 0.11932443827390671, 0.08178076148033142, 0.06774671375751495], "count": [484]}, "action": {"min": [-0.09887794405221939, -0.07627153396606445, 0.09910591691732407, -0.5204420685768127, -0.5027844309806824, -0.5966777205467224, -0.5621954202651978, 0.12721137702465057, -0.08188341557979584, 0.07070420682430267, 0.12067167460918427, -0.4598504900932312, -0.44061601161956787, 0.7815176248550415], "max": [-0.06303148716688156, -0.057007595896720886, 0.13162192702293396, 0.6986947059631348, 0.30105167627334595, 0.718707799911499, 0.6266348958015442, 0.16643647849559784, -0.0633360892534256, 0.08781646937131882, 0.3502889573574066, -0.30726101994514465, -0.23167772591114044, 0.8574130535125732], "mean": [-0.07494141906499863, -0.06599988788366318, 0.11266389489173889, 0.47991976141929626, -0.2948828637599945, 0.42620018124580383, -0.24160079658031464, 0.1403728425502777, -0.07408981025218964, 0.07971996814012527, 0.2471701055765152, -0.40241846442222595, -0.308506041765213, 0.8200657963752747], "std": [0.00956712570041418, 0.004523363430052996, 0.009140048176050186, 0.36145147681236267, 0.21954812109470367, 0.38273271918296814, 0.34259381890296936, 0.011528677307069302, 0.005360554438084364, 0.004420007579028606, 0.0624631866812706, 0.0447564534842968, 0.056040290743112564, 0.015391938388347626], "count": [484]}, "timestamp": {"min": [0.0], "max": [16.1], "mean": [8.049999999999999], "std": [4.657282230848565], "count": [484]}, "frame_index": {"min": [0], "max": [483], "mean": [241.5], "std": [139.7184669254569], "count": [484]}, "episode_index": {"min": [31], "max": [31], "mean": [31.0], "std": [0.0], "count": [484]}, "index": {"min": [16328], "max": [16811], "mean": [16569.5], "std": [139.7184669254569], "count": [484]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [484]}}} +{"episode_index": 32, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5970823720043573]], [[0.551993197167756]], [[0.4945804248366013]]], "std": [[[0.2708665634554609]], [[0.26066982204722855]], [[0.26575960175614183]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6181968191721133]], [[0.5775630555555555]], [[0.5240107407407407]]], "std": [[[0.24414941787353941]], [[0.22786630800937918]], [[0.24829737111823652]]], "count": [100]}, "observation.state": {"min": [0.6150925159454346, -0.07920435070991516, 0.12972493469715118, -1.3478869199752808, 0.38668128848075867, 0.27772262692451477, -0.6136020421981812, -0.2607349157333374, 0.12699364125728607, 0.9962369203567505, 0.43177133798599243, 0.06491929292678833], "max": [0.7821506857872009, 0.03742435947060585, 0.1418011635541916, -0.30258259177207947, 0.8869075179100037, 0.9859652519226074, -0.25105059146881104, -0.10591728240251541, 0.14499780535697937, 1.357742428779602, 0.6390489339828491, 0.23588262498378754], "mean": [0.7156863212585449, -0.013755827210843563, 0.137747123837471, -0.7394651770591736, 0.6139292120933533, 0.526377260684967, -0.4849531650543213, -0.201514333486557, 0.13616451621055603, 1.2489374876022339, 0.5265514850616455, 0.1322014182806015], "std": [0.04879791662096977, 0.03399672359228134, 0.002271146047860384, 0.35842594504356384, 0.13854211568832397, 0.1887781023979187, 0.11586702615022659, 0.051109351217746735, 0.006175108719617128, 0.1179109737277031, 0.06008423492312431, 0.05084298551082611], "count": [386]}, "action": {"min": [-0.0966988131403923, -0.07418924570083618, 0.10181257128715515, -0.5605441331863403, -0.5008285045623779, -0.5965030789375305, -0.5979709029197693, 0.11954503506422043, -0.08320099115371704, 0.07229918986558914, 0.13970038294792175, -0.4455152750015259, -0.4060424566268921, 0.8020140528678894], "max": [-0.07069113850593567, -0.05935430899262428, 0.13110922276973724, 0.7347245812416077, 0.3189082443714142, 0.7346134781837463, 0.5967348217964172, 0.16627922654151917, -0.0652252733707428, 0.09354884922504425, 0.31788170337677, -0.26239490509033203, -0.24478265643119812, 0.8749724626541138], "mean": [-0.07952646911144257, -0.06579738855361938, 0.1164160817861557, 0.480586439371109, -0.3231527507305145, 0.5279753804206848, -0.31076687574386597, 0.13746489584445953, -0.07537216693162918, 0.08168662339448929, 0.25788208842277527, -0.38535046577453613, -0.2978903353214264, 0.8281054496765137], "std": [0.007840990088880062, 0.003855952760204673, 0.008620336651802063, 0.29074203968048096, 0.17937634885311127, 0.30330830812454224, 0.28385260701179504, 0.014642344787716866, 0.0055258325301110744, 0.006652286741882563, 0.06020907312631607, 0.06156039610505104, 0.05049858242273331, 0.0232334453612566], "count": [386]}, "timestamp": {"min": [0.0], "max": [12.833333333333334], "mean": [6.416666666666666], "std": [3.714274267381629], "count": [386]}, "frame_index": {"min": [0], "max": [385], "mean": [192.5], "std": [111.42822802144886], "count": [386]}, "episode_index": {"min": [32], "max": [32], "mean": [32.0], "std": [0.0], "count": [386]}, "index": {"min": [16812], "max": [17197], "mean": [17004.5], "std": [111.42822802144886], "count": [386]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [386]}}} +{"episode_index": 33, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5942148420479303]], [[0.5466140550108933]], [[0.4893078676470588]]], "std": [[[0.26869614592905394]], [[0.26133486713305726]], [[0.2664072967265042]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6153057380174293]], [[0.5721968600217865]], [[0.5190039978213508]]], "std": [[[0.24294083252326296]], [[0.22959320033819658]], [[0.2496777648092802]]], "count": [100]}, "observation.state": {"min": [0.6143434047698975, -0.07209943234920502, 0.12942548096179962, -1.3187400102615356, 0.2928120195865631, 0.17610599100589752, -0.5380042195320129, -0.24471023678779602, 0.12149997055530548, 0.9517826437950134, 0.46661365032196045, 0.10530243068933487], "max": [0.782992422580719, 0.052723098546266556, 0.14643670618534088, -0.48690006136894226, 0.8914165496826172, 0.7164954543113708, -0.23254692554473877, -0.12804290652275085, 0.14436781406402588, 1.3627749681472778, 0.780467689037323, 0.21862256526947021], "mean": [0.7140424847602844, -0.0020938401576131582, 0.13871249556541443, -0.8919037580490112, 0.5833244323730469, 0.36506783962249756, -0.45050346851348877, -0.20378611981868744, 0.13538284599781036, 1.2456574440002441, 0.5825289487838745, 0.1475430577993393], "std": [0.04956793040037155, 0.03552846238017082, 0.003998837899416685, 0.23831546306610107, 0.18926458060741425, 0.12615422904491425, 0.10683359205722809, 0.042229797691106796, 0.00853785965591669, 0.1418604999780655, 0.11321566998958588, 0.032839901745319366], "count": [410]}, "action": {"min": [-0.09620608389377594, -0.07728845626115799, 0.10213278234004974, 0.3652161955833435, -0.4478939473628998, 0.5406728982925415, -0.5679978132247925, 0.12845005095005035, -0.08384767174720764, 0.0729871615767479, 0.12494681030511856, -0.44590485095977783, -0.4408316910266876, 0.803695023059845], "max": [-0.06824539601802826, -0.05706578493118286, 0.1301431953907013, 0.7078277468681335, -0.21807241439819336, 0.7502625584602356, -0.11882610619068146, 0.16908206045627594, -0.06307974457740784, 0.08791282773017883, 0.30284276604652405, -0.3137376010417938, -0.2367384284734726, 0.8479092717170715], "mean": [-0.07856861501932144, -0.06492169201374054, 0.1175309345126152, 0.5322939157485962, -0.33564305305480957, 0.6583724617958069, -0.3685670495033264, 0.14108173549175262, -0.0758974477648735, 0.0825776532292366, 0.24133194983005524, -0.3898451030254364, -0.30837127566337585, 0.8273177742958069], "std": [0.009196953848004341, 0.005249400623142719, 0.007247038185596466, 0.0997515469789505, 0.06592325866222382, 0.054295316338539124, 0.13216066360473633, 0.014175991527736187, 0.007527518086135387, 0.003748613176867366, 0.06158045306801796, 0.040535055100917816, 0.06842155009508133, 0.010772029869258404], "count": [410]}, "timestamp": {"min": [0.0], "max": [13.633333333333333], "mean": [6.8166666666666655], "std": [3.9452151046834216], "count": [410]}, "frame_index": {"min": [0], "max": [409], "mean": [204.5], "std": [118.35645314050265], "count": [410]}, "episode_index": {"min": [33], "max": [33], "mean": [33.0], "std": [0.0], "count": [410]}, "index": {"min": [17198], "max": [17607], "mean": [17402.5], "std": [118.35645314050265], "count": [410]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [410]}}} +{"episode_index": 34, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5965573093681917]], [[0.5517759340958606]], [[0.4944168845315904]]], "std": [[[0.2703714567896551]], [[0.2608192676665651]], [[0.2661849638053569]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6182793954248367]], [[0.5780360947712418]], [[0.5247980718954248]]], "std": [[[0.24364882723133038]], [[0.2278582287732163]], [[0.24849958145170514]]], "count": [100]}, "observation.state": {"min": [0.6309086680412292, -0.07480239123106003, 0.13053511083126068, -1.241783857345581, 0.4698929190635681, 0.27115359902381897, -0.5468466877937317, -0.25228622555732727, 0.12375809997320175, 1.0023179054260254, 0.49763011932373047, 0.09562806040048599], "max": [0.8140764236450195, 0.03758653998374939, 0.1441980004310608, 0.11050660163164139, 0.8241913914680481, 0.9645246863365173, -0.23852433264255524, -0.1197873130440712, 0.1409948766231537, 1.3797597885131836, 0.7448055744171143, 0.2720199227333069], "mean": [0.7292638421058655, -0.010216902941465378, 0.13851472735404968, -0.6327771544456482, 0.6655869483947754, 0.611539900302887, -0.4534086287021637, -0.19395923614501953, 0.13306540250778198, 1.267181396484375, 0.5981712341308594, 0.18144136667251587], "std": [0.05513181537389755, 0.033356569707393646, 0.0030644224025309086, 0.356158584356308, 0.08404958248138428, 0.14626553654670715, 0.10446552187204361, 0.038680315017700195, 0.006189367733895779, 0.12637436389923096, 0.08639486879110336, 0.038334883749485016], "count": [410]}, "action": {"min": [-0.09597471356391907, -0.0704493299126625, 0.09845740348100662, -0.5786886811256409, -0.5021740794181824, -0.5748987793922424, -0.5824907422065735, 0.1287502646446228, -0.08001754432916641, 0.07187216728925705, 0.1216115951538086, -0.45181769132614136, -0.4236597418785095, 0.8092320561408997], "max": [-0.06392328441143036, -0.05726640671491623, 0.12861944735050201, 0.7019756436347961, 0.4372418522834778, 0.6889336109161377, 0.6386040449142456, 0.1678829938173294, -0.0640479251742363, 0.08999455720186234, 0.30269500613212585, -0.3083968162536621, -0.24162070453166962, 0.8532586693763733], "mean": [-0.0774209201335907, -0.06417126208543777, 0.11584345251321793, 0.35038742423057556, -0.22890713810920715, 0.30998694896698, -0.13204598426818848, 0.14173869788646698, -0.07342256605625153, 0.0817224532365799, 0.22410719096660614, -0.3978530168533325, -0.310133695602417, 0.8288798332214355], "std": [0.009369348175823689, 0.0034510232508182526, 0.009162209928035736, 0.4722785949707031, 0.2991417944431305, 0.46610257029533386, 0.4260490834712982, 0.013036300428211689, 0.005402582231909037, 0.004642849788069725, 0.05452921614050865, 0.045537274330854416, 0.05575058236718178, 0.01045452244579792], "count": [410]}, "timestamp": {"min": [0.0], "max": [13.633333333333333], "mean": [6.8166666666666655], "std": [3.9452151046834216], "count": [410]}, "frame_index": {"min": [0], "max": [409], "mean": [204.5], "std": [118.35645314050265], "count": [410]}, "episode_index": {"min": [34], "max": [34], "mean": [34.0], "std": [0.0], "count": [410]}, "index": {"min": [17608], "max": [18017], "mean": [17812.5], "std": [118.35645314050265], "count": [410]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [410]}}} +{"episode_index": 35, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6045797400080976]], [[0.5588107274374843]], [[0.5011651411301984]]], "std": [[[0.26935952436715915]], [[0.2599420162613335]], [[0.26541341331687174]]], "count": [113]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6261315070275898]], [[0.5845565050995817]], [[0.531279667225789]]], "std": [[[0.24151492005696462]], [[0.22623329152170166]], [[0.24727658821937062]]], "count": [113]}, "observation.state": {"min": [0.6345151662826538, -0.060167811810970306, 0.12779216468334198, -1.3562746047973633, -0.37725338339805603, 0.20776210725307465, -0.5872983932495117, -0.2530662417411804, 0.12687179446220398, 1.0006403923034668, 0.513343334197998, 0.08150740712881088], "max": [0.7863209247589111, 0.06343452632427216, 0.14291857182979584, 0.8270171284675598, 0.8280171751976013, 1.281593680381775, -0.30207470059394836, -0.1424998641014099, 0.14454540610313416, 1.5131226778030396, 0.7289557456970215, 0.24277493357658386], "mean": [0.7020490765571594, 0.0066423299722373486, 0.13728585839271545, -0.32175499200820923, 0.482681542634964, 0.5978310704231262, -0.4411049485206604, -0.1867389678955078, 0.13549108803272247, 1.2332322597503662, 0.6474646925926208, 0.19408661127090454], "std": [0.041234783828258514, 0.030142147094011307, 0.003960081841796637, 0.6310018301010132, 0.25551509857177734, 0.281128466129303, 0.10282757133245468, 0.035574547946453094, 0.00654558977112174, 0.1716785430908203, 0.07630814611911774, 0.03972351551055908], "count": [548]}, "action": {"min": [-0.09515317529439926, -0.06989506632089615, 0.10122357308864594, -0.5488749146461487, -0.46861326694488525, -0.5948465466499329, -0.5907906889915466, 0.12229885905981064, -0.08316634595394135, 0.07546640932559967, 0.13534457981586456, -0.49904611706733704, -0.43399494886398315, 0.7846250534057617], "max": [-0.06869317591190338, -0.05774938687682152, 0.12983059883117676, 0.6865550875663757, 0.6022801995277405, 0.7256192564964294, 0.7737891674041748, 0.16022446751594543, -0.06700988113880157, 0.0894816666841507, 0.30208805203437805, -0.3171924352645874, -0.23130200803279877, 0.837186336517334], "mean": [-0.08234608918428421, -0.06435301154851913, 0.12008016556501389, 0.0008598537533544004, 0.06432409584522247, 0.061726633459329605, 0.25895994901657104, 0.14178763329982758, -0.07412345707416534, 0.08440006524324417, 0.20564225316047668, -0.4012455344200134, -0.3343826234340668, 0.8200976252555847], "std": [0.007669897750020027, 0.002856834791600704, 0.00799524039030075, 0.49908846616744995, 0.3742094039916992, 0.5183414816856384, 0.5169057846069336, 0.013637990690767765, 0.0054327319376170635, 0.004251773003488779, 0.05278297886252403, 0.06119287759065628, 0.07509862631559372, 0.013055996038019657], "count": [548]}, "timestamp": {"min": [0.0], "max": [18.233333333333334], "mean": [9.116666666666667], "std": [5.273123678933895], "count": [548]}, "frame_index": {"min": [0], "max": [547], "mean": [273.5], "std": [158.19371036801684], "count": [548]}, "episode_index": {"min": [35], "max": [35], "mean": [35.0], "std": [0.0], "count": [548]}, "index": {"min": [18018], "max": [18565], "mean": [18291.5], "std": [158.19371036801684], "count": [548]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [548]}}} +{"episode_index": 36, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.594601190087146]], [[0.5501383088235294]], [[0.49302125816993464]]], "std": [[[0.2706325893245625]], [[0.26110762053803216]], [[0.26626737220759616]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6158028948801743]], [[0.5760795697167755]], [[0.5230864978213507]]], "std": [[[0.24367352232726266]], [[0.2279858993650013]], [[0.24847035083013835]]], "count": [100]}, "observation.state": {"min": [0.6101113557815552, -0.0760689228773117, 0.1285569667816162, -1.3162237405776978, 0.44721126556396484, 0.2782611548900604, -0.5773823857307434, -0.25033238530158997, 0.1269923448562622, 0.8207264542579651, 0.5428568124771118, -0.022015469148755074], "max": [0.792939305305481, 0.055148039013147354, 0.1394885778427124, -0.4845934510231018, 0.8642258644104004, 0.7351168990135193, -0.26027926802635193, -0.131371408700943, 0.14308707416057587, 1.391921877861023, 0.7872995138168335, 0.17337608337402344], "mean": [0.718357264995575, -0.0018200017511844635, 0.13463689386844635, -0.8316235542297363, 0.6582173705101013, 0.4820937514305115, -0.4663240909576416, -0.19487878680229187, 0.13615454733371735, 1.1602046489715576, 0.6606850028038025, 0.06636109948158264], "std": [0.053115639835596085, 0.03660192713141441, 0.002572105498984456, 0.30541735887527466, 0.10153075307607651, 0.13169482350349426, 0.11494234949350357, 0.03849269449710846, 0.005917149595916271, 0.18762937188148499, 0.08275254815816879, 0.03933006897568703], "count": [322]}, "action": {"min": [-0.09870810806751251, -0.06995907425880432, 0.09720111638307571, 0.4448833763599396, -0.45280370116233826, 0.5380434393882751, -0.5611125230789185, 0.12408991158008575, -0.0807812362909317, 0.07392138242721558, 0.15596362948417664, -0.48689258098602295, -0.479429692029953, 0.7560518383979797], "max": [-0.07149715721607208, -0.05516516789793968, 0.13029815256595612, 0.7181252837181091, -0.24085190892219543, 0.7365081906318665, -0.11118762940168381, 0.16514495015144348, -0.06570148468017578, 0.09178975224494934, 0.32945969700813293, -0.3207704722881317, -0.26834651827812195, 0.8169430494308472], "mean": [-0.08089044690132141, -0.06234746426343918, 0.11454921960830688, 0.577009379863739, -0.3462705910205841, 0.6164326667785645, -0.3650984764099121, 0.13896596431732178, -0.07414671778678894, 0.08299745619297028, 0.25458824634552, -0.42145073413848877, -0.34398120641708374, 0.7918508052825928], "std": [0.007916278205811977, 0.004053022712469101, 0.00955408625304699, 0.07700759917497635, 0.04889087378978729, 0.05516074225306511, 0.15002495050430298, 0.014758088625967503, 0.0050638578832149506, 0.005298668518662453, 0.056992385536432266, 0.05739787220954895, 0.07408386468887329, 0.013497480191290379], "count": [322]}, "timestamp": {"min": [0.0], "max": [10.7], "mean": [5.35], "std": [3.0984315028378115], "count": [322]}, "frame_index": {"min": [0], "max": [321], "mean": [160.5], "std": [92.95294508513435], "count": [322]}, "episode_index": {"min": [36], "max": [36], "mean": [36.0], "std": [0.0], "count": [322]}, "index": {"min": [18566], "max": [18887], "mean": [18726.5], "std": [92.95294508513435], "count": [322]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [322]}}} +{"episode_index": 37, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5913497194989107]], [[0.5470733959694989]], [[0.49016788126361654]]], "std": [[[0.27459710308482543]], [[0.26442093450566845]], [[0.26936666974154766]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6124529656862746]], [[0.5730667374727669]], [[0.5203089460784314]]], "std": [[[0.24895033988237653]], [[0.23234416354947882]], [[0.25223981776475113]]], "count": [100]}, "observation.state": {"min": [0.6038713455200195, -0.04727084934711456, 0.1317821443080902, -1.5756102800369263, 0.39064374566078186, -0.0504278801381588, -0.5630876421928406, -0.22473153471946716, 0.12573494017124176, 0.8528090119361877, 0.422480046749115, 0.10413455218076706], "max": [0.7827761769294739, 0.04761837050318718, 0.14615151286125183, -0.49885237216949463, 0.9195636510848999, 0.4643722474575043, -0.24844804406166077, -0.12064453214406967, 0.14352263510227203, 1.268624186515808, 0.6939767599105835, 0.2621822953224182], "mean": [0.7106000185012817, -0.004263790789991617, 0.14005960524082184, -0.950033962726593, 0.713035523891449, 0.30702295899391174, -0.4779340326786041, -0.18872322142124176, 0.1368928998708725, 1.1475870609283447, 0.5250807404518127, 0.14051105082035065], "std": [0.0501653291285038, 0.024808835238218307, 0.003771114395931363, 0.3955624997615814, 0.1582925021648407, 0.10780463367700577, 0.1106259748339653, 0.03603173792362213, 0.006625956390053034, 0.1340876668691635, 0.0993860736489296, 0.031595662236213684], "count": [439]}, "action": {"min": [-0.09770353138446808, -0.07323117554187775, 0.10726138204336166, 0.45697420835494995, -0.34416070580482483, 0.5514912605285645, -0.5666571855545044, 0.1260310858488083, -0.08074307441711426, 0.0751040130853653, 0.1489521563053131, -0.42563435435295105, -0.4640427231788635, 0.8008938431739807], "max": [-0.06427811831235886, -0.057444456964731216, 0.1297076791524887, 0.7099927663803101, -0.18828988075256348, 0.7835764288902283, -0.0677640289068222, 0.16708490252494812, -0.06514991074800491, 0.09191275388002396, 0.29815223813056946, -0.2650132179260254, -0.2855350971221924, 0.8495324850082397], "mean": [-0.07812761515378952, -0.06519065797328949, 0.11809073388576508, 0.5767208933830261, -0.2699805796146393, 0.6515470147132874, -0.3612862527370453, 0.1377541720867157, -0.07454010844230652, 0.08402027934789658, 0.24359747767448425, -0.3582001328468323, -0.34322798252105713, 0.8284289836883545], "std": [0.00964390393346548, 0.004197526723146439, 0.006231964100152254, 0.057679686695337296, 0.04200755059719086, 0.07168680429458618, 0.1709723025560379, 0.01432416308671236, 0.0054819961078464985, 0.004476831294596195, 0.051383163779973984, 0.04740703105926514, 0.05707235634326935, 0.010376665741205215], "count": [439]}, "timestamp": {"min": [0.0], "max": [14.6], "mean": [7.3], "std": [4.2242685099842365], "count": [439]}, "frame_index": {"min": [0], "max": [438], "mean": [219.0], "std": [126.7280552995271], "count": [439]}, "episode_index": {"min": [37], "max": [37], "mean": [37.0], "std": [0.0], "count": [439]}, "index": {"min": [18888], "max": [19326], "mean": [19107.0], "std": [126.7280552995271], "count": [439]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [439]}}} +{"episode_index": 38, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5944800147154378]], [[0.5503540448343079]], [[0.4932938978710393]]], "std": [[[0.27356598199631144]], [[0.2629708255139099]], [[0.26826369133067607]]], "count": [114]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6162467630814509]], [[0.5765709948209303]], [[0.5235880083514887]]], "std": [[[0.24699319383586615]], [[0.23038907129354078]], [[0.250724391685804]]], "count": [114]}, "observation.state": {"min": [0.649759829044342, -0.07962910085916519, 0.13497360050678253, -1.5881916284561157, 0.5009093880653381, 0.10301695019006729, -0.5682772994041443, -0.2563020586967468, 0.12471088021993637, 0.9771551489830017, 0.35197561979293823, 0.008427290245890617], "max": [0.789595365524292, 0.028149360790848732, 0.1474231630563736, 0.19249537587165833, 1.041580080986023, 1.0101680755615234, -0.22632241249084473, -0.1278652846813202, 0.1450522541999817, 1.4793626070022583, 0.6391855478286743, 0.2313240021467209], "mean": [0.7268402576446533, -0.018551047891378403, 0.1418888419866562, -0.6063807010650635, 0.7503446936607361, 0.5722298622131348, -0.48055538535118103, -0.19091299176216125, 0.1365656554698944, 1.2878735065460205, 0.4742100238800049, 0.119252048432827], "std": [0.038192689418792725, 0.025951411575078964, 0.00314527191221714, 0.6180654764175415, 0.11762823164463043, 0.23516617715358734, 0.10050974786281586, 0.03331303223967552, 0.006467678118497133, 0.12780189514160156, 0.0801781490445137, 0.0527212955057621], "count": [559]}, "action": {"min": [-0.09306978434324265, -0.07750780135393143, 0.0996435284614563, -0.6089172959327698, -0.3975200057029724, -0.5081218481063843, -0.6063329577445984, 0.12497992813587189, -0.08188724517822266, 0.0704292356967926, 0.17483942210674286, -0.44060468673706055, -0.4063667058944702, 0.8038434982299805], "max": [-0.06483178585767746, -0.059533391147851944, 0.12889373302459717, 0.7786116600036621, 0.38544967770576477, 0.7596586346626282, 0.7086222171783447, 0.1695534884929657, -0.0662628561258316, 0.09104952961206436, 0.34659162163734436, -0.269230455160141, -0.21495234966278076, 0.8775825500488281], "mean": [-0.0759664922952652, -0.0669330433011055, 0.1174512431025505, 0.16911567747592926, -0.05421219393610954, 0.16273967921733856, 0.08651251345872879, 0.13774888217449188, -0.0752502977848053, 0.0834583193063736, 0.26466792821884155, -0.37441956996917725, -0.2698138356208801, 0.8421118259429932], "std": [0.007863507606089115, 0.003575635142624378, 0.0077317324467003345, 0.5820627212524414, 0.3108345866203308, 0.5190563201904297, 0.4792262613773346, 0.012871696613729, 0.004977864678949118, 0.0045038796961307526, 0.04870609939098358, 0.0463116392493248, 0.05526064336299896, 0.015420724637806416], "count": [559]}, "timestamp": {"min": [0.0], "max": [18.6], "mean": [9.299999999999999], "std": [5.378971401051816], "count": [559]}, "frame_index": {"min": [0], "max": [558], "mean": [279.0], "std": [161.36914203155447], "count": [559]}, "episode_index": {"min": [38], "max": [38], "mean": [38.0], "std": [0.0], "count": [559]}, "index": {"min": [19327], "max": [19885], "mean": [19606.0], "std": [161.36914203155447], "count": [559]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [559]}}} +{"episode_index": 39, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5751551633986929]], [[0.5384825626361656]], [[0.48434580337690636]]], "std": [[[0.28421107724886874]], [[0.2750067259911278]], [[0.2804179136297031]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5943713507625272]], [[0.5625729820261438]], [[0.5121215604575164]]], "std": [[[0.26155911036688523]], [[0.24449987981858942]], [[0.2658605358283472]]], "count": [100]}, "observation.state": {"min": [0.6588958501815796, -0.017252590507268906, 0.12687179446220398, -1.6668254137039185, 0.3115312159061432, 0.1690966933965683, -0.5765406489372253, -0.22573548555374146, 0.12432587891817093, 0.9614284038543701, 0.3523855209350586, 0.04691949114203453], "max": [0.8061838150024414, 0.06418363004922867, 0.14037136733531952, 0.21660971641540527, 0.6506630182266235, 0.7836953997612, -0.2546030580997467, -0.12402708828449249, 0.1454307734966278, 1.3730497360229492, 0.6121315360069275, 0.21187956631183624], "mean": [0.7304257750511169, 0.01556376088410616, 0.13655422627925873, -0.6955448389053345, 0.4506071209907532, 0.449941486120224, -0.4696924090385437, -0.17992424964904785, 0.13546861708164215, 1.225645899772644, 0.48373207449913025, 0.10227788239717484], "std": [0.049124039709568024, 0.015337956137955189, 0.0022996526677161455, 0.7073836326599121, 0.10330633819103241, 0.16176609694957733, 0.11944539099931717, 0.038612425327301025, 0.008240672759711742, 0.14666913449764252, 0.10052196681499481, 0.04585446044802666], "count": [418]}, "action": {"min": [-0.09146514534950256, -0.06650048494338989, 0.10421960055828094, -0.4723961353302002, -0.38399553298950195, -0.5764310359954834, -0.5820630788803101, 0.12384878098964691, -0.08196002244949341, 0.0730985626578331, 0.1848224550485611, -0.4456716775894165, -0.4094153940677643, 0.8059692978858948], "max": [-0.06509974598884583, -0.050429005175828934, 0.12648209929466248, 0.652721107006073, 0.4355568289756775, 0.7711526155471802, 0.7472274899482727, 0.166693314909935, -0.06531526148319244, 0.09024595469236374, 0.3307539224624634, -0.27093297243118286, -0.22705213725566864, 0.8560651540756226], "mean": [-0.07855061441659927, -0.06188922002911568, 0.11692183464765549, 0.16360004246234894, -0.029017044231295586, 0.23447760939598083, 0.16461977362632751, 0.13923074305057526, -0.073514923453331, 0.08391887694597244, 0.2616907060146332, -0.362928569316864, -0.29424840211868286, 0.8381410241127014], "std": [0.008568419143557549, 0.0026205757167190313, 0.00738024665042758, 0.46823886036872864, 0.3649803102016449, 0.5595085024833679, 0.47413647174835205, 0.015680544078350067, 0.0065337191335856915, 0.0043843938037753105, 0.055530909448862076, 0.0552050806581974, 0.06692630797624588, 0.011322833597660065], "count": [418]}, "timestamp": {"min": [0.0], "max": [13.9], "mean": [6.95], "std": [4.022195365165093], "count": [418]}, "frame_index": {"min": [0], "max": [417], "mean": [208.5], "std": [120.66586095495279], "count": [418]}, "episode_index": {"min": [39], "max": [39], "mean": [39.0], "std": [0.0], "count": [418]}, "index": {"min": [19886], "max": [20303], "mean": [20094.5], "std": [120.66586095495279], "count": [418]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [418]}}} +{"episode_index": 40, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5762955612665779]], [[0.5384202281236119]], [[0.4845569621591895]]], "std": [[[0.2845967356860195]], [[0.27482472474287095]], [[0.27989961285262954]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5974324724496055]], [[0.5641542081773379]], [[0.5138472830340335]]], "std": [[[0.2613469136364901]], [[0.24365059044838036]], [[0.2644350871628374]]], "count": [103]}, "observation.state": {"min": [0.6450258493423462, -0.08393065631389618, 0.1287410408258438, -1.3480966091156006, 0.11354493349790573, 0.44429993629455566, -0.5238406658172607, -0.2380223572254181, 0.12467847019433975, 0.9312330484390259, 0.44748455286026, -0.06989715248346329], "max": [0.7867225408554077, 0.04016593098640442, 0.14608928561210632, -0.08806978166103363, 0.7687169313430786, 0.8517619371414185, -0.24454033374786377, -0.14674736559391022, 0.1451105922460556, 1.4982346296310425, 0.7449421882629395, 0.20612244307994843], "mean": [0.7300896644592285, -0.010233682580292225, 0.1383800059556961, -0.764773964881897, 0.5773407220840454, 0.6025031208992004, -0.418621689081192, -0.20339366793632507, 0.13488836586475372, 1.190474271774292, 0.5950269103050232, 0.010653314180672169], "std": [0.050392746925354004, 0.0351773276925087, 0.0046678404323756695, 0.3874188959598541, 0.1169281154870987, 0.11474839597940445, 0.1040123701095581, 0.034914351999759674, 0.007819742895662785, 0.153680220246315, 0.10034919530153275, 0.03801221773028374], "count": [484]}, "action": {"min": [-0.09568318724632263, -0.07824106514453888, 0.10372748225927353, -0.5301061272621155, -0.5437027812004089, -0.5764097571372986, -0.548603355884552, 0.12947599589824677, -0.08406570553779602, 0.07754429429769516, 0.20376677811145782, -0.4763241410255432, -0.42552778124809265, 0.7742399573326111], "max": [-0.06568010151386261, -0.056521885097026825, 0.12587837874889374, 0.6657546162605286, 0.31543993949890137, 0.7177718877792358, 0.6453187465667725, 0.16727030277252197, -0.06675027310848236, 0.0891832709312439, 0.35436588525772095, -0.32957401871681213, -0.17812535166740417, 0.8781110048294067], "mean": [-0.07706718891859055, -0.06500785052776337, 0.11551091820001602, 0.3232952058315277, -0.25639966130256653, 0.32042303681373596, -0.06559260189533234, 0.1448628455400467, -0.07619758695363998, 0.08412168174982071, 0.2915899455547333, -0.39008066058158875, -0.3054867684841156, 0.8121528029441833], "std": [0.010076222941279411, 0.005522400606423616, 0.0071594868786633015, 0.4555743634700775, 0.32197222113609314, 0.4965183436870575, 0.4062288999557495, 0.013904308900237083, 0.006448044441640377, 0.0035269646905362606, 0.05391088128089905, 0.041073448956012726, 0.07108406722545624, 0.015848960727453232], "count": [484]}, "timestamp": {"min": [0.0], "max": [16.1], "mean": [8.049999999999999], "std": [4.657282230848565], "count": [484]}, "frame_index": {"min": [0], "max": [483], "mean": [241.5], "std": [139.7184669254569], "count": [484]}, "episode_index": {"min": [40], "max": [40], "mean": [40.0], "std": [0.0], "count": [484]}, "index": {"min": [20304], "max": [20787], "mean": [20545.5], "std": [139.7184669254569], "count": [484]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [484]}}} +{"episode_index": 41, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5796051334422658]], [[0.5416662663398693]], [[0.48759607843137254]]], "std": [[[0.2848303149307735]], [[0.2746647105672091]], [[0.27963557654416415]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6001275381263617]], [[0.5669121051198257]], [[0.5163133769063181]]], "std": [[[0.26095855390445144]], [[0.2432266884625928]], [[0.2639398482322495]]], "count": [100]}, "observation.state": {"min": [0.6145210266113281, -0.06551194190979004, 0.12819400429725647, -1.5909175872802734, 0.3006002902984619, 0.35250264406204224, -0.5906037092208862, -0.2503555417060852, 0.125467911362648, 1.0239160060882568, 0.3447338938713074, -0.01830177940428257], "max": [0.7931401133537292, 0.05839930847287178, 0.14491355419158936, 0.1035868301987648, 0.7214407324790955, 1.0573540925979614, -0.27216455340385437, -0.14248442649841309, 0.1475515067577362, 1.4214881658554077, 0.6257951855659485, 0.15319138765335083], "mean": [0.7092344164848328, 0.0026208420749753714, 0.1383383572101593, -0.6122503280639648, 0.49360641837120056, 0.759341835975647, -0.4552423059940338, -0.2047623246908188, 0.13639326393604279, 1.2631422281265259, 0.48579829931259155, 0.09438462555408478], "std": [0.057148758322000504, 0.03645245358347893, 0.003260239027440548, 0.6237742900848389, 0.1028650775551796, 0.1756352037191391, 0.10993067175149918, 0.03889968991279602, 0.007784634362906218, 0.13372990489006042, 0.09628355503082275, 0.0365406796336174], "count": [400]}, "action": {"min": [-0.09916771203279495, -0.07587980479001999, 0.10266642272472382, -0.5728253722190857, -0.5059373378753662, -0.511516273021698, -0.5728934407234192, 0.12160632759332657, -0.08536501973867416, 0.0760352686047554, 0.18987804651260376, -0.419991672039032, -0.3923448622226715, 0.8091773390769958], "max": [-0.06532125920057297, -0.05604971572756767, 0.13203275203704834, 0.6763752698898315, 0.5283376574516296, 0.7450159192085266, 0.6767604351043701, 0.16428576409816742, -0.06756529957056046, 0.08920348435640335, 0.3530968427658081, -0.28957414627075195, -0.20728850364685059, 0.8556413650512695], "mean": [-0.08042433112859726, -0.06519238650798798, 0.11918970942497253, 0.19083726406097412, -0.1127687394618988, 0.17221367359161377, 0.1077953353524208, 0.14062567055225372, -0.07710752636194229, 0.0832846611738205, 0.2774355709552765, -0.36462289094924927, -0.2741963267326355, 0.8398802876472473], "std": [0.010718649253249168, 0.004012818913906813, 0.009488353505730629, 0.520279049873352, 0.43233707547187805, 0.50249183177948, 0.44663551449775696, 0.014565234072506428, 0.006454493850469589, 0.0038482886739075184, 0.053187571465969086, 0.043659571558237076, 0.06812597066164017, 0.01099102757871151], "count": [400]}, "timestamp": {"min": [0.0], "max": [13.3], "mean": [6.65], "std": [3.848989766448103], "count": [400]}, "frame_index": {"min": [0], "max": [399], "mean": [199.5], "std": [115.46969299344309], "count": [400]}, "episode_index": {"min": [41], "max": [41], "mean": [41.0], "std": [0.0], "count": [400]}, "index": {"min": [20788], "max": [21187], "mean": [20987.5], "std": [115.46969299344309], "count": [400]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [400]}}} +{"episode_index": 42, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5678997571713871]], [[0.5304556554103123]], [[0.47685263480392154]]], "std": [[[0.28694568723677677]], [[0.2763895435606853]], [[0.2808915749067288]]], "count": [120]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5894801811002178]], [[0.5572085580065359]], [[0.5066115967683369]]], "std": [[[0.26393044154476836]], [[0.245464506312683]], [[0.26576403989576736]]], "count": [120]}, "observation.state": {"min": [0.6345924139022827, -0.07977583259344101, 0.12776623666286469, -1.3711625337600708, 0.24949824810028076, 0.17112822830677032, -0.5841629505157471, -0.2540779113769531, 0.11867793649435043, 0.7334954142570496, 0.36809873580932617, -0.10410293191671371], "max": [0.8307652473449707, 0.05083874985575676, 0.14750094711780548, -0.5726632475852966, 0.8814420700073242, 0.7787737250328064, -0.24953694641590118, -0.14717212319374084, 0.1435317099094391, 1.4198106527328491, 0.7131059169769287, 0.13936595618724823], "mean": [0.7469339370727539, -0.025683388113975525, 0.14003418385982513, -0.9685680270195007, 0.6052335500717163, 0.5588212013244629, -0.451509565114975, -0.2018974870443344, 0.13288211822509766, 1.0779117345809937, 0.5182884335517883, 0.033443693071603775], "std": [0.046843621879816055, 0.040833618491888046, 0.005619138944894075, 0.23621658980846405, 0.13472281396389008, 0.1911323368549347, 0.09218133240938187, 0.028882406651973724, 0.007494586985558271, 0.15617677569389343, 0.09867211431264877, 0.04841591417789459], "count": [595]}, "action": {"min": [-0.09693699330091476, -0.0771838054060936, 0.09909750521183014, 0.4204653203487396, -0.5008910298347473, 0.5308014154434204, -0.556179940700531, 0.12402146309614182, -0.08325838297605515, 0.07188697904348373, 0.15290917456150055, -0.4482491910457611, -0.5089346170425415, 0.781962513923645], "max": [-0.05945706367492676, -0.05646508187055588, 0.12388783693313599, 0.6739747524261475, -0.21983209252357483, 0.7501395344734192, -0.043059561401605606, 0.16901342570781708, -0.06284596771001816, 0.0898992195725441, 0.37909427285194397, -0.2563861906528473, -0.21773454546928406, 0.8379121422767639], "mean": [-0.07303983718156815, -0.0671205073595047, 0.11232570558786392, 0.5845004320144653, -0.4033099412918091, 0.6141271591186523, -0.2772853672504425, 0.14258791506290436, -0.07416469603776932, 0.08217989653348923, 0.2909979224205017, -0.34361669421195984, -0.35015949606895447, 0.8146014213562012], "std": [0.009944641031324863, 0.006513277068734169, 0.006047551054507494, 0.07668688148260117, 0.09560892730951309, 0.0490962415933609, 0.15565602481365204, 0.012322367168962955, 0.005695164669305086, 0.003370900871232152, 0.06087842956185341, 0.047590963542461395, 0.07029585540294647, 0.012183979153633118], "count": [595]}, "timestamp": {"min": [0.0], "max": [19.8], "mean": [9.899999999999999], "std": [5.725382083319854], "count": [595]}, "frame_index": {"min": [0], "max": [594], "mean": [297.0], "std": [171.76146249959564], "count": [595]}, "episode_index": {"min": [42], "max": [42], "mean": [42.0], "std": [0.0], "count": [595]}, "index": {"min": [21188], "max": [21782], "mean": [21485.0], "std": [171.76146249959564], "count": [595]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [595]}}} +{"episode_index": 43, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5756676606753812]], [[0.5376480610021787]], [[0.48366612200435727]]], "std": [[[0.28391710037825474]], [[0.2741345436986938]], [[0.2791065506106017]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5967924291938997]], [[0.5633166639433552]], [[0.512605204248366]]], "std": [[[0.26049970474192363]], [[0.24308230606418485]], [[0.26370757841874887]]], "count": [100]}, "observation.state": {"min": [0.6170849800109863, -0.07016102969646454, 0.13182620704174042, -1.4139392375946045, 0.2694471776485443, 0.316689670085907, -0.5706945061683655, -0.25369951128959656, 0.1218564510345459, 0.9620574712753296, 0.4321812391281128, -0.031145190820097923], "max": [0.8032105565071106, 0.0493868812918663, 0.14209671318531036, -0.3730384111404419, 0.8071117997169495, 0.7134280800819397, -0.26627981662750244, -0.14480124413967133, 0.14274485409259796, 1.4170846939086914, 0.6965728998184204, 0.11215008795261383], "mean": [0.7223361730575562, -0.0009914307156577706, 0.13758203387260437, -0.8275464177131653, 0.5421584248542786, 0.517069935798645, -0.4397389888763428, -0.2023996114730835, 0.13279840350151062, 1.2103387117385864, 0.5613536238670349, 0.05242123454809189], "std": [0.06516925245523453, 0.039089031517505646, 0.00203299499116838, 0.3924780488014221, 0.17190897464752197, 0.13166597485542297, 0.10879205167293549, 0.040154147893190384, 0.00792185589671135, 0.15543146431446075, 0.09003055095672607, 0.037069812417030334], "count": [317]}, "action": {"min": [-0.09523459523916245, -0.07180076837539673, 0.09997014701366425, 0.32735827565193176, -0.5005978345870972, 0.5247329473495483, -0.5973669290542603, 0.12575754523277283, -0.08203811943531036, 0.07346951216459274, 0.18662992119789124, -0.45749640464782715, -0.4211103320121765, 0.7816258072853088], "max": [-0.06609495729207993, -0.05555558577179909, 0.13116455078125, 0.6974627375602722, -0.2702447474002838, 0.7206213474273682, -0.0400756411254406, 0.16576509177684784, -0.0648331418633461, 0.08656873553991318, 0.34574374556541443, -0.3067930340766907, -0.21191678941249847, 0.8444648385047913], "mean": [-0.07865835726261139, -0.06407339870929718, 0.11629664152860641, 0.5317364931106567, -0.3881268799304962, 0.6176608204841614, -0.34910690784454346, 0.14350375533103943, -0.07449798285961151, 0.08174369484186172, 0.28066539764404297, -0.3829719126224518, -0.30090904235839844, 0.8200036883354187], "std": [0.010488341562449932, 0.00464507844299078, 0.010441393591463566, 0.1210583746433258, 0.05993419513106346, 0.0440908819437027, 0.20746548473834991, 0.014242246747016907, 0.0067125409841537476, 0.0038209783378988504, 0.05908114090561867, 0.047934483736753464, 0.07463370263576508, 0.015777748078107834], "count": [317]}, "timestamp": {"min": [0.0], "max": [10.533333333333333], "mean": [5.266666666666667], "std": [3.050318744728892], "count": [317]}, "frame_index": {"min": [0], "max": [316], "mean": [158.0], "std": [91.50956234186677], "count": [317]}, "episode_index": {"min": [43], "max": [43], "mean": [43.0], "std": [0.0], "count": [317]}, "index": {"min": [21783], "max": [22099], "mean": [21941.0], "std": [91.50956234186677], "count": [317]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [317]}}} +{"episode_index": 44, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5742811029411764]], [[0.5373592619825708]], [[0.48399704793028325]]], "std": [[[0.2843339921115998]], [[0.27490247097176435]], [[0.2800632755496326]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5942708061002179]], [[0.5622707107843137]], [[0.5122428594771241]]], "std": [[[0.2615326505113195]], [[0.24431779901118958]], [[0.2651736888635531]]], "count": [100]}, "observation.state": {"min": [0.6206297278404236, -0.0662224292755127, 0.13058176636695862, -1.4338598251342773, 0.2937684655189514, 0.3491843342781067, -0.5762317180633545, -0.2589123547077179, 0.12414699047803879, 0.9811392426490784, 0.3581242561340332, -0.005227560177445412], "max": [0.7986000776290894, 0.0485759899020195, 0.14385837316513062, -0.14804109930992126, 0.7956343293190002, 0.8801344633102417, -0.26454994082450867, -0.1498287469148636, 0.14197227358818054, 1.388357162475586, 0.5690910220146179, 0.24454009532928467], "mean": [0.7209592461585999, -0.000651787908282131, 0.13718625903129578, -0.6517864465713501, 0.5874711275100708, 0.5652415752410889, -0.47813674807548523, -0.20018891990184784, 0.13484303653240204, 1.2454404830932617, 0.4584673047065735, 0.13547374308109283], "std": [0.05323852226138115, 0.035937659442424774, 0.003938695415854454, 0.499620258808136, 0.1620304137468338, 0.13135875761508942, 0.10926330089569092, 0.030820365995168686, 0.006516795605421066, 0.126956045627594, 0.07036475092172623, 0.07718577235937119], "count": [394]}, "action": {"min": [-0.09833913296461105, -0.07177887111902237, 0.09928786754608154, -0.568065345287323, -0.5089642405509949, -0.5864382386207581, -0.5803735256195068, 0.12549898028373718, -0.0825173407793045, 0.07200223207473755, 0.15593057870864868, -0.45109739899635315, -0.4091542065143585, 0.7998521327972412], "max": [-0.06821178644895554, -0.055751100182533264, 0.12729741632938385, 0.6751978397369385, 0.4076153039932251, 0.7213941216468811, 0.6738125085830688, 0.16595368087291718, -0.06805246323347092, 0.08830346167087555, 0.35084211826324463, -0.22450247406959534, -0.2137007862329483, 0.8769444227218628], "mean": [-0.07944198697805405, -0.06360182911157608, 0.11669182032346725, 0.14221401512622833, -0.07435189187526703, 0.07824461907148361, 0.16142083704471588, 0.13894736766815186, -0.0751345157623291, 0.08174456655979156, 0.26289501786231995, -0.35264796018600464, -0.28600484132766724, 0.8439989686012268], "std": [0.009736948646605015, 0.004064271692186594, 0.008927376009523869, 0.5292932391166687, 0.37614262104034424, 0.5637434124946594, 0.450141042470932, 0.014069030061364174, 0.004535406827926636, 0.003939200658351183, 0.058762189000844955, 0.06885743141174316, 0.061198506504297256, 0.02128020115196705], "count": [394]}, "timestamp": {"min": [0.0], "max": [13.1], "mean": [6.55], "std": [3.7912545563587674], "count": [394]}, "frame_index": {"min": [0], "max": [393], "mean": [196.5], "std": [113.73763669076301], "count": [394]}, "episode_index": {"min": [44], "max": [44], "mean": [44.0], "std": [0.0], "count": [394]}, "index": {"min": [22100], "max": [22493], "mean": [22296.5], "std": [113.73763669076301], "count": [394]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [394]}}} +{"episode_index": 45, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5772522358387799]], [[0.5403139733115468]], [[0.48642884531590413]]], "std": [[[0.28539440420681944]], [[0.2754498938769943]], [[0.280395520296911]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5970903540305011]], [[0.5652145533769063]], [[0.5149672276688453]]], "std": [[[0.26217680326564585]], [[0.2445898560900757]], [[0.26521433974660025]]], "count": [100]}, "observation.state": {"min": [0.6363454461097717, -0.06728044897317886, 0.13047806918621063, -1.2755439281463623, 0.2374742329120636, 0.45478323101997375, -0.6020642518997192, -0.26353055238723755, 0.12402772903442383, 1.1195346117019653, 0.3436408042907715, 0.038191668689250946], "max": [0.7945610880851746, 0.0400191992521286, 0.13937580585479736, 0.19962483644485474, 0.587810218334198, 0.8405787348747253, -0.2723807990550995, -0.149156853556633, 0.14620335400104523, 1.5754005908966064, 0.6376825571060181, 0.19284820556640625], "mean": [0.7172375917434692, -2.888364861064474e-06, 0.13481932878494263, -0.5008435845375061, 0.38254430890083313, 0.6470126509666443, -0.4840538501739502, -0.2037995457649231, 0.1359816938638687, 1.3488246202468872, 0.46282145380973816, 0.1290767341852188], "std": [0.05086226761341095, 0.03410864621400833, 0.0023561599664390087, 0.5753166675567627, 0.08786336332559586, 0.0856395959854126, 0.12011205404996872, 0.03454437851905823, 0.00826864130795002, 0.1292847841978073, 0.10529157519340515, 0.037687864154577255], "count": [321]}, "action": {"min": [-0.09600233286619186, -0.07034865766763687, 0.0996636375784874, -0.5372216701507568, -0.5032268166542053, -0.5456227660179138, -0.5329979658126831, 0.1207631453871727, -0.08313696086406708, 0.07123124599456787, 0.18671979010105133, -0.45026910305023193, -0.3588985800743103, 0.8199495077133179], "max": [-0.07078341394662857, -0.05932404473423958, 0.12779010832309723, 0.6198097467422485, 0.5017141699790955, 0.7176352143287659, 0.7316375374794006, 0.1643931120634079, -0.06753012537956238, 0.08724978566169739, 0.34388139843940735, -0.30988404154777527, -0.15246625244617462, 0.8646231889724731], "mean": [-0.08190521597862244, -0.06445401906967163, 0.11657653003931046, 0.015555760823190212, 0.033121995627880096, 0.035646770149469376, 0.2797337770462036, 0.13763676583766937, -0.0761663168668747, 0.08133364468812943, 0.2670428156852722, -0.38262829184532166, -0.24136416614055634, 0.8458836674690247], "std": [0.008068357594311237, 0.002735850866883993, 0.009573258459568024, 0.47849041223526, 0.45028966665267944, 0.546410858631134, 0.4345809519290924, 0.015599776059389114, 0.005741037428379059, 0.004206606652587652, 0.04856428503990173, 0.04284685105085373, 0.06468380242586136, 0.011386441998183727], "count": [321]}, "timestamp": {"min": [0.0], "max": [10.666666666666666], "mean": [5.333333333333333], "std": [3.088808951803387], "count": [321]}, "frame_index": {"min": [0], "max": [320], "mean": [160.0], "std": [92.66426855410162], "count": [321]}, "episode_index": {"min": [45], "max": [45], "mean": [45.0], "std": [0.0], "count": [321]}, "index": {"min": [22494], "max": [22814], "mean": [22654.0], "std": [92.66426855410162], "count": [321]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [321]}}} +{"episode_index": 46, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5671890554680916]], [[0.5306925758949159]], [[0.47742153085889666]]], "std": [[[0.2867355024532663]], [[0.27673128601237257]], [[0.2820211390628134]]], "count": [137]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5887413768427079]], [[0.5570654191116836]], [[0.5071649193740757]]], "std": [[[0.26458076899708244]], [[0.24629673050298453]], [[0.26703211544497457]]], "count": [137]}, "observation.state": {"min": [0.6141425967216492, -0.08404649794101715, 0.12367255240678787, -1.374517560005188, -0.016806289553642273, 0.35062018036842346, -0.5637749433517456, -0.2592675983905792, 0.11975646018981934, 0.830372154712677, 0.4174244999885559, -0.3288414180278778], "max": [0.8290044665336609, 0.047124121338129044, 0.1435239315032959, -0.11008722335100174, 0.7173416018486023, 0.7805903553962708, -0.23626157641410828, -0.16495756804943085, 0.14390115439891815, 1.1851675510406494, 0.831296443939209, -0.033864669501781464], "mean": [0.7567436695098877, -0.01866401731967926, 0.13488176465034485, -0.8724965453147888, 0.3524472415447235, 0.5762612819671631, -0.4429144859313965, -0.22155697643756866, 0.13320425152778625, 1.0579805374145508, 0.6323924660682678, -0.15551772713661194], "std": [0.056595902889966965, 0.030048971995711327, 0.004424328450113535, 0.34435975551605225, 0.18264319002628326, 0.10959111899137497, 0.08439402282238007, 0.025158874690532684, 0.006359156686812639, 0.0944860577583313, 0.10229384899139404, 0.07483334094285965], "count": [709]}, "action": {"min": [-0.1004960909485817, -0.07496833801269531, 0.09413061290979385, -0.43380650877952576, -0.6103920936584473, -0.5811196565628052, -0.5839106440544128, 0.12590578198432922, -0.08294402062892914, 0.07371877878904343, 0.2420634627342224, -0.4873935878276825, -0.44732576608657837, 0.7022846341133118], "max": [-0.06524500250816345, -0.056019242852926254, 0.12850165367126465, 0.639839768409729, 0.3691417872905731, 0.7567435503005981, 0.6872299313545227, 0.16921736299991608, -0.06619998067617416, 0.0873948410153389, 0.4438451826572418, -0.3017268478870392, -0.27027469873428345, 0.8076571822166443], "mean": [-0.07613269239664078, -0.06520287692546844, 0.11008955538272858, 0.4046793580055237, -0.3798729181289673, 0.48727890849113464, -0.14118538796901703, 0.14319132268428802, -0.07561942934989929, 0.08108626306056976, 0.3534785211086273, -0.4123474061489105, -0.33882972598075867, 0.7631285786628723], "std": [0.009231267496943474, 0.004022833425551653, 0.008479473181068897, 0.2866283357143402, 0.2872999310493469, 0.4035945534706116, 0.32706552743911743, 0.011124210432171822, 0.004372264724224806, 0.0035595037043094635, 0.04689699038863182, 0.05216456577181816, 0.04540514200925827, 0.029491104185581207], "count": [709]}, "timestamp": {"min": [0.0], "max": [23.6], "mean": [11.8], "std": [6.822348894951389], "count": [709]}, "frame_index": {"min": [0], "max": [708], "mean": [354.0], "std": [204.67046684854168], "count": [709]}, "episode_index": {"min": [46], "max": [46], "mean": [46.0], "std": [0.0], "count": [709]}, "index": {"min": [22815], "max": [23523], "mean": [23169.0], "std": [204.67046684854168], "count": [709]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [709]}}} +{"episode_index": 47, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.566860705232948]], [[0.5312672930283224]], [[0.4778506211245182]]], "std": [[[0.2865772563517318]], [[0.2772072368211862]], [[0.2823037050616177]]], "count": [104]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5852142355873973]], [[0.5552135128624099]], [[0.5049952970504441]]], "std": [[[0.2643129444561242]], [[0.24711905731169173]], [[0.26801899481508185]]], "count": [104]}, "observation.state": {"min": [0.607848584651947, -0.07334279268980026, 0.12331736087799072, -1.2212342023849487, 0.0311531201004982, 0.36343511939048767, -0.6388322114944458, -0.2615380585193634, 0.12796196341514587, 0.7777400016784668, 0.3251948654651642, -0.5038085579872131], "max": [0.8132809996604919, 0.06725727766752243, 0.14045821130275726, 0.3942171037197113, 0.6633701920509338, 0.750424861907959, -0.31903383135795593, -0.1614282876253128, 0.15176056325435638, 1.0293679237365723, 0.7263596057891846, 0.013911929912865162], "mean": [0.7090476751327515, 0.018606036901474, 0.1327567994594574, -0.2545802593231201, 0.31342434883117676, 0.5631090998649597, -0.5259904265403748, -0.2105565369129181, 0.14112588763237, 0.8862608671188354, 0.45887723565101624, -0.12955468893051147], "std": [0.06361538916826248, 0.04156093671917915, 0.003650484373793006, 0.595278263092041, 0.18207556009292603, 0.12712715566158295, 0.10855338722467422, 0.026333961635828018, 0.00891270861029625, 0.0580914169549942, 0.11193986237049103, 0.14723119139671326], "count": [490]}, "action": {"min": [-0.10100210458040237, -0.0687134638428688, 0.09537598490715027, -0.5576211810112, -0.4966580867767334, -0.49999701976776123, -0.5538051128387451, 0.11347317695617676, -0.08396059274673462, 0.07339654862880707, 0.25569799542427063, -0.4902547001838684, -0.4660842716693878, 0.6448500752449036], "max": [-0.0718861073255539, -0.05723275989294052, 0.13170823454856873, 0.5783780813217163, 0.5284929871559143, 0.7180918455123901, 0.7941761612892151, 0.15962252020835876, -0.07032172381877899, 0.08904760330915451, 0.4708139896392822, -0.22551769018173218, -0.3161695897579193, 0.8205355405807495], "mean": [-0.0849764496088028, -0.061737995594739914, 0.11787324398756027, -0.029096893966197968, 0.1274641901254654, -0.051584817469120026, 0.3968830406665802, 0.13112495839595795, -0.077532559633255, 0.08321213722229004, 0.369396448135376, -0.33905941247940063, -0.39867478609085083, 0.7603240013122559], "std": [0.008799804374575615, 0.0028691005427390337, 0.012018811888992786, 0.42150619626045227, 0.41113534569740295, 0.5083369016647339, 0.46650102734565735, 0.01574893668293953, 0.004448180552572012, 0.003693646751344204, 0.05953852832317352, 0.06979227066040039, 0.032649148255586624, 0.04548247903585434], "count": [490]}, "timestamp": {"min": [0.0], "max": [16.3], "mean": [8.15], "std": [4.715017379489591], "count": [490]}, "frame_index": {"min": [0], "max": [489], "mean": [244.5], "std": [141.45052138468773], "count": [490]}, "episode_index": {"min": [47], "max": [47], "mean": [47.0], "std": [0.0], "count": [490]}, "index": {"min": [23524], "max": [24013], "mean": [23768.5], "std": [141.45052138468773], "count": [490]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [490]}}} +{"episode_index": 48, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5787152015250545]], [[0.5393600245098039]], [[0.4847590168845316]]], "std": [[[0.284716320149403]], [[0.27453049597612533]], [[0.27926175729888436]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5992629493464052]], [[0.5648175816993464]], [[0.513435288671024]]], "std": [[[0.2610250990844465]], [[0.243238395703355]], [[0.2638290768992419]]], "count": [100]}, "observation.state": {"min": [0.5978708267211914, -0.06799093633890152, 0.13019807636737823, -1.3740981817245483, 0.22982259094715118, 0.3997296392917633, -0.5902021527290344, -0.2926684021949768, 0.1246214285492897, 0.405750036239624, 0.37889301776885986, -0.3217928409576416], "max": [0.7764126658439636, 0.055341098457574844, 0.13907377421855927, -0.14552481472492218, 0.7449421882629395, 0.6393043398857117, -0.2415361851453781, -0.1955241560935974, 0.15079092979431152, 0.9641543626785278, 0.755599856376648, -0.01586155965924263], "mean": [0.7020463943481445, -0.0039288694970309734, 0.13452385365962982, -0.8359315991401672, 0.4766789674758911, 0.5220920443534851, -0.4563339352607727, -0.24782027304172516, 0.13830433785915375, 0.7960162162780762, 0.5735942125320435, -0.12751533091068268], "std": [0.056212663650512695, 0.03943183273077011, 0.0024780440144240856, 0.4399382770061493, 0.17484845221042633, 0.07550779730081558, 0.1174369677901268, 0.028475861996412277, 0.009205561131238937, 0.18851904571056366, 0.12919117510318756, 0.07524021714925766], "count": [322]}, "action": {"min": [-0.1017494797706604, -0.07286032289266586, 0.1025824025273323, -0.44566982984542847, -0.5062651634216309, -0.5803356766700745, -0.5637628436088562, 0.12070856243371964, -0.08900920301675797, 0.07445582002401352, 0.20367495715618134, -0.42537039518356323, -0.6051435470581055, 0.7008560299873352], "max": [-0.07471994310617447, -0.057773660868406296, 0.13127462565898895, 0.6470797657966614, 0.38826507329940796, 0.7526107430458069, 0.6606600284576416, 0.17003867030143738, -0.07064346224069595, 0.08679662644863129, 0.42876261472702026, -0.24349233508110046, -0.36926722526550293, 0.7868012189865112], "mean": [-0.08340346068143845, -0.065127894282341, 0.11648211628198624, 0.3514080047607422, -0.22891440987586975, 0.36144593358039856, -0.03662881255149841, 0.14057143032550812, -0.08061601221561432, 0.08206062763929367, 0.33919718861579895, -0.32964128255844116, -0.44666916131973267, 0.748529314994812], "std": [0.008494105190038681, 0.004146091174334288, 0.010136039927601814, 0.3791801333427429, 0.3426205515861511, 0.5195485353469849, 0.40128394961357117, 0.016641752794384956, 0.006446224171668291, 0.003434485523030162, 0.07539309561252594, 0.058016132563352585, 0.08254367113113403, 0.024672068655490875], "count": [322]}, "timestamp": {"min": [0.0], "max": [10.7], "mean": [5.35], "std": [3.0984315028378115], "count": [322]}, "frame_index": {"min": [0], "max": [321], "mean": [160.5], "std": [92.95294508513435], "count": [322]}, "episode_index": {"min": [48], "max": [48], "mean": [48.0], "std": [0.0], "count": [322]}, "index": {"min": [24014], "max": [24335], "mean": [24174.5], "std": [92.95294508513435], "count": [322]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [322]}}} +{"episode_index": 49, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5794178839869282]], [[0.5400067837690632]], [[0.48528639705882354]]], "std": [[[0.28430078666737746]], [[0.2737248057250222]], [[0.2778909665183218]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5997651034858388]], [[0.565697679738562]], [[0.5142872276688454]]], "std": [[[0.259886069708961]], [[0.24195691285086274]], [[0.2620695751273508]]], "count": [100]}, "observation.state": {"min": [0.5888969898223877, -0.08925162255764008, 0.12894974648952484, -1.5517055988311768, -0.07255397737026215, 0.3156108856201172, -0.6520457863807678, -0.31189030408859253, 0.1245332807302475, 1.1553915739059448, 0.17284516990184784, 0.060879651457071304], "max": [0.7663885354995728, 0.04347899183630943, 0.13728229701519012, 0.8182101845741272, 0.7095533609390259, 0.9930039048194885, -0.3620571494102478, -0.21167239546775818, 0.1498602032661438, 1.4613292217254639, 0.5372546911239624, 0.36759886145591736], "mean": [0.6936887502670288, -0.023243283852934837, 0.13317729532718658, -0.4065384864807129, 0.393110454082489, 0.6641378402709961, -0.514918863773346, -0.2544631063938141, 0.1377209573984146, 1.3076529502868652, 0.37380921840667725, 0.27076560258865356], "std": [0.059643324464559555, 0.04181146249175072, 0.002326695481315255, 0.8923806548118591, 0.1828433722257614, 0.198733851313591, 0.09228633344173431, 0.02984178066253662, 0.008829041384160519, 0.08087325841188431, 0.11904734373092651, 0.08786540478467941], "count": [426]}, "action": {"min": [-0.10452516376972198, -0.07778517156839371, 0.10134552419185638, -0.554022490978241, -0.4463745057582855, -0.49138572812080383, -0.5553320050239563, 0.11503741890192032, -0.08959276974201202, 0.06761123239994049, 0.1611127406358719, -0.4233003258705139, -0.35407695174217224, 0.8091864585876465], "max": [-0.0741693452000618, -0.06367623805999756, 0.12825393676757812, 0.6124759912490845, 0.5424452424049377, 0.7462204098701477, 0.823243260383606, 0.155750572681427, -0.07284370809793472, 0.0823400691151619, 0.35381704568862915, -0.2488580048084259, -0.19427211582660675, 0.8962482213973999], "mean": [-0.08621291816234589, -0.06914716958999634, 0.11517901718616486, 0.05077522620558739, 0.042242567986249924, 0.15142874419689178, 0.35707995295524597, 0.13459517061710358, -0.08169706165790558, 0.07724829763174057, 0.24262072145938873, -0.3284972310066223, -0.26620450615882874, 0.8682301044464111], "std": [0.010188130661845207, 0.004100835416465998, 0.010364070534706116, 0.48023927211761475, 0.4157180190086365, 0.4940302073955536, 0.4446162283420563, 0.013149112462997437, 0.00552302086725831, 0.003386857220903039, 0.052147895097732544, 0.05341004207730293, 0.048006121069192886, 0.025671232491731644], "count": [426]}, "timestamp": {"min": [0.0], "max": [14.166666666666666], "mean": [7.083333333333333], "std": [4.099175617211434], "count": [426]}, "frame_index": {"min": [0], "max": [425], "mean": [212.5], "std": [122.97526851634302], "count": [426]}, "episode_index": {"min": [49], "max": [49], "mean": [49.0], "std": [0.0], "count": [426]}, "index": {"min": [24336], "max": [24761], "mean": [24548.5], "std": [122.97526851634302], "count": [426]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [426]}}} +{"episode_index": 50, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5806962033125097]], [[0.5443973913383647]], [[0.49056444167599517]]], "std": [[[0.2806822257400785]], [[0.2729562515197294]], [[0.2802583190787486]]], "count": [181]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6065324209487355]], [[0.5753638584961301]], [[0.5251611854379566]]], "std": [[[0.25891089165175085]], [[0.24167692235714375]], [[0.2654860214473112]]], "count": [181]}, "observation.state": {"min": [0.7756867408752441, 0.022117910906672478, 0.13840876519680023, -1.762444019317627, 0.0277372095733881, -0.13074785470962524, -0.6308468580245972, -0.1891142725944519, 0.12208718061447144, 0.8744070529937744, 0.17257189750671387, -0.6452370882034302], "max": [0.864366888999939, 0.10723014920949936, 0.15875014662742615, -0.9180225729942322, 0.5852141380310059, 0.9177036881446838, -0.4301176071166992, -0.042104341089725494, 0.141569122672081, 1.534091591835022, 0.7449421882629395, 0.43254759907722473], "mean": [0.8080118298530579, 0.0666327252984047, 0.15152637660503387, -1.3217703104019165, 0.2974080741405487, 0.3926977217197418, -0.5142974853515625, -0.09658438712358475, 0.13141551613807678, 1.3075443506240845, 0.3650886118412018, 0.13592970371246338], "std": [0.017561381682753563, 0.021629484370350838, 0.005648497492074966, 0.19866271317005157, 0.12789548933506012, 0.23585696518421173, 0.042978428304195404, 0.033418431878089905, 0.004461470991373062, 0.12831516563892365, 0.1359620988368988, 0.23146533966064453], "count": [1026]}, "action": {"min": [-0.06774219870567322, -0.06332790851593018, 0.10828017443418503, 0.3787168860435486, -0.5678368210792542, 0.5583587288856506, -0.3547854423522949, 0.12748835980892181, -0.0671544224023819, 0.06688271462917328, 0.10199932754039764, -0.550674557685852, -0.31306853890419006, 0.6539970636367798], "max": [-0.05121864378452301, -0.0472743958234787, 0.13287177681922913, 0.6486973166465759, -0.1216396763920784, 0.8985509872436523, 0.04762081056833267, 0.1445910632610321, -0.05637823045253754, 0.09961219877004623, 0.4188865125179291, -0.26368626952171326, -0.15305432677268982, 0.932959258556366], "mean": [-0.05747721716761589, -0.05456499382853508, 0.12186683714389801, 0.5109707713127136, -0.36129024624824524, 0.7459864616394043, -0.15624116361141205, 0.13666096329689026, -0.06255587190389633, 0.08646656572818756, 0.21946215629577637, -0.35680195689201355, -0.2489556521177292, 0.8650417327880859], "std": [0.0041895173490047455, 0.004065282642841339, 0.005315127316862345, 0.06979344040155411, 0.08472470939159393, 0.08458074927330017, 0.09092729538679123, 0.0034464376512914896, 0.0021495595574378967, 0.006822907365858555, 0.07958949357271194, 0.05908067151904106, 0.037405770272016525, 0.05502685531973839], "count": [1026]}, "timestamp": {"min": [0.0], "max": [34.166666666666664], "mean": [17.083333333333332], "std": [9.872684913811815], "count": [1026]}, "frame_index": {"min": [0], "max": [1025], "mean": [512.5], "std": [296.18054741435446], "count": [1026]}, "episode_index": {"min": [50], "max": [50], "mean": [50.0], "std": [0.0], "count": [1026]}, "index": {"min": [24762], "max": [25787], "mean": [25274.5], "std": [296.18054741435446], "count": [1026]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1026]}}} +{"episode_index": 51, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5638566639433552]], [[0.5287029221132898]], [[0.4759237037037037]]], "std": [[[0.28545569272882193]], [[0.2763929309432518]], [[0.2826838022506874]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5912971895424837]], [[0.561064855664488]], [[0.5123874482570806]]], "std": [[[0.26563062890405825]], [[0.24670889285771752]], [[0.2685315619135505]]], "count": [100]}, "observation.state": {"min": [0.7968624830245972, -0.03581804037094116, 0.14369633793830872, -1.672067642211914, -0.47153255343437195, 0.05599556118249893, -0.5872520208358765, -0.22749626636505127, 0.1256299465894699, 1.277011752128601, -0.16860944032669067, 0.40047645568847656], "max": [0.8969259262084961, 0.06222977861762047, 0.15783756971359253, -0.7443993091583252, 0.31194111704826355, 1.1496018171310425, -0.4728243052959442, -0.09416328370571136, 0.13963766396045685, 1.5452052354812622, 0.24170997738838196, 0.6345463991165161], "mean": [0.8336585164070129, 0.033713631331920624, 0.14953184127807617, -1.1291494369506836, -0.06191612035036087, 0.42603787779808044, -0.533126175403595, -0.152155339717865, 0.13284353911876678, 1.4289171695709229, -0.06554336845874786, 0.5275317430496216], "std": [0.028611980378627777, 0.02654092013835907, 0.004489649087190628, 0.32377389073371887, 0.2359577864408493, 0.2997105121612549, 0.0369359515607357, 0.036357246339321136, 0.004171512555330992, 0.08697124570608139, 0.13235017657279968, 0.05313531309366226], "count": [441]}, "action": {"min": [-0.0663321241736412, -0.07047943025827408, 0.10091870278120041, -0.5699645280838013, -0.6241836547851562, -0.6171827912330627, -0.37467101216316223, 0.13102838397026062, -0.07879575341939926, 0.0751766636967659, 0.015856625512242317, -0.3452933728694916, -0.20646819472312927, 0.913794755935669], "max": [-0.048441722989082336, -0.051138315349817276, 0.12551328539848328, 0.5766938924789429, 0.7004940509796143, 0.9149315357208252, 0.24857380986213684, 0.14412789046764374, -0.06298834830522537, 0.091741181910038, 0.1509934812784195, -0.08001253753900528, -0.0977412685751915, 0.9814457893371582], "mean": [-0.05705051124095917, -0.05996819585561752, 0.11564505100250244, 0.2035098373889923, -0.2871626019477844, 0.5896099209785461, -0.16031667590141296, 0.13722120225429535, -0.07050074636936188, 0.08354099094867706, 0.09143803268671036, -0.171411395072937, -0.15041351318359375, 0.9644337892532349], "std": [0.005797355901449919, 0.004859662614762783, 0.0055185342207551, 0.32403284311294556, 0.39313405752182007, 0.4594602584838867, 0.17923396825790405, 0.004179487470537424, 0.004741986282169819, 0.00515028228983283, 0.03382810950279236, 0.08061683923006058, 0.03741370141506195, 0.021389124915003777], "count": [441]}, "timestamp": {"min": [0.0], "max": [14.666666666666666], "mean": [7.333333333333333], "std": [4.243513568660693], "count": [441]}, "frame_index": {"min": [0], "max": [440], "mean": [220.0], "std": [127.30540705982078], "count": [441]}, "episode_index": {"min": [51], "max": [51], "mean": [51.0], "std": [0.0], "count": [441]}, "index": {"min": [25788], "max": [26228], "mean": [26008.0], "std": [127.30540705982078], "count": [441]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [441]}}} +{"episode_index": 52, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5779570618015392]], [[0.5422057804736603]], [[0.48872524137552703]]], "std": [[[0.2813437110244364]], [[0.27362302615457246]], [[0.2810723158121659]]], "count": [139]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.605353781680538]], [[0.5740270587451608]], [[0.5247211564082068]]], "std": [[[0.25925619024004615]], [[0.2423397500648645]], [[0.2660010624144662]]], "count": [139]}, "observation.state": {"min": [0.713750422000885, -0.010433410294353962, 0.13618692755699158, -1.5900788307189941, -0.4017113149166107, -0.14448389410972595, -0.6229851245880127, -0.16529737412929535, 0.12082070857286453, 0.6915574073791504, -0.36563926935195923, -0.1471041440963745], "max": [0.8834188580513, 0.12459857016801834, 0.15768201649188995, 0.11386164277791977, 0.5920459628105164, 1.403022050857544, -0.3411826193332672, -0.004780369810760021, 0.1473272442817688, 1.3646621704101562, 0.709826648235321, 0.6666087508201599], "mean": [0.81878662109375, 0.05718214437365532, 0.1475895494222641, -1.039001703262329, 0.14425228536128998, 0.5258208513259888, -0.47906193137168884, -0.052200254052877426, 0.13159406185150146, 1.1487069129943848, 0.038128722459077835, 0.43928131461143494], "std": [0.042185693979263306, 0.03622746467590332, 0.005272704642266035, 0.44248315691947937, 0.14221802353858948, 0.33581820130348206, 0.06177312880754471, 0.030996249988675117, 0.005787956062704325, 0.12348509579896927, 0.2389620542526245, 0.1685471385717392], "count": [722]}, "action": {"min": [-0.07668105512857437, -0.06826332211494446, 0.10316908359527588, -0.5659559965133667, -0.6231377720832825, -0.6265971064567566, -0.559025764465332, 0.12295177578926086, -0.07563763111829758, 0.08102034032344818, 0.00498811062425375, -0.376529723405838, -0.5066608786582947, 0.7569292187690735], "max": [-0.049748506397008896, -0.039279159158468246, 0.13562244176864624, 0.7392643690109253, 0.6632553339004517, 0.8272339701652527, 0.5785419940948486, 0.1538468301296234, -0.05276910215616226, 0.10994919389486313, 0.28292128443717957, 0.03388572111725807, -0.11645666509866714, 0.9839544892311096], "mean": [-0.05982426553964615, -0.054873205721378326, 0.11818268150091171, 0.3427281081676483, -0.3049708306789398, 0.5728850364685059, -0.16024556756019592, 0.14239558577537537, -0.060565028339624405, 0.09242106974124908, 0.10064387321472168, -0.12853384017944336, -0.2829795479774475, 0.9354391694068909], "std": [0.008126940578222275, 0.005769231356680393, 0.00745850196108222, 0.31630322337150574, 0.3358352780342102, 0.4053187668323517, 0.24194657802581787, 0.0067629385739564896, 0.004427462350577116, 0.005173614714294672, 0.056697115302085876, 0.08644989877939224, 0.0738043412566185, 0.04573154076933861], "count": [722]}, "timestamp": {"min": [0.0], "max": [24.033333333333335], "mean": [12.016666666666666], "std": [6.94744157546103], "count": [722]}, "frame_index": {"min": [0], "max": [721], "mean": [360.5], "std": [208.42324726383092], "count": [722]}, "episode_index": {"min": [52], "max": [52], "mean": [52.0], "std": [0.0], "count": [722]}, "index": {"min": [26229], "max": [26950], "mean": [26589.5], "std": [208.42324726383092], "count": [722]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [722]}}} +{"episode_index": 53, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5677076282567822]], [[0.5329708195302474]], [[0.4801668830393649]]], "std": [[[0.28388110961590646]], [[0.27507109658210993]], [[0.28186136007935214]]], "count": [146]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5964493762497389]], [[0.5663547915360969]], [[0.5175248698033247]]], "std": [[[0.2629477725432525]], [[0.24415835701304608]], [[0.2668030988320535]]], "count": [146]}, "observation.state": {"min": [0.8032954931259155, -0.019739309325814247, 0.1248534694314003, -2.1289820671081543, 0.0038258200511336327, 0.0636431872844696, -0.5860396027565002, -0.22979764640331268, 0.11765258014202118, 0.8809074759483337, -0.023228200152516365, -0.3756523132324219], "max": [0.8943696618080139, 0.07917346060276031, 0.15763145685195923, -0.877342700958252, 0.5028223395347595, 0.6548717021942139, -0.3666444718837738, -0.04198849946260452, 0.1395106166601181, 1.2321381568908691, 0.5936855673789978, 0.4735269546508789], "mean": [0.8385270833969116, 0.03390320762991905, 0.14352113008499146, -1.5323675870895386, 0.24450398981571198, 0.29433825612068176, -0.4753298759460449, -0.11475169658660889, 0.12815143167972565, 1.0523425340652466, 0.24978609383106232, 0.15982569754123688], "std": [0.02343738079071045, 0.021310238167643547, 0.00786396861076355, 0.3544082045555115, 0.15314151346683502, 0.12008120119571686, 0.05964517593383789, 0.048834849148988724, 0.006193223409354687, 0.0985560268163681, 0.17189057171344757, 0.22941644489765167], "count": [771]}, "action": {"min": [-0.07342934608459473, -0.06452631205320358, 0.0964764729142189, 0.3868366777896881, -0.48880860209465027, 0.6222893595695496, -0.36152809858322144, 0.13512036204338074, -0.07726608216762543, 0.07217054069042206, 0.12650522589683533, -0.41450271010398865, -0.41621652245521545, 0.7365426421165466], "max": [-0.050401438027620316, -0.042380861937999725, 0.1258467137813568, 0.6380975842475891, -0.20337426662445068, 0.8807632327079773, 0.21293072402477264, 0.1545632928609848, -0.05457334965467453, 0.09901101142168045, 0.4840899109840393, -0.11212196201086044, -0.2548869848251343, 0.9336268305778503], "mean": [-0.059470899403095245, -0.056087493896484375, 0.11045538634061813, 0.5027255415916443, -0.31588736176490784, 0.7750235199928284, -0.08144211769104004, 0.14344550669193268, -0.06397928297519684, 0.08561965823173523, 0.23722298443317413, -0.2304622381925583, -0.33665427565574646, 0.8707331418991089], "std": [0.005479743704199791, 0.00543229328468442, 0.007380169816315174, 0.0670093223452568, 0.06837005168199539, 0.07168805599212646, 0.16088718175888062, 0.005208805203437805, 0.00513413967564702, 0.008519699797034264, 0.08372870832681656, 0.08277896791696548, 0.04530983418226242, 0.05642945319414139], "count": [771]}, "timestamp": {"min": [0.0], "max": [25.666666666666668], "mean": [12.833333333333334], "std": [7.418944718808784], "count": [771]}, "frame_index": {"min": [0], "max": [770], "mean": [385.0], "std": [222.5683415642635], "count": [771]}, "episode_index": {"min": [53], "max": [53], "mean": [53.0], "std": [0.0], "count": [771]}, "index": {"min": [26951], "max": [27721], "mean": [27336.0], "std": [222.5683415642635], "count": [771]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [771]}}} +{"episode_index": 54, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5837188316993464]], [[0.5466327968409586]], [[0.4926367919389978]]], "std": [[[0.2776410649606848]], [[0.2708668133405582]], [[0.2783606870566638]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6109968763616558]], [[0.5783227205882353]], [[0.5287515631808279]]], "std": [[[0.25418498031131037]], [[0.23873988223682505]], [[0.26229600914259055]]], "count": [100]}, "observation.state": {"min": [0.7102056741714478, 0.008495010435581207, 0.13088122010231018, -1.798930048942566, -0.17257189750671387, 0.020700819790363312, -0.5773283243179321, -0.13473080098628998, 0.11029742658138275, 0.8318400382995605, 0.33831197023391724, -0.043241750448942184], "max": [0.9418490529060364, 0.13895513117313385, 0.15844811499118805, -0.8102419376373291, 0.46470072865486145, 0.6726248264312744, -0.40838584303855896, 0.2040732204914093, 0.13357101380825043, 1.103807806968689, 0.7390668392181396, 0.295056015253067], "mean": [0.8097679615020752, 0.06514454632997513, 0.14250688254833221, -1.267866849899292, 0.051586803048849106, 0.3516870141029358, -0.49118345975875854, -0.006102712359279394, 0.12130056321620941, 0.9677892327308655, 0.5247485637664795, 0.12820056080818176], "std": [0.06408984214067459, 0.028315462172031403, 0.007892869412899017, 0.31840622425079346, 0.17135635018348694, 0.15118129551410675, 0.04356962814927101, 0.10489498823881149, 0.00733436644077301, 0.08565373718738556, 0.10756820440292358, 0.11523685604333878], "count": [418]}, "action": {"min": [-0.08540645986795425, -0.06245114654302597, 0.09195636212825775, 0.2621132433414459, -0.5547913908958435, 0.6255917549133301, -0.42969635128974915, 0.13232383131980896, -0.06262417882680893, 0.07133743166923523, 0.07987304776906967, -0.4396927058696747, -0.4768657088279724, 0.7572353482246399], "max": [-0.04714180901646614, -0.040530767291784286, 0.13033808767795563, 0.6443204283714294, -0.2355973869562149, 0.8886512517929077, 0.030787082388997078, 0.15346913039684296, -0.028872666880488396, 0.10686524212360382, 0.2702483832836151, -0.24107690155506134, -0.35154828429222107, 0.855181097984314], "mean": [-0.06497848778963089, -0.05330921709537506, 0.11652994900941849, 0.397226482629776, -0.39344239234924316, 0.7806200385093689, -0.1855919361114502, 0.14353038370609283, -0.0467422790825367, 0.08579121530056, 0.15978313982486725, -0.34543904662132263, -0.42727845907211304, 0.8151378631591797], "std": [0.012856129556894302, 0.005344664677977562, 0.007841447368264198, 0.09843439608812332, 0.10145720094442368, 0.062754325568676, 0.14029158651828766, 0.005350376944988966, 0.008787681348621845, 0.011422676965594292, 0.05280325561761856, 0.058471713215112686, 0.03163377568125725, 0.03026128187775612], "count": [418]}, "timestamp": {"min": [0.0], "max": [13.9], "mean": [6.95], "std": [4.022195365165093], "count": [418]}, "frame_index": {"min": [0], "max": [417], "mean": [208.5], "std": [120.66586095495279], "count": [418]}, "episode_index": {"min": [54], "max": [54], "mean": [54.0], "std": [0.0], "count": [418]}, "index": {"min": [27722], "max": [28139], "mean": [27930.5], "std": [120.66586095495279], "count": [418]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [418]}}} +{"episode_index": 55, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5704130746187364]], [[0.535700522875817]], [[0.4824451552287582]]], "std": [[[0.2801184895785746]], [[0.2733093070156277]], [[0.28102723979109157]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5974543899782135]], [[0.5674625190631808]], [[0.518372903050109]]], "std": [[[0.2585888347298836]], [[0.2425853708415332]], [[0.2661656271917615]]], "count": [100]}, "observation.state": {"min": [0.7958353757858276, -0.013005079701542854, 0.1327063888311386, -1.690100908279419, -0.11627765744924545, -0.06130756065249443, -0.6593669056892395, -0.10218720138072968, 0.1082117035984993, 0.8786008358001709, 0.06531225144863129, 0.07837501168251038], "max": [0.8916281461715698, 0.09122864156961441, 0.1573009043931961, -0.7452380657196045, 0.3981587588787079, 0.807288646697998, -0.41840994358062744, 0.007962140254676342, 0.12864771485328674, 1.239477276802063, 0.34692007303237915, 0.2709861695766449], "mean": [0.835776150226593, 0.0489073246717453, 0.14454247057437897, -1.4397289752960205, 0.06834510713815689, 0.29572078585624695, -0.558201014995575, -0.04320196062326431, 0.11832819133996964, 1.0420911312103271, 0.20139314234256744, 0.14107316732406616], "std": [0.023467008024454117, 0.021434636786580086, 0.006517334375530481, 0.21199579536914825, 0.17076367139816284, 0.1812843382358551, 0.06994864344596863, 0.0387713722884655, 0.006632855627685785, 0.10758700966835022, 0.09803401678800583, 0.045306846499443054], "count": [397]}, "action": {"min": [-0.06923917680978775, -0.06349914520978928, 0.10007309913635254, 0.3369792103767395, -0.5444861650466919, 0.5706310272216797, -0.3994816839694977, 0.1279265135526657, -0.05838916450738907, 0.06487514823675156, 0.17069318890571594, -0.3669391870498657, -0.43475791811943054, 0.8469314575195312], "max": [-0.048994485288858414, -0.04468483477830887, 0.12759168446063995, 0.5993134379386902, -0.19257591664791107, 0.8902797698974609, -0.018403759226202965, 0.15605641901493073, -0.04333379119634628, 0.0866311565041542, 0.3077232241630554, -0.19695010781288147, -0.2878102660179138, 0.890528678894043], "mean": [-0.059948910027742386, -0.05478200688958168, 0.11378365755081177, 0.4237636625766754, -0.34599408507347107, 0.812274694442749, -0.11743668466806412, 0.13960596919059753, -0.050198059529066086, 0.07883285731077194, 0.23432953655719757, -0.2505229711532593, -0.352222204208374, 0.8665738701820374], "std": [0.005399917718023062, 0.004747134633362293, 0.005943170748651028, 0.08040197938680649, 0.07923310250043869, 0.08481649309396744, 0.08482369035482407, 0.008381351828575134, 0.005193277262151241, 0.005091289523988962, 0.04460148885846138, 0.0543416291475296, 0.047652438282966614, 0.01022634282708168], "count": [397]}, "timestamp": {"min": [0.0], "max": [13.2], "mean": [6.6], "std": [3.820122162095518], "count": [397]}, "frame_index": {"min": [0], "max": [396], "mean": [198.0], "std": [114.60366486286553], "count": [397]}, "episode_index": {"min": [55], "max": [55], "mean": [55.0], "std": [0.0], "count": [397]}, "index": {"min": [28140], "max": [28536], "mean": [28338.0], "std": [114.60366486286553], "count": [397]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [397]}}} +{"episode_index": 56, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5674975816993464]], [[0.5332971105664488]], [[0.4802257053376906]]], "std": [[[0.27858483841477716]], [[0.2727773297306623]], [[0.28053844961213553]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5946832107843137]], [[0.5651293654684095]], [[0.5163063316993465]]], "std": [[[0.2575196245637346]], [[0.2424534773798413]], [[0.26612647110172044]]], "count": [100]}, "observation.state": {"min": [0.8239615559577942, 0.02818796969950199, 0.1340467631816864, -2.0761401653289795, -0.004372369963675737, -0.12859009206295013, -0.6576911211013794, -0.0876530185341835, 0.10866280645132065, 0.8146454095840454, 0.17270854115486145, 0.08443638682365417], "max": [0.8919602036476135, 0.11671365797519684, 0.1524048149585724, -1.222072958946228, 0.20782412588596344, 0.4249594509601593, -0.41923627257347107, -0.014835369773209095, 0.12891344726085663, 1.205297827720642, 0.4252128005027771, 0.2972015142440796], "mean": [0.8501871228218079, 0.05914798006415367, 0.14289142191410065, -1.5246202945709229, 0.05927477031946182, 0.21275214850902557, -0.5388901829719543, -0.0384291335940361, 0.11917033046483994, 1.0051281452178955, 0.2958999276161194, 0.18888035416603088], "std": [0.016498176380991936, 0.017491154372692108, 0.004442743957042694, 0.16449856758117676, 0.053387127816677094, 0.13872282207012177, 0.06542021036148071, 0.023173337802290916, 0.0062149688601493835, 0.10953277349472046, 0.08371948450803757, 0.04310654476284981], "count": [333]}, "action": {"min": [-0.06566551327705383, -0.06144131347537041, 0.10459034144878387, 0.3772347569465637, -0.3969772458076477, 0.7796459794044495, -0.24167212843894958, 0.12958990037441254, -0.05721577629446983, 0.06879426538944244, 0.1421840637922287, -0.384571373462677, -0.47647610306739807, 0.8327732086181641], "max": [-0.05365007370710373, -0.041335854679346085, 0.11814296990633011, 0.5300779938697815, -0.041801031678915024, 0.8721509575843811, 0.07789035141468048, 0.15622419118881226, -0.04532608017325401, 0.08696676045656204, 0.2492283284664154, -0.22350919246673584, -0.3113026022911072, 0.881687581539154], "mean": [-0.05932392179965973, -0.05190405249595642, 0.11191628873348236, 0.42747482657432556, -0.3051812946796417, 0.837253987789154, -0.10035296529531479, 0.1403871476650238, -0.04995284229516983, 0.08063337951898575, 0.19507087767124176, -0.26423054933547974, -0.3898734152317047, 0.8573521375656128], "std": [0.0032627617474645376, 0.004396502394229174, 0.003340408904477954, 0.03242208808660507, 0.08181288093328476, 0.020853398367762566, 0.06989465653896332, 0.008540483191609383, 0.003543747356161475, 0.0033895703963935375, 0.03449203819036484, 0.03286486119031906, 0.050530798733234406, 0.015834825113415718], "count": [333]}, "timestamp": {"min": [0.0], "max": [11.066666666666666], "mean": [5.533333333333333], "std": [3.2042795457649147], "count": [333]}, "frame_index": {"min": [0], "max": [332], "mean": [166.0], "std": [96.12838637294743], "count": [333]}, "episode_index": {"min": [56], "max": [56], "mean": [56.0], "std": [0.0], "count": [333]}, "index": {"min": [28537], "max": [28869], "mean": [28703.0], "std": [96.12838637294743], "count": [333]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [333]}}} +{"episode_index": 57, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5659630113773905]], [[0.5321544743000081]], [[0.4787508956669087]]], "std": [[[0.2798385357038597]], [[0.27348015002862885]], [[0.281252154287842]]], "count": [135]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5932680969095457]], [[0.5642821189381102]], [[0.5149707697893972]]], "std": [[[0.2591045251807369]], [[0.24338423822599042]], [[0.2673208687408108]]], "count": [135]}, "observation.state": {"min": [0.7995885610580444, 0.02282067947089672, 0.12712715566158295, -2.3686575889587402, -0.2848871052265167, 0.2096024602651596, -0.5994848608970642, -0.08187641203403473, 0.10740022361278534, 0.8855206370353699, 0.15316951274871826, 0.02222719043493271], "max": [0.905892014503479, 0.11313804239034653, 0.15588276088237762, -0.9555570483207703, 0.218071848154068, 0.6483944654464722, -0.4151509404182434, 0.13565753400325775, 0.1261860430240631, 1.2338156700134277, 0.48301002383232117, 0.32564014196395874], "mean": [0.8518579602241516, 0.06041274219751358, 0.14598579704761505, -1.6082781553268433, 0.019740961492061615, 0.43621161580085754, -0.5277422070503235, -0.029213372617959976, 0.11970580369234085, 1.03502357006073, 0.27543437480926514, 0.1735016256570816], "std": [0.029379038140177727, 0.01740412600338459, 0.005459493491798639, 0.2557878792285919, 0.08316713571548462, 0.10173998773097992, 0.05036528408527374, 0.05467524006962776, 0.004729665350168943, 0.0803624615073204, 0.10175400227308273, 0.06425750255584717], "count": [699]}, "action": {"min": [-0.06864508241415024, -0.06297017633914948, 0.1028803288936615, 0.25098684430122375, -0.5861045718193054, 0.6942192316055298, -0.33288267254829407, 0.13318756222724915, -0.05690485239028931, 0.06842023134231567, 0.12353599816560745, -0.3893958330154419, -0.44265982508659363, 0.8402639627456665], "max": [-0.04819847270846367, -0.03799188882112503, 0.12251288443803787, 0.5317078232765198, -0.18681445717811584, 0.8993302583694458, 0.31189367175102234, 0.1538112759590149, -0.03480490669608116, 0.09608429670333862, 0.26941978931427, -0.21829742193222046, -0.2807561755180359, 0.8980650305747986], "mean": [-0.057103950530290604, -0.05261150375008583, 0.11386692523956299, 0.41538360714912415, -0.3845737874507904, 0.8110109567642212, -0.012095890939235687, 0.14141519367694855, -0.049807995557785034, 0.08217409998178482, 0.1993042379617691, -0.2623511850833893, -0.37145885825157166, 0.8653199672698975], "std": [0.004394762683659792, 0.005136857740581036, 0.00527747580781579, 0.04280097037553787, 0.0551576241850853, 0.03519405052065849, 0.12474348396062851, 0.006151695270091295, 0.005365005694329739, 0.0052352300845086575, 0.043149881064891815, 0.024963434785604477, 0.04450270161032677, 0.014996320009231567], "count": [699]}, "timestamp": {"min": [0.0], "max": [23.266666666666666], "mean": [11.633333333333331], "std": [6.726123753005199], "count": [699]}, "frame_index": {"min": [0], "max": [698], "mean": [349.0], "std": [201.78371259015597], "count": [699]}, "episode_index": {"min": [57], "max": [57], "mean": [57.0], "std": [0.0], "count": [699]}, "index": {"min": [28870], "max": [29568], "mean": [29219.0], "std": [201.78371259015597], "count": [699]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [699]}}} +{"episode_index": 58, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5716493246187364]], [[0.5373623774509805]], [[0.48451364651416123]]], "std": [[[0.2799152456553628]], [[0.27366508253675675]], [[0.28124439410909985]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5989955528322439]], [[0.5693065359477124]], [[0.5210201307189543]]], "std": [[[0.2574079207652128]], [[0.24238246975086847]], [[0.2656242793947683]]], "count": [100]}, "observation.state": {"min": [0.775856614112854, -0.004625920206308365, 0.11024297773838043, -1.5414307117462158, -0.2869366407394409, -0.21734270453453064, -0.6710591316223145, -0.2227931171655655, 0.10769187659025192, 1.1667149066925049, -0.31303420662879944, -0.11260660737752914], "max": [0.9089347720146179, 0.17308960855007172, 0.15877607464790344, -0.4562853276729584, 0.35484498739242554, 1.0027159452438354, -0.5147201418876648, -0.019136929884552956, 0.13016177713871002, 1.4770559072494507, -0.1468842327594757, 0.16161200404167175], "mean": [0.8487676978111267, 0.0727374479174614, 0.13537833094596863, -1.13697350025177, 0.013254539109766483, 0.3149929344654083, -0.6156517863273621, -0.08536604791879654, 0.12215223908424377, 1.2851577997207642, -0.1980218142271042, 0.0993211418390274], "std": [0.030281463637948036, 0.03841263800859451, 0.013463666662573814, 0.22825315594673157, 0.14327706396579742, 0.29881370067596436, 0.04144557565450668, 0.04059953987598419, 0.004390418529510498, 0.06734243035316467, 0.03811471909284592, 0.06296297162771225], "count": [346]}, "action": {"min": [-0.09349236637353897, -0.0620809830725193, 0.09864813089370728, -0.5910190939903259, -0.6096397042274475, -0.6079372763633728, -0.43929818272590637, 0.12794607877731323, -0.06986928731203079, 0.05909978225827217, 0.23216558992862701, -0.2111814171075821, -0.21734017133712769, 0.8778132796287537], "max": [-0.04802587255835533, -0.03121601603925228, 0.13013015687465668, 0.5996135473251343, 0.6380116939544678, 0.9004013538360596, 0.2993472218513489, 0.14288245141506195, -0.04963766783475876, 0.08549534529447556, 0.4350281357765198, -0.05641810968518257, -0.06177544966340065, 0.9545722007751465], "mean": [-0.06564406305551529, -0.04791008308529854, 0.10874976217746735, 0.32870015501976013, -0.3239594101905823, 0.7126106023788452, -0.22185951471328735, 0.1350860893726349, -0.05628034099936485, 0.07686665654182434, 0.2961203157901764, -0.15428398549556732, -0.16994524002075195, 0.9247269630432129], "std": [0.012271697632968426, 0.007206037174910307, 0.007576229982078075, 0.22428138554096222, 0.25018301606178284, 0.3143731355667114, 0.13507990539073944, 0.005055190064013004, 0.004422551952302456, 0.004527206998318434, 0.04865189269185066, 0.03317191079258919, 0.027406850829720497, 0.01703002117574215], "count": [346]}, "timestamp": {"min": [0.0], "max": [11.5], "mean": [5.75], "std": [3.3293726469444995], "count": [346]}, "frame_index": {"min": [0], "max": [345], "mean": [172.5], "std": [99.88117940833499], "count": [346]}, "episode_index": {"min": [58], "max": [58], "mean": [58.0], "std": [0.0], "count": [346]}, "index": {"min": [29569], "max": [29914], "mean": [29741.5], "std": [99.88117940833499], "count": [346]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [346]}}} +{"episode_index": 59, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5827988017429193]], [[0.5452708197167756]], [[0.4907670315904139]]], "std": [[[0.27342605695148114]], [[0.2677772223667186]], [[0.27503247777788864]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6086490196078431]], [[0.5763287336601307]], [[0.5262754466230937]]], "std": [[[0.2501893785351147]], [[0.2359036801650232]], [[0.2590851461007488]]], "count": [100]}, "observation.state": {"min": [0.7964068055152893, 0.04308513179421425, 0.12893548607826233, -1.8391904830932617, -0.11928366124629974, 0.04520406946539879, -0.7621024250984192, -0.04332453012466431, 0.10747800022363663, 0.9167644381523132, -0.056294240057468414, -0.026363879442214966], "max": [0.9099696278572083, 0.14372006058692932, 0.15624701976776123, -1.2365416288375854, 0.21451930701732635, 0.6542008519172668, -0.49671071767807007, 0.029253710061311722, 0.1285647451877594, 1.1788768768310547, 0.20194874703884125, 0.20000842213630676], "mean": [0.8384040594100952, 0.11176522821187973, 0.14021265506744385, -1.4882293939590454, 0.00292288139462471, 0.37029555439949036, -0.6381069421768188, -0.0038316131103783846, 0.1168597936630249, 1.0551397800445557, 0.07880968600511551, 0.04481026902794838], "std": [0.03109097108244896, 0.026303166523575783, 0.008748700842261314, 0.16552893817424774, 0.0694659873843193, 0.15553176403045654, 0.04207877069711685, 0.028365962207317352, 0.0068606422282755375, 0.04228067398071289, 0.08356277644634247, 0.04944664612412453], "count": [360]}, "action": {"min": [-0.07731231302022934, -0.05963160842657089, 0.10658202320337296, 0.3508027493953705, -0.47701022028923035, 0.7117143869400024, -0.19815003871917725, 0.12293272465467453, -0.05088338255882263, 0.0648774728178978, 0.21149128675460815, -0.3669920265674591, -0.3855186700820923, 0.8396640419960022], "max": [-0.049643803387880325, -0.03772249072790146, 0.12389203161001205, 0.5338579416275024, -0.17041954398155212, 0.8973180055618286, 0.13957245647907257, 0.1496165543794632, -0.035533029586076736, 0.08434189856052399, 0.34315696358680725, -0.19267088174819946, -0.28168147802352905, 0.8804134726524353], "mean": [-0.0636722594499588, -0.043490905314683914, 0.11618317663669586, 0.4011741578578949, -0.3586506247520447, 0.828062891960144, -0.09058018028736115, 0.1338086873292923, -0.04405777156352997, 0.0762542337179184, 0.28398802876472473, -0.25603926181793213, -0.33005526661872864, 0.8613895773887634], "std": [0.00944674201309681, 0.005432531703263521, 0.004411119502037764, 0.04285594820976257, 0.07698725163936615, 0.04199889302253723, 0.08372054249048233, 0.006079041864722967, 0.00338180735707283, 0.005430128891021013, 0.03174377232789993, 0.031691666692495346, 0.02716934308409691, 0.010864591225981712], "count": [360]}, "timestamp": {"min": [0.0], "max": [11.966666666666667], "mean": [5.983333333333333], "std": [3.4640882505224098], "count": [360]}, "frame_index": {"min": [0], "max": [359], "mean": [179.5], "std": [103.92264751567228], "count": [360]}, "episode_index": {"min": [59], "max": [59], "mean": [59.0], "std": [0.0], "count": [360]}, "index": {"min": [29915], "max": [30274], "mean": [30094.5], "std": [103.92264751567228], "count": [360]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [360]}}} +{"episode_index": 60, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5720903037515584]], [[0.5359950917425416]], [[0.4826952519928973]]], "std": [[[0.28341363851443535]], [[0.2753014762674164]], [[0.28170271978268063]]], "count": [173]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5908945212638684]], [[0.5602780674247861]], [[0.5101843713400581]]], "std": [[[0.2599378558146084]], [[0.24446908713385407]], [[0.2662885857928542]]], "count": [173]}, "observation.state": {"min": [0.6797240376472473, -0.0361115001142025, 0.10145673155784607, -1.8563851118087769, -0.3689185380935669, -0.08682920038700104, -0.6343066692352295, -0.21643730998039246, 0.11863776296377182, 1.014270305633545, 0.16000133752822876, 0.23768241703510284], "max": [0.8231892585754395, 0.12859894335269928, 0.1409611701965332, 0.07884342223405838, 0.8851312398910522, 0.8709882497787476, -0.5223811268806458, -0.15087130665779114, 0.14520521461963654, 1.3348861932754517, 0.5561105608940125, 0.5987703800201416], "mean": [0.7435387969017029, 0.016089599579572678, 0.1309080272912979, -1.1732561588287354, 0.14862971007823944, 0.3126169443130493, -0.5821273326873779, -0.1888115257024765, 0.13185809552669525, 1.071041226387024, 0.3530518114566803, 0.3755103349685669], "std": [0.03194063529372215, 0.02898729406297207, 0.00767748337239027, 0.47248879075050354, 0.2688177824020386, 0.24526971578598022, 0.02835988998413086, 0.013393402099609375, 0.006493080407381058, 0.07126613706350327, 0.08850087970495224, 0.07427959144115448], "count": [967]}, "action": {"min": [-0.09865660220384598, -0.0714397057890892, 0.09544090926647186, -0.5500960350036621, -0.558363139629364, -0.6287456750869751, -0.6351706981658936, 0.11908657848834991, -0.07885981351137161, 0.06662104278802872, 0.08190976083278656, -0.3696257770061493, -0.44179463386535645, 0.8078252077102661], "max": [-0.07014039158821106, -0.03560647368431091, 0.12202996760606766, 0.7376212477684021, 0.5884785652160645, 0.9290780425071716, 0.7303386926651001, 0.14012613892555237, -0.05974269658327103, 0.08212287724018097, 0.2410580962896347, -0.19920675456523895, -0.29912441968917847, 0.8889377117156982], "mean": [-0.08113404363393784, -0.06129378825426102, 0.11226858198642731, 0.3294508159160614, -0.3033381700515747, 0.6702592968940735, -0.11556893587112427, 0.1301213949918747, -0.06951500475406647, 0.07646816968917847, 0.1825179010629654, -0.27146485447883606, -0.3899456858634949, 0.858481764793396], "std": [0.006479477509856224, 0.006882105953991413, 0.006132165435701609, 0.25260838866233826, 0.25060582160949707, 0.36942875385284424, 0.27157291769981384, 0.005369612947106361, 0.003898485330864787, 0.003752221120521426, 0.03518354520201683, 0.04075497016310692, 0.025393430143594742, 0.020052215084433556], "count": [967]}, "timestamp": {"min": [0.0], "max": [32.2], "mean": [16.099999999999998], "std": [9.304956862996313], "count": [967]}, "frame_index": {"min": [0], "max": [966], "mean": [483.0], "std": [279.14870588988947], "count": [967]}, "episode_index": {"min": [60], "max": [60], "mean": [60.0], "std": [0.0], "count": [967]}, "index": {"min": [30275], "max": [31241], "mean": [30758.0], "std": [279.14870588988947], "count": [967]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [967]}}} +{"episode_index": 61, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5758893589561429]], [[0.5384695332480818]], [[0.48419109477124184]]], "std": [[[0.2802820878498437]], [[0.27274271934248806]], [[0.27929067712300343]]], "count": [230]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5949454793028323]], [[0.5624703206403334]], [[0.5114087607748413]]], "std": [[[0.25753014617062076]], [[0.24187842133017062]], [[0.2643732259804161]]], "count": [230]}, "observation.state": {"min": [0.6993474960327148, -0.013885470107197762, 0.12519438564777374, -2.6691431999206543, -0.7815607786178589, 0.22991880774497986, -0.6425004601478577, -0.2271873652935028, 0.1118309423327446, 0.7173492908477783, 0.11245183646678925, -0.2610200047492981], "max": [0.8173199892044067, 0.08735182881355286, 0.14558503031730652, -0.5485488772392273, 0.5122502446174622, 1.0302529335021973, -0.47359660267829895, -0.10175473242998123, 0.1402248740196228, 0.932281494140625, 0.5403973460197449, 0.3952481746673584], "mean": [0.7566733360290527, 0.03363186493515968, 0.13581053912639618, -1.448192834854126, 0.0071352748200297356, 0.5027385950088501, -0.5538426041603088, -0.16116034984588623, 0.126405268907547, 0.8452287316322327, 0.35565418004989624, 0.1932087540626526], "std": [0.023123418912291527, 0.019656313583254814, 0.004039290361106396, 0.4001450538635254, 0.29603293538093567, 0.21797895431518555, 0.04667562246322632, 0.02890913002192974, 0.009015887044370174, 0.056068796664476395, 0.12090867012739182, 0.11432687938213348], "count": [1416]}, "action": {"min": [-0.08956328779459, -0.07490158081054688, 0.10758059471845627, -0.5814594626426697, -0.5850683450698853, -0.5877852439880371, -0.35702523589134216, 0.1230393797159195, -0.07765182852745056, 0.06766246259212494, 0.1705825924873352, -0.3810282051563263, -0.5273504257202148, 0.7220109105110168], "max": [-0.06620540469884872, -0.049244970083236694, 0.12436892837285995, 0.6126934289932251, 0.6163206100463867, 0.954380989074707, 0.381571501493454, 0.14956845343112946, -0.0548548549413681, 0.08740977197885513, 0.41493380069732666, -0.14245645701885223, -0.3733481764793396, 0.8595240712165833], "mean": [-0.07676678150892258, -0.059545014053583145, 0.11631987243890762, 0.3251692056655884, -0.37513116002082825, 0.7399508953094482, -0.03986336663365364, 0.1357620805501938, -0.06432880461215973, 0.07701825350522995, 0.24547165632247925, -0.2386966049671173, -0.45431461930274963, 0.8178438544273376], "std": [0.005580001510679722, 0.004305239766836166, 0.0032368102110922337, 0.2286338359117508, 0.21423959732055664, 0.2851688265800476, 0.15789493918418884, 0.00814796332269907, 0.006612577009946108, 0.0041124639101326466, 0.05787546560168266, 0.04350622370839119, 0.03835350647568703, 0.027979575097560883], "count": [1416]}, "timestamp": {"min": [0.0], "max": [47.166666666666664], "mean": [23.583333333333332], "std": [13.625462955097737], "count": [1416]}, "frame_index": {"min": [0], "max": [1415], "mean": [707.5], "std": [408.7638886529321], "count": [1416]}, "episode_index": {"min": [61], "max": [61], "mean": [61.0], "std": [0.0], "count": [1416]}, "index": {"min": [31242], "max": [32657], "mean": [31949.5], "std": [408.7638886529321], "count": [1416]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1416]}}} +{"episode_index": 62, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5839480535199489]], [[0.5444069493959199]], [[0.48827973223520604]]], "std": [[[0.2781027207797024]], [[0.2702323530940211]], [[0.27642956404949653]]], "count": [198]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6022737602055412]], [[0.56779614912744]], [[0.515246956217953]]], "std": [[[0.25519946401403565]], [[0.23880196538174925]], [[0.26030690624962943]]], "count": [198]}, "observation.state": {"min": [0.6858559250831604, 0.0022086999379098415, 0.1193714588880539, -2.6634817123413086, -0.6137711405754089, -0.09574519842863083, -0.6357817053794861, -0.08539026230573654, 0.12537458539009094, 0.634312093257904, -0.07460352778434753, -0.21095417439937592], "max": [0.7785981893539429, 0.09113597124814987, 0.14904354512691498, 0.09100543707609177, 0.5660850405693054, 0.9490885734558105, -0.4187960922718048, 0.043116018176078796, 0.1522609293460846, 0.9719128608703613, 0.3794395625591278, 0.1337641030550003], "mean": [0.7292367815971375, 0.047113630920648575, 0.1372929960489273, -1.1970694065093994, 0.14167281985282898, 0.4331055283546448, -0.5318072438240051, -0.029166871681809425, 0.14001506567001343, 0.7315575480461121, 0.08995360881090164, -0.008931271731853485], "std": [0.021230613812804222, 0.018944550305604935, 0.005579380318522453, 0.41980135440826416, 0.21092861890792847, 0.24501676857471466, 0.04903598129749298, 0.03222881630063057, 0.006326843984425068, 0.04631396010518074, 0.0895807296037674, 0.07688341289758682], "count": [1157]}, "action": {"min": [-0.09050019830465317, -0.0719161108136177, 0.110989511013031, -0.49465125799179077, -0.5936047434806824, -0.6394422650337219, -0.6375873684883118, 0.11908036470413208, -0.0699542909860611, 0.08524835109710693, 0.24162930250167847, -0.3476863503456116, -0.5108875036239624, 0.7458014488220215], "max": [-0.06842769682407379, -0.047893837094306946, 0.13102781772613525, 0.6153640151023865, 0.6033031940460205, 0.9627357125282288, 0.7499824166297913, 0.14759686589241028, -0.046684712171554565, 0.10360018163919449, 0.38160666823387146, -0.09589952230453491, -0.35949695110321045, 0.850269615650177], "mean": [-0.07859427481889725, -0.05921434983611107, 0.12081638723611832, 0.36029455065727234, -0.3596743941307068, 0.6794624328613281, -0.1057131364941597, 0.13184264302253723, -0.060174353420734406, 0.09735758602619171, 0.32666537165641785, -0.16475705802440643, -0.4487069845199585, 0.8126781582832336], "std": [0.005432948935776949, 0.004158640280365944, 0.00418508518487215, 0.20532380044460297, 0.23226387798786163, 0.33665651082992554, 0.24194009602069855, 0.0077916095033288, 0.005501905921846628, 0.0036293736193329096, 0.028422487899661064, 0.05125241354107857, 0.023868005722761154, 0.01890748366713524], "count": [1157]}, "timestamp": {"min": [0.0], "max": [38.53333333333333], "mean": [19.266666666666666], "std": [11.133233532486816], "count": [1157]}, "frame_index": {"min": [0], "max": [1156], "mean": [578.0], "std": [333.9970059746045], "count": [1157]}, "episode_index": {"min": [62], "max": [62], "mean": [62.0], "std": [0.0], "count": [1157]}, "index": {"min": [32658], "max": [33814], "mean": [33236.0], "std": [333.9970059746045], "count": [1157]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1157]}}} +{"episode_index": 63, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5829446410542536]], [[0.5420296097029598]], [[0.4849098384611297]]], "std": [[[0.2752705649176196]], [[0.26757531148387953]], [[0.2728093457556834]]], "count": [205]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6020518770923003]], [[0.5657168101386897]], [[0.5120091317285722]]], "std": [[[0.2508827503029814]], [[0.23500430043048712]], [[0.2557987250948385]]], "count": [205]}, "observation.state": {"min": [0.7014944553375244, 0.005691649857908487, 0.12362588196992874, -2.3346879482269287, -0.5272802710533142, -0.13297657668590546, -0.698413074016571, -0.12096116691827774, 0.1184433102607727, 1.2340253591537476, -0.3657759130001068, -0.21553388237953186], "max": [0.8363024592399597, 0.11357823014259338, 0.14780686795711517, -0.6586360931396484, 0.5416271090507507, 0.9032278060913086, -0.4910808503627777, 0.022480880841612816, 0.14349153637886047, 1.8500943183898926, -0.0642191469669342, 0.08627655357122421], "mean": [0.7459887266159058, 0.06030663102865219, 0.13671867549419403, -1.531204104423523, 0.10626989603042603, 0.30707672238349915, -0.6290691494941711, -0.041639816015958786, 0.1294759213924408, 1.401753544807434, -0.21980147063732147, -0.017124848440289497], "std": [0.028612228110432625, 0.02344757318496704, 0.0047547598369419575, 0.39806148409843445, 0.21147750318050385, 0.22474202513694763, 0.047559954226017, 0.02731793373823166, 0.005245486740022898, 0.12030935287475586, 0.08640563488006592, 0.06368232518434525], "count": [1214]}, "action": {"min": [-0.08848041296005249, -0.06917817890644073, 0.0999779924750328, -0.30328723788261414, -0.6301041841506958, -0.6411544680595398, -0.3485228419303894, 0.11875716596841812, -0.06786635518074036, 0.0745273157954216, 0.18702486157417297, -0.31308335065841675, -0.20565034449100494, 0.8689340949058533], "max": [-0.06330171972513199, -0.044062916189432144, 0.1298113465309143, 0.6195728182792664, 0.7738284468650818, 0.9474508166313171, 0.36803823709487915, 0.14587600529193878, -0.04493476822972298, 0.09460745751857758, 0.43597424030303955, -0.13016995787620544, 0.05061062425374985, 0.9550676345825195], "mean": [-0.07696555554866791, -0.0564880445599556, 0.11954640597105026, 0.3940066993236542, -0.28206580877304077, 0.7682587504386902, -0.048810992389917374, 0.12946751713752747, -0.05479428544640541, 0.08394516259431839, 0.3094564378261566, -0.1776825189590454, -0.11649377644062042, 0.9230863451957703], "std": [0.005469080992043018, 0.005399719811975956, 0.004960963968187571, 0.15384410321712494, 0.22742904722690582, 0.2679923474788666, 0.15931826829910278, 0.006041252054274082, 0.004331870935857296, 0.0036035783123224974, 0.04877720773220062, 0.03596564382314682, 0.053692128509283066, 0.021241584792733192], "count": [1214]}, "timestamp": {"min": [0.0], "max": [40.43333333333333], "mean": [20.216666666666665], "std": [11.681716483462521], "count": [1214]}, "frame_index": {"min": [0], "max": [1213], "mean": [606.5], "std": [350.45149450387567], "count": [1214]}, "episode_index": {"min": [63], "max": [63], "mean": [63.0], "std": [0.0], "count": [1214]}, "index": {"min": [33815], "max": [35028], "mean": [34421.5], "std": [350.45149450387567], "count": [1214]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1214]}}} +{"episode_index": 64, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5851469047776237]], [[0.5464892470456196]], [[0.49157791146761737]]], "std": [[[0.28133085266673696]], [[0.27208840414019014]], [[0.27774135335519284]]], "count": [198]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6041462734644925]], [[0.5701766755243062]], [[0.5184815530027949]]], "std": [[[0.2582083360740678]], [[0.2409891987241186]], [[0.2629233345894333]]], "count": [198]}, "observation.state": {"min": [0.6817319989204407, 0.00047880943748168647, 0.12178774178028107, -1.6655672788619995, -0.20509138703346252, -0.015096110291779041, -0.5836378335952759, -0.2521086037158966, 0.12189403921365738, 0.4441232979297638, 0.23870396614074707, -0.3464137613773346], "max": [0.7769919037818909, 0.11361684650182724, 0.15306591987609863, -0.7026709914207458, 0.5326091051101685, 0.8387547135353088, -0.40088707208633423, -0.11933167278766632, 0.14839798212051392, 1.1478427648544312, 0.7896223068237305, 0.47009021043777466], "mean": [0.7282434105873108, 0.046686429530382156, 0.1372906118631363, -1.278603196144104, 0.11289749294519424, 0.39398953318595886, -0.5093348622322083, -0.2029738873243332, 0.13632884621620178, 0.6077888011932373, 0.44522666931152344, -0.024231167510151863], "std": [0.024276619777083397, 0.020658880472183228, 0.0055753011256456375, 0.19823406636714935, 0.2001933753490448, 0.1795824021100998, 0.040867745876312256, 0.029335424304008484, 0.0052347611635923386, 0.10597379505634308, 0.11420227587223053, 0.1729024052619934], "count": [1155]}, "action": {"min": [-0.09020575881004333, -0.07256698608398438, 0.1109270378947258, 0.22438554465770721, -0.5429118275642395, 0.5925283432006836, -0.45446500182151794, 0.125489741563797, -0.08522602170705795, 0.07568300515413284, 0.06510575115680695, -0.3912590444087982, -0.5972855687141418, 0.6642138957977295], "max": [-0.06724818795919418, -0.0447218157351017, 0.13350926339626312, 0.6022002100944519, -0.22051504254341125, 0.8980408310890198, 0.010860109701752663, 0.1505526453256607, -0.06359001994132996, 0.08981100469827652, 0.480627179145813, -0.1479870229959488, -0.4286746680736542, 0.8152024149894714], "mean": [-0.07882603257894516, -0.05967385321855545, 0.1208333969116211, 0.3928922712802887, -0.4085792303085327, 0.7888184785842896, -0.16400402784347534, 0.1361769139766693, -0.0746106207370758, 0.08335379511117935, 0.3154299259185791, -0.2392241209745407, -0.5307894349098206, 0.7402437329292297], "std": [0.005800326354801655, 0.005226174369454384, 0.0042379326187074184, 0.10723920166492462, 0.06097971647977829, 0.07806739211082458, 0.09084699302911758, 0.006006934680044651, 0.004956377670168877, 0.003321436233818531, 0.0902855321764946, 0.04998389258980751, 0.037204477936029434, 0.039293669164180756], "count": [1155]}, "timestamp": {"min": [0.0], "max": [38.46666666666667], "mean": [19.233333333333334], "std": [11.113988516313157], "count": [1155]}, "frame_index": {"min": [0], "max": [1154], "mean": [577.0], "std": [333.41965548939476], "count": [1155]}, "episode_index": {"min": [64], "max": [64], "mean": [64.0], "std": [0.0], "count": [1155]}, "index": {"min": [35029], "max": [36183], "mean": [35606.0], "std": [333.41965548939476], "count": [1155]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1155]}}} +{"episode_index": 65, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5715503261615931]], [[0.53446056602494]], [[0.4799637206157863]]], "std": [[[0.28115754154659317]], [[0.2728520751778166]], [[0.27884449290678437]]], "count": [257]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5886249586734823]], [[0.5571167940371133]], [[0.505475016530607]]], "std": [[[0.25930602686048154]], [[0.24267482509766727]], [[0.2643701059190314]]], "count": [257]}, "observation.state": {"min": [0.6491265892982483, -0.003104540053755045, 0.12782326340675354, -2.101093292236328, -0.4663403630256653, -0.12041018158197403, -0.6896400451660156, -0.22669309377670288, 0.11790276318788528, 0.053680628538131714, 0.12037675827741623, -0.6302738189697266], "max": [0.807133674621582, 0.12380313128232956, 0.14949724078178406, -0.47620585560798645, 0.7863430380821228, 0.9220716953277588, -0.39186692237854004, -0.027917679399251938, 0.16718122363090515, 1.127083420753479, 0.9045336246490479, 0.45562267303466797], "mean": [0.738349974155426, 0.054875511676073074, 0.13857802748680115, -1.1325150728225708, 0.10827616602182388, 0.40031328797340393, -0.5736168026924133, -0.15476949512958527, 0.13883373141288757, 0.41281184554100037, 0.4863070249557495, -0.187385693192482], "std": [0.03715689852833748, 0.03499103710055351, 0.005284080281853676, 0.28469258546829224, 0.287895143032074, 0.19295741617679596, 0.06265988200902939, 0.033835165202617645, 0.008896177634596825, 0.20479007065296173, 0.15975429117679596, 0.23239026963710785], "count": [1639]}, "action": {"min": [-0.09576792269945145, -0.07485509663820267, 0.10666569322347641, -0.526445209980011, -0.5765511989593506, -0.5887978672981262, -0.4160569906234741, 0.102769635617733, -0.08590255677700043, 0.07034143060445786, -0.5255762934684753, -0.4606488049030304, -0.6623013019561768, -0.656889021396637], "max": [-0.06482015550136566, -0.04659326374530792, 0.13374531269073486, 0.7012678980827332, 0.6527990698814392, 0.912879228591919, 0.413396954536438, 0.15254615247249603, -0.049335043877363205, 0.09851546585559845, 0.5420773029327393, 0.39150992035865784, 0.7032243609428406, 0.8420957922935486], "mean": [-0.07694389671087265, -0.0581757016479969, 0.12103667855262756, 0.3659435212612152, -0.3954482674598694, 0.7297031879425049, -0.2085101455450058, 0.12789815664291382, -0.06841228902339935, 0.08523480594158173, 0.1084953173995018, -0.11702790856361389, -0.22338099777698517, 0.3258376121520996], "std": [0.007280344609171152, 0.0076709832064807415, 0.005990353412926197, 0.20035816729068756, 0.16810402274131775, 0.20724175870418549, 0.14970041811466217, 0.009721919894218445, 0.006843728478997946, 0.005610933993011713, 0.3306583762168884, 0.2763054072856903, 0.5532300472259521, 0.571595311164856], "count": [1639]}, "timestamp": {"min": [0.0], "max": [54.6], "mean": [27.299999999999997], "std": [15.771281917882686], "count": [1639]}, "frame_index": {"min": [0], "max": [1638], "mean": [819.0], "std": [473.13845753648053], "count": [1639]}, "episode_index": {"min": [65], "max": [65], "mean": [65.0], "std": [0.0], "count": [1639]}, "index": {"min": [36184], "max": [37822], "mean": [37003.0], "std": [473.13845753648053], "count": [1639]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1639]}}} +{"episode_index": 66, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5706248691742493]], [[0.5321684862125677]], [[0.47631371481054297]]], "std": [[[0.2824964286651617]], [[0.27465805656868686]], [[0.2802566069663659]]], "count": [204]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5879026669763766]], [[0.5550072701738648]], [[0.5017312932525951]]], "std": [[[0.2602405389166634]], [[0.24395228404160513]], [[0.2654544667329476]]], "count": [204]}, "observation.state": {"min": [0.6471495628356934, 0.014549629762768745, 0.1196618303656578, -1.825770378112793, -0.32738104462623596, -0.06173345074057579, -0.6775925755500793, -0.14608322083950043, 0.12925177812576294, 0.011742640286684036, 0.20194874703884125, -0.6621209979057312], "max": [0.8248032927513123, 0.1414881944656372, 0.15803849697113037, 0.011532950215041637, 0.5014559626579285, 0.9232683181762695, -0.40304943919181824, -0.05020549148321152, 0.15404461324214935, 1.2258473634719849, 0.6140444278717041, 0.15308569371700287], "mean": [0.7429031133651733, 0.07337531447410583, 0.1374967396259308, -1.1228113174438477, 0.09681513905525208, 0.37838098406791687, -0.5661805868148804, -0.10240619629621506, 0.1396264284849167, 0.25796252489089966, 0.35033050179481506, -0.33030569553375244], "std": [0.04571883752942085, 0.03219977393746376, 0.009222813881933689, 0.37888726592063904, 0.21286600828170776, 0.19618672132492065, 0.05239449068903923, 0.021311340853571892, 0.0056847091764211655, 0.16854743659496307, 0.09466556459665298, 0.15681038796901703], "count": [1201]}, "action": {"min": [-0.09845499694347382, -0.0729387104511261, 0.1044088676571846, -0.2751713991165161, -0.5946314334869385, -0.5949625372886658, -0.597328245639801, 0.11554837971925735, -0.07255865633487701, 0.07932291179895401, -0.485924631357193, -0.36939555406570435, -0.6454975605010986, -0.6467579007148743], "max": [-0.05938694253563881, -0.0424264557659626, 0.1339016556739807, 0.6084071397781372, 0.5970628261566162, 0.9671933650970459, 0.6708077788352966, 0.14861777424812317, -0.05452095344662666, 0.10092328488826752, 0.40343666076660156, 0.36554408073425293, 0.6879284977912903, 0.8547456860542297], "mean": [-0.07703763246536255, -0.05444859340786934, 0.12148210406303406, 0.3743639588356018, -0.3626161813735962, 0.716480553150177, -0.1885533183813095, 0.12860652804374695, -0.06466536223888397, 0.09078464657068253, -0.11304064095020294, 0.09127160906791687, 0.15455275774002075, -0.08238185197114944], "std": [0.011359932832419872, 0.00693426001816988, 0.005436899606138468, 0.14636728167533875, 0.19289354979991913, 0.27621564269065857, 0.211042121052742, 0.006111405789852142, 0.004332798067480326, 0.005898465868085623, 0.37836748361587524, 0.25555673241615295, 0.6091757416725159, 0.6071674227714539], "count": [1201]}, "timestamp": {"min": [0.0], "max": [40.0], "mean": [20.0], "std": [11.556623882239812], "count": [1201]}, "frame_index": {"min": [0], "max": [1200], "mean": [600.0], "std": [346.69871646719434], "count": [1201]}, "episode_index": {"min": [66], "max": [66], "mean": [66.0], "std": [0.0], "count": [1201]}, "index": {"min": [37823], "max": [39023], "mean": [38423.0], "std": [346.69871646719434], "count": [1201]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1201]}}} +{"episode_index": 67, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5752085297418631]], [[0.5361307899253979]], [[0.48048586683831784]]], "std": [[[0.2776822234568358]], [[0.26980874270402805]], [[0.275103395241979]]], "count": [165]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5927557767214631]], [[0.5586763979665941]], [[0.5061989073743975]]], "std": [[[0.25540840165115636]], [[0.2392293017338278]], [[0.25953775952945857]]], "count": [165]}, "observation.state": {"min": [0.6715919971466064, 0.007382929790765047, 0.12511920928955078, -2.3390913009643555, -0.5809783935546875, -0.10477112978696823, -0.6591352224349976, -0.09657277166843414, 0.12502199411392212, 0.5552589893341064, -0.15398934483528137, -0.14292317628860474], "max": [0.814562976360321, 0.12836727499961853, 0.14986668527126312, -0.5330318212509155, 0.4864259362220764, 1.1553486585617065, -0.4005241096019745, -0.016982290893793106, 0.14861316978931427, 1.3118202686309814, 0.2546904385089874, 0.30339986085891724], "mean": [0.7476567029953003, 0.06675972044467926, 0.13786983489990234, -1.2058625221252441, 0.15062978863716125, 0.38737234473228455, -0.5726892948150635, -0.05720236524939537, 0.13745152950286865, 0.7366359233856201, -0.019474556669592857, 0.13989755511283875], "std": [0.029261289164423943, 0.028774216771125793, 0.005998655222356319, 0.30643710494041443, 0.20130372047424316, 0.25222042202949524, 0.05706622079014778, 0.01896020397543907, 0.005372470244765282, 0.16480912268161774, 0.10419677942991257, 0.12899383902549744], "count": [905]}, "action": {"min": [-0.08793559670448303, -0.0712791308760643, 0.1041206493973732, -0.5782186985015869, -0.6107384562492371, -0.5986687541007996, -0.5755565762519836, 0.1146417111158371, -0.06696159392595291, 0.08263567835092545, 0.195719912648201, -0.2501974105834961, -0.51075679063797, 0.7457437515258789], "max": [-0.0620206817984581, -0.04369271174073219, 0.13052792847156525, 0.646314799785614, 0.6605724096298218, 0.9781994819641113, 0.23519891500473022, 0.14900492131710052, -0.050346359610557556, 0.10112632066011429, 0.4120837152004242, -0.0012538128066807985, -0.1863732933998108, 0.9413437843322754], "mean": [-0.07586630433797836, -0.05506577342748642, 0.12075241655111313, 0.3967193365097046, -0.3740484118461609, 0.7514177560806274, -0.1979152113199234, 0.1293114870786667, -0.061380691826343536, 0.09117740392684937, 0.3024449348449707, -0.10363034904003143, -0.43373969197273254, 0.8348654508590698], "std": [0.006324663758277893, 0.005980116780847311, 0.004974677227437496, 0.1506105363368988, 0.1570422649383545, 0.17042769491672516, 0.15003547072410583, 0.007911346852779388, 0.0031346052419394255, 0.003814336843788624, 0.047559984028339386, 0.05686835199594498, 0.07118046283721924, 0.04578316584229469], "count": [905]}, "timestamp": {"min": [0.0], "max": [30.133333333333333], "mean": [15.066666666666668], "std": [8.708361243974412], "count": [905]}, "frame_index": {"min": [0], "max": [904], "mean": [452.0], "std": [261.25083731923235], "count": [905]}, "episode_index": {"min": [67], "max": [67], "mean": [67.0], "std": [0.0], "count": [905]}, "index": {"min": [39024], "max": [39928], "mean": [39476.0], "std": [261.25083731923235], "count": [905]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [905]}}} +{"episode_index": 68, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5749064655954974]], [[0.5375614812797548]], [[0.4832518357137094]]], "std": [[[0.2805974904967336]], [[0.2723962152494193]], [[0.2778664478802766]]], "count": [216]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.592951151859921]], [[0.5605132433631889]], [[0.5094355508149762]]], "std": [[[0.2572240971430001]], [[0.24152460560178335]], [[0.26222577187023904]]], "count": [216]}, "observation.state": {"min": [0.6469565033912659, -0.03072102926671505, 0.11453370004892349, -2.7892956733703613, -0.7741824388504028, -0.5190482139587402, -0.7275509238243103, -0.258302241563797, 0.12093867361545563, 0.721333384513855, -0.24444270133972168, -0.2822216749191284], "max": [0.8378933668136597, 0.1646563857793808, 0.14724040031433105, -0.6408124566078186, 0.8117574453353882, 0.9719515442848206, -0.42858850955963135, -0.000610095914453268, 0.15541480481624603, 1.2986098527908325, 0.37219783663749695, 0.3292018175125122], "mean": [0.7297886610031128, 0.04463158920407295, 0.1337055116891861, -1.2627743482589722, 0.08929497003555298, 0.3933660387992859, -0.5744156837463379, -0.11139658838510513, 0.13443909585475922, 0.8330658674240112, 0.10094776004552841, 0.12946808338165283], "std": [0.034711845219135284, 0.03996482491493225, 0.006492143962532282, 0.3105798363685608, 0.3062944710254669, 0.29942023754119873, 0.052319273352622986, 0.05523454770445824, 0.008150516077876091, 0.09137284010648727, 0.15104496479034424, 0.18062888085842133], "count": [1298]}, "action": {"min": [-0.09935890138149261, -0.07411760091781616, 0.09580256044864655, -0.5604043006896973, -0.584700882434845, -0.5723850131034851, -0.4416431486606598, 0.11791691929101944, -0.09497340768575668, 0.0665677934885025, 0.16275812685489655, -0.3402920067310333, -0.4818064272403717, 0.7436972260475159], "max": [-0.06691109389066696, -0.034618083387613297, 0.13024337589740753, 0.7216646075248718, 0.6161085367202759, 0.9945622086524963, 0.3837512731552124, 0.1505582630634308, -0.04941050708293915, 0.09742290526628494, 0.5545016527175903, -0.029985634610056877, -0.2364652305841446, 0.8955780267715454], "mean": [-0.0814502164721489, -0.05842721834778786, 0.11812364310026169, 0.3423497974872589, -0.34443190693855286, 0.7333371639251709, -0.1394694745540619, 0.1304655224084854, -0.06490815430879593, 0.08479459583759308, 0.302364319562912, -0.16567015647888184, -0.40653669834136963, 0.8344830274581909], "std": [0.007858543656766415, 0.00807118695229292, 0.005357623100280762, 0.23469504714012146, 0.23041535913944244, 0.2808770537376404, 0.14093703031539917, 0.00757635897025466, 0.008544775657355785, 0.0057266587391495705, 0.09208988398313522, 0.08622664958238602, 0.044480033218860626, 0.040022075176239014], "count": [1298]}, "timestamp": {"min": [0.0], "max": [43.233333333333334], "mean": [21.616666666666664], "std": [12.490007116802527], "count": [1298]}, "frame_index": {"min": [0], "max": [1297], "mean": [648.5], "std": [374.7002135040758], "count": [1298]}, "episode_index": {"min": [68], "max": [68], "mean": [68.0], "std": [0.0], "count": [1298]}, "index": {"min": [39929], "max": [41226], "mean": [40577.5], "std": [374.7002135040758], "count": [1298]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1298]}}} +{"episode_index": 69, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5677751104045221]], [[0.5315311767650004]], [[0.47778349084378496]]], "std": [[[0.2823549089622378]], [[0.27442434792054227]], [[0.279882239122168]]], "count": [185]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5833880262615557]], [[0.5527831802390626]], [[0.5019746790908556]]], "std": [[[0.26162247451782794]], [[0.2452445450350288]], [[0.26571903011863635]]], "count": [185]}, "observation.state": {"min": [0.6772991418838501, -0.01065737009048462, 0.12437903136014938, -1.9517940282821655, -0.34596362709999084, -0.016819799318909645, -0.7215272188186646, -0.17720583081245422, 0.12775327265262604, 0.6078911423683167, -0.5097907781600952, 0.3187812268733978], "max": [0.8131806254386902, 0.1290854811668396, 0.1565607190132141, -0.5139500498771667, 0.612814724445343, 1.0280406475067139, -0.4487139582633972, -0.044058188796043396, 0.15103982388973236, 1.1956520080566406, -0.0486425906419754, 0.7178453803062439], "mean": [0.750789999961853, 0.05734826996922493, 0.13753673434257507, -1.3334178924560547, 0.22547127306461334, 0.46975675225257874, -0.6208519339561462, -0.1327681988477707, 0.1381513923406601, 0.7663455605506897, -0.29275810718536377, 0.516806960105896], "std": [0.02903803624212742, 0.028425240889191628, 0.006502760574221611, 0.2968321144580841, 0.20111672580242157, 0.21064423024654388, 0.047942787408828735, 0.028932301327586174, 0.005516648292541504, 0.12733693420886993, 0.10255499184131622, 0.09765630960464478], "count": [1060]}, "action": {"min": [-0.08905207365751266, -0.0698183998465538, 0.1024821549654007, -0.5712783336639404, -0.5628166198730469, -0.5609634518623352, -0.37359756231307983, 0.1112881451845169, -0.07966843247413635, 0.07247956842184067, 0.09435009211301804, -0.09204943478107452, -0.43328556418418884, 0.8642665147781372], "max": [-0.05909678339958191, -0.04233212396502495, 0.1290574073791504, 0.6414685249328613, 0.6002079844474792, 0.9493592381477356, 0.4065285921096802, 0.14582285284996033, -0.057977184653282166, 0.09415148198604584, 0.31037917733192444, 0.13880641758441925, -0.17951466143131256, 0.9585030674934387], "mean": [-0.07517174631357193, -0.05611876770853996, 0.11883370578289032, 0.41722604632377625, -0.35531121492385864, 0.7083021402359009, -0.09871605038642883, 0.12602920830249786, -0.06986314803361893, 0.08255960047245026, 0.2291693389415741, 0.05424224212765694, -0.340627521276474, 0.9053568840026855], "std": [0.007683908566832542, 0.005401673726737499, 0.004738945513963699, 0.22840526700019836, 0.21052831411361694, 0.26795145869255066, 0.14124351739883423, 0.0065672737546265125, 0.004521362483501434, 0.004812248051166534, 0.041235920041799545, 0.0601755827665329, 0.05603748559951782, 0.019521575421094894], "count": [1060]}, "timestamp": {"min": [0.0], "max": [35.3], "mean": [17.65], "std": [10.199850216765167], "count": [1060]}, "frame_index": {"min": [0], "max": [1059], "mean": [529.5], "std": [305.99550650295504], "count": [1060]}, "episode_index": {"min": [69], "max": [69], "mean": [69.0], "std": [0.0], "count": [1060]}, "index": {"min": [41227], "max": [42286], "mean": [41756.5], "std": [305.99550650295504], "count": [1060]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1060]}}} +{"episode_index": 70, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5765960436856735]], [[0.5393308142701525]], [[0.4848326536792878]]], "std": [[[0.27896653721345555]], [[0.2709409699412447]], [[0.2767082575123522]]], "count": [232]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5942515811640748]], [[0.5621122802569304]], [[0.5108953262339418]]], "std": [[[0.2561085299040594]], [[0.24015586848712725]], [[0.2614552037893077]]], "count": [232]}, "observation.state": {"min": [0.6654292941093445, 0.008286490105092525, 0.1198977530002594, -2.2879269123077393, -0.196619912981987, -0.06803815811872482, -0.6791757345199585, -0.23264732956886292, 0.1254614293575287, 0.22059382498264313, -0.2986873984336853, -0.22092173993587494], "max": [0.8110645413398743, 0.12215819209814072, 0.1496061235666275, -0.3520694077014923, 0.683455765247345, 1.3997716903686523, -0.4346354007720947, -0.06494046002626419, 0.14553965628147125, 1.4177137613296509, 0.35006269812583923, 0.4454215168952942], "mean": [0.7404754161834717, 0.06427719444036484, 0.135330930352211, -1.2113345861434937, 0.1550266593694687, 0.4834209680557251, -0.5805712938308716, -0.13010554015636444, 0.1353653222322464, 0.5263075828552246, 0.019934695214033127, 0.18132443726062775], "std": [0.03057023510336876, 0.02250479720532894, 0.005886164493858814, 0.3938356935977936, 0.17869919538497925, 0.25890016555786133, 0.0489511676132679, 0.026712847873568535, 0.005471815355122089, 0.18239395320415497, 0.14610114693641663, 0.16708596050739288], "count": [1428]}, "action": {"min": [-0.09203667938709259, -0.06799907982349396, 0.10771647840738297, -0.6103498935699463, -0.6319940686225891, -0.6341429352760315, -0.5413827896118164, 0.1170838326215744, -0.09075510501861572, 0.0756629928946495, 0.14539314806461334, -0.26208922266960144, -0.6437175273895264, 0.631415605545044], "max": [-0.06159398332238197, -0.04255201295018196, 0.13294491171836853, 0.6669538021087646, 0.7839263677597046, 0.9109002351760864, 0.45681583881378174, 0.147716224193573, -0.05135941505432129, 0.0908898115158081, 0.4648861885070801, 0.14921143651008606, -0.16181236505508423, 0.9527430534362793], "mean": [-0.07847537845373154, -0.05514751374721527, 0.11964628845453262, 0.37583667039871216, -0.3558676242828369, 0.68913334608078, -0.15193596482276917, 0.1300685554742813, -0.0676373690366745, 0.08401556313037872, 0.3232654929161072, -0.0533035509288311, -0.5053611993789673, 0.7841801047325134], "std": [0.006650658790022135, 0.004418160766363144, 0.005168014205992222, 0.22223412990570068, 0.25616753101348877, 0.2897663414478302, 0.18746227025985718, 0.0060097756795585155, 0.006422544363886118, 0.0033958281856030226, 0.05809740722179413, 0.08820974081754684, 0.08208665996789932, 0.06659158319234848], "count": [1428]}, "timestamp": {"min": [0.0], "max": [47.56666666666667], "mean": [23.78333333333334], "std": [13.740933037488421], "count": [1428]}, "frame_index": {"min": [0], "max": [1427], "mean": [713.5], "std": [412.2279911246526], "count": [1428]}, "episode_index": {"min": [70], "max": [70], "mean": [70.0], "std": [0.0], "count": [1428]}, "index": {"min": [42287], "max": [43714], "mean": [43000.5], "std": [412.2279911246526], "count": [1428]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1428]}}} +{"episode_index": 71, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5663825355268369]], [[0.5311009420182214]], [[0.4778197570063379]]], "std": [[[0.2769687145542323]], [[0.2688478214085825]], [[0.2738809999744692]]], "count": [176]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5840086047360863]], [[0.5544290360714993]], [[0.5039004072588632]]], "std": [[[0.2565713230582995]], [[0.2393770015024893]], [[0.2597355059897359]]], "count": [176]}, "observation.state": {"min": [0.7092326283454895, 0.002587120048701763, 0.12100478261709213, -2.7479867935180664, -0.5737366676330566, 0.05911489948630333, -0.6586641669273376, -0.1669500470161438, 0.12295828759670258, 0.5246442556381226, -0.14661096036434174, -0.1001625806093216], "max": [0.8523426055908203, 0.14270837604999542, 0.14836816489696503, -0.6590554714202881, 0.5462727546691895, 0.9579153656959534, -0.41000762581825256, -0.01142191980034113, 0.1410389393568039, 1.2751245498657227, 0.12078666687011719, 0.3704153597354889], "mean": [0.769711434841156, 0.06084024906158447, 0.13872848451137543, -1.347760558128357, 0.12493151426315308, 0.47648921608924866, -0.5860542058944702, -0.12283287942409515, 0.13315057754516602, 0.709048330783844, -0.04148178920149803, 0.18264999985694885], "std": [0.02341798134148121, 0.025091683492064476, 0.004416673444211483, 0.44014811515808105, 0.2677839994430542, 0.21636387705802917, 0.05275197699666023, 0.02905762381851673, 0.005099644418805838, 0.09208284318447113, 0.06518737226724625, 0.11340481787919998], "count": [991]}, "action": {"min": [-0.0821894034743309, -0.0708935484290123, 0.10150710493326187, -0.4148589074611664, -0.6473495364189148, -0.6448701024055481, -0.4400988817214966, 0.12143107503652573, -0.07399741560220718, 0.07153577357530594, 0.21419180929660797, -0.25038063526153564, -0.4988304376602173, 0.7738854885101318], "max": [-0.05957993119955063, -0.03527100384235382, 0.12417270988225937, 0.6419355273246765, 0.6964777112007141, 0.9422633647918701, 0.4086933732032776, 0.15171726047992706, -0.05555655434727669, 0.09345944225788116, 0.46283912658691406, -0.007578438147902489, -0.22521966695785522, 0.9073378443717957], "mean": [-0.07245520502328873, -0.05491108074784279, 0.11843816936016083, 0.39911219477653503, -0.36034825444221497, 0.7120600342750549, -0.10710123926401138, 0.13078512251377106, -0.06596451997756958, 0.0826706811785698, 0.32608169317245483, -0.07533644884824753, -0.43130525946617126, 0.8338671922683716], "std": [0.00546347675845027, 0.005299997515976429, 0.003685983829200268, 0.1880982369184494, 0.22341565787792206, 0.26593875885009766, 0.1906289905309677, 0.006720295641571283, 0.004493517801165581, 0.004245510790497065, 0.05045187845826149, 0.04499626159667969, 0.03485261648893356, 0.029179833829402924], "count": [991]}, "timestamp": {"min": [0.0], "max": [33.0], "mean": [16.5], "std": [9.53589709116732], "count": [991]}, "frame_index": {"min": [0], "max": [990], "mean": [495.0], "std": [286.07691273501956], "count": [991]}, "episode_index": {"min": [71], "max": [71], "mean": [71.0], "std": [0.0], "count": [991]}, "index": {"min": [43715], "max": [44705], "mean": [44210.0], "std": [286.07691273501956], "count": [991]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [991]}}} +{"episode_index": 72, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5697954872657315]], [[0.5338446008357859]], [[0.4800274465211686]]], "std": [[[0.2761446698190241]], [[0.2677281154811915]], [[0.2723539893898922]]], "count": [171]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5888572650307687]], [[0.5576207637375938]], [[0.5073639889029036]]], "std": [[[0.2547055567734011]], [[0.23798905212035432]], [[0.25762650315118363]]], "count": [171]}, "observation.state": {"min": [0.7033247351646423, -0.004656809847801924, 0.12387736141681671, -1.6047571897506714, -0.3618134558200836, 0.07797122746706009, -0.6972469687461853, -0.15131151676177979, 0.11948683112859726, 0.7068647742271423, -0.075833261013031, -0.23853622376918793], "max": [0.8411214351654053, 0.11131546646356583, 0.15078705549240112, -0.44747835397720337, 0.7076404094696045, 1.0971033573150635, -0.4661441743373871, -0.02155414968729019, 0.13879117369651794, 1.4497963190078735, 0.3327098786830902, 0.24996128678321838], "mean": [0.7659658193588257, 0.04503685235977173, 0.13626350462436676, -1.274268627166748, 0.2041681408882141, 0.5301573276519775, -0.5749121308326721, -0.0928695946931839, 0.12963254749774933, 0.8385233879089355, 0.07243344932794571, 0.0817190483212471], "std": [0.030681660398840904, 0.028329947963356972, 0.005455719772726297, 0.24059779942035675, 0.2359335720539093, 0.2129756659269333, 0.049048684537410736, 0.02528783679008484, 0.005792645271867514, 0.1640775352716446, 0.08611574023962021, 0.11956622451543808], "count": [950]}, "action": {"min": [-0.08689641952514648, -0.0695657953619957, 0.09858447313308716, -0.5864775776863098, -0.590100109577179, -0.5277729034423828, -0.49552059173583984, 0.11882472783327103, -0.06749576330184937, 0.06823761761188507, 0.18553832173347473, -0.3261929154396057, -0.45462459325790405, 0.7595083117485046], "max": [-0.06400762498378754, -0.04522603750228882, 0.12967662513256073, 0.6915648579597473, 0.6347482800483704, 0.8893367648124695, 0.3824973702430725, 0.1473006010055542, -0.05057689920067787, 0.08934500813484192, 0.4455711543560028, -0.08423736691474915, -0.14608268439769745, 0.940998911857605], "mean": [-0.07414452731609344, -0.056802574545145035, 0.11541499197483063, 0.410934180021286, -0.3970666229724884, 0.6948310732841492, -0.11382590979337692, 0.13295303285121918, -0.06074744090437889, 0.08319062739610672, 0.3188946545124054, -0.16844657063484192, -0.4014733135700226, 0.8350003957748413], "std": [0.006821679417043924, 0.004870785865932703, 0.005225042812526226, 0.2277519553899765, 0.2101900726556778, 0.24686312675476074, 0.143985778093338, 0.006459069903939962, 0.004367108456790447, 0.0039411201141774654, 0.052436087280511856, 0.05918532982468605, 0.06375662237405777, 0.03477798402309418], "count": [950]}, "timestamp": {"min": [0.0], "max": [31.633333333333333], "mean": [15.816666666666665], "std": [9.141374197691626], "count": [950]}, "frame_index": {"min": [0], "max": [949], "mean": [474.5], "std": [274.2412259307488], "count": [950]}, "episode_index": {"min": [72], "max": [72], "mean": [72.0], "std": [0.0], "count": [950]}, "index": {"min": [44706], "max": [45655], "mean": [45180.5], "std": [274.2412259307488], "count": [950]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [950]}}} +{"episode_index": 73, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5780221379364906]], [[0.5401479427587298]], [[0.48516707744550336]]], "std": [[[0.27249636929187204]], [[0.2644768125797374]], [[0.2693988194683068]]], "count": [179]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5974396702815205]], [[0.5644839978822069]], [[0.5127059964581736]]], "std": [[[0.24995606778356538]], [[0.23341554917999155]], [[0.2537808303159247]]], "count": [179]}, "observation.state": {"min": [0.6755228638648987, 0.010935390368103981, 0.12004294246435165, -2.2763941287994385, -0.35170236229896545, -0.28037717938423157, -0.6761638522148132, -0.11011844873428345, 0.11792480200529099, 0.3644411265850067, -0.21574902534484863, 0.00791092962026596], "max": [0.8285102248191833, 0.1366305947303772, 0.14930279552936554, -0.7907407879829407, 0.5108838677406311, 1.0005158185958862, -0.5188440680503845, -0.01869674026966095, 0.13978414237499237, 1.259817123413086, -0.019402379170060158, 0.23863272368907928], "mean": [0.7670238614082336, 0.0740288496017456, 0.1369057148694992, -1.2206025123596191, 0.06686483323574066, 0.46200525760650635, -0.5960994362831116, -0.05411691218614578, 0.1281338930130005, 0.4979505240917206, -0.126458078622818, 0.12311205267906189], "std": [0.030912309885025024, 0.02936217002570629, 0.005824604071676731, 0.28282028436660767, 0.17348089814186096, 0.2302427589893341, 0.03729657828807831, 0.018185289576649666, 0.005381331779062748, 0.18633925914764404, 0.038356661796569824, 0.057710226625204086], "count": [1012]}, "action": {"min": [-0.08740270882844925, -0.06680504977703094, 0.1066114753484726, -0.5447792410850525, -0.6140355467796326, -0.6122191548347473, -0.417074590921402, 0.12243649363517761, -0.06456050276756287, 0.0729999914765358, 0.2832562029361725, -0.21597500145435333, -0.5586802363395691, 0.7282605767250061], "max": [-0.06317552179098129, -0.037333305925130844, 0.128041073679924, 0.6269552707672119, 0.6377801299095154, 0.9477155208587646, 0.2684207260608673, 0.14443928003311157, -0.04861209914088249, 0.09114501625299454, 0.4522673189640045, 0.019991781562566757, -0.20753802359104156, 0.9147213697433472], "mean": [-0.07445266097784042, -0.05289597809314728, 0.11898304522037506, 0.3711485266685486, -0.39439699053764343, 0.7285871505737305, -0.1728242039680481, 0.13232779502868652, -0.056875020265579224, 0.08328606933355331, 0.3628930449485779, -0.02719547040760517, -0.5025339126586914, 0.77762770652771], "std": [0.0060473172925412655, 0.005921945441514254, 0.0051738121546804905, 0.16976529359817505, 0.2125195562839508, 0.2387673258781433, 0.1224660575389862, 0.005494249053299427, 0.003745804540812969, 0.0032532571349292994, 0.03329004719853401, 0.0529511421918869, 0.07130861282348633, 0.036414340138435364], "count": [1012]}, "timestamp": {"min": [0.0], "max": [33.7], "mean": [16.85], "std": [9.737969786128705], "count": [1012]}, "frame_index": {"min": [0], "max": [1011], "mean": [505.5], "std": [292.13909358386115], "count": [1012]}, "episode_index": {"min": [73], "max": [73], "mean": [73.0], "std": [0.0], "count": [1012]}, "index": {"min": [45656], "max": [46667], "mean": [46161.5], "std": [292.13909358386115], "count": [1012]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1012]}}} +{"episode_index": 74, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5729316922421143]], [[0.5365100525717533]], [[0.4827611162419879]]], "std": [[[0.2741540872663915]], [[0.2663819105220239]], [[0.27158589198847116]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5916635901139844]], [[0.5600726749234315]], [[0.5096929821445486]]], "std": [[[0.2527436708392042]], [[0.23678946470593792]], [[0.2571725829896136]]], "count": [138]}, "observation.state": {"min": [0.7292730808258057, 0.014904869720339775, 0.12348976731300354, -2.924126148223877, -0.6337200999259949, 0.055647190660238266, -0.6467016339302063, -0.11860573291778564, 0.12143255770206451, 0.16984884440898895, -0.29335856437683105, -0.619522750377655], "max": [0.8256759643554688, 0.12570291757583618, 0.15397202968597412, -0.6590554714202881, 0.6110384464263916, 0.97882080078125, -0.39646193385124207, -0.025199279189109802, 0.14175967872142792, 0.7943055033683777, -0.05902697145938873, 0.029169179499149323], "mean": [0.775420069694519, 0.06754811853170395, 0.13855446875095367, -1.3682235479354858, 0.036809373646974564, 0.45643460750579834, -0.5536500811576843, -0.05897189676761627, 0.13185948133468628, 0.41895702481269836, -0.1758379191160202, -0.21582907438278198], "std": [0.02506711147725582, 0.02825024165213108, 0.006632228381931782, 0.39455318450927734, 0.2560737431049347, 0.25602108240127563, 0.04098165035247803, 0.016933917999267578, 0.00468396907672286, 0.1295642852783203, 0.04939289018511772, 0.17653203010559082], "count": [719]}, "action": {"min": [-0.08429171144962311, -0.07064848393201828, 0.10576379299163818, -0.5754985213279724, -0.5911303758621216, -0.5830127596855164, -0.3678363859653473, 0.12750017642974854, -0.06871708482503891, 0.07717312127351761, 0.3787167966365814, -0.2251669317483902, -0.5967677235603333, 0.5408424735069275], "max": [-0.05840986222028732, -0.04125530272722244, 0.12756182253360748, 0.6548976302146912, 0.6133240461349487, 0.9751793742179871, 0.45105594396591187, 0.15239791572093964, -0.05009017884731293, 0.09597133100032806, 0.6634910106658936, 0.03164215385913849, -0.39537328481674194, 0.7992681264877319], "mean": [-0.07238294929265976, -0.053895555436611176, 0.11865639686584473, 0.32987070083618164, -0.3367918133735657, 0.7165201306343079, -0.08329394459724426, 0.13491518795490265, -0.060894351452589035, 0.08777409046888351, 0.4949626922607422, -0.06655370444059372, -0.5140385627746582, 0.6866729855537415], "std": [0.006597660481929779, 0.006332081276923418, 0.004801398608833551, 0.24450859427452087, 0.26039138436317444, 0.31880250573158264, 0.1679116040468216, 0.005021828226745129, 0.0038508945144712925, 0.0035582678392529488, 0.06916787475347519, 0.04559343680739403, 0.04353388771414757, 0.07790382206439972], "count": [719]}, "timestamp": {"min": [0.0], "max": [23.933333333333334], "mean": [11.966666666666667], "std": [6.918574034197124], "count": [719]}, "frame_index": {"min": [0], "max": [718], "mean": [359.0], "std": [207.55722102591372], "count": [719]}, "episode_index": {"min": [74], "max": [74], "mean": [74.0], "std": [0.0], "count": [719]}, "index": {"min": [46668], "max": [47386], "mean": [47027.0], "std": [207.55722102591372], "count": [719]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [719]}}} +{"episode_index": 75, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5692428947724728]], [[0.5315030633408416]], [[0.4756956922442549]]], "std": [[[0.2762496007765803]], [[0.26829305644772294]], [[0.27282359589817684]]], "count": [177]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5872614240611499]], [[0.5543352781162685]], [[0.5017618287113967]]], "std": [[[0.25443340682325705]], [[0.23819703171102075]], [[0.2574713348432121]]], "count": [177]}, "observation.state": {"min": [0.7090550065040588, -0.013970419764518738, 0.11573795974254608, -2.426532030105591, -0.6371359825134277, -0.14057305455207825, -0.7160981297492981, -0.10147670656442642, 0.12576216459274292, 0.7546741366386414, -0.40020832419395447, 0.1828765571117401], "max": [0.8281781673431396, 0.09615574777126312, 0.14707577228546143, -0.2308686226606369, 0.4953072965145111, 1.2424858808517456, -0.5844873189926147, 0.04273759946227074, 0.14888149499893188, 1.294416069984436, -0.09468909353017807, 0.4621860384941101], "mean": [0.7591936588287354, 0.04778525233268738, 0.13614009320735931, -1.1477205753326416, 0.08678994327783585, 0.5309200882911682, -0.6501346230506897, -0.05403359234333038, 0.13805758953094482, 0.8474822640419006, -0.26614707708358765, 0.3294953405857086], "std": [0.02394026145339012, 0.0296475812792778, 0.005537895020097494, 0.40270236134529114, 0.2669374942779541, 0.2862495481967926, 0.033325646072626114, 0.02608015015721321, 0.005698344204574823, 0.08244924247264862, 0.07418625056743622, 0.06038957089185715], "count": [994]}, "action": {"min": [-0.09106877446174622, -0.07136943936347961, 0.10201109945774078, -0.5669037699699402, -0.5835536122322083, -0.5889313220977783, -0.5541406869888306, 0.11004091799259186, -0.06796153634786606, 0.07541044056415558, 0.17049840092658997, -0.18671847879886627, -0.4119749069213867, 0.8592736721038818], "max": [-0.06440293043851852, -0.04444597661495209, 0.12968809902668, 0.6157689094543457, 0.7610641717910767, 0.972366213798523, 0.49241960048675537, 0.13255903124809265, -0.04834763705730438, 0.09506424516439438, 0.3456978499889374, 0.03177160769701004, -0.19531574845314026, 0.9397913813591003], "mean": [-0.07573608309030533, -0.05718780681490898, 0.11691786348819733, 0.31671667098999023, -0.30007076263427734, 0.6157476305961609, -0.09340687841176987, 0.12219023704528809, -0.06012267991900444, 0.08672687411308289, 0.26698747277259827, -0.027537399902939796, -0.34694862365722656, 0.8962903022766113], "std": [0.005291107576340437, 0.00582098076120019, 0.004963522776961327, 0.28169679641723633, 0.36948859691619873, 0.38918164372444153, 0.2333238422870636, 0.005274869967252016, 0.0043737324886024, 0.00403759628534317, 0.030493704602122307, 0.046987541019916534, 0.030530018731951714, 0.013407936319708824], "count": [994]}, "timestamp": {"min": [0.0], "max": [33.1], "mean": [16.55], "std": [9.564764619279568], "count": [994]}, "frame_index": {"min": [0], "max": [993], "mean": [496.5], "std": [286.94293857838704], "count": [994]}, "episode_index": {"min": [75], "max": [75], "mean": [75.0], "std": [0.0], "count": [994]}, "index": {"min": [47387], "max": [48380], "mean": [47883.5], "std": [286.94293857838704], "count": [994]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [994]}}} +{"episode_index": 76, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5710708410144685]], [[0.5336183355678453]], [[0.47817813529970393]]], "std": [[[0.2771770230709278]], [[0.26885247881965973]], [[0.27378844316131246]]], "count": [195]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.588758256521982]], [[0.555966098262667]], [[0.5042578333612647]]], "std": [[[0.2552872544478572]], [[0.2392679433643471]], [[0.25877038687679865]]], "count": [195]}, "observation.state": {"min": [0.6479295492172241, -0.013769630342721939, 0.11538147926330566, -2.455678939819336, -0.6506630182266235, -0.09775502979755402, -0.7217897772789001, -0.194303959608078, 0.12444902956485748, 0.4852225184440613, -0.32943060994148254, 0.046967290341854095], "max": [0.8451604247093201, 0.18666617572307587, 0.15088815987110138, -0.3694736659526825, 0.5159394145011902, 1.1762685775756836, -0.552430272102356, -0.005784329958260059, 0.1432037502527237, 1.4476994276046753, 0.002049549948424101, 0.5137984156608582], "mean": [0.7555551528930664, 0.06502717733383179, 0.13981148600578308, -1.078281044960022, 0.1439289152622223, 0.6445015072822571, -0.6519894599914551, -0.09684891998767853, 0.13298116624355316, 0.8429538011550903, -0.19080142676830292, 0.32961055636405945], "std": [0.027633871883153915, 0.03531424701213837, 0.007059572730213404, 0.353607177734375, 0.28003352880477905, 0.28260716795921326, 0.03168926388025284, 0.03686150535941124, 0.004736810922622681, 0.15072724223136902, 0.08765404671430588, 0.1216689944267273], "count": [1132]}, "action": {"min": [-0.09132474660873413, -0.07104440778493881, 0.09923425316810608, -0.5936692953109741, -0.6552740335464478, -0.6565566658973694, -0.5421589016914368, 0.11499182879924774, -0.07560516893863678, 0.07156804949045181, 0.16441957652568817, -0.2667311728000641, -0.5247811079025269, 0.8026484251022339], "max": [-0.063603974878788, -0.030671309679746628, 0.13210006058216095, 0.6564168930053711, 0.7627820372581482, 0.9704651832580566, 0.42878255248069763, 0.13510581851005554, -0.04844387620687485, 0.0890941470861435, 0.4598909616470337, 0.05253284424543381, -0.14385412633419037, 0.9421843886375427], "mean": [-0.07361436635255814, -0.05546516552567482, 0.12090403586626053, 0.3095453977584839, -0.25523707270622253, 0.4822642207145691, -0.10234171897172928, 0.12491682171821594, -0.061763305217027664, 0.08037598431110382, 0.2709446847438812, -0.05190528929233551, -0.3574961721897125, 0.884941816329956], "std": [0.006941073574125767, 0.007288199383765459, 0.004815199878066778, 0.33981651067733765, 0.44038745760917664, 0.48571401834487915, 0.22505280375480652, 0.003947571851313114, 0.00472617382183671, 0.004642185755074024, 0.06921275705099106, 0.05489342287182808, 0.061610881239175797, 0.03700684383511543], "count": [1132]}, "timestamp": {"min": [0.0], "max": [37.7], "mean": [18.849999999999998], "std": [10.89267082848728], "count": [1132]}, "frame_index": {"min": [0], "max": [1131], "mean": [565.5], "std": [326.7801248546184], "count": [1132]}, "episode_index": {"min": [76], "max": [76], "mean": [76.0], "std": [0.0], "count": [1132]}, "index": {"min": [48381], "max": [49512], "mean": [48946.5], "std": [326.7801248546184], "count": [1132]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1132]}}} +{"episode_index": 77, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5734986697035717]], [[0.5366558757509737]], [[0.4824648263682577]]], "std": [[[0.2787023875543103]], [[0.27053580938172517]], [[0.2756403361435068]]], "count": [165]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5920231019343765]], [[0.5603000577672147]], [[0.5092946920182214]]], "std": [[[0.2566340486649045]], [[0.24022730804937337]], [[0.26110145006481794]]], "count": [165]}, "observation.state": {"min": [0.6925514936447144, 0.022874729707837105, 0.11741536110639572, -2.675433874130249, -0.4857427477836609, 0.09144160896539688, -0.6764882206916809, -0.17268803715705872, 0.11845886707305908, -0.8423244953155518, -0.6428747177124023, -0.2468191236257553], "max": [0.8325337767601013, 0.13129417598247528, 0.15008315443992615, -0.5540008544921875, 0.44311216473579407, 1.0321805477142334, -0.4745542109012604, -0.04549461975693703, 0.15160630643367767, 1.3508225679397583, 0.16915598511695862, 0.46023955941200256], "mean": [0.7697482705116272, 0.07338336855173111, 0.13584206998348236, -1.2702901363372803, 0.0656517744064331, 0.48939746618270874, -0.5874854922294617, -0.11767939478158951, 0.13162508606910706, 0.2942502796649933, -0.22346779704093933, 0.15176154673099518], "std": [0.030818961560726166, 0.030466832220554352, 0.007007034495472908, 0.37725088000297546, 0.2391144037246704, 0.2196362465620041, 0.05324699729681015, 0.03355061635375023, 0.00712441885843873, 0.5828977823257446, 0.18327413499355316, 0.19021159410476685], "count": [907]}, "action": {"min": [-0.08998533338308334, -0.06624802201986313, 0.103920117020607, -0.47108179330825806, -0.6365365386009216, -0.6401416659355164, -0.41657131910324097, 0.12250670045614243, -0.08399078249931335, 0.07010606676340103, -0.6180435419082642, -0.34271320700645447, -0.6221261620521545, -0.6190463900566101], "max": [-0.06209319457411766, -0.03888021036982536, 0.12921442091464996, 0.592998743057251, 0.6643927693367004, 0.9547566175460815, 0.3920517563819885, 0.14359641075134277, -0.049823034554719925, 0.0901327133178711, 0.4943296015262604, 0.12980124354362488, 0.7616815567016602, 0.892372190952301], "mean": [-0.07488854974508286, -0.05246461555361748, 0.11780291050672531, 0.3465636074542999, -0.3351794183254242, 0.6798754930496216, -0.10943806916475296, 0.13154368102550507, -0.06563545018434525, 0.08072824031114578, 0.09944053739309311, -0.053202901035547256, -0.12094820290803909, 0.5044500231742859], "std": [0.007543704938143492, 0.006266183685511351, 0.005113218445330858, 0.23502665758132935, 0.28768494725227356, 0.3485967218875885, 0.18390551209449768, 0.005137191154062748, 0.0073323678225278854, 0.004819024819880724, 0.3988768756389618, 0.1414506435394287, 0.5231736302375793, 0.5151321887969971], "count": [907]}, "timestamp": {"min": [0.0], "max": [30.2], "mean": [15.1], "std": [8.727606264670234], "count": [907]}, "frame_index": {"min": [0], "max": [906], "mean": [453.0], "std": [261.828187940107], "count": [907]}, "episode_index": {"min": [77], "max": [77], "mean": [77.0], "std": [0.0], "count": [907]}, "index": {"min": [49513], "max": [50419], "mean": [49966.0], "std": [261.828187940107], "count": [907]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [907]}}} +{"episode_index": 78, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5749531420206971]], [[0.536518070874183]], [[0.4806019914215686]]], "std": [[[0.2746233902630027]], [[0.2668289421039315]], [[0.2712111167725555]]], "count": [160]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5948699533632897]], [[0.5606345860566448]], [[0.5082048985566449]]], "std": [[[0.25111162841017587]], [[0.23559107836850152]], [[0.25520287886694215]]], "count": [160]}, "observation.state": {"min": [0.7028613686561584, 0.01621001958847046, 0.12120699882507324, -1.6877943277359009, -0.5226346254348755, -0.03507201001048088, -0.7216970920562744, -0.10985588282346725, 0.11604517698287964, 0.7437702417373657, -0.28761982917785645, -0.0719158723950386], "max": [0.8435772657394409, 0.1430945247411728, 0.14677761495113373, -0.2933562397956848, 0.4700295627117157, 1.1013227701187134, -0.5281499624252319, -0.019994160160422325, 0.1422937512397766, 1.5428986549377441, 0.07323715835809708, 0.3679942190647125], "mean": [0.7621798515319824, 0.06989075988531113, 0.13632798194885254, -1.1415574550628662, -0.014495670795440674, 0.6278548240661621, -0.6638959646224976, -0.06083885580301285, 0.12724994122982025, 0.9025700688362122, -0.08634558320045471, 0.18064668774604797], "std": [0.03183681517839432, 0.03064688667654991, 0.004915013909339905, 0.3432901203632355, 0.254188597202301, 0.29278507828712463, 0.03934060037136078, 0.025652065873146057, 0.006137356627732515, 0.16309095919132233, 0.09706297516822815, 0.12277467548847198], "count": [874]}, "action": {"min": [-0.08723858743906021, -0.06594862788915634, 0.10554943233728409, -0.5683180093765259, -0.6380292177200317, -0.6311368942260742, -0.5914084911346436, 0.11338801681995392, -0.06540398299694061, 0.06754438579082489, 0.1861051470041275, -0.2859474718570709, -0.4430103600025177, 0.7830101251602173], "max": [-0.06106358394026756, -0.03784482181072235, 0.12830254435539246, 0.6124261617660522, 0.7658292055130005, 0.9658089876174927, 0.41927585005760193, 0.14261974394321442, -0.045474763959646225, 0.08803408592939377, 0.4195789396762848, -0.03665485233068466, -0.10815347731113434, 0.9339215159416199], "mean": [-0.07593484222888947, -0.05414927005767822, 0.11885537207126617, 0.21098344027996063, -0.2734375596046448, 0.5161734223365784, -0.06265345215797424, 0.12631618976593018, -0.05432819575071335, 0.07842288166284561, 0.29615598917007446, -0.14241062104701996, -0.36212754249572754, 0.8643048405647278], "std": [0.006578791420906782, 0.005474741570651531, 0.005146369803696871, 0.33509865403175354, 0.44431421160697937, 0.5048277974128723, 0.2140088975429535, 0.005709424614906311, 0.004029134288430214, 0.004508318845182657, 0.058181971311569214, 0.06494083255529404, 0.06723153591156006, 0.04158623144030571], "count": [874]}, "timestamp": {"min": [0.0], "max": [29.1], "mean": [14.55], "std": [8.41006341632848], "count": [874]}, "frame_index": {"min": [0], "max": [873], "mean": [436.5], "std": [252.3019024898544], "count": [874]}, "episode_index": {"min": [78], "max": [78], "mean": [78.0], "std": [0.0], "count": [874]}, "index": {"min": [50420], "max": [51293], "mean": [50856.5], "std": [252.3019024898544], "count": [874]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [874]}}} +{"episode_index": 79, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5791935198362499]], [[0.5394224053868859]], [[0.4831224260313444]]], "std": [[[0.2718812025658552]], [[0.2645884813361807]], [[0.26920304393441774]]], "count": [124]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5996671212839975]], [[0.5644974545821912]], [[0.5115110974945534]]], "std": [[[0.2473432379149214]], [[0.23244875798562725]], [[0.2527394492159265]]], "count": [124]}, "observation.state": {"min": [0.7109934091567993, 0.012186470441520214, 0.1251438409090042, -2.056429386138916, -0.6375458836555481, 0.1069653332233429, -0.7527502179145813, -0.17057199776172638, 0.1159142479300499, 0.6871539354324341, -0.257149875164032, -0.23564322292804718], "max": [0.8391830325126648, 0.16722805798053741, 0.14745168387889862, -0.32334187626838684, 0.3239651322364807, 1.3990287780761719, -0.5344903469085693, -0.002672069938853383, 0.13912302255630493, 1.3833245038986206, 0.037984948605298996, 0.18537640571594238], "mean": [0.7740296721458435, 0.09916332364082336, 0.13538168370723724, -1.2883371114730835, -0.025789638981223106, 0.5618552565574646, -0.6750134825706482, -0.06467558443546295, 0.12539683282375336, 0.9566732048988342, -0.10555504262447357, 0.04620825871825218], "std": [0.028395231813192368, 0.029680633917450905, 0.006343611981719732, 0.37883225083351135, 0.23889023065567017, 0.27139467000961304, 0.053045354783535004, 0.029134120792150497, 0.007402361836284399, 0.21992534399032593, 0.07702061533927917, 0.09791336208581924], "count": [621]}, "action": {"min": [-0.08484344929456711, -0.06347750127315521, 0.10897375643253326, -0.6220157742500305, -0.6390792727470398, -0.6334842443466187, -0.34488236904144287, 0.11557071655988693, -0.06215986981987953, 0.0655461773276329, 0.20008964836597443, -0.2955562174320221, -0.44564908742904663, 0.725787878036499], "max": [-0.06515244394540787, -0.032691046595573425, 0.1297275424003601, 0.6410415172576904, 0.681600034236908, 0.9818989038467407, 0.36936429142951965, 0.14332063496112823, -0.041543688625097275, 0.0837167352437973, 0.5205000638961792, -0.10548318922519684, -0.18672576546669006, 0.916837215423584], "mean": [-0.07559353858232498, -0.04827374219894409, 0.11967974156141281, 0.2975328266620636, -0.3554142415523529, 0.6964319944381714, -0.09043321758508682, 0.1266547590494156, -0.05361363664269447, 0.07625674456357956, 0.35035380721092224, -0.1736248880624771, -0.328546404838562, 0.8493722081184387], "std": [0.00514938123524189, 0.006842941511422396, 0.00578139116987586, 0.26108232140541077, 0.2895575761795044, 0.3366585671901703, 0.1631333827972412, 0.006487495731562376, 0.005739013198763132, 0.005388036835938692, 0.07253571599721909, 0.06497791409492493, 0.0779053196310997, 0.046686120331287384], "count": [621]}, "timestamp": {"min": [0.0], "max": [20.666666666666668], "mean": [10.333333333333334], "std": [5.975567538519451], "count": [621]}, "frame_index": {"min": [0], "max": [620], "mean": [310.0], "std": [179.26702615558352], "count": [621]}, "episode_index": {"min": [79], "max": [79], "mean": [79.0], "std": [0.0], "count": [621]}, "index": {"min": [51294], "max": [51914], "mean": [51604.0], "std": [179.26702615558352], "count": [621]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [621]}}} +{"episode_index": 80, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5556826300085251]], [[0.5214157407407407]], [[0.46745094013450794]]], "std": [[[0.2865925953683776]], [[0.2773905886183017]], [[0.28198586298913203]]], "count": [115]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5715276948943828]], [[0.5435358150989864]], [[0.49241211992043193]]], "std": [[[0.2667465194103225]], [[0.24923197520853477]], [[0.2685314330326979]]], "count": [115]}, "observation.state": {"min": [0.6831297874450684, 0.020658310502767563, 0.12900160253047943, -2.243053436279297, -0.46934637427330017, 0.08475001901388168, -0.6514666080474854, -0.14844636619091034, 0.1396545171737671, 0.6586360931396484, -0.3553915321826935, 0.20874537527561188], "max": [0.8305644989013672, 0.14165036380290985, 0.15855053067207336, -0.7521578073501587, 0.30114686489105225, 1.1114881038665771, -0.5107043385505676, -0.06685569882392883, 0.16058051586151123, 0.9316524267196655, 0.012980470433831215, 0.5134466886520386], "mean": [0.7667041420936584, 0.08188928663730621, 0.1411162167787552, -1.1849288940429688, -0.06590115278959274, 0.4994189739227295, -0.5962109565734863, -0.10577515512704849, 0.15058831870555878, 0.7818465232849121, -0.2094135582447052, 0.35792818665504456], "std": [0.038370002061128616, 0.03273201361298561, 0.0063341837376356125, 0.3602389991283417, 0.19735346734523773, 0.2818792164325714, 0.03387292101979256, 0.017713559791445732, 0.0055578164756298065, 0.0834786668419838, 0.09148953855037689, 0.06307587772607803], "count": [561]}, "action": {"min": [-0.08407175540924072, -0.06827739626169205, 0.10938464850187302, -0.553160548210144, -0.6144396662712097, -0.625006914138794, -0.3531220257282257, 0.1138758584856987, -0.07921505719423294, 0.08364146947860718, 0.18456947803497314, -0.10424941778182983, -0.4285695254802704, 0.845615565776825], "max": [-0.058108218014240265, -0.038354258984327316, 0.13475953042507172, 0.5559212565422058, 0.6589871644973755, 0.9617161154747009, 0.31748729944229126, 0.13263794779777527, -0.06262374669313431, 0.09975095093250275, 0.3473263680934906, 0.08396504819393158, -0.29079023003578186, 0.9266417026519775], "mean": [-0.0724973976612091, -0.05343072861433029, 0.12286297976970673, 0.18602527678012848, -0.27357053756713867, 0.5961351990699768, -0.12631076574325562, 0.12087313830852509, -0.07375328987836838, 0.09468673169612885, 0.2684802711009979, -6.718138320138678e-05, -0.36788108944892883, 0.8869731426239014], "std": [0.007880027405917645, 0.006994853261858225, 0.005746981594711542, 0.30928781628608704, 0.3908992409706116, 0.4836689233779907, 0.19189952313899994, 0.005549057852476835, 0.003946763928979635, 0.0037917611189186573, 0.03972692787647247, 0.04255465790629387, 0.042790960520505905, 0.02528657205402851], "count": [561]}, "timestamp": {"min": [0.0], "max": [18.666666666666668], "mean": [9.333333333333334], "std": [5.398216440708981], "count": [561]}, "frame_index": {"min": [0], "max": [560], "mean": [280.0], "std": [161.94649322126944], "count": [561]}, "episode_index": {"min": [80], "max": [80], "mean": [80.0], "std": [0.0], "count": [561]}, "index": {"min": [51915], "max": [52475], "mean": [52195.0], "std": [161.94649322126944], "count": [561]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [561]}}} +{"episode_index": 81, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5608132824634373]], [[0.5258865499682064]], [[0.47228940853321655]]], "std": [[[0.28254280363524514]], [[0.27366896483970543]], [[0.2784005059335137]]], "count": [209]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5771716363844847]], [[0.5477809297828649]], [[0.49710228966653114]]], "std": [[[0.2630856588199465]], [[0.24588525081421925]], [[0.265535357112712]]], "count": [209]}, "observation.state": {"min": [0.7145304083824158, -0.015059329569339752, 0.12411198765039444, -1.9763277769088745, -0.4834199547767639, -0.1338644027709961, -0.673823893070221, -0.19384059309959412, 0.12779216468334198, 0.7242690324783325, -0.20891721546649933, 0.14091065526008606], "max": [0.8411059975624084, 0.11213407665491104, 0.14888538420200348, 0.3157930374145508, 0.43259117007255554, 0.7522084712982178, -0.4789484441280365, -0.054144080728292465, 0.14678668975830078, 1.3109815120697021, 0.28092464804649353, 0.620733380317688], "mean": [0.7717636227607727, 0.05702278017997742, 0.13822278380393982, -1.18910551071167, 0.09067986160516739, 0.24600785970687866, -0.6040393114089966, -0.12669646739959717, 0.1376134306192398, 0.9296365976333618, -0.019830001518130302, 0.44339731335639954], "std": [0.02121812477707863, 0.02228795923292637, 0.0049682073295116425, 0.536518931388855, 0.15344549715518951, 0.18652895092964172, 0.039928991347551346, 0.038241781294345856, 0.00423866230994463, 0.08126312494277954, 0.12411728501319885, 0.11333554238080978], "count": [1244]}, "action": {"min": [-0.08453123271465302, -0.06978164613246918, 0.09976726770401001, -0.21586555242538452, -0.5846655368804932, -0.6302622556686401, -0.6457532048225403, 0.1149081438779831, -0.07558543980121613, 0.07553238421678543, 0.08055627346038818, -0.25367629528045654, -0.4804094731807709, 0.8324320316314697], "max": [-0.06357027590274811, -0.04264834523200989, 0.12835745513439178, 0.5664036273956299, 0.5002835392951965, 0.9813603162765503, 0.7886214256286621, 0.14085400104522705, -0.0578736886382103, 0.09460175782442093, 0.29952171444892883, -0.03400058299303055, -0.2720646262168884, 0.9347425103187561], "mean": [-0.07252757996320724, -0.055760644376277924, 0.11776302754878998, 0.3468196392059326, -0.27789294719696045, 0.6796706914901733, -0.10253870487213135, 0.1263587474822998, -0.06783727556467056, 0.0842345729470253, 0.18765980005264282, -0.09656243771314621, -0.3630123734474182, 0.9034355878829956], "std": [0.005346877966076136, 0.004365035332739353, 0.003953969106078148, 0.17557109892368317, 0.23841987550258636, 0.38890311121940613, 0.30184587836265564, 0.005281919613480568, 0.004224191419780254, 0.005016013979911804, 0.039263322949409485, 0.0561225526034832, 0.045369166880846024, 0.027109581977128983], "count": [1244]}, "timestamp": {"min": [0.0], "max": [41.43333333333333], "mean": [20.716666666666665], "std": [11.970391713631503], "count": [1244]}, "frame_index": {"min": [0], "max": [1243], "mean": [621.5], "std": [359.1117514089451], "count": [1244]}, "episode_index": {"min": [81], "max": [81], "mean": [81.0], "std": [0.0], "count": [1244]}, "index": {"min": [52476], "max": [53719], "mean": [53097.5], "std": [359.1117514089451], "count": [1244]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1244]}}} +{"episode_index": 82, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5805820338113671]], [[0.5437291864966051]], [[0.48917836368635914]]], "std": [[[0.27623754707212517]], [[0.2675218837312894]], [[0.2724528040583067]]], "count": [206]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5986321982676566]], [[0.5670119653848594]], [[0.5167316784588701]]], "std": [[[0.25566322056232604]], [[0.23819314030059296]], [[0.2568460633118316]]], "count": [206]}, "observation.state": {"min": [0.6599307060241699, -0.013870029710233212, 0.12295699864625931, -2.0560100078582764, -0.6767605543136597, -0.005446909926831722, -0.7002356648445129, -0.14656974375247955, 0.13057787716388702, 0.6389252543449402, -0.05233177915215492, -0.11928906291723251], "max": [0.8243476748466492, 0.15006814897060394, 0.1451766937971115, 0.22059382498264313, 0.39351311326026917, 1.11556875705719, -0.4571394622325897, 0.008711240254342556, 0.15510499477386475, 1.1358903646469116, 0.3191828727722168, 0.32403993606567383], "mean": [0.7524046897888184, 0.06333322077989578, 0.13596504926681519, -1.2341169118881226, 0.0085361422970891, 0.4118746817111969, -0.6253832578659058, -0.08314073830842972, 0.14284420013427734, 0.8228322267532349, 0.1078680157661438, 0.11267868429422379], "std": [0.025444138795137405, 0.03428398072719574, 0.005627100355923176, 0.5296674370765686, 0.21089302003383636, 0.19372253119945526, 0.036479271948337555, 0.02612965553998947, 0.0060312687419354916, 0.10133284330368042, 0.07110029458999634, 0.07491010427474976], "count": [1221]}, "action": {"min": [-0.08888168632984161, -0.06909089535474777, 0.10539079457521439, -0.4419485330581665, -0.6561312675476074, -0.6573877930641174, -0.5888646245002747, 0.10867364704608917, -0.07346236705780029, 0.07965398579835892, 0.17951156198978424, -0.26933610439300537, -0.5100067853927612, 0.7316933274269104], "max": [-0.06414037197828293, -0.03895275294780731, 0.13736000657081604, 0.5670028328895569, 0.7520764470100403, 0.9527942538261414, 0.7654876112937927, 0.13853885233402252, -0.053613852709531784, 0.10771672427654266, 0.420624315738678, -0.13984881341457367, -0.2841056287288666, 0.902360737323761], "mean": [-0.07715725153684616, -0.05579816922545433, 0.11897058039903641, 0.30658453702926636, -0.2964252233505249, 0.6525132656097412, -0.036892786622047424, 0.11994688212871552, -0.06401833146810532, 0.08959206193685532, 0.30359700322151184, -0.19673338532447815, -0.4246462881565094, 0.8269677758216858], "std": [0.0055512478575110435, 0.006541734095662832, 0.005186199210584164, 0.21281538903713226, 0.32279467582702637, 0.40858909487724304, 0.2730783224105835, 0.005825447384268045, 0.004014881793409586, 0.004854152444750071, 0.038096364587545395, 0.02465362660586834, 0.043692585080862045, 0.030905557796359062], "count": [1221]}, "timestamp": {"min": [0.0], "max": [40.666666666666664], "mean": [20.333333333333332], "std": [11.749074037588695], "count": [1221]}, "frame_index": {"min": [0], "max": [1220], "mean": [610.0], "std": [352.4722211276609], "count": [1221]}, "episode_index": {"min": [82], "max": [82], "mean": [82.0], "std": [0.0], "count": [1221]}, "index": {"min": [53720], "max": [54940], "mean": [54330.0], "std": [352.4722211276609], "count": [1221]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1221]}}} +{"episode_index": 83, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.582029717306977]], [[0.544696119945268]], [[0.49035266386364845]]], "std": [[[0.2772074292843208]], [[0.26754025592282793]], [[0.27258627173686106]]], "count": [164]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6009411548833626]], [[0.5688611625883416]], [[0.5190536641824752]]], "std": [[[0.25616123924900713]], [[0.23796298592711307]], [[0.2565005478711589]]], "count": [164]}, "observation.state": {"min": [0.6606411933898926, -0.046961940824985504, 0.12606549263000488, -1.7651699781417847, -0.057933878153562546, -0.5188207030296326, -0.7206391096115112, -0.15182892978191376, 0.1314878761768341, 0.629908561706543, -0.45008063316345215, 0.2230423241853714], "max": [0.8030715584754944, 0.05397418141365051, 0.15434017777442932, -0.1079903170466423, 0.982962965965271, 1.3636196851730347, -0.5616434812545776, 0.01678922027349472, 0.1608618050813675, 1.0788547992706299, 0.04194740951061249, 0.5042609572410583], "mean": [0.7257938385009766, 0.015598651953041553, 0.13986298441886902, -1.1465786695480347, 0.5627498626708984, 0.27690359950065613, -0.6367637515068054, -0.07213851064443588, 0.1413906365633011, 0.7681348323822021, -0.2711912989616394, 0.4098288416862488], "std": [0.02722877822816372, 0.016995247453451157, 0.005443715024739504, 0.30997639894485474, 0.18156877160072327, 0.3383820354938507, 0.034016773104667664, 0.027211226522922516, 0.005608225241303444, 0.08406767249107361, 0.08421720564365387, 0.061050187796354294], "count": [902]}, "action": {"min": [-0.09040096402168274, -0.07221338152885437, 0.10169564932584763, 0.30198192596435547, -0.4949895739555359, 0.30095189809799194, -0.4976540505886078, 0.10813753306865692, -0.07314912229776382, 0.0738803967833519, 0.15736916661262512, -0.18910668790340424, -0.4522390365600586, 0.8440462946891785], "max": [-0.06352069973945618, -0.05344141274690628, 0.12584929168224335, 0.7537499666213989, 0.03297354653477669, 0.9393971562385559, -0.07183591276407242, 0.1312909722328186, -0.052708517760038376, 0.10679849237203598, 0.3632914423942566, 0.10880915820598602, -0.32134297490119934, 0.923808753490448], "mean": [-0.07580186426639557, -0.06269777566194534, 0.1182536706328392, 0.560757577419281, -0.2908869683742523, 0.6993359923362732, -0.27217841148376465, 0.1216808632016182, -0.06424307078123093, 0.08836012333631516, 0.2518850266933441, 0.013667996972799301, -0.36765533685684204, 0.8922625780105591], "std": [0.005830652080476284, 0.0035603574942797422, 0.004628029651939869, 0.0877479612827301, 0.10493295639753342, 0.10678437352180481, 0.08757717907428741, 0.005174204241484404, 0.00390343414619565, 0.004834793508052826, 0.03978559374809265, 0.04793810844421387, 0.028932059183716774, 0.018624819815158844], "count": [902]}, "timestamp": {"min": [0.0], "max": [30.033333333333335], "mean": [15.016666666666667], "std": [8.679493712833203], "count": [902]}, "frame_index": {"min": [0], "max": [901], "mean": [450.5], "std": [260.3848113849961], "count": [902]}, "episode_index": {"min": [83], "max": [83], "mean": [83.0], "std": [0.0], "count": [902]}, "index": {"min": [54941], "max": [55842], "mean": [55391.5], "std": [260.3848113849961], "count": [902]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [902]}}} +{"episode_index": 84, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5864012118736384]], [[0.5473785993100944]], [[0.4919471223674655]]], "std": [[[0.2755148419499724]], [[0.2657311353897191]], [[0.2704203248898115]]], "count": [180]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6068751376785282]], [[0.5727077795933188]], [[0.5219947273662552]]], "std": [[[0.25277435447529556]], [[0.23480921103633784]], [[0.25296804809765516]]], "count": [180]}, "observation.state": {"min": [0.6429020762443542, -0.01748427003622055, 0.12376070022583008, -1.8796606063842773, -0.21438266336917877, -0.5125662684440613, -0.6991930603981018, -0.11498376727104187, 0.12872548401355743, 0.5540008544921875, -0.4377833604812622, 0.06286688894033432], "max": [0.7626198530197144, 0.06901033967733383, 0.15193945169448853, -0.7068647742271423, 1.0974643230438232, 0.9029657244682312, -0.5293315649032593, 0.04920924827456474, 0.1584429293870926, 0.9945594072341919, 0.05684078112244606, 0.5437923073768616], "mean": [0.7141098380088806, 0.02396930754184723, 0.13912230730056763, -1.3299400806427002, 0.5227953791618347, 0.18532101809978485, -0.6364943981170654, -0.05858883634209633, 0.14341920614242554, 0.766831636428833, -0.2057063728570938, 0.3918263912200928], "std": [0.029085589572787285, 0.020339248701930046, 0.0059247747994959354, 0.2205430418252945, 0.2503078281879425, 0.2909780442714691, 0.03407246991991997, 0.02926100790500641, 0.007204965688288212, 0.09290933609008789, 0.12262773513793945, 0.129446342587471], "count": [1021]}, "action": {"min": [-0.09274803102016449, -0.07035401463508606, 0.10798728466033936, 0.2759830951690674, -0.47805795073509216, 0.5012466311454773, -0.373625785112381, 0.10855203121900558, -0.07142547518014908, 0.07836601883172989, 0.1505080759525299, -0.13240861892700195, -0.5318222045898438, 0.7945324182510376], "max": [-0.06617230921983719, -0.05360948294401169, 0.12641005218029022, 0.7889267206192017, 0.07725459337234497, 0.9588707089424133, -0.00731370085850358, 0.13864144682884216, -0.0534517876803875, 0.1062435507774353, 0.39396607875823975, 0.08156564831733704, -0.3027377724647522, 0.9338420033454895], "mean": [-0.07774116843938828, -0.06258200854063034, 0.11925812810659409, 0.5457460284233093, -0.2624419033527374, 0.7425238490104675, -0.2047671228647232, 0.11997662484645844, -0.0631561279296875, 0.09084762632846832, 0.2401125282049179, -0.015137565322220325, -0.3889961242675781, 0.8835844397544861], "std": [0.007348419167101383, 0.0035346844233572483, 0.003705674782395363, 0.11510581523180008, 0.10179659724235535, 0.10361261665821075, 0.07528143376111984, 0.006327728275209665, 0.004327435977756977, 0.004995322786271572, 0.0553276389837265, 0.05314764380455017, 0.05449352040886879, 0.03492693603038788], "count": [1021]}, "timestamp": {"min": [0.0], "max": [34.0], "mean": [17.0], "std": [9.824572368414934], "count": [1021]}, "frame_index": {"min": [0], "max": [1020], "mean": [510.0], "std": [294.737171052448], "count": [1021]}, "episode_index": {"min": [84], "max": [84], "mean": [84.0], "std": [0.0], "count": [1021]}, "index": {"min": [55843], "max": [56863], "mean": [56353.0], "std": [294.737171052448], "count": [1021]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1021]}}} +{"episode_index": 85, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5869375009796085]], [[0.5487190894343349]], [[0.49549566033447756]]], "std": [[[0.2803349868911331]], [[0.26820804487552447]], [[0.2724184097569565]]], "count": [139]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6095128740145139]], [[0.5760940815974671]], [[0.5272016426074826]]], "std": [[[0.25788459197831154]], [[0.23763543151962227]], [[0.2563120603759624]]], "count": [139]}, "observation.state": {"min": [0.6650663018226624, -0.04746391996741295, 0.1343008279800415, -1.374517560005188, 0.5759228467941284, 0.04077744111418724, -0.6095861792564392, -0.15194477140903473, 0.12466291338205338, 0.6668140292167664, 0.21875503659248352, -0.27521637082099915], "max": [0.7581638693809509, 0.05093915015459061, 0.15048889815807343, -0.31034111976623535, 0.9989494681358337, 0.6639182567596436, -0.3575934171676636, -0.0070971897803246975, 0.14372356235980988, 1.1604241132736206, 0.5003628730773926, 0.10625830292701721], "mean": [0.7167901992797852, -0.0010380565654486418, 0.14186768233776093, -0.9559788703918457, 0.7650318145751953, 0.33963969349861145, -0.5000919103622437, -0.09635893255472183, 0.1366826444864273, 0.8859396576881409, 0.3445172607898712, -0.1408303827047348], "std": [0.02939576283097267, 0.028272755444049835, 0.00267358822748065, 0.3096717894077301, 0.0958017036318779, 0.14404822885990143, 0.06207792088389397, 0.031038887798786163, 0.005599297117441893, 0.11456091701984406, 0.07808728516101837, 0.09912832081317902], "count": [722]}, "action": {"min": [-0.08576814085245132, -0.07290264219045639, 0.10871080309152603, 0.5101209878921509, -0.3797687292098999, 0.5042413473129272, -0.5509845018386841, 0.12052150815725327, -0.07283410429954529, 0.0856030285358429, 0.17638292908668518, -0.36517804861068726, -0.5093764066696167, 0.7506822943687439], "max": [-0.06429450958967209, -0.05777034908533096, 0.12988163530826569, 0.7307296395301819, -0.1824982911348343, 0.7215532064437866, -0.1515524536371231, 0.15633022785186768, -0.05269429087638855, 0.09634560346603394, 0.42623382806777954, -0.23794226348400116, -0.2879267632961273, 0.8470780253410339], "mean": [-0.07578077912330627, -0.06473799794912338, 0.11851968616247177, 0.6103443503379822, -0.2813358008861542, 0.6305742859840393, -0.35578057169914246, 0.13587459921836853, -0.06515071541070938, 0.09153527766466141, 0.3455951511859894, -0.30101174116134644, -0.39346516132354736, 0.7914015054702759], "std": [0.005559423007071018, 0.00403693038970232, 0.006552605889737606, 0.061122357845306396, 0.04638158157467842, 0.05286960303783417, 0.12427601963281631, 0.009048976004123688, 0.004919151775538921, 0.0020619677379727364, 0.06734561920166016, 0.029110485687851906, 0.05280032008886337, 0.0255880244076252], "count": [722]}, "timestamp": {"min": [0.0], "max": [24.033333333333335], "mean": [12.016666666666666], "std": [6.94744157546103], "count": [722]}, "frame_index": {"min": [0], "max": [721], "mean": [360.5], "std": [208.42324726383092], "count": [722]}, "episode_index": {"min": [85], "max": [85], "mean": [85.0], "std": [0.0], "count": [722]}, "index": {"min": [56864], "max": [57585], "mean": [57224.5], "std": [208.42324726383092], "count": [722]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [722]}}} +{"episode_index": 86, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5936047764516436]], [[0.5540186270562976]], [[0.5003448462315683]]], "std": [[[0.28098439827011923]], [[0.26763700128072115]], [[0.27091616575854444]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6161578672129077]], [[0.5807723449685832]], [[0.5315591590098196]]], "std": [[[0.2585636316451207]], [[0.2371215001732497]], [[0.2554141470710013]]], "count": [138]}, "observation.state": {"min": [0.6592819690704346, -0.04862232878804207, 0.12691587209701538, -1.543108344078064, 0.23036913573741913, -0.34038206934928894, -0.6150693297386169, -0.20445935428142548, 0.12133145332336426, 0.03837326169013977, -0.2433496117591858, -0.018876489251852036], "max": [0.7477922439575195, 0.0585460402071476, 0.14693188667297363, -0.8247105479240417, 0.7732259631156921, 0.5957036018371582, -0.3872641623020172, -0.14562757313251495, 0.14279930293560028, 1.33698308467865, 0.5204484462738037, 0.3809055984020233], "mean": [0.7070350646972656, 0.000797845481429249, 0.13936001062393188, -1.0597785711288452, 0.5920342206954956, 0.10113358497619629, -0.5289713144302368, -0.17330990731716156, 0.13507933914661407, 0.47507986426353455, 0.20536167919635773, 0.14391987025737762], "std": [0.02874317206442356, 0.03075515665113926, 0.005053231492638588, 0.18155428767204285, 0.12557902932167053, 0.28144872188568115, 0.06923752278089523, 0.017902512103319168, 0.005685446783900261, 0.406881719827652, 0.2013009786605835, 0.11286941170692444], "count": [717]}, "action": {"min": [-0.09272446483373642, -0.07433812320232391, 0.1118687242269516, 0.3613746166229248, -0.4422949552536011, 0.5974075198173523, -0.4761570394039154, 0.1237763911485672, -0.07917650789022446, 0.0796792134642601, -0.2769967019557953, -0.16021087765693665, -0.691635251045227, -0.6929304599761963], "max": [-0.06879647076129913, -0.0538424514234066, 0.1256527155637741, 0.6319096088409424, -0.08983638137578964, 0.889150857925415, -0.18934817612171173, 0.15621168911457062, -0.06354031711816788, 0.09097370505332947, 0.3852047622203827, 0.12059655785560608, 0.7377119660377502, 0.9715158939361572], "mean": [-0.07848776131868362, -0.06557668000459671, 0.1185106709599495, 0.5179622769355774, -0.24117745459079742, 0.7164801955223083, -0.3632672429084778, 0.13579338788986206, -0.07193451374769211, 0.08402974158525467, 0.19147711992263794, -0.05554692819714546, -0.2588629424571991, 0.4912383556365967], "std": [0.006788852158933878, 0.0053159031085669994, 0.003548447508364916, 0.07353424280881882, 0.11250651627779007, 0.07213633507490158, 0.07051534205675125, 0.009815948083996773, 0.004081082530319691, 0.002917967736721039, 0.20881277322769165, 0.0770668014883995, 0.5156969428062439, 0.5800347328186035], "count": [717]}, "timestamp": {"min": [0.0], "max": [23.866666666666667], "mean": [11.933333333333334], "std": [6.89932900655859], "count": [717]}, "frame_index": {"min": [0], "max": [716], "mean": [358.0], "std": [206.9798701967577], "count": [717]}, "episode_index": {"min": [86], "max": [86], "mean": [86.0], "std": [0.0], "count": [717]}, "index": {"min": [57586], "max": [58302], "mean": [57944.0], "std": [206.9798701967577], "count": [717]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [717]}}} +{"episode_index": 87, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.588109740452655]], [[0.5498570644051928]], [[0.4964178460181134]]], "std": [[[0.27828345875836014]], [[0.26776997824516335]], [[0.2718723926119482]]], "count": [121]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6086665136210591]], [[0.5756695542771746]], [[0.5262254744413836]]], "std": [[[0.2545817783555146]], [[0.23654317894761112]], [[0.25531988011996964]]], "count": [121]}, "observation.state": {"min": [0.6323142051696777, -0.03302241116762161, 0.12285199761390686, -1.2833024263381958, 0.30415284633636475, -0.247129425406456, -0.670395016670227, -0.19455109536647797, 0.12295828759670258, 0.5529524087905884, 0.06831824779510498, -0.3023889660835266], "max": [0.7430195808410645, 0.06061572954058647, 0.14222246408462524, -0.7320275902748108, 0.9418354034423828, 0.8232911825180054, -0.4124557077884674, -0.0908811166882515, 0.15178519487380981, 1.239477276802063, 0.29540809988975525, 0.12013073265552521], "mean": [0.6797896027565002, 0.026434697210788727, 0.1333378404378891, -0.9765806794166565, 0.6367147564888, 0.21129773557186127, -0.5589872002601624, -0.14174868166446686, 0.13976554572582245, 0.827574610710144, 0.15116705000400543, -0.0874464213848114], "std": [0.03607459366321564, 0.02861303836107254, 0.004711924586445093, 0.15094463527202606, 0.13920070230960846, 0.30144184827804565, 0.07392900437116623, 0.033149152994155884, 0.008355021476745605, 0.1562817096710205, 0.057391583919525146, 0.10857413709163666], "count": [600]}, "action": {"min": [-0.09970252960920334, -0.06847096979618073, 0.1073271632194519, 0.36921751499176025, -0.5014258027076721, 0.5465784668922424, -0.5096879005432129, 0.1110023558139801, -0.07978244870901108, 0.07705507427453995, 0.23518984019756317, -0.3624976873397827, -0.5465814471244812, 0.7472059726715088], "max": [-0.07289715856313705, -0.05155859515070915, 0.1283038705587387, 0.708710789680481, -0.11605538427829742, 0.8638244867324829, -0.229148268699646, 0.15233813226222992, -0.06006559357047081, 0.09315212070941925, 0.48836421966552734, -0.1169094666838646, -0.21984930336475372, 0.8843765258789062], "mean": [-0.08624197542667389, -0.06027936190366745, 0.11952733248472214, 0.5319421291351318, -0.2540164291858673, 0.6947419047355652, -0.3726654052734375, 0.12901033461093903, -0.07103556394577026, 0.08679376542568207, 0.39180871844291687, -0.2160947471857071, -0.3940896987915039, 0.7930178046226501], "std": [0.007079423405230045, 0.004275844898074865, 0.005116610787808895, 0.08342140913009644, 0.10913854837417603, 0.08328007161617279, 0.07184066623449326, 0.011747708544135094, 0.005957263056188822, 0.0030143053736537695, 0.0729517862200737, 0.05522913485765457, 0.0784669741988182, 0.032801005989313126], "count": [600]}, "timestamp": {"min": [0.0], "max": [19.966666666666665], "mean": [9.983333333333333], "std": [5.77349467313695], "count": [600]}, "frame_index": {"min": [0], "max": [599], "mean": [299.5], "std": [173.2048401941085], "count": [600]}, "episode_index": {"min": [87], "max": [87], "mean": [87.0], "std": [0.0], "count": [600]}, "index": {"min": [58303], "max": [58902], "mean": [58602.5], "std": [173.2048401941085], "count": [600]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [600]}}} +{"episode_index": 88, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5950546350762527]], [[0.5557254656862745]], [[0.5020722630718955]]], "std": [[[0.27580233250609576]], [[0.2649654264537428]], [[0.2688621617728385]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6160600762527233]], [[0.5814478976034858]], [[0.5322528513071896]]], "std": [[[0.2521719757914588]], [[0.23357636924542724]], [[0.2522514354980766]]], "count": [100]}, "observation.state": {"min": [0.6439214944839478, -0.03608061000704765, 0.12435699254274368, -1.3059489727020264, 0.21520249545574188, 0.0021366600412875414, -0.6519222259521484, -0.22202856838703156, 0.11755406111478806, 0.2300298660993576, 0.023501479998230934, -0.3550320565700531], "max": [0.7476068735122681, 0.05798228085041046, 0.138924703001976, -0.8379210233688354, 0.9150546193122864, 0.8203693628311157, -0.3992575705051422, -0.1128522977232933, 0.14568355679512024, 0.7982895970344543, 0.42644253373146057, 0.022582560777664185], "mean": [0.688291072845459, 0.02336198091506958, 0.13169659674167633, -1.030134916305542, 0.5245816111564636, 0.18414808809757233, -0.5539717078208923, -0.17713741958141327, 0.1346539705991745, 0.516335129737854, 0.19124473631381989, -0.18060699105262756], "std": [0.03029807098209858, 0.022953378036618233, 0.0037892188411206007, 0.1119312271475792, 0.16774874925613403, 0.20686379075050354, 0.0826200395822525, 0.03488416224718094, 0.008334379643201828, 0.14889146387577057, 0.1123170405626297, 0.08451005816459656], "count": [418]}, "action": {"min": [-0.09393389523029327, -0.06759113073348999, 0.10390003025531769, 0.32542309165000916, -0.5046448707580566, 0.5527418255805969, -0.4851488173007965, 0.11768947541713715, -0.07992146909236908, 0.07245469093322754, 0.2587774395942688, -0.29463252425193787, -0.6639375686645508, 0.6708129644393921], "max": [-0.07608505338430405, -0.05262129753828049, 0.12912435829639435, 0.6998043060302734, -0.16830076277256012, 0.8313021063804626, -0.2182786911725998, 0.15627045929431915, -0.05819828063249588, 0.08703167736530304, 0.5320360064506531, -0.08248958736658096, -0.39065316319465637, 0.7553582787513733], "mean": [-0.08625218272209167, -0.06067595258355141, 0.1177026554942131, 0.49382245540618896, -0.2782266139984131, 0.7294703722000122, -0.3491988182067871, 0.13279713690280914, -0.07152075320482254, 0.08129573613405228, 0.43163609504699707, -0.18393594026565552, -0.5130503177642822, 0.7072315812110901], "std": [0.005053974688053131, 0.0039014718495309353, 0.005666873883455992, 0.09845592081546783, 0.0712788850069046, 0.06988302618265152, 0.07074006646871567, 0.01216135360300541, 0.006588679738342762, 0.0034481410402804613, 0.08525353670120239, 0.04993080720305443, 0.08054544776678085, 0.01454742718487978], "count": [418]}, "timestamp": {"min": [0.0], "max": [13.9], "mean": [6.95], "std": [4.022195365165093], "count": [418]}, "frame_index": {"min": [0], "max": [417], "mean": [208.5], "std": [120.66586095495279], "count": [418]}, "episode_index": {"min": [88], "max": [88], "mean": [88.0], "std": [0.0], "count": [418]}, "index": {"min": [58903], "max": [59320], "mean": [59111.5], "std": [120.66586095495279], "count": [418]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [418]}}} +{"episode_index": 89, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5931253287426081]], [[0.5544036531279178]], [[0.5004923085901027]]], "std": [[[0.27436409903985004]], [[0.26463639479518736]], [[0.26940765968756436]]], "count": [140]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6142745098039215]], [[0.5802816604419545]], [[0.5309611383442265]]], "std": [[[0.24992976763798883]], [[0.2328011842470694]], [[0.2523970598610052]]], "count": [140]}, "observation.state": {"min": [0.6559457778930664, -0.029848359525203705, 0.11743999272584915, -2.7240819931030273, -0.9389660358428955, -0.7041430473327637, -0.6734609007835388, -0.21313197910785675, 0.12160755693912506, 0.4812384247779846, -0.15535570681095123, -0.41673749685287476], "max": [0.7894563674926758, 0.07287170737981796, 0.14079654216766357, -0.9205388426780701, 0.7786914110183716, 0.642545223236084, -0.4393385648727417, -0.07977583259344101, 0.1496463119983673, 0.9324911832809448, 0.2082340270280838, -0.07768166810274124], "mean": [0.7037588953971863, 0.03487670421600342, 0.13113369047641754, -1.3795210123062134, 0.25711387395858765, -0.193922758102417, -0.5567334294319153, -0.13755835592746735, 0.13350819051265717, 0.708314061164856, 0.03636710345745087, -0.20573660731315613], "std": [0.04079503193497658, 0.024917490780353546, 0.004314913880079985, 0.3597898483276367, 0.3604290187358856, 0.29347264766693115, 0.07477723062038422, 0.04084409773349762, 0.009314700029790401, 0.13278073072433472, 0.10035425424575806, 0.0954301655292511], "count": [728]}, "action": {"min": [-0.09764468669891357, -0.06904968619346619, 0.10340593010187149, 0.03704431653022766, -0.4421466588973999, 0.5865073204040527, -0.41423410177230835, 0.11375995725393295, -0.08080976456403732, 0.07211935520172119, 0.36093801259994507, -0.2722836136817932, -0.5453559756278992, 0.7184779644012451], "max": [-0.07339688390493393, -0.049651529639959335, 0.1279379427433014, 0.6726423501968384, 0.25251635909080505, 0.9924276471138, 0.3623587191104889, 0.1503393054008484, -0.0570966936647892, 0.08887929469347, 0.586919903755188, -0.11989309638738632, -0.28820982575416565, 0.7934385538101196], "mean": [-0.08562962710857391, -0.05965915694832802, 0.11738187074661255, 0.3955761790275574, -0.11754098534584045, 0.8335680365562439, -0.24650035798549652, 0.1332053542137146, -0.06810063868761063, 0.08310007303953171, 0.46270203590393066, -0.17060726881027222, -0.41629543900489807, 0.7544667720794678], "std": [0.005842794664204121, 0.0037200290244072676, 0.006585629191249609, 0.14918798208236694, 0.14494900405406952, 0.09207333624362946, 0.14953625202178955, 0.0116732744500041, 0.007530642207711935, 0.00284218811430037, 0.07578349858522415, 0.03717038407921791, 0.0829814150929451, 0.016361230984330177], "count": [728]}, "timestamp": {"min": [0.0], "max": [24.233333333333334], "mean": [12.116666666666667], "std": [7.00517665730137], "count": [728]}, "frame_index": {"min": [0], "max": [727], "mean": [363.5], "std": [210.1552997190411], "count": [728]}, "episode_index": {"min": [89], "max": [89], "mean": [89.0], "std": [0.0], "count": [728]}, "index": {"min": [59321], "max": [60048], "mean": [59684.5], "std": [210.1552997190411], "count": [728]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [728]}}} +{"episode_index": 90, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5895680874044533]], [[0.5511432461873639]], [[0.49770419990029907]]], "std": [[[0.27523449283166734]], [[0.2651375031906838]], [[0.2690051040391006]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6100076668143717]], [[0.576821117665522]], [[0.5274685688305455]]], "std": [[[0.25132651618967394]], [[0.23358165237083833]], [[0.2523986319903335]]], "count": [118]}, "observation.state": {"min": [0.6366621255874634, -0.041942160576581955, 0.11831238865852356, -1.3223047256469727, 0.10288728028535843, -0.3172972500324249, -0.6875008344650269, -0.21591989696025848, 0.11786127835512161, 0.37723222374916077, 0.16806289553642273, -0.3544047176837921], "max": [0.7542561292648315, 0.08060988783836365, 0.13549470901489258, -0.6766694784164429, 0.7830637693405151, 0.5888389945030212, -0.41261789202690125, -0.07349725067615509, 0.1488581746816635, 0.7309791445732117, 0.5337021946907043, 0.06893365830183029], "mean": [0.6862658262252808, 0.020678548142313957, 0.1283731609582901, -1.053377389907837, 0.38218820095062256, -0.05874903127551079, -0.574978232383728, -0.15873369574546814, 0.137285977602005, 0.5696142315864563, 0.3097922205924988, -0.1802397519350052], "std": [0.03527200594544411, 0.027733903378248215, 0.004218848422169685, 0.1614355593919754, 0.17683684825897217, 0.25077399611473083, 0.08418815582990646, 0.03947342932224274, 0.008482035249471664, 0.09752281755208969, 0.09776121377944946, 0.10386232286691666], "count": [581]}, "action": {"min": [-0.09792684018611908, -0.06868468225002289, 0.1006912961602211, 0.21754828095436096, -0.45217177271842957, 0.595095694065094, -0.48648878931999207, 0.11215092986822128, -0.07836412638425827, 0.07389668375253677, 0.17293545603752136, -0.36009013652801514, -0.6251372694969177, 0.6571088433265686], "max": [-0.07705719769001007, -0.053348615765571594, 0.13091294467449188, 0.6422348022460938, -0.09921398013830185, 0.8896926045417786, -0.24699699878692627, 0.15408989787101746, -0.053450264036655426, 0.08890499174594879, 0.5186645984649658, -0.18787474930286407, -0.4283999502658844, 0.7580914497375488], "mean": [-0.08906535059213638, -0.06098647788167, 0.11604160815477371, 0.39934009313583374, -0.20928990840911865, 0.7905496954917908, -0.37594494223594666, 0.12844066321849823, -0.06943152099847794, 0.0830889567732811, 0.39765411615371704, -0.2539231777191162, -0.5115006566047668, 0.7079190015792847], "std": [0.005484354216605425, 0.0033633066341280937, 0.006783631630241871, 0.10968661308288574, 0.08889603614807129, 0.085736945271492, 0.056015368551015854, 0.012768049724400043, 0.00671327905729413, 0.0035544815473258495, 0.09169142693281174, 0.04369167983531952, 0.062109947204589844, 0.020935118198394775], "count": [581]}, "timestamp": {"min": [0.0], "max": [19.333333333333332], "mean": [9.666666666666668], "std": [5.590666825661815], "count": [581]}, "frame_index": {"min": [0], "max": [580], "mean": [290.0], "std": [167.72000476985446], "count": [581]}, "episode_index": {"min": [90], "max": [90], "mean": [90.0], "std": [0.0], "count": [581]}, "index": {"min": [60049], "max": [60629], "mean": [60339.0], "std": [167.72000476985446], "count": [581]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [581]}}} +{"episode_index": 91, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.595610218298178]], [[0.5551105726381461]], [[0.4997737299465241]]], "std": [[[0.2698235783084168]], [[0.26131079368193794]], [[0.26725789338384515]]], "count": [176]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6181110244602892]], [[0.583249110281739]], [[0.533964463878986]]], "std": [[[0.2466761922013003]], [[0.23041670647824422]], [[0.24994715163811898]]], "count": [176]}, "observation.state": {"min": [0.6448172926902771, -0.019461290910840034, 0.12428051233291626, -2.2401177883148193, -0.8256943821907043, -0.42555758357048035, -0.6835159063339233, -0.20901577174663544, 0.1129872277379036, 0.5489682555198669, -0.050282228738069534, -0.4602474272251129], "max": [0.7704352736473083, 0.1093461737036705, 0.14682817459106445, 0.596987247467041, 0.8437303900718689, 1.262870192527771, -0.4459260404109955, -0.05912524089217186, 0.14296911656856537, 0.9412981867790222, 0.3124876618385315, -0.029175730422139168], "mean": [0.7044791579246521, 0.061550065875053406, 0.13386917114257812, -0.8903846740722656, 0.33901581168174744, 0.15488995611667633, -0.5513588190078735, -0.10658810287714005, 0.12506726384162903, 0.6955978870391846, 0.16292160749435425, -0.13745710253715515], "std": [0.02692437171936035, 0.02506028115749359, 0.004602761007845402, 0.45214661955833435, 0.26034143567085266, 0.36078912019729614, 0.07050657272338867, 0.03899101912975311, 0.00990248378366232, 0.11508355289697647, 0.10969686508178711, 0.11462076008319855], "count": [993]}, "action": {"min": [-0.09720900654792786, -0.06485012173652649, 0.10545647144317627, -0.5942185521125793, -0.5080616474151611, -0.6089048385620117, -0.6123323440551758, 0.11509675532579422, -0.07651020586490631, 0.07300569117069244, 0.2932268977165222, -0.2877364456653595, -0.5430018901824951, 0.6762431859970093], "max": [-0.0733712837100029, -0.04889447242021561, 0.13473227620124817, 0.6403422951698303, 0.632411003112793, 0.9971170425415039, 0.7100067734718323, 0.15297910571098328, -0.05156393349170685, 0.08699815720319748, 0.5851904153823853, -0.14045557379722595, -0.3023046553134918, 0.7958944439888], "mean": [-0.08388178795576096, -0.055454086512327194, 0.1219240054488182, 0.31837835907936096, -0.16159389913082123, 0.6425161957740784, -0.2602198123931885, 0.13726329803466797, -0.05975806340575218, 0.08012807369232178, 0.3941742479801178, -0.20959047973155975, -0.45193007588386536, 0.7629857659339905], "std": [0.004810042679309845, 0.003006789367645979, 0.0060442672111094, 0.292633056640625, 0.2337280511856079, 0.3724164664745331, 0.3361918330192566, 0.011383302509784698, 0.007006390020251274, 0.0038000924978405237, 0.08366695791482925, 0.03531520441174507, 0.0714898481965065, 0.030857734382152557], "count": [993]}, "timestamp": {"min": [0.0], "max": [33.06666666666667], "mean": [16.53333333333333], "std": [9.555142109918656], "count": [993]}, "frame_index": {"min": [0], "max": [992], "mean": [496.0], "std": [286.6542632975597], "count": [993]}, "episode_index": {"min": [91], "max": [91], "mean": [91.0], "std": [0.0], "count": [993]}, "index": {"min": [60630], "max": [61622], "mean": [61126.0], "std": [286.6542632975597], "count": [993]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [993]}}} +{"episode_index": 92, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5762921338769963]], [[0.5389974515800204]], [[0.48498705552557414]]], "std": [[[0.2773572489122563]], [[0.2678261810355583]], [[0.27299055663752214]]], "count": [109]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5965573094681298]], [[0.5661490675781016]], [[0.5172007005656493]]], "std": [[[0.25713923916402004]], [[0.2394463084928466]], [[0.258340219984275]]], "count": [109]}, "observation.state": {"min": [0.6670278906822205, 0.0011352399596944451, 0.12539142370224, -1.2201857566833496, 0.346646785736084, -0.040571779012680054, -0.6811218857765198, -0.20772607624530792, 0.12863734364509583, 0.6726853251457214, -0.08239181339740753, -0.27620869874954224], "max": [0.7884523868560791, 0.09327516704797745, 0.14066821336746216, 0.2644190192222595, 0.746991753578186, 0.9466960430145264, -0.4125329256057739, -0.05399734899401665, 0.14729353785514832, 1.361307144165039, 0.0982416421175003, 0.02825923077762127], "mean": [0.7198201417922974, 0.056280698627233505, 0.13398955762386322, -0.5718839764595032, 0.5248413681983948, 0.3460753560066223, -0.5843989253044128, -0.1265888810157776, 0.13841024041175842, 1.0823198556900024, 0.010524937883019447, -0.08356640487909317], "std": [0.03380744159221649, 0.022850288078188896, 0.003642686642706394, 0.3743826448917389, 0.11808831244707108, 0.22232483327388763, 0.08969628065824509, 0.04596462845802307, 0.005740780849009752, 0.23232445120811462, 0.05228535458445549, 0.07858934253454208], "count": [522]}, "action": {"min": [-0.09432000666856766, -0.0616983026266098, 0.10601285099983215, -0.5500239729881287, -0.4978363513946533, -0.6241093277931213, -0.6262438893318176, 0.11328385025262833, -0.0797492116689682, 0.07816459238529205, 0.31391018629074097, -0.3014744520187378, -0.45942920446395874, 0.8103154897689819], "max": [-0.0720691904425621, -0.046415913850069046, 0.13298889994621277, 0.6423751711845398, 0.4021941125392914, 0.7462282776832581, 0.7118082046508789, 0.1507679969072342, -0.06084410473704338, 0.09375208616256714, 0.5106967687606812, -0.08619395643472672, -0.12241388112306595, 0.896670937538147], "mean": [-0.08192537724971771, -0.05391639471054077, 0.12014060467481613, 0.2494073361158371, -0.1255304515361786, 0.31692180037498474, -0.13465429842472076, 0.1278020739555359, -0.06867489963769913, 0.08544865250587463, 0.3898133635520935, -0.21434320509433746, -0.2648296356201172, 0.8432846665382385], "std": [0.0052006482146680355, 0.0034906193614006042, 0.006976595148444176, 0.4181154668331146, 0.2914574444293976, 0.5284744501113892, 0.5142115950584412, 0.012021102011203766, 0.0052734906785190105, 0.00523843290284276, 0.05070623755455017, 0.0687306597828865, 0.11457706987857819, 0.020403744652867317], "count": [522]}, "timestamp": {"min": [0.0], "max": [17.366666666666667], "mean": [8.683333333333334], "std": [5.022938124982967], "count": [522]}, "frame_index": {"min": [0], "max": [521], "mean": [260.5], "std": [150.68814374948903], "count": [522]}, "episode_index": {"min": [92], "max": [92], "mean": [92.0], "std": [0.0], "count": [522]}, "index": {"min": [61623], "max": [62144], "mean": [61883.5], "std": [150.68814374948903], "count": [522]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [522]}}} +{"episode_index": 93, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5863520226357963]], [[0.5468977835013478]], [[0.4928691518038477]]], "std": [[[0.2760095368505153]], [[0.26478693454426566]], [[0.2690966760958636]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6075089684649754]], [[0.5743234509434659]], [[0.525894979413611]]], "std": [[[0.2562097296832892]], [[0.23617223497027082]], [[0.25398513779924947]]], "count": [118]}, "observation.state": {"min": [0.6577528715133667, -0.016704270616173744, 0.12316828966140747, -1.296932339668274, -0.1449713259935379, -0.044174641370773315, -0.6686110496520996, -0.2869226932525635, 0.12249291688203812, 0.1895597130060196, 0.2169787585735321, -0.45656266808509827], "max": [0.7710762619972229, 0.11509189009666443, 0.15072223544120789, -0.28580740094184875, 0.6283912658691406, 0.7817491292953491, -0.4199390411376953, -0.14851588010787964, 0.14319726824760437, 0.6747822165489197, 0.5752396583557129, -0.00535390991717577], "mean": [0.7138931751251221, 0.04561508446931839, 0.13601811230182648, -0.6271931529045105, 0.37578248977661133, 0.36382007598876953, -0.5673595666885376, -0.2051934003829956, 0.13629032671451569, 0.46992266178131104, 0.35336607694625854, -0.13398803770542145], "std": [0.031260449439287186, 0.03514041006565094, 0.006709761451929808, 0.2721010744571686, 0.1553756445646286, 0.16468755900859833, 0.07972997426986694, 0.03647269681096077, 0.005814775358885527, 0.1365484893321991, 0.07829461991786957, 0.10553742200136185], "count": [585]}, "action": {"min": [-0.09166612476110458, -0.07419992983341217, 0.10449203103780746, -0.46499669551849365, -0.5523636937141418, -0.6042943596839905, -0.5948092937469482, 0.11691135913133621, -0.0835229828953743, 0.06950419396162033, -0.2818266451358795, -0.3200974762439728, -0.670454740524292, -0.671129047870636], "max": [-0.07222659140825272, -0.04696114361286163, 0.13760502636432648, 0.6103830933570862, 0.36549484729766846, 0.8276619911193848, 0.6232742667198181, 0.1524844467639923, -0.0659206360578537, 0.08756198734045029, 0.5628106594085693, 0.19006340205669403, 0.6871968507766724, 0.7406352758407593], "mean": [-0.08144545555114746, -0.05768098682165146, 0.12160228192806244, 0.1970798224210739, -0.18092863261699677, 0.33290910720825195, -0.15214146673679352, 0.13054463267326355, -0.0733838677406311, 0.07978320866823196, 0.3610517382621765, -0.20856361091136932, -0.5024372339248657, 0.6376985311508179], "std": [0.005144809372723103, 0.005723234731703997, 0.008943288587033749, 0.393615186214447, 0.32431352138519287, 0.5612991452217102, 0.4682733714580536, 0.011144946329295635, 0.004544773139059544, 0.004571670666337013, 0.14910857379436493, 0.09290529042482376, 0.2515402138233185, 0.2700062096118927], "count": [585]}, "timestamp": {"min": [0.0], "max": [19.466666666666665], "mean": [9.733333333333333], "std": [5.629156900230034], "count": [585]}, "frame_index": {"min": [0], "max": [584], "mean": [292.0], "std": [168.87470700690102], "count": [585]}, "episode_index": {"min": [93], "max": [93], "mean": [93.0], "std": [0.0], "count": [585]}, "index": {"min": [62145], "max": [62729], "mean": [62437.0], "std": [168.87470700690102], "count": [585]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [585]}}} +{"episode_index": 94, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5872909256116977]], [[0.5482217744469583]], [[0.4943019105077928]]], "std": [[[0.2760591735288874]], [[0.26487122665623003]], [[0.26906612402471214]]], "count": [104]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.609229902484498]], [[0.5762504294452824]], [[0.5274063992584213]]], "std": [[[0.25491031136451864]], [[0.23549238720488763]], [[0.25352248500793867]]], "count": [104]}, "observation.state": {"min": [0.6491806507110596, -0.01979335956275463, 0.11986663937568665, -1.3193690776824951, 0.09140981733798981, -0.3109681010246277, -0.6764959692955017, -0.24464072287082672, 0.11896052956581116, 0.2440790832042694, 0.14729414880275726, -0.5170079469680786], "max": [0.7735552787780762, 0.10709113627672195, 0.1400187611579895, -0.6047458052635193, 0.6506630182266235, 0.9136245846748352, -0.3821362555027008, -0.09350685030221939, 0.14796501398086548, 0.7066550850868225, 0.5078778862953186, -0.03676263988018036], "mean": [0.7029860615730286, 0.048465508967638016, 0.12977609038352966, -1.0096204280853271, 0.3738732933998108, 0.08087228238582611, -0.5617401003837585, -0.18027061223983765, 0.13639512658119202, 0.4912269115447998, 0.2554076611995697, -0.2257814109325409], "std": [0.030893968418240547, 0.030849158763885498, 0.0050622569397091866, 0.16634482145309448, 0.13260936737060547, 0.303480863571167, 0.09963766485452652, 0.04490675404667854, 0.00858370866626501, 0.1230037659406662, 0.09548597782850266, 0.1453697383403778], "count": [495]}, "action": {"min": [-0.09549795091152191, -0.06553266942501068, 0.10286615043878555, -0.5537493824958801, -0.5580385327339172, -0.5489146113395691, -0.4639613628387451, 0.11375576257705688, -0.08063298463821411, 0.07237839698791504, 0.225402370095253, -0.31345829367637634, -0.6577308773994446, 0.6096007227897644], "max": [-0.07760614156723022, -0.04898279160261154, 0.13029657304286957, 0.6112845540046692, 0.5563957691192627, 0.9064279198646545, 0.30610373616218567, 0.15609385073184967, -0.056501153856515884, 0.08891187608242035, 0.5733999013900757, -0.11931812763214111, -0.44526931643486023, 0.740220308303833], "mean": [-0.08616430312395096, -0.05629434809088707, 0.11783107370138168, 0.4206670820713043, -0.24856036901474, 0.7601765394210815, -0.36866122484207153, 0.1308881938457489, -0.07194458693265915, 0.08150205761194229, 0.43050193786621094, -0.2191561460494995, -0.5266462564468384, 0.6850250363349915], "std": [0.004640080500394106, 0.004443580750375986, 0.006729418411850929, 0.11020880192518234, 0.12411778420209885, 0.1229805201292038, 0.06929359585046768, 0.014420813880860806, 0.006947323214262724, 0.004257588647305965, 0.10492780804634094, 0.051357172429561615, 0.06995026767253876, 0.03849860653281212], "count": [495]}, "timestamp": {"min": [0.0], "max": [16.466666666666665], "mean": [8.233333333333333], "std": [4.763130001102994], "count": [495]}, "frame_index": {"min": [0], "max": [494], "mean": [247.0], "std": [142.89390003308984], "count": [495]}, "episode_index": {"min": [94], "max": [94], "mean": [94.0], "std": [0.0], "count": [495]}, "index": {"min": [62730], "max": [63224], "mean": [62977.0], "std": [142.89390003308984], "count": [495]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [495]}}} +{"episode_index": 95, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5871238570668863]], [[0.5477064355926097]], [[0.49313866158887004]]], "std": [[[0.27329099693903725]], [[0.2632100917472657]], [[0.26819572549276155]]], "count": [127]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6098481357109774]], [[0.5762970982793818]], [[0.5271336459780762]]], "std": [[[0.2512907861215199]], [[0.23348107137491722]], [[0.2523396202402127]]], "count": [127]}, "observation.state": {"min": [0.6732601523399353, -0.013151809573173523, 0.1238669902086258, -1.2398966550827026, 0.013117100112140179, -0.09290233999490738, -0.6799711585044861, -0.19654354453086853, 0.11822683364152908, 0.3543759882450104, 0.10725965350866318, -0.5229601263999939], "max": [0.787842333316803, 0.08409284055233002, 0.14573411643505096, -0.6961706280708313, 0.6225159168243408, 0.7304258346557617, -0.40434685349464417, -0.06511036306619644, 0.14573539793491364, 0.7945151925086975, 0.5002262592315674, 0.09869570285081863], "mean": [0.7119174599647522, 0.045621730387210846, 0.13112032413482666, -0.8504510521888733, 0.3554571866989136, 0.12357790023088455, -0.5496560335159302, -0.12617957592010498, 0.133622944355011, 0.5417494773864746, 0.2551898956298828, -0.14081719517707825], "std": [0.037261322140693665, 0.030594466254115105, 0.004887200426310301, 0.14145340025424957, 0.12456109374761581, 0.2280694544315338, 0.08521180599927902, 0.0395861379802227, 0.00824313797056675, 0.09467710554599762, 0.09634830057621002, 0.20491668581962585], "count": [644]}, "action": {"min": [-0.09390266239643097, -0.0688832476735115, 0.10372798144817352, 0.22294087707996368, -0.5001747608184814, 0.5793033242225647, -0.5197618007659912, 0.11325130611658096, -0.07447519898414612, 0.07679805904626846, 0.20169523358345032, -0.31992393732070923, -0.638140857219696, 0.6304517984390259], "max": [-0.07364717125892639, -0.05063214525580406, 0.13028942048549652, 0.5934348106384277, -0.1881607174873352, 0.8128221035003662, -0.24319565296173096, 0.1550772339105606, -0.05326193943619728, 0.09025246649980545, 0.5684897899627686, -0.13142170011997223, -0.41607657074928284, 0.7801761627197266], "mean": [-0.0843135267496109, -0.05663710832595825, 0.1178513616323471, 0.398919016122818, -0.29005181789398193, 0.7371962666511536, -0.43054473400115967, 0.13298453390598297, -0.06538075953722, 0.08469600975513458, 0.3779192566871643, -0.2129802107810974, -0.5224215388298035, 0.7179187536239624], "std": [0.006601784843951464, 0.004506903700530529, 0.006478181108832359, 0.10748972743749619, 0.08074808865785599, 0.057958051562309265, 0.0804537907242775, 0.012763935141265392, 0.0063253408297896385, 0.0032373990397900343, 0.11945895105600357, 0.055274005979299545, 0.059729475528001785, 0.05091142654418945], "count": [644]}, "timestamp": {"min": [0.0], "max": [21.433333333333334], "mean": [10.716666666666667], "std": [6.196885418408904], "count": [644]}, "frame_index": {"min": [0], "max": [643], "mean": [321.5], "std": [185.9065625522671], "count": [644]}, "episode_index": {"min": [95], "max": [95], "mean": [95.0], "std": [0.0], "count": [644]}, "index": {"min": [63225], "max": [63868], "mean": [63546.5], "std": [185.9065625522671], "count": [644]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [644]}}} +{"episode_index": 96, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5782804681460397]], [[0.5406664338674537]], [[0.48632542914119054]]], "std": [[[0.27507268099961957]], [[0.2658673318333043]], [[0.27092749603313904]]], "count": [124]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5992705302551129]], [[0.5682408571403472]], [[0.5191928697554291]]], "std": [[[0.2535587699214051]], [[0.23667667091517738]], [[0.25493315440527753]]], "count": [124]}, "observation.state": {"min": [0.67510586977005, -0.03418081998825073, 0.1252916157245636, -1.4502156972885132, 0.010930920019745827, -0.23998123407363892, -0.7163606882095337, -0.19751662015914917, 0.11863256990909576, 1.033352017402649, -0.14920705556869507, -0.34124404191970825], "max": [0.7948545813560486, 0.08908945322036743, 0.13858118653297424, -0.5139500498771667, 0.753140389919281, 0.936438262462616, -0.5035607814788818, 0.05748030170798302, 0.14173245429992676, 1.3355152606964111, 0.07282724976539612, 0.3337891399860382], "mean": [0.7213233709335327, 0.04298422113060951, 0.13145461678504944, -1.0700663328170776, 0.3080434799194336, 0.06560073047876358, -0.6186522245407104, -0.07869075983762741, 0.13157126307487488, 1.180129885673523, -0.03289436176419258, 0.01024667639285326], "std": [0.03747103735804558, 0.028027541935443878, 0.003480843035504222, 0.19293905794620514, 0.16930565237998962, 0.2759820520877838, 0.07011353969573975, 0.08088155835866928, 0.008607503026723862, 0.06935417652130127, 0.037758562713861465, 0.21189036965370178], "count": [624]}, "action": {"min": [-0.09022543579339981, -0.06735052168369293, 0.10201328247785568, -0.5633530020713806, -0.563596785068512, -0.5592849850654602, -0.45815083384513855, 0.11264418810606003, -0.07455313950777054, 0.074593685567379, 0.13354744017124176, -0.3146369457244873, -0.3354742228984833, 0.7835378050804138], "max": [-0.0696016326546669, -0.049030665308237076, 0.12766151130199432, 0.6502175331115723, 0.6036292314529419, 0.9243919849395752, 0.35815173387527466, 0.14461416006088257, -0.04318862035870552, 0.08903235197067261, 0.5182868242263794, -0.11461000889539719, -0.15022684633731842, 0.9410629272460938], "mean": [-0.08284473419189453, -0.057254839688539505, 0.11672832816839218, 0.3800502419471741, -0.22478331625461578, 0.7496429085731506, -0.3220110535621643, 0.1279371976852417, -0.05955928564071655, 0.08200759440660477, 0.3294263482093811, -0.21743035316467285, -0.2315632700920105, 0.8745277523994446], "std": [0.005666524637490511, 0.0040459055453538895, 0.006504716817289591, 0.19141767919063568, 0.16930970549583435, 0.24036043882369995, 0.12766756117343903, 0.01154754962772131, 0.009852406568825245, 0.004279781132936478, 0.12587028741836548, 0.0684519112110138, 0.054394472390413284, 0.04789181053638458], "count": [624]}, "timestamp": {"min": [0.0], "max": [20.766666666666666], "mean": [10.383333333333331], "std": [6.004435089227024], "count": [624]}, "frame_index": {"min": [0], "max": [623], "mean": [311.5], "std": [180.13305267681073], "count": [624]}, "episode_index": {"min": [96], "max": [96], "mean": [96.0], "std": [0.0], "count": [624]}, "index": {"min": [63869], "max": [64492], "mean": [64180.5], "std": [180.13305267681073], "count": [624]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [624]}}} +{"episode_index": 97, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5742075055187638]], [[0.5368587304679047]], [[0.48353058044409813]]], "std": [[[0.2789426329444988]], [[0.2669367106932122]], [[0.2706791946473147]]], "count": [151]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5955055223708321]], [[0.564783191937555]], [[0.5167318908799723]]], "std": [[[0.25908922996799066]], [[0.23873789842922302]], [[0.25620015123250045]]], "count": [151]}, "observation.state": {"min": [0.676851212978363, -0.0212220698595047, 0.12186811119318008, -1.045723795890808, 0.21260638535022736, -0.12127123028039932, -0.6829753518104553, -0.2607117295265198, 0.12173718959093094, 0.5158372521400452, -0.027463940903544426, -0.18337969481945038], "max": [0.7948236465454102, 0.09887415170669556, 0.14391930401325226, -0.44831711053848267, 0.6169137954711914, 0.7198776006698608, -0.38925662636756897, -0.06108681857585907, 0.14705373346805573, 1.0631279945373535, 0.2859801948070526, 0.018936170265078545], "mean": [0.7331469655036926, 0.04244726896286011, 0.13188879191875458, -0.7273287177085876, 0.41370123624801636, 0.47168079018592834, -0.5899795889854431, -0.17413835227489471, 0.1358446329832077, 0.912827730178833, 0.0854484811425209, -0.08105115592479706], "std": [0.03542985022068024, 0.0415414534509182, 0.004301960114389658, 0.19236266613006592, 0.07326614856719971, 0.17486315965652466, 0.07699710130691528, 0.05831766501069069, 0.00641785329207778, 0.1311224102973938, 0.07767096906900406, 0.04109811410307884], "count": [806]}, "action": {"min": [-0.09094663709402084, -0.06462553143501282, 0.09972455352544785, 0.3640682101249695, -0.5078593492507935, 0.5868838429450989, -0.5494619607925415, 0.11351244896650314, -0.0810493677854538, 0.07020225375890732, 0.26776811480522156, -0.2673349380493164, -0.5531837940216064, 0.7716463804244995], "max": [-0.07381884008646011, -0.04724700376391411, 0.1308572143316269, 0.6097036004066467, -0.17015007138252258, 0.8014269471168518, -0.2350342720746994, 0.1551012098789215, -0.05717997997999191, 0.08941197395324707, 0.493754118680954, -0.13831257820129395, -0.2603684663772583, 0.8376169800758362], "mean": [-0.08124549686908722, -0.055361706763505936, 0.11622472107410431, 0.4877789318561554, -0.39995115995407104, 0.6383628845214844, -0.414673388004303, 0.12868815660476685, -0.07157080620527267, 0.079750657081604, 0.4148085415363312, -0.2158835232257843, -0.34410497546195984, 0.8086231350898743], "std": [0.004363616928458214, 0.004165431950241327, 0.009288613684475422, 0.0679938793182373, 0.07170448452234268, 0.04390724003314972, 0.10467708855867386, 0.010442840866744518, 0.00703029939904809, 0.005599093623459339, 0.04955599084496498, 0.03224777430295944, 0.07325021922588348, 0.013717040419578552], "count": [806]}, "timestamp": {"min": [0.0], "max": [26.833333333333332], "mean": [13.416666666666664], "std": [7.755732646816089], "count": [806]}, "frame_index": {"min": [0], "max": [805], "mean": [402.5], "std": [232.67197940448264], "count": [806]}, "episode_index": {"min": [97], "max": [97], "mean": [97.0], "std": [0.0], "count": [806]}, "index": {"min": [64493], "max": [65298], "mean": [64895.5], "std": [232.67197940448264], "count": [806]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [806]}}} +{"episode_index": 98, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5831136413777889]], [[0.54470376920107]], [[0.4902702800529495]]], "std": [[[0.27597906613364065]], [[0.26581156083211327]], [[0.27094171157044955]]], "count": [158]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6051375617054136]], [[0.5728174140260885]], [[0.5241387303163177]]], "std": [[[0.2548053881147289]], [[0.23665286261784477]], [[0.25546774887263557]]], "count": [158]}, "observation.state": {"min": [0.6840410828590393, -0.024110369384288788, 0.12237107008695602, -1.428407907485962, -0.2373376041650772, -0.2588021159172058, -0.6717541813850403, -0.2368098795413971, 0.12047848850488663, 0.6057942509651184, 0.030879849568009377, -0.31879886984825134], "max": [0.8193278908729553, 0.11104518175125122, 0.14443781971931458, 0.7408345937728882, 0.7870262265205383, 1.2759021520614624, -0.43808746337890625, -0.08189958333969116, 0.14473207294940948, 1.2178791761398315, 0.2859801948070526, 0.04369809105992317], "mean": [0.7331952452659607, 0.0689551830291748, 0.13510236144065857, -0.6111602187156677, 0.23608233034610748, 0.34552863240242004, -0.5556557178497314, -0.14246731996536255, 0.13256707787513733, 0.8948332667350769, 0.13828830420970917, -0.07930643856525421], "std": [0.0324053056538105, 0.03132221847772598, 0.004361929837614298, 0.4505247175693512, 0.16650807857513428, 0.3579247295856476, 0.08498518168926239, 0.038400355726480484, 0.006627843715250492, 0.2020496129989624, 0.05320442467927933, 0.06951972097158432], "count": [858]}, "action": {"min": [-0.09636443108320236, -0.06608351320028305, 0.09969141334295273, -0.6388782262802124, -0.5933977365493774, -0.5921627879142761, -0.6396563053131104, 0.11503620445728302, -0.07794400304555893, 0.07234302163124084, 0.28334689140319824, -0.3354357182979584, -0.49801844358444214, 0.7722679972648621], "max": [-0.06978363543748856, -0.04221365228295326, 0.12959173321723938, 0.6529898643493652, 0.5590382218360901, 0.9176479578018188, 0.7563272714614868, 0.1501646190881729, -0.05722889304161072, 0.08735528588294983, 0.5097973942756653, -0.12678982317447662, -0.18695221841335297, 0.8438128232955933], "mean": [-0.08001712709665298, -0.05384007841348648, 0.12119579315185547, 0.221745565533638, -0.23733389377593994, 0.5481671094894409, -0.23945733904838562, 0.1332942694425583, -0.06737485527992249, 0.08212731033563614, 0.38636431097984314, -0.22049935162067413, -0.3638641834259033, 0.8076558709144592], "std": [0.005473186261951923, 0.004359503276646137, 0.006902915891259909, 0.3331364691257477, 0.2918637692928314, 0.3985885679721832, 0.4261893033981323, 0.011788792908191681, 0.005110257770866156, 0.003919675480574369, 0.05272340029478073, 0.0664636418223381, 0.10001078993082047, 0.014043617062270641], "count": [858]}, "timestamp": {"min": [0.0], "max": [28.566666666666666], "mean": [14.283333333333331], "std": [8.256103241889647], "count": [858]}, "frame_index": {"min": [0], "max": [857], "mean": [428.5], "std": [247.68309725668942], "count": [858]}, "episode_index": {"min": [98], "max": [98], "mean": [98.0], "std": [0.0], "count": [858]}, "index": {"min": [65299], "max": [66156], "mean": [65727.5], "std": [247.68309725668942], "count": [858]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [858]}}} +{"episode_index": 99, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5780468875738484]], [[0.5405964567508685]], [[0.4864798818426269]]], "std": [[[0.2794438978704277]], [[0.26902096150708726]], [[0.27372817497454477]]], "count": [111]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5996895204027557]], [[0.5686322646175587]], [[0.5200348215862921]]], "std": [[[0.25905333929997776]], [[0.24048149883514527]], [[0.2588819110092849]]], "count": [111]}, "observation.state": {"min": [0.6768280267715454, -0.026272740215063095, 0.1253097653388977, -1.3036423921585083, -0.13390377163887024, -0.13993056118488312, -0.6609732508659363, -0.18529152870178223, 0.1260577142238617, 0.9412981867790222, -0.30428948998451233, 0.012676680460572243], "max": [0.8076202273368835, 0.10234937816858292, 0.1474931687116623, -0.6408124566078186, 0.5334289073944092, 0.7408270239830017, -0.4096137583255768, -0.04285344108939171, 0.15145203471183777, 1.47789466381073, -0.002186180092394352, 0.3163619935512543], "mean": [0.7282580733299255, 0.05931418389081955, 0.13482949137687683, -0.8977896571159363, 0.2520955502986908, 0.14235368371009827, -0.5658804774284363, -0.1146719828248024, 0.14011460542678833, 1.2906845808029175, -0.2079145759344101, 0.18077194690704346], "std": [0.03534385934472084, 0.03378536179661751, 0.004800251219421625, 0.19213949143886566, 0.11715617775917053, 0.1891491860151291, 0.08244790136814117, 0.04898348078131676, 0.007628268096596003, 0.18399426341056824, 0.0795527994632721, 0.08333352953195572], "count": [538]}, "action": {"min": [-0.09008312970399857, -0.06652465462684631, 0.10391464084386826, 0.17964591085910797, -0.5363479852676392, 0.5795055627822876, -0.5130735635757446, 0.11478181928396225, -0.0797794759273529, 0.08322029560804367, 0.19896379113197327, -0.1984381526708603, -0.34549006819725037, 0.9092124700546265], "max": [-0.0693114623427391, -0.04929184168577194, 0.13220801949501038, 0.6095475554466248, -0.23774074018001556, 0.8960137367248535, -0.21405719220638275, 0.1524677723646164, -0.060048967599868774, 0.09458377212285995, 0.3405883312225342, -0.015922509133815765, -0.05797729641199112, 0.9571082592010498], "mean": [-0.08012964576482773, -0.055540043860673904, 0.1201162338256836, 0.3815227448940277, -0.3122085928916931, 0.7567653656005859, -0.40048664808273315, 0.13034114241600037, -0.06984253972768784, 0.0890103280544281, 0.2622392773628235, -0.11881820112466812, -0.15746593475341797, 0.9373727440834045], "std": [0.006091995630413294, 0.004560793749988079, 0.007223545573651791, 0.0869307667016983, 0.06697286665439606, 0.0645250603556633, 0.08762040734291077, 0.012142004445195198, 0.006410230882465839, 0.0034203019458800554, 0.042497362941503525, 0.05469989776611328, 0.09343262761831284, 0.011089262552559376], "count": [538]}, "timestamp": {"min": [0.0], "max": [17.9], "mean": [8.950000000000001], "std": [5.176898470877885], "count": [538]}, "frame_index": {"min": [0], "max": [537], "mean": [268.5], "std": [155.30695412633654], "count": [538]}, "episode_index": {"min": [99], "max": [99], "mean": [99.0], "std": [0.0], "count": [538]}, "index": {"min": [66157], "max": [66694], "mean": [66425.5], "std": [155.30695412633654], "count": [538]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [538]}}} +{"episode_index": 100, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5749984697582736]], [[0.5369789937579971]], [[0.48272254858733615]]], "std": [[[0.2789992298293407]], [[0.2675894534471335]], [[0.2723085295862905]]], "count": [126]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5973376906318083]], [[0.565919322976104]], [[0.5181143034374243]]], "std": [[[0.26005187539575136]], [[0.23989875186103202]], [[0.2578406896257523]]], "count": [126]}, "observation.state": {"min": [0.6888059973716736, -0.02214108034968376, 0.12154663354158401, -1.4781043529510498, -0.05000896006822586, 0.004332929849624634, -0.6661629676818848, -0.21735632419586182, 0.11781720817089081, 0.7752237319946289, -0.12133321166038513, -0.059625059366226196], "max": [0.8064000606536865, 0.08712015300989151, 0.14166375994682312, -0.6206822395324707, 0.5230445265769958, 0.6673460602760315, -0.362991601228714, -0.03655942156910896, 0.1455267071723938, 1.4896373748779297, 0.14182868599891663, 0.1654455065727234], "mean": [0.7404242157936096, 0.04508189111948013, 0.13292212784290314, -0.9781360030174255, 0.3054381310939789, 0.20078836381435394, -0.5521966814994812, -0.14633245766162872, 0.13429874181747437, 1.1616703271865845, -0.015035429038107395, 0.04197646677494049], "std": [0.03579740226268768, 0.032275520265102386, 0.004749725107103586, 0.2616581916809082, 0.1354253888130188, 0.1696811020374298, 0.0891309306025505, 0.04910575598478317, 0.007277197670191526, 0.18618828058242798, 0.06529458612203598, 0.05601319670677185], "count": [634]}, "action": {"min": [-0.09396547824144363, -0.06529300659894943, 0.10443909466266632, 0.2431352287530899, -0.47611743211746216, 0.6081938147544861, -0.5424734950065613, 0.11749853938817978, -0.07638274878263474, 0.07523946464061737, 0.2330923229455948, -0.29694753885269165, -0.4176040589809418, 0.8625574111938477], "max": [-0.06824246793985367, -0.04747695103287697, 0.12793828547000885, 0.6007702350616455, -0.2361655980348587, 0.8491081595420837, -0.12106014788150787, 0.15965482592582703, -0.056169524788856506, 0.09435845911502838, 0.39012494683265686, -0.06600465625524521, -0.0751647874712944, 0.9043814539909363], "mean": [-0.07948321849107742, -0.0562109611928463, 0.11604776233434677, 0.42401552200317383, -0.32353997230529785, 0.7459292411804199, -0.3555210828781128, 0.13371866941452026, -0.0697748214006424, 0.08312871307134628, 0.3409719169139862, -0.1860426664352417, -0.23344236612319946, 0.8836552500724792], "std": [0.006784819066524506, 0.005311894230544567, 0.006061664782464504, 0.0908854752779007, 0.060008455067873, 0.05846702307462692, 0.13208918273448944, 0.012290410697460175, 0.005717811174690723, 0.004970511421561241, 0.03944633901119232, 0.06065947562456131, 0.09197471290826797, 0.009500297717750072], "count": [634]}, "timestamp": {"min": [0.0], "max": [21.1], "mean": [10.549999999999999], "std": [6.10066025570639], "count": [634]}, "frame_index": {"min": [0], "max": [633], "mean": [316.5], "std": [183.0198076711917], "count": [634]}, "episode_index": {"min": [100], "max": [100], "mean": [100.0], "std": [0.0], "count": [634]}, "index": {"min": [66695], "max": [67328], "mean": [67011.5], "std": [183.0198076711917], "count": [634]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [634]}}} +{"episode_index": 101, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5728987453655926]], [[0.5349433121201697]], [[0.48054696517983414]]], "std": [[[0.2794000954153256]], [[0.2684816240374909]], [[0.27334997663056715]]], "count": [114]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.594847396609716]], [[0.5639463579291365]], [[0.5154698429079234]]], "std": [[[0.2609303617108112]], [[0.2414894076873539]], [[0.259856750060242]]], "count": [114]}, "observation.state": {"min": [0.6966677308082581, -0.03695328161120415, 0.1278543770313263, -1.1520365476608276, 0.04563659057021141, -0.055605899542570114, -0.6788513660430908, -0.26583191752433777, 0.12191347777843475, 0.438671350479126, -0.0277372095733881, -0.17168375849723816], "max": [0.8194051384925842, 0.11173249781131744, 0.14200079441070557, -0.47075390815734863, 0.41113921999931335, 0.6481197476387024, -0.341576486825943, -0.033864181488752365, 0.149031862616539, 1.053062915802002, 0.3241017758846283, 0.06491837650537491], "mean": [0.7402961254119873, 0.062038201838731766, 0.13626061379909515, -0.8626163005828857, 0.23399853706359863, 0.21764500439167023, -0.5620872378349304, -0.135893315076828, 0.1388092339038849, 0.8535330295562744, 0.0801009088754654, -0.07054242491722107], "std": [0.033010583370923996, 0.04036208987236023, 0.003787559224292636, 0.20665158331394196, 0.10149744153022766, 0.19364768266677856, 0.09785293787717819, 0.05590937286615372, 0.0073814657516777515, 0.13928519189357758, 0.08005253225564957, 0.06032625213265419], "count": [557]}, "action": {"min": [-0.08684661984443665, -0.06513171643018723, 0.09890635311603546, 0.2881959080696106, -0.5319398641586304, 0.6072447896003723, -0.5744731426239014, 0.11421401798725128, -0.08072148263454437, 0.06963275372982025, 0.2794845998287201, -0.3146848678588867, -0.5625321865081787, 0.7586217522621155], "max": [-0.06983375549316406, -0.0471828430891037, 0.13013596832752228, 0.5377622246742249, -0.23864732682704926, 0.8683878183364868, -0.2858320474624634, 0.15843971073627472, -0.05975670367479324, 0.09727171063423157, 0.4708665907382965, -0.06523928791284561, -0.28267982602119446, 0.8497063517570496], "mean": [-0.07776462286710739, -0.05487081781029701, 0.1202511340379715, 0.3895661234855652, -0.34497255086898804, 0.7366969585418701, -0.4010359048843384, 0.12971752882003784, -0.07006695866584778, 0.08619937300682068, 0.3957441449165344, -0.1933467984199524, -0.37458640336990356, 0.8085017204284668], "std": [0.0040124766528606415, 0.003982122987508774, 0.008472411893308163, 0.07119005918502808, 0.08362063020467758, 0.07556423544883728, 0.08893420547246933, 0.013503174297511578, 0.005952197127044201, 0.00704966438934207, 0.05150001123547554, 0.06517475843429565, 0.06833381205797195, 0.02107848972082138], "count": [557]}, "timestamp": {"min": [0.0], "max": [18.533333333333335], "mean": [9.266666666666666], "std": [5.359726361174297], "count": [557]}, "frame_index": {"min": [0], "max": [556], "mean": [278.0], "std": [160.7917908352289], "count": [557]}, "episode_index": {"min": [101], "max": [101], "mean": [101.0], "std": [0.0], "count": [557]}, "index": {"min": [67329], "max": [67885], "mean": [67607.0], "std": [160.7917908352289], "count": [557]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [557]}}} +{"episode_index": 102, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5790330097669952]], [[0.5400837672168679]], [[0.48546822264687417]]], "std": [[[0.2764944342377751]], [[0.26550163881793726]], [[0.2704734995015229]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6017770600236328]], [[0.5693034438351612]], [[0.5211487712787563]]], "std": [[[0.25694776843670736]], [[0.23742242727137552]], [[0.25578106232630704]]], "count": [118]}, "observation.state": {"min": [0.6661938428878784, -0.04063702002167702, 0.12606291472911835, -1.9113237857818604, -0.406493604183197, -0.1857248991727829, -0.6487250328063965, -0.26642656326293945, 0.12039422988891602, 0.48060935735702515, -0.046456411480903625, -0.1565435528755188], "max": [0.7908232808113098, 0.12147858738899231, 0.1491018682718277, 0.5170953869819641, 0.6266149878501892, 1.1617934703826904, -0.378776878118515, -0.0914217084646225, 0.14704465866088867, 1.2541555166244507, 0.39255666732788086, 0.060574330389499664], "mean": [0.7225271463394165, 0.06592939049005508, 0.13708613812923431, -0.8054544925689697, 0.37436696887016296, 0.3758485019207001, -0.5330026149749756, -0.1654384732246399, 0.13153812289237976, 0.8886825442314148, 0.20195619761943817, -0.04873454570770264], "std": [0.03165845200419426, 0.042827967554330826, 0.004277252592146397, 0.49935296177864075, 0.21666434407234192, 0.31987226009368896, 0.09738483279943466, 0.0564032681286335, 0.008323830552399158, 0.24968165159225464, 0.12700821459293365, 0.04036588594317436], "count": [583]}, "action": {"min": [-0.09102825820446014, -0.06995980441570282, 0.1041209027171135, -0.5224288105964661, -0.538011372089386, -0.573333740234375, -0.5764174461364746, 0.11817736178636551, -0.08195746690034866, 0.06973050534725189, 0.2702663242816925, -0.33250755071640015, -0.5687681436538696, 0.7517722249031067], "max": [-0.06618236750364304, -0.04420637711882591, 0.13431531190872192, 0.6534344553947449, 0.6572682857513428, 0.8560885787010193, 0.7113175392150879, 0.156040221452713, -0.05850778892636299, 0.08723484724760056, 0.4622299075126648, -0.15008850395679474, -0.2016109675168991, 0.8573176860809326], "mean": [-0.07905891537666321, -0.054713692516088486, 0.12204645574092865, 0.3714381456375122, -0.22079069912433624, 0.5906432867050171, -0.22808073461055756, 0.13617275655269623, -0.06925593316555023, 0.08069885522127151, 0.3625441789627075, -0.2295067459344864, -0.3746919333934784, 0.8079839944839478], "std": [0.005675214808434248, 0.004984911065548658, 0.007706142961978912, 0.30573973059654236, 0.298491895198822, 0.3132016062736511, 0.36295419931411743, 0.013312911614775658, 0.007751935627311468, 0.0052785491570830345, 0.05990174785256386, 0.04965618997812271, 0.12553013861179352, 0.029060715809464455], "count": [583]}, "timestamp": {"min": [0.0], "max": [19.4], "mean": [9.700000000000001], "std": [5.609911863043047], "count": [583]}, "frame_index": {"min": [0], "max": [582], "mean": [291.0], "std": [168.2973558912914], "count": [583]}, "episode_index": {"min": [102], "max": [102], "mean": [102.0], "std": [0.0], "count": [583]}, "index": {"min": [67886], "max": [68468], "mean": [68177.0], "std": [168.2973558912914], "count": [583]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [583]}}} +{"episode_index": 103, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5761790640970823]], [[0.5382880703683343]], [[0.4840665811495938]]], "std": [[[0.2785104277705614]], [[0.2679491466871762]], [[0.27305845973689163]]], "count": [107]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5980617988109055]], [[0.5670412492619062]], [[0.5186250178160569]]], "std": [[[0.25893441776312076]], [[0.23967869670550498]], [[0.2580249530358871]]], "count": [107]}, "observation.state": {"min": [0.6929994225502014, -0.03262855112552643, 0.12706364691257477, -1.370952844619751, -0.10083773732185364, -0.10632581263780594, -0.6857246160507202, -0.22741131484508514, 0.11875441670417786, 0.9454919695854187, -0.09236627072095871, -0.16895924508571625], "max": [0.8246411681175232, 0.1040252074599266, 0.1419333815574646, -0.36926397681236267, 0.4261692464351654, 0.8504754900932312, -0.38723325729370117, -0.03589525818824768, 0.14260485768318176, 1.5718358755111694, 0.16369053721427917, 0.23945969343185425], "mean": [0.739414393901825, 0.05671101436018944, 0.13338740170001984, -0.9597998857498169, 0.10778959840536118, 0.21389299631118774, -0.5684148073196411, -0.13365623354911804, 0.13253335654735565, 1.1748713254928589, -0.02039830945432186, 0.04171654209494591], "std": [0.04048820585012436, 0.034006424248218536, 0.0034202218521386385, 0.2567387819290161, 0.13043497502803802, 0.2396453469991684, 0.10298046469688416, 0.06449086219072342, 0.007888611406087875, 0.1520576775074005, 0.07107368856668472, 0.10642089694738388], "count": [509]}, "action": {"min": [-0.08879972249269485, -0.06969244033098221, 0.1008271723985672, -0.45628055930137634, -0.5796482563018799, -0.5940638184547424, -0.498711496591568, 0.11632759869098663, -0.07641017436981201, 0.07121439278125763, 0.23047491908073425, -0.36723944544792175, -0.3563903868198395, 0.8341543674468994], "max": [-0.0683671310544014, -0.050482816994190216, 0.1294582635164261, 0.5373862385749817, 0.6695355772972107, 0.9259509444236755, 0.4726381003856659, 0.15686123073101044, -0.05633760243654251, 0.09066879004240036, 0.42750313878059387, -0.04653969407081604, -0.0433029979467392, 0.9180281758308411], "mean": [-0.08018358051776886, -0.05596715956926346, 0.11809565871953964, 0.28953346610069275, -0.26712170243263245, 0.6938448548316956, -0.28029343485832214, 0.13286566734313965, -0.06705138087272644, 0.08157196640968323, 0.3370724320411682, -0.19359266757965088, -0.22697658836841583, 0.8830237984657288], "std": [0.005621797405183315, 0.004489362705498934, 0.007382775191217661, 0.21712085604667664, 0.26791998744010925, 0.3444596827030182, 0.21738415956497192, 0.014092615805566311, 0.00714912498369813, 0.005858486983925104, 0.064308762550354, 0.08578503131866455, 0.0755172148346901, 0.021381573751568794], "count": [509]}, "timestamp": {"min": [0.0], "max": [16.933333333333334], "mean": [8.466666666666665], "std": [4.897845331254233], "count": [509]}, "frame_index": {"min": [0], "max": [508], "mean": [254.0], "std": [146.935359937627], "count": [509]}, "episode_index": {"min": [103], "max": [103], "mean": [103.0], "std": [0.0], "count": [509]}, "index": {"min": [68469], "max": [68977], "mean": [68723.0], "std": [146.935359937627], "count": [509]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [509]}}} +{"episode_index": 104, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5763818043320388]], [[0.5385000888036374]], [[0.48393322361150576]]], "std": [[[0.2756886945762887]], [[0.2662435167113641]], [[0.27173377413903116]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5973897788986771]], [[0.5664888107416879]], [[0.5179495990022418]]], "std": [[[0.25553740466029223]], [[0.23785308930933016]], [[0.2565357074429735]]], "count": [138]}, "observation.state": {"min": [0.677762508392334, -0.029068369418382645, 0.12290774285793304, -1.4101648330688477, -0.1470208764076233, -0.17156220972537994, -0.7426411509513855, -0.2480001151561737, 0.11600498855113983, 0.6150205731391907, -0.1567220687866211, -0.2857912480831146], "max": [0.8082457780838013, 0.12177976965904236, 0.14409948885440826, -0.5191922783851624, 0.46155810356140137, 0.7809489369392395, -0.4135291874408722, -0.04141702130436897, 0.1443781852722168, 1.2145241498947144, 0.16382716596126556, 0.04787195846438408], "mean": [0.7359070181846619, 0.06911607086658478, 0.13099001348018646, -0.948704183101654, 0.21382644772529602, 0.1938045471906662, -0.5955400466918945, -0.13916811347007751, 0.13190311193466187, 0.9949992895126343, -0.012618971057236195, -0.11188779771327972], "std": [0.03617057204246521, 0.03875909000635147, 0.005029934924095869, 0.20459644496440887, 0.1279369443655014, 0.2169962078332901, 0.09566259384155273, 0.05709768459200859, 0.008036702871322632, 0.1526135802268982, 0.0861976370215416, 0.07487596571445465], "count": [717]}, "action": {"min": [-0.09135656803846359, -0.0654781237244606, 0.0999627485871315, -0.5081228017807007, -0.5774250626564026, -0.5747412443161011, -0.5629000663757324, 0.11184510588645935, -0.07672110199928284, 0.06965231895446777, 0.28677257895469666, -0.29112446308135986, -0.498218297958374, 0.7758083939552307], "max": [-0.06789734959602356, -0.045165251940488815, 0.1295168548822403, 0.5476391911506653, 0.5774546265602112, 0.9188745617866516, 0.28363868594169617, 0.15541206300258636, -0.0531730130314827, 0.0883253663778305, 0.5185944437980652, -0.10129914432764053, -0.17225591838359833, 0.8662921190261841], "mean": [-0.08193961530923843, -0.05256336182355881, 0.11764471232891083, 0.38488540053367615, -0.32578131556510925, 0.7577890157699585, -0.3643357753753662, 0.1303544044494629, -0.06624715030193329, 0.0793769583106041, 0.42238494753837585, -0.1987939029932022, -0.2943524718284607, 0.8260868191719055], "std": [0.00606419937685132, 0.004068827256560326, 0.007990976795554161, 0.09317243099212646, 0.09807649999856949, 0.1067836806178093, 0.09509364515542984, 0.013153442181646824, 0.006573447957634926, 0.005118062719702721, 0.05310637876391411, 0.05133368447422981, 0.08525639772415161, 0.01691977120935917], "count": [717]}, "timestamp": {"min": [0.0], "max": [23.866666666666667], "mean": [11.933333333333334], "std": [6.89932900655859], "count": [717]}, "frame_index": {"min": [0], "max": [716], "mean": [358.0], "std": [206.9798701967577], "count": [717]}, "episode_index": {"min": [104], "max": [104], "mean": [104.0], "std": [0.0], "count": [717]}, "index": {"min": [68978], "max": [69694], "mean": [69336.0], "std": [206.9798701967577], "count": [717]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [717]}}} +{"episode_index": 105, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5726058445035265]], [[0.5353160518444666]], [[0.48084261105572174]]], "std": [[[0.27724442421805806]], [[0.26779094539268394]], [[0.2734514957998866]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5943190151766922]], [[0.5640341844835862]], [[0.515597429932425]]], "std": [[[0.25776763642797906]], [[0.24010506695937855]], [[0.25895068619469985]]], "count": [118]}, "observation.state": {"min": [0.6945439577102661, -0.01967751979827881, 0.12560142576694489, -1.058934211730957, 0.08621762692928314, 0.027953900396823883, -0.6740247011184692, -0.19186358153820038, 0.12520216405391693, 0.7332857251167297, 0.06490234285593033, -0.28492939472198486], "max": [0.8057513236999512, 0.12009622156620026, 0.14389726519584656, -0.5342899560928345, 0.6266149878501892, 0.6635882258415222, -0.4013890326023102, 0.023214539512991905, 0.1477355808019638, 1.287915587425232, 0.2560568153858185, 0.1340319663286209], "mean": [0.740288496017456, 0.05909542366862297, 0.13344983756542206, -0.7040736079216003, 0.24492107331752777, 0.3308388888835907, -0.5594984889030457, -0.08840356767177582, 0.1380934715270996, 1.054726004600525, 0.16662092506885529, -0.13468298316001892], "std": [0.03222719207406044, 0.0390685573220253, 0.0042770435102283955, 0.13800087571144104, 0.10910578072071075, 0.13460750877857208, 0.09216625243425369, 0.06532404571771622, 0.0065082102082669735, 0.17414472997188568, 0.04434937983751297, 0.11824436485767365], "count": [584]}, "action": {"min": [-0.08943752199411392, -0.06738407909870148, 0.10473883897066116, 0.30566680431365967, -0.5526272058486938, 0.5782756209373474, -0.555402398109436, 0.11313530802726746, -0.07575853168964386, 0.07877005636692047, 0.19846493005752563, -0.3649102747440338, -0.4590604305267334, 0.7846490740776062], "max": [-0.07091183215379715, -0.04671332240104675, 0.1312132179737091, 0.5257420539855957, -0.24429196119308472, 0.7707487344741821, -0.241090789437294, 0.15141402184963226, -0.05258285626769066, 0.10000967234373093, 0.4722134470939636, -0.15953928232192993, -0.16536885499954224, 0.875622570514679], "mean": [-0.07974828779697418, -0.05424733832478523, 0.11829940229654312, 0.3948184549808502, -0.39489999413490295, 0.6852717399597168, -0.4501591622829437, 0.12938837707042694, -0.06434798240661621, 0.08911900222301483, 0.37393972277641296, -0.27834293246269226, -0.2969449460506439, 0.8214210271835327], "std": [0.0051024616695940495, 0.005150490440428257, 0.007295090705156326, 0.05775634944438934, 0.06790399551391602, 0.039768606424331665, 0.08002336323261261, 0.013020510785281658, 0.0071115330792963505, 0.006156821735203266, 0.08102882653474808, 0.0658852681517601, 0.09082335978746414, 0.025098761543631554], "count": [584]}, "timestamp": {"min": [0.0], "max": [19.433333333333334], "mean": [9.716666666666665], "std": [5.619534381660696], "count": [584]}, "frame_index": {"min": [0], "max": [583], "mean": [291.5], "std": [168.5860314498209], "count": [584]}, "episode_index": {"min": [105], "max": [105], "mean": [105.0], "std": [0.0], "count": [584]}, "index": {"min": [69695], "max": [70278], "mean": [69986.5], "std": [168.5860314498209], "count": [584]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [584]}}} +{"episode_index": 106, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5711692265795206]], [[0.5344640817901235]], [[0.4799599468954248]]], "std": [[[0.27611722738552763]], [[0.26772769607305436]], [[0.27397087438736456]]], "count": [120]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5930775803376905]], [[0.5633299927378359]], [[0.5149169072258533]]], "std": [[[0.2571016427106769]], [[0.2408698127154551]], [[0.26007140160126524]]], "count": [120]}, "observation.state": {"min": [0.6991467475891113, 0.01430249959230423, 0.125059574842453, -1.4791529178619385, -0.31207776069641113, 0.004292820114642382, -0.6839715838432312, -0.1734834760427475, 0.1228688508272171, 0.6148108839988708, -0.005328820087015629, -0.44425252079963684], "max": [0.82542884349823, 0.12055958062410355, 0.1449783742427826, -0.804370641708374, 0.39460620284080505, 0.7531552314758301, -0.3921758234500885, 0.017391590401530266, 0.14770576357841492, 1.2187179327011108, 0.20399828255176544, 0.032415758818387985], "mean": [0.7600297331809998, 0.08105725049972534, 0.13299883902072906, -1.1092572212219238, 0.06387230008840561, 0.26839548349380493, -0.5733283162117004, -0.08622042834758759, 0.1366109848022461, 0.9836133122444153, 0.0818849429488182, -0.18719123303890228], "std": [0.03718125447630882, 0.027629535645246506, 0.004559708293527365, 0.21547184884548187, 0.16992731392383575, 0.19047819077968597, 0.09711690247058868, 0.06235773488879204, 0.00752237206324935, 0.17452137172222137, 0.056857768446207047, 0.12744051218032837], "count": [596]}, "action": {"min": [-0.08599135279655457, -0.06218394264578819, 0.10226953774690628, 0.179061159491539, -0.5424724221229553, 0.6064133644104004, -0.43050259351730347, 0.11171801388263702, -0.07188690453767776, 0.0791032537817955, 0.2614295482635498, -0.33565768599510193, -0.507560670375824, 0.7371613383293152], "max": [-0.07284370064735413, -0.04370389133691788, 0.13232657313346863, 0.5680606365203857, -0.26966241002082825, 0.9390939474105835, -0.09853251278400421, 0.15466159582138062, -0.051171667873859406, 0.09658832848072052, 0.5486051440238953, -0.1149725690484047, -0.17877162992954254, 0.8578483462333679], "mean": [-0.07828962057828903, -0.05105799809098244, 0.11783512681722641, 0.3631370961666107, -0.3690139949321747, 0.7928900718688965, -0.26958656311035156, 0.12913180887699127, -0.06339298188686371, 0.08753377944231033, 0.4118099510669708, -0.24382029473781586, -0.31058040261268616, 0.8078644275665283], "std": [0.0035929649602621794, 0.004611055366694927, 0.008143574930727482, 0.10147666186094284, 0.06724590808153152, 0.0799558013677597, 0.09693458676338196, 0.013880479149520397, 0.0071708946488797665, 0.005272438749670982, 0.08307694643735886, 0.06754989922046661, 0.09759476780891418, 0.029494334012269974], "count": [596]}, "timestamp": {"min": [0.0], "max": [19.833333333333332], "mean": [9.916666666666666], "std": [5.735004601373723], "count": [596]}, "frame_index": {"min": [0], "max": [595], "mean": [297.5], "std": [172.0501380412117], "count": [596]}, "episode_index": {"min": [106], "max": [106], "mean": [106.0], "std": [0.0], "count": [596]}, "index": {"min": [70279], "max": [70874], "mean": [70576.5], "std": [172.0501380412117], "count": [596]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [596]}}} +{"episode_index": 107, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5735449405181736]], [[0.5362681051237442]], [[0.4814250952179433]]], "std": [[[0.2782970910863181]], [[0.269068791275748]], [[0.27491404638059563]]], "count": [139]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5942880342784596]], [[0.5645320723813105]], [[0.5148602235858372]]], "std": [[[0.26028827154952067]], [[0.2425646890052422]], [[0.2624617868952112]]], "count": [139]}, "observation.state": {"min": [0.70145583152771, 0.011607269756495953, 0.12486384063959122, -1.5210908651351929, 0.19334064424037933, -0.04232480004429817, -0.635712206363678, -0.13998225331306458, 0.13313935697078705, 0.5690985321998596, -0.04932577908039093, -0.5453258752822876], "max": [0.7821043133735657, 0.11744731664657593, 0.14568613469600677, -0.7351729273796082, 0.511976957321167, 0.8316317796707153, -0.46065327525138855, -0.03309962898492813, 0.14685280621051788, 0.9809295535087585, 0.17065899074077606, -0.2756768763065338], "mean": [0.7417746186256409, 0.07578223943710327, 0.13938990235328674, -0.9792553186416626, 0.3147852122783661, 0.3418569266796112, -0.575966477394104, -0.09705983102321625, 0.14172860980033875, 0.7912502884864807, 0.0444614440202713, -0.3739703297615051], "std": [0.022424979135394096, 0.035497307777404785, 0.0037701542023569345, 0.18371914327144623, 0.07013435661792755, 0.2543606162071228, 0.054868146777153015, 0.03029344417154789, 0.005019526928663254, 0.10395453125238419, 0.05700817331671715, 0.05460922792553902], "count": [721]}, "action": {"min": [-0.0904080867767334, -0.06216762214899063, 0.11289426684379578, 0.36734241247177124, -0.5643181204795837, 0.567847490310669, -0.46814483404159546, 0.11723754554986954, -0.07407774031162262, 0.07990337908267975, 0.429464727640152, -0.3496304750442505, -0.4930554926395416, 0.6982571482658386], "max": [-0.06713218241930008, -0.04584953188896179, 0.13060002028942108, 0.5495964288711548, -0.15542221069335938, 0.8439154028892517, -0.14657334983348846, 0.1432645469903946, -0.05901956185698509, 0.09590377658605576, 0.565422773361206, -0.17398673295974731, -0.2672773003578186, 0.7497006058692932], "mean": [-0.07504376769065857, -0.05313370004296303, 0.12281126528978348, 0.45929619669914246, -0.36064013838768005, 0.7219107747077942, -0.33117324113845825, 0.1264277994632721, -0.06738308072090149, 0.09087318181991577, 0.5110198855400085, -0.23640206456184387, -0.37134018540382385, 0.7343648672103882], "std": [0.004528494086116552, 0.004712887108325958, 0.005474552046507597, 0.057059772312641144, 0.1056717112660408, 0.07471353560686111, 0.09027759730815887, 0.008204962126910686, 0.004169868305325508, 0.003196756588295102, 0.03585103526711464, 0.03371666744351387, 0.05753299221396446, 0.007417541928589344], "count": [721]}, "timestamp": {"min": [0.0], "max": [24.0], "mean": [12.0], "std": [6.937819061732104], "count": [721]}, "frame_index": {"min": [0], "max": [720], "mean": [360.0], "std": [208.13457185196313], "count": [721]}, "episode_index": {"min": [107], "max": [107], "mean": [107.0], "std": [0.0], "count": [721]}, "index": {"min": [70875], "max": [71595], "mean": [71235.0], "std": [208.13457185196313], "count": [721]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [721]}}} +{"episode_index": 108, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5773326709062003]], [[0.5390426731878938]], [[0.4837878963522346]]], "std": [[[0.2785429430466448]], [[0.26892480998182783]], [[0.27499546269476843]]], "count": [148]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5980537541217688]], [[0.5668429366866867]], [[0.5177367808985457]]], "std": [[[0.26035119761937797]], [[0.24253763488396013]], [[0.261970392834982]]], "count": [148]}, "observation.state": {"min": [0.6789440512657166, 0.033076461404561996, 0.13117288053035736, -1.5493990182876587, 0.06872815638780594, 0.21029256284236908, -0.6332100629806519, -0.16663341224193573, 0.1343565732240677, 0.46928608417510986, -0.29513484239578247, -0.4647725224494934], "max": [0.8015192747116089, 0.1276799440383911, 0.14849649369716644, 0.012162020429968834, 0.656128466129303, 0.8567216992378235, -0.46564218401908875, -0.02714540995657444, 0.1504525989294052, 0.9662512540817261, -0.11176866292953491, -0.21154919266700745], "mean": [0.7380838990211487, 0.08326940983533859, 0.1410047858953476, -0.9529398083686829, 0.28478187322616577, 0.5318341851234436, -0.5644071698188782, -0.08022211492061615, 0.1426190286874771, 0.8278295993804932, -0.2228809893131256, -0.3411668539047241], "std": [0.029085423797369003, 0.027366062626242638, 0.0042101736180484295, 0.2785034775733948, 0.13124307990074158, 0.1775849461555481, 0.0498502179980278, 0.032603323459625244, 0.005360570270568132, 0.11268868297338486, 0.03684932366013527, 0.047721948474645615], "count": [788]}, "action": {"min": [-0.08983873575925827, -0.06124265864491463, 0.11120723932981491, -0.39191535115242004, -0.5794334411621094, -0.5786440372467041, -0.5766878128051758, 0.11821924149990082, -0.07749705016613007, 0.08344035595655441, 0.4774738550186157, -0.1866980642080307, -0.49882832169532776, 0.7213255763053894], "max": [-0.06829993426799774, -0.04582969844341278, 0.13749203085899353, 0.6268035769462585, 0.46542659401893616, 0.8161594867706299, 0.6790891885757446, 0.14210380613803864, -0.06129525229334831, 0.09949047118425369, 0.6187710762023926, -0.027474476024508476, -0.2519731819629669, 0.797656238079071], "mean": [-0.0747545063495636, -0.052874647080898285, 0.12507548928260803, 0.4573061466217041, -0.4085129499435425, 0.6582675576210022, -0.26337164640426636, 0.12880823016166687, -0.06811445206403732, 0.093271903693676, 0.5410925149917603, -0.11370361596345901, -0.33124223351478577, 0.7609843015670776], "std": [0.004398022312670946, 0.0034494525752961636, 0.006419443991035223, 0.1493014544248581, 0.16367463767528534, 0.20065204799175262, 0.1787906140089035, 0.007888193242251873, 0.004323085304349661, 0.003099127672612667, 0.0274689719080925, 0.033580709248781204, 0.05795818194746971, 0.015149271115660667], "count": [788]}, "timestamp": {"min": [0.0], "max": [26.233333333333334], "mean": [13.116666666666667], "std": [7.582527429704571], "count": [788]}, "frame_index": {"min": [0], "max": [787], "mean": [393.5], "std": [227.47582289113717], "count": [788]}, "episode_index": {"min": [108], "max": [108], "mean": [108.0], "std": [0.0], "count": [788]}, "index": {"min": [71596], "max": [72383], "mean": [71989.5], "std": [227.47582289113717], "count": [788]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [788]}}} +{"episode_index": 109, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5732618136062211]], [[0.5352355604853458]], [[0.47920638328324033]]], "std": [[[0.27764048926392887]], [[0.26957110360767644]], [[0.27700598540710686]]], "count": [137]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5939036643448945]], [[0.5637717864923747]], [[0.5135472385223351]]], "std": [[[0.26001071919119834]], [[0.24326743740171666]], [[0.26421049982453176]]], "count": [137]}, "observation.state": {"min": [0.6745266318321228, 0.01801713928580284, 0.12543939054012299, -1.3044811487197876, 0.1654668003320694, 0.1461792290210724, -0.6360906362533569, -0.11586415767669678, 0.13360083103179932, 0.4388810396194458, -0.04946241155266762, -0.6202929615974426], "max": [0.7918195128440857, 0.13068409264087677, 0.14418374001979828, -0.37345778942108154, 0.5772892236709595, 0.7393718957901001, -0.45142462849617004, -0.004533240105956793, 0.15237240493297577, 0.9505245089530945, 0.21656885743141174, -0.30324873328208923], "mean": [0.7321798801422119, 0.08084351569414139, 0.13962121307849884, -0.8275679349899292, 0.34860873222351074, 0.47982916235923767, -0.5667164325714111, -0.061581823974847794, 0.14367558062076569, 0.7080402374267578, 0.0614217147231102, -0.4500013291835785], "std": [0.028406739234924316, 0.02620532177388668, 0.004066400229930878, 0.2307131588459015, 0.0849824920296669, 0.13938871026039124, 0.05669224634766579, 0.03012845478951931, 0.005602915771305561, 0.13656790554523468, 0.05756065249443054, 0.07253451645374298], "count": [710]}, "action": {"min": [-0.09038399904966354, -0.06093446537852287, 0.11216943711042404, 0.39008215069770813, -0.5275341868400574, 0.5829328894615173, -0.5974591374397278, 0.11495623737573624, -0.07342472672462463, 0.0878802090883255, 0.42757049202919006, -0.3322705328464508, -0.5442016124725342, 0.6440008878707886], "max": [-0.06700120121240616, -0.041599854826927185, 0.13481974601745605, 0.5707172155380249, -0.26681968569755554, 0.7921213507652283, -0.11581167578697205, 0.14311200380325317, -0.05730733275413513, 0.10303458571434021, 0.6045494675636292, -0.1759137213230133, -0.3031073212623596, 0.7463862895965576], "mean": [-0.07637633383274078, -0.05254482105374336, 0.12459909915924072, 0.4810536503791809, -0.4027293026447296, 0.6705172061920166, -0.36965814232826233, 0.12614969909191132, -0.06449605524539948, 0.09549236297607422, 0.5193641781806946, -0.2519826889038086, -0.4046185612678528, 0.702337384223938], "std": [0.005403575953096151, 0.003627205966040492, 0.005502465181052685, 0.05323251336812973, 0.057082898914813995, 0.05832298845052719, 0.10326112806797028, 0.008861785754561424, 0.003971450496464968, 0.0037287073209881783, 0.0502103790640831, 0.04146536812186241, 0.07231568545103073, 0.017392266541719437], "count": [710]}, "timestamp": {"min": [0.0], "max": [23.633333333333333], "mean": [11.816666666666665], "std": [6.831971408995601], "count": [710]}, "frame_index": {"min": [0], "max": [709], "mean": [354.5], "std": [204.959142269868], "count": [710]}, "episode_index": {"min": [109], "max": [109], "mean": [109.0], "std": [0.0], "count": [710]}, "index": {"min": [72384], "max": [73093], "mean": [72738.5], "std": [204.959142269868], "count": [710]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [710]}}} +{"episode_index": 110, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5628348321784854]], [[0.5271148684620047]], [[0.47296937810211803]]], "std": [[[0.28059641369791294]], [[0.27267981534760044]], [[0.27779723199607936]]], "count": [133]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5790412510033254]], [[0.5496686303176241]], [[0.49792087449014694]]], "std": [[[0.25894137259419703]], [[0.24242924296416124]], [[0.2631063316743703]]], "count": [133]}, "observation.state": {"min": [0.6826046109199524, -0.009877379983663559, 0.12325254827737808, -2.264441728591919, -0.3277909457683563, 0.04993312060832977, -0.683546781539917, -0.17830246686935425, 0.11421222239732742, 0.09687674790620804, -0.1809067279100418, -0.4856022298336029], "max": [0.8001909852027893, 0.11715386062860489, 0.1507701873779297, -0.6806535720825195, 0.8634060621261597, 1.263726830482483, -0.5731348991394043, -0.0368528813123703, 0.15265630185604095, 1.1786671876907349, 0.5500985383987427, -0.0028605000115931034], "mean": [0.7504488229751587, 0.06342766433954239, 0.1342831403017044, -1.33164644241333, 0.23347996175289154, 0.6226058006286621, -0.6157705187797546, -0.11398562043905258, 0.1413728892803192, 0.6357530355453491, 0.19702787697315216, -0.23391754925251007], "std": [0.025228098034858704, 0.026276620104908943, 0.006638455204665661, 0.3737839460372925, 0.22184951603412628, 0.29629698395729065, 0.02902355045080185, 0.024650782346725464, 0.00865162629634142, 0.40583619475364685, 0.1551877111196518, 0.11178949475288391], "count": [680]}, "action": {"min": [-0.0917142927646637, -0.07472328841686249, 0.10398775339126587, -0.59279465675354, -0.6623910069465637, -0.6698468327522278, -0.40374404191970825, 0.1155635342001915, -0.0825084000825882, 0.06816960871219635, -0.5703993439674377, -0.39488616585731506, -0.5976651310920715, -0.608418345451355], "max": [-0.06463350355625153, -0.043817777186632156, 0.1301194429397583, 0.730913519859314, 0.7733485698699951, 0.9042607545852661, 0.28698280453681946, 0.13267336785793304, -0.04574346914887428, 0.09353219717741013, 0.5842047333717346, 0.34245532751083374, 0.6741339564323425, 0.8368332982063293], "mean": [-0.07759622484445572, -0.054095763713121414, 0.1173451840877533, 0.3459848165512085, -0.2447218894958496, 0.5379713177680969, -0.0221828855574131, 0.12205158919095993, -0.06659277528524399, 0.08702640235424042, 0.16988946497440338, -0.12872743606567383, -0.10126342624425888, 0.37558770179748535], "std": [0.0051150876097381115, 0.00688084727153182, 0.005292173475027084, 0.34978756308555603, 0.39768239855766296, 0.47566384077072144, 0.15408192574977875, 0.003928666934370995, 0.00803197268396616, 0.005943569354712963, 0.39795321226119995, 0.24513374269008636, 0.4787135720252991, 0.5963408350944519], "count": [680]}, "timestamp": {"min": [0.0], "max": [22.633333333333333], "mean": [11.316666666666666], "std": [6.543295975440987], "count": [680]}, "frame_index": {"min": [0], "max": [679], "mean": [339.5], "std": [196.29887926322962], "count": [680]}, "episode_index": {"min": [110], "max": [110], "mean": [110.0], "std": [0.0], "count": [680]}, "index": {"min": [73094], "max": [73773], "mean": [73433.5], "std": [196.29887926322962], "count": [680]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [680]}}} +{"episode_index": 111, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.57948625]], [[0.5445347984749456]], [[0.4914171623093682]]], "std": [[[0.2774979121681039]], [[0.2713290724115707]], [[0.2791016439437425]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6050618110021786]], [[0.5748729956427014]], [[0.5265775136165577]]], "std": [[[0.25503629973311115]], [[0.24017737174590575]], [[0.26308918006295545]]], "count": [100]}, "observation.state": {"min": [0.7737869620323181, 0.014696359634399414, 0.11866627633571625, -1.6976498365402222, -0.18118000030517578, 0.14329363405704498, -0.7945070266723633, -0.17411674559116364, 0.1058589294552803, 0.7427217960357666, -0.21725203096866608, -0.3461317718029022], "max": [0.8816503286361694, 0.10034918785095215, 0.1508803814649582, -0.6592651605606079, 0.25250425934791565, 0.7923060059547424, -0.6048212647438049, 0.024141259491443634, 0.1333143562078476, 1.0413202047348022, 0.15166650712490082, -0.02880951017141342], "mean": [0.8254148364067078, 0.07086183875799179, 0.13755711913108826, -1.1930038928985596, 0.05537700280547142, 0.38800567388534546, -0.6817837357521057, -0.05492546781897545, 0.12002132833003998, 0.9255403876304626, -0.06485342234373093, -0.14382557570934296], "std": [0.03222842514514923, 0.023950936272740364, 0.010535855777561665, 0.24948154389858246, 0.15071333944797516, 0.18999631702899933, 0.04472702369093895, 0.05307374522089958, 0.008195827715098858, 0.08869387954473495, 0.09028925001621246, 0.06698351353406906], "count": [394]}, "action": {"min": [-0.07861088961362839, -0.06315618753433228, 0.09974448382854462, -0.5332512855529785, -0.5673647522926331, -0.5592368245124817, -0.39319726824760437, 0.11896165460348129, -0.06109987571835518, 0.05485675483942032, 0.3399905562400818, -0.38302895426750183, -0.42845407128334045, 0.7225507497787476], "max": [-0.0575631707906723, -0.03858834132552147, 0.12560950219631195, 0.5471630096435547, 0.5741003751754761, 0.8496048450469971, 0.3705672323703766, 0.13610929250717163, -0.03955381363630295, 0.08268829435110092, 0.5445187091827393, -0.1686602532863617, -0.2585146129131317, 0.8472121357917786], "mean": [-0.06674455851316452, -0.050167977809906006, 0.11265596747398376, 0.3810878396034241, -0.38337242603302, 0.7330625653266907, -0.19227388501167297, 0.1292174905538559, -0.049734681844711304, 0.07298677414655685, 0.42624199390411377, -0.21911099553108215, -0.3319593071937561, 0.807460367679596], "std": [0.0064994716085493565, 0.006945156492292881, 0.009348922409117222, 0.1745191067457199, 0.1853330135345459, 0.22866065800189972, 0.12789689004421234, 0.005699768662452698, 0.006539902184158564, 0.007464781869202852, 0.047842517495155334, 0.04691914841532707, 0.052464164793491364, 0.029586002230644226], "count": [394]}, "timestamp": {"min": [0.0], "max": [13.1], "mean": [6.55], "std": [3.7912545563587674], "count": [394]}, "frame_index": {"min": [0], "max": [393], "mean": [196.5], "std": [113.73763669076301], "count": [394]}, "episode_index": {"min": [111], "max": [111], "mean": [111.0], "std": [0.0], "count": [394]}, "index": {"min": [73774], "max": [74167], "mean": [73970.5], "std": [113.73763669076301], "count": [394]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [394]}}} +{"episode_index": 112, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5818806326711102]], [[0.5461018464591557]], [[0.491765277508143]]], "std": [[[0.27635160199620507]], [[0.27032183795317627]], [[0.2778697700816244]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6075557469962682]], [[0.5762405681744645]], [[0.5267153977652667]]], "std": [[[0.2543147539249523]], [[0.23899414964922]], [[0.261906576752986]]], "count": [101]}, "observation.state": {"min": [0.7640640139579773, 0.025006210431456566, 0.12966400384902954, -2.6137852668762207, -0.24567243456840515, 0.18739044666290283, -0.7646046280860901, -0.03865227848291397, 0.1090659499168396, 1.0056729316711426, -0.1742115467786789, -0.14199285209178925], "max": [0.8876122832298279, 0.1173623725771904, 0.15832756459712982, -0.5267411470413208, 0.37629690766334534, 1.0705147981643677, -0.5741697549819946, 0.11553207784891129, 0.12896141409873962, 1.20781409740448, 0.06052996963262558, 0.08965679258108139], "mean": [0.8255106806755066, 0.08253676444292068, 0.14317914843559265, -1.431480050086975, 0.026799315586686134, 0.5869136452674866, -0.661112904548645, 0.04276371747255325, 0.11788570135831833, 1.082019567489624, -0.0712168961763382, 0.02570059895515442], "std": [0.03199281916022301, 0.019517794251441956, 0.0072786579839885235, 0.3839285671710968, 0.1588136851787567, 0.2024138867855072, 0.04915681481361389, 0.04610974341630936, 0.005417587701231241, 0.061798177659511566, 0.06796921044588089, 0.049536217004060745], "count": [471]}, "action": {"min": [-0.0742158442735672, -0.06011587381362915, 0.10548717528581619, -0.5493614673614502, -0.615545392036438, -0.6111008524894714, -0.3731933832168579, 0.11631551384925842, -0.050748977810144424, 0.06750479340553284, 0.2284882813692093, -0.2852911949157715, -0.3462616503238678, 0.8294204473495483], "max": [-0.04836086183786392, -0.04231669753789902, 0.13287848234176636, 0.5860403776168823, 0.6754400730133057, 0.8844592571258545, 0.4136908948421478, 0.1405317783355713, -0.03304111957550049, 0.08789370954036713, 0.39863693714141846, -0.15400592982769012, -0.259560763835907, 0.8975327610969543], "mean": [-0.06279579550027847, -0.04974929988384247, 0.11723286658525467, 0.2957537770271301, -0.3062332570552826, 0.6279672384262085, -0.010390027426183224, 0.1321762204170227, -0.04024742916226387, 0.07823098450899124, 0.29301682114601135, -0.21300823986530304, -0.3011959195137024, 0.8796316981315613], "std": [0.006506369449198246, 0.004118596203625202, 0.00753696309402585, 0.30480149388313293, 0.3498465120792389, 0.42874667048454285, 0.15868085622787476, 0.006572859361767769, 0.005209040362387896, 0.004047010559588671, 0.04834871366620064, 0.03640149533748627, 0.021038727834820747, 0.013862742111086845], "count": [471]}, "timestamp": {"min": [0.0], "max": [15.666666666666666], "mean": [7.833333333333333], "std": [4.532189398154135], "count": [471]}, "frame_index": {"min": [0], "max": [470], "mean": [235.0], "std": [135.96568194462407], "count": [471]}, "episode_index": {"min": [112], "max": [112], "mean": [112.0], "std": [0.0], "count": [471]}, "index": {"min": [74168], "max": [74638], "mean": [74403.0], "std": [135.96568194462407], "count": [471]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [471]}}} +{"episode_index": 113, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5779485981555513]], [[0.541354839562578]], [[0.48723921780146795]]], "std": [[[0.2763989677991784]], [[0.2702877193711295]], [[0.277238925026243]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6044953069145673]], [[0.5735319737927533]], [[0.5236515403896186]]], "std": [[[0.25426913335269075]], [[0.23901684406116935]], [[0.26193809145892677]]], "count": [103]}, "observation.state": {"min": [0.7704043984413147, 0.0460815504193306, 0.12025681883096695, -2.1057064533233643, -0.48041394352912903, 0.03042915090918541, -0.746471643447876, -0.10509095340967178, 0.10682336986064911, 0.8253396153450012, -0.488475501537323, -0.3888550102710724], "max": [0.9131590723991394, 0.15890294313430786, 0.15250980854034424, -0.5242248773574829, 0.30920839309692383, 0.8837137222290039, -0.5538358092308044, 0.06551194190979004, 0.13687008619308472, 1.2331866025924683, 0.006285279989242554, 0.09622959047555923], "mean": [0.8498020768165588, 0.11047729104757309, 0.13862185180187225, -1.3897905349731445, -0.06593925505876541, 0.44325998425483704, -0.6561785936355591, -0.007538061123341322, 0.12013057619333267, 1.0628734827041626, -0.22991333901882172, -0.057037170976400375], "std": [0.03777574747800827, 0.03153512254357338, 0.007353972177952528, 0.35192543268203735, 0.21320419013500214, 0.2006767839193344, 0.04496343806385994, 0.04392797127366066, 0.008056268095970154, 0.123722605407238, 0.12752553820610046, 0.12121836841106415], "count": [489]}, "action": {"min": [-0.07342684268951416, -0.05218318849802017, 0.09852220863103867, -0.5595895648002625, -0.5842378735542297, -0.5568194389343262, -0.41664206981658936, 0.11683949828147888, -0.055960047990083694, 0.06257154047489166, 0.27731549739837646, -0.30129557847976685, -0.3896630108356476, 0.7619401216506958], "max": [-0.05046563968062401, -0.032496821135282516, 0.135442316532135, 0.5638609528541565, 0.5708495378494263, 0.9411264061927795, 0.4226975440979004, 0.14746356010437012, -0.03830135986208916, 0.08739891648292542, 0.5300672650337219, -0.06243230774998665, -0.17091085016727448, 0.9315111637115479], "mean": [-0.0643172487616539, -0.04239160567522049, 0.11433953046798706, 0.3346439599990845, -0.3505435883998871, 0.7595235705375671, -0.08907879889011383, 0.1323561817407608, -0.04696587473154068, 0.07755401730537415, 0.3712414801120758, -0.14749793708324432, -0.26408064365386963, 0.8700563311576843], "std": [0.006452405825257301, 0.00473153218626976, 0.009518260136246681, 0.20538803935050964, 0.20017404854297638, 0.2719983756542206, 0.15519490838050842, 0.006768123246729374, 0.006032403092831373, 0.005424011964350939, 0.06743922084569931, 0.05698593333363533, 0.059444673359394073, 0.04856054484844208], "count": [489]}, "timestamp": {"min": [0.0], "max": [16.266666666666666], "mean": [8.133333333333333], "std": [4.7053948549235205], "count": [489]}, "frame_index": {"min": [0], "max": [488], "mean": [244.0], "std": [141.16184564770563], "count": [489]}, "episode_index": {"min": [113], "max": [113], "mean": [113.0], "std": [0.0], "count": [489]}, "index": {"min": [74639], "max": [75127], "mean": [74883.0], "std": [141.16184564770563], "count": [489]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [489]}}} +{"episode_index": 114, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5900543888034516]], [[0.5477699202229912]], [[0.49065677730787305]]], "std": [[[0.27838021551805747]], [[0.2663423312613025]], [[0.2702915254054482]]], "count": [102]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6187536257422359]], [[0.5812117428125935]], [[0.5281353592635312]]], "std": [[[0.251776205720024]], [[0.23244250659676294]], [[0.25233619750885944]]], "count": [102]}, "observation.state": {"min": [0.6961116790771484, -0.06706421077251434, 0.12427143007516861, -1.4114229679107666, -0.012980470433831215, -0.509380578994751, -0.6343298554420471, 0.0648091733455658, 0.1213003396987915, 0.42797717452049255, -0.28761982917785645, -0.35785380005836487], "max": [0.8673555850982666, 0.01579299010336399, 0.1701432466506958, -0.6005520224571228, 1.3300197124481201, 0.509291410446167, -0.47843876481056213, 0.19831205904483795, 0.14427967369556427, 0.8299527764320374, 0.07651644200086594, -0.11683403700590134], "mean": [0.7773611545562744, -0.014313819818198681, 0.14936327934265137, -1.0687248706817627, 0.5494049191474915, -0.07677261531352997, -0.5663520693778992, 0.12955637276172638, 0.13410992920398712, 0.6858698129653931, -0.0869813933968544, -0.22176715731620789], "std": [0.058808911591768265, 0.017938323318958282, 0.01467556320130825, 0.15044699609279633, 0.26064252853393555, 0.25544974207878113, 0.030336346477270126, 0.049382954835891724, 0.00625233631581068, 0.1357751339673996, 0.12157192081212997, 0.04454951733350754], "count": [478]}, "action": {"min": [-0.0895816907286644, -0.07657679915428162, 0.096474789083004, 0.25017327070236206, -0.35098662972450256, 0.4442463517189026, -0.49088314175605774, 0.12135075777769089, -0.049859486520290375, 0.0900125727057457, 0.35204654932022095, -0.2499743551015854, -0.5415780544281006, 0.7031025290489197], "max": [-0.03659258782863617, -0.05968102067708969, 0.1329938769340515, 0.7635138034820557, -0.055872708559036255, 0.9020152688026428, -0.24265767633914948, 0.14161927998065948, -0.031236983835697174, 0.11023185402154922, 0.4682474732398987, -0.08259536325931549, -0.39444786310195923, 0.8206158876419067], "mean": [-0.06233467161655426, -0.06710465997457504, 0.11540018022060394, 0.4903426170349121, -0.18661683797836304, 0.7286016345024109, -0.39535585045814514, 0.1324741542339325, -0.03996497765183449, 0.10027983039617538, 0.3940505385398865, -0.17768101394176483, -0.45291072130203247, 0.7747732996940613], "std": [0.016544131562113762, 0.004613162484019995, 0.008663604967296124, 0.13045139610767365, 0.07186277955770493, 0.09825212508440018, 0.07574322074651718, 0.005796655081212521, 0.006422589533030987, 0.003523886436596513, 0.030331220477819443, 0.05616922304034233, 0.049171000719070435, 0.035494230687618256], "count": [478]}, "timestamp": {"min": [0.0], "max": [15.9], "mean": [7.949999999999999], "std": [4.599547079151744], "count": [478]}, "frame_index": {"min": [0], "max": [477], "mean": [238.5], "std": [137.9864123745523], "count": [478]}, "episode_index": {"min": [114], "max": [114], "mean": [114.0], "std": [0.0], "count": [478]}, "index": {"min": [75128], "max": [75605], "mean": [75366.5], "std": [137.9864123745523], "count": [478]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [478]}}} +{"episode_index": 115, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5963543300653595]], [[0.5570908877995643]], [[0.5018202450980392]]], "std": [[[0.2772189642920118]], [[0.26779606221966035]], [[0.27374340456314417]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6241410702614378]], [[0.5897167837690632]], [[0.5384707761437908]]], "std": [[[0.24853206092203278]], [[0.23245711309451267]], [[0.25453643601610215]]], "count": [100]}, "observation.state": {"min": [0.6721017360687256, -0.0696590468287468, 0.11229631304740906, -1.2212342023849487, 0.13759295642375946, -0.23250555992126465, -0.6289548277854919, 0.009143720380961895, 0.12472513318061829, 1.2092819213867188, -0.23282860219478607, -0.1676175743341446], "max": [0.8290585279464722, 0.06113315001130104, 0.16159550845623016, -0.8150647878646851, 0.7718595862388611, 0.619515061378479, -0.4928261935710907, 0.12334749102592468, 0.14683595299720764, 1.5523346662521362, -0.0467296801507473, 0.15471090376377106], "mean": [0.7594231963157654, -0.006044014357030392, 0.14125190675258636, -0.9917892813682556, 0.5648022890090942, -0.015742924064397812, -0.5601136684417725, 0.05600881949067116, 0.136698380112648, 1.4290649890899658, -0.14772239327430725, 0.012536400929093361], "std": [0.04367697983980179, 0.031077470630407333, 0.018432285636663437, 0.09556590020656586, 0.1693401336669922, 0.18929214775562286, 0.035032205283641815, 0.0313992016017437, 0.006545596290379763, 0.11986899375915527, 0.03624366596341133, 0.055490344762802124], "count": [372]}, "action": {"min": [-0.10001417994499207, -0.07961399108171463, 0.10291921347379684, 0.3341904878616333, -0.3910657465457916, 0.5559686422348022, -0.5031974911689758, 0.1224052906036377, -0.055600039660930634, 0.09101227670907974, 0.18003211915493011, -0.22726531326770782, -0.24721643328666687, 0.9128958582878113], "max": [-0.048018984496593475, -0.05381043255329132, 0.12627297639846802, 0.6870224475860596, -0.13070806860923767, 0.8143747448921204, -0.25260454416275024, 0.141817107796669, -0.03879389539361, 0.1108798161149025, 0.3487739861011505, -0.11517886072397232, -0.07532941550016403, 0.9568501114845276], "mean": [-0.07004107534885406, -0.06372696161270142, 0.11336097866296768, 0.4887036085128784, -0.21431444585323334, 0.7198833227157593, -0.4244893789291382, 0.1320744752883911, -0.049290407449007034, 0.09923575073480606, 0.2443881630897522, -0.17939536273479462, -0.1280047744512558, 0.9415736198425293], "std": [0.017690710723400116, 0.008618388324975967, 0.007818804122507572, 0.07519128173589706, 0.06430715322494507, 0.055481284856796265, 0.06283269822597504, 0.006202102638781071, 0.004782482516020536, 0.004048314411193132, 0.0339038111269474, 0.031446341425180435, 0.05384216085076332, 0.010358263738453388], "count": [372]}, "timestamp": {"min": [0.0], "max": [12.366666666666667], "mean": [6.183333333333333], "std": [3.5795587354785425], "count": [372]}, "frame_index": {"min": [0], "max": [371], "mean": [185.5], "std": [107.38676206435626], "count": [372]}, "episode_index": {"min": [115], "max": [115], "mean": [115.0], "std": [0.0], "count": [372]}, "index": {"min": [75606], "max": [75977], "mean": [75791.5], "std": [107.38676206435626], "count": [372]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [372]}}} +{"episode_index": 116, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6001318029908835]], [[0.5596252538232122]], [[0.5036092999767329]]], "std": [[[0.2749125296941822]], [[0.26543722610777887]], [[0.2717810957617552]]], "count": [103]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6274996245531654]], [[0.5910674773145503]], [[0.5397375600186137]]], "std": [[[0.2472454847210913]], [[0.2309806482912355]], [[0.25296234270629464]]], "count": [103]}, "observation.state": {"min": [0.6680318117141724, -0.038883961737155914, 0.11908368021249771, -1.8719021081924438, -0.49599048495292664, -0.4221635162830353, -0.6251552104949951, 0.04523976892232895, 0.12476790696382523, 0.42357370257377625, -0.1352701336145401, -0.4266730546951294], "max": [0.8465505242347717, 0.0990363284945488, 0.1617044061422348, 0.16817133128643036, 0.8889570832252502, 0.7700446248054504, -0.48806899785995483, 0.13890880346298218, 0.1462811380624771, 1.160004734992981, 0.10070110112428665, 0.08485262095928192], "mean": [0.7506877779960632, 0.026004228740930557, 0.14105141162872314, -0.840079128742218, 0.4114755392074585, 0.18888382613658905, -0.5608423352241516, 0.07780453562736511, 0.13302835822105408, 0.9809577465057373, -0.016080539673566818, -0.02442561835050583], "std": [0.04741460829973221, 0.03734041750431061, 0.013792667537927628, 0.48370763659477234, 0.3507239520549774, 0.3381711542606354, 0.03182636946439743, 0.026908108964562416, 0.0069517288357019424, 0.15278871357440948, 0.06942716985940933, 0.10400044173002243], "count": [488]}, "action": {"min": [-0.0973614826798439, -0.07433752715587616, 0.10452589392662048, -0.5395655035972595, -0.4803285300731659, -0.6022354364395142, -0.592819094657898, 0.12136352807283401, -0.051363248378038406, 0.08924520015716553, 0.18476545810699463, -0.27972090244293213, -0.5399172902107239, 0.6566091179847717], "max": [-0.05102349445223808, -0.042232055217027664, 0.13219280540943146, 0.7092639207839966, 0.549639105796814, 0.9812559485435486, 0.7041505575180054, 0.14421464502811432, -0.03599872067570686, 0.10917362570762634, 0.49085965752601624, -0.13294731080532074, -0.2843840420246124, 0.9098818898200989], "mean": [-0.07274632900953293, -0.06043737381696701, 0.11801403760910034, 0.35830986499786377, -0.12786628305912018, 0.5500046014785767, -0.2214239090681076, 0.13305164873600006, -0.04502153396606445, 0.09729410707950592, 0.2906869649887085, -0.18977348506450653, -0.3440508246421814, 0.8659611940383911], "std": [0.014369620941579342, 0.009377602487802505, 0.0045065609738230705, 0.31950122117996216, 0.2719208300113678, 0.42193812131881714, 0.3868807256221771, 0.0052238102070987225, 0.0049629295244812965, 0.005018165335059166, 0.05989442765712738, 0.03648637980222702, 0.06170161813497543, 0.050010088831186295], "count": [488]}, "timestamp": {"min": [0.0], "max": [16.233333333333334], "mean": [8.116666666666667], "std": [4.695772330275156], "count": [488]}, "frame_index": {"min": [0], "max": [487], "mean": [243.5], "std": [140.8731699082547], "count": [488]}, "episode_index": {"min": [116], "max": [116], "mean": [116.0], "std": [0.0], "count": [488]}, "index": {"min": [75978], "max": [76465], "mean": [76221.5], "std": [140.8731699082547], "count": [488]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [488]}}} +{"episode_index": 117, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.590359940087146]], [[0.5509118191721133]], [[0.4952151661220044]]], "std": [[[0.2801805081236759]], [[0.26939321922172405]], [[0.2752735045867412]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6177626552287582]], [[0.583424368191721]], [[0.5319998148148148]]], "std": [[[0.2549745260123599]], [[0.23583555506068216]], [[0.2573453659587838]]], "count": [100]}, "observation.state": {"min": [0.7515609264373779, -0.04629005864262581, 0.14618909358978271, -1.6479532718658447, 0.214109405875206, -0.550613284111023, -0.6606334447860718, -0.0016140500083565712, 0.11672572791576385, 0.9417175650596619, -0.12611548602581024, -0.018143130466341972], "max": [0.8268807530403137, 0.05057618021965027, 0.1652316004037857, -0.47180238366127014, 1.0210845470428467, 0.9819390773773193, -0.5346988439559937, 0.11018794775009155, 0.1351810097694397, 1.1375679969787598, 0.08826717734336853, 0.230343297123909], "mean": [0.7713796496391296, 0.012280913069844246, 0.1544656604528427, -1.3352845907211304, 0.48087722063064575, -0.13339050114154816, -0.6017546653747559, 0.04091928154230118, 0.12753191590309143, 1.085660457611084, -0.03614664450287819, 0.11741624027490616], "std": [0.019103161990642548, 0.02472783997654915, 0.004539333283901215, 0.23519830405712128, 0.1720932424068451, 0.3664575517177582, 0.029894312843680382, 0.03149443119764328, 0.005435353145003319, 0.022258246317505836, 0.05126629024744034, 0.055971600115299225], "count": [454]}, "action": {"min": [-0.06542494893074036, -0.07539361715316772, 0.11135642975568771, 0.35450515151023865, -0.45744821429252625, 0.4368230104446411, -0.40983015298843384, 0.12293066829442978, -0.051576390862464905, 0.07955461740493774, 0.15843826532363892, -0.255871444940567, -0.3983854055404663, 0.8619699478149414], "max": [-0.05012921988964081, -0.057482827454805374, 0.12987709045410156, 0.7841742634773254, 0.006267425138503313, 0.8649902939796448, -0.03410297632217407, 0.13870181143283844, -0.035815849900245667, 0.0997874066233635, 0.30856162309646606, -0.13510818779468536, -0.27590280771255493, 0.9161555767059326], "mean": [-0.05954205244779587, -0.06641533225774765, 0.122036412358284, 0.5143007636070251, -0.14932598173618317, 0.7711037993431091, -0.288976788520813, 0.13179270923137665, -0.04576325789093971, 0.08871085196733475, 0.2427271157503128, -0.1873742938041687, -0.30889198184013367, 0.8988678455352783], "std": [0.004591751843690872, 0.003515654942020774, 0.005349043291062117, 0.09238778054714203, 0.1088297963142395, 0.1044250875711441, 0.06166285276412964, 0.005032862536609173, 0.0045164781622588634, 0.003499710001051426, 0.04063291475176811, 0.02061133086681366, 0.020816294476389885, 0.009321036748588085], "count": [454]}, "timestamp": {"min": [0.0], "max": [15.1], "mean": [7.55], "std": [4.368606439383413], "count": [454]}, "frame_index": {"min": [0], "max": [453], "mean": [226.5], "std": [131.0581931815024], "count": [454]}, "episode_index": {"min": [117], "max": [117], "mean": [117.0], "std": [0.0], "count": [454]}, "index": {"min": [76466], "max": [76919], "mean": [76692.5], "std": [131.0581931815024], "count": [454]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [454]}}} +{"episode_index": 118, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5991661628540305]], [[0.5581117020697167]], [[0.5023680501089325]]], "std": [[[0.2770180184052274]], [[0.2672726040346677]], [[0.27316708608593376]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6268089488017429]], [[0.5905255691721133]], [[0.5388882924836601]]], "std": [[[0.2519048086142652]], [[0.2333270271682074]], [[0.25552266712187205]]], "count": [100]}, "observation.state": {"min": [0.7335128784179688, -0.022666219621896744, 0.148027241230011, -1.189151644706726, 0.39378640055656433, 0.12008146196603775, -0.6226298809051514, 0.00851816963404417, 0.11631739884614944, 0.6068426966667175, -0.1654668003320694, -0.7091774344444275], "max": [0.8052030205726624, 0.05913297086954117, 0.1659238189458847, -0.3598279356956482, 0.7909886837005615, 1.1288894414901733, -0.4662136733531952, 0.18562361598014832, 0.13975173234939575, 0.8117097616195679, 0.20372502505779266, -0.2793079614639282], "mean": [0.7616055011749268, 0.024519821628928185, 0.15705077350139618, -0.9435036778450012, 0.554564356803894, 0.38908594846725464, -0.5562677979469299, 0.10100310295820236, 0.12624181807041168, 0.7673424482345581, 0.07634729892015457, -0.4245995581150055], "std": [0.02089731954038143, 0.024557888507843018, 0.005226243287324905, 0.1508149802684784, 0.12685145437717438, 0.22592610120773315, 0.04889339208602905, 0.04513902589678764, 0.004884098190814257, 0.04785456508398056, 0.08261550962924957, 0.1196153312921524], "count": [458]}, "action": {"min": [-0.0674436166882515, -0.07076460868120193, 0.11460420489311218, 0.4893288314342499, -0.4874192178249359, 0.3971898853778839, -0.42427414655685425, 0.1287383735179901, -0.05374174192547798, 0.08414606004953384, 0.3216075003147125, -0.36169660091400146, -0.4491676986217499, 0.6514182090759277], "max": [-0.0523272268474102, -0.05424952134490013, 0.13462643325328827, 0.7014109492301941, -0.23349083960056305, 0.7424694299697876, -0.20536372065544128, 0.14639252424240112, -0.03243150934576988, 0.10652586072683334, 0.5826923847198486, -0.14848554134368896, -0.36564138531684875, 0.7954958081245422], "mean": [-0.059468936175107956, -0.064228355884552, 0.12681174278259277, 0.5611361265182495, -0.3410113751888275, 0.659579336643219, -0.343295156955719, 0.13687029480934143, -0.039492178708314896, 0.09334053844213486, 0.4359263777732849, -0.2843773066997528, -0.4035471975803375, 0.7458318471908569], "std": [0.004316659644246101, 0.003687503980472684, 0.006223064847290516, 0.05879856273531914, 0.06333785504102707, 0.07779913395643234, 0.04918338358402252, 0.0056780241429805756, 0.0055559901520609856, 0.0053769974038004875, 0.07519186288118362, 0.04631955921649933, 0.027653401717543602, 0.03764728084206581], "count": [458]}, "timestamp": {"min": [0.0], "max": [15.233333333333333], "mean": [7.616666666666667], "std": [4.407096549884062], "count": [458]}, "frame_index": {"min": [0], "max": [457], "mean": [228.5], "std": [132.21289649652186], "count": [458]}, "episode_index": {"min": [118], "max": [118], "mean": [118.0], "std": [0.0], "count": [458]}, "index": {"min": [76920], "max": [77377], "mean": [77148.5], "std": [132.21289649652186], "count": [458]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [458]}}} +{"episode_index": 119, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.59585837971052]], [[0.5579492196768696]], [[0.5037906339653574]]], "std": [[[0.27571154813465126]], [[0.2684873513913761]], [[0.27626304981258193]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6223247670355271]], [[0.5891482128605017]], [[0.5394006773226343]]], "std": [[[0.25044618417125153]], [[0.2351569957482024]], [[0.25919412461936314]]], "count": [101]}, "observation.state": {"min": [0.7230949401855469, 0.004456019960343838, 0.12105663120746613, -1.3478869199752808, -0.0788392573595047, 0.052232060581445694, -0.599492609500885, -0.028859850019216537, 0.11963071674108505, 0.6800245046615601, -0.2978675663471222, -0.6035074591636658], "max": [0.8185479044914246, 0.09028647094964981, 0.16277125477790833, -0.28496864438056946, 1.0251836776733398, 1.1101176738739014, -0.4587534964084625, 0.09274230152368546, 0.13853970170021057, 1.0975171327590942, 0.03620867058634758, -0.32114553451538086], "mean": [0.7689939737319946, 0.04905254766345024, 0.147404283285141, -0.9210934638977051, 0.3566415309906006, 0.3213891386985779, -0.5420815348625183, 0.05823427438735962, 0.12819644808769226, 0.9418317675590515, -0.0894705131649971, -0.37900063395500183], "std": [0.02786331996321678, 0.026149807497859, 0.014710486866533756, 0.20994816720485687, 0.29436153173446655, 0.2782335877418518, 0.03359917178750038, 0.02486163005232811, 0.005467990878969431, 0.08582092821598053, 0.10198204219341278, 0.07118801772594452], "count": [476]}, "action": {"min": [-0.08973009139299393, -0.06951265037059784, 0.11319918930530548, 0.292705774307251, -0.4781893491744995, 0.3878397047519684, -0.4509744644165039, 0.1296752542257309, -0.0578637421131134, 0.08587441593408585, 0.4144293963909149, -0.2725851833820343, -0.437357634305954, 0.7178474068641663], "max": [-0.04968170449137688, -0.045866914093494415, 0.13399149477481842, 0.7874029278755188, -0.21393871307373047, 0.8331910967826843, -0.08575379103422165, 0.14461778104305267, -0.03888075798749924, 0.10412414371967316, 0.6033182144165039, -0.08826722949743271, -0.24285225570201874, 0.8352810740470886], "mean": [-0.06586666405200958, -0.05799241364002228, 0.12243612855672836, 0.4718722999095917, -0.34428921341896057, 0.7009070515632629, -0.35219326615333557, 0.13795320689678192, -0.0465044341981411, 0.09353883564472198, 0.464515745639801, -0.19980262219905853, -0.3172691762447357, 0.7979790568351746], "std": [0.01277679018676281, 0.007797879166901112, 0.007329210173338652, 0.14255592226982117, 0.06302516162395477, 0.11827695369720459, 0.0721525251865387, 0.00419584522023797, 0.004931352566927671, 0.004030608106404543, 0.04936714842915535, 0.04737049341201782, 0.03551705554127693, 0.030490556731820107], "count": [476]}, "timestamp": {"min": [0.0], "max": [15.833333333333334], "mean": [7.916666666666666], "std": [4.5803020278870985], "count": [476]}, "frame_index": {"min": [0], "max": [475], "mean": [237.5], "std": [137.40906083661295], "count": [476]}, "episode_index": {"min": [119], "max": [119], "mean": [119.0], "std": [0.0], "count": [476]}, "index": {"min": [77378], "max": [77853], "mean": [77615.5], "std": [137.40906083661295], "count": [476]}, "task_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [476]}}} +{"episode_index": 120, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49043270072145434]], [[0.45804437212043286]], [[0.41350272331154686]]], "std": [[[0.27261109525628247]], [[0.251194697043048]], [[0.248682513374686]]], "count": [122]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5075627276867031]], [[0.4870942890817529]], [[0.4463521889174613]]], "std": [[[0.27720107721331927]], [[0.23610520709028293]], [[0.24515926285047734]]], "count": [122]}, "observation.state": {"min": [0.14412164688110352, -0.2021193653345108, 0.1121990829706192, 0.6045361161231995, -1.2750917673110962, -1.0129494667053223, -0.5453099012374878, -0.5270765423774719, 0.1922488808631897, -0.544145405292511, -0.1489337831735611, -1.4299978017807007], "max": [0.2651291489601135, -0.03052023984491825, 0.15038907527923584, 2.2707324028015137, -0.01625973917543888, 0.5597432255744934, -0.4019296169281006, -0.33138248324394226, 0.22638149559497833, 2.7414863109588623, 1.3443665504455566, 0.6042889356613159], "mean": [0.2194015383720398, -0.10931798070669174, 0.12883207201957703, 1.2322131395339966, -0.6454954743385315, -0.21084557473659515, -0.49487361311912537, -0.430097371339798, 0.21271884441375732, 1.2049020528793335, 0.7283000946044922, -0.21134552359580994], "std": [0.024349898099899292, 0.04101105034351349, 0.009435013867914677, 0.4421292543411255, 0.19848646223545074, 0.35637351870536804, 0.035213667899370193, 0.06448846310377121, 0.010378832928836346, 1.102579116821289, 0.3974342942237854, 0.8272213339805603], "count": [608]}, "action": {"min": [-0.17072619497776031, -0.10835307836532593, 0.10964672267436981, 0.15966074168682098, 0.15047836303710938, -0.288254976272583, 0.5818268060684204, 0.09840486943721771, -0.16101495921611786, 0.07972493767738342, -0.5118265748023987, -0.6544770002365112, -0.3959568738937378, -0.6486201882362366], "max": [-0.15189754962921143, -0.08436331897974014, 0.15717194974422455, 0.6977151036262512, 0.692949652671814, 0.309689998626709, 0.8576246500015259, 0.12760116159915924, -0.14162448048591614, 0.12490303069353104, 0.4849461317062378, 0.7158107161521912, 0.6989515423774719, 0.8566007018089294], "mean": [-0.15865008533000946, -0.1001814752817154, 0.1324004828929901, 0.4028297960758209, 0.4506189525127411, -0.07000430673360825, 0.7598050236701965, 0.11014670878648758, -0.15251076221466064, 0.09975823014974594, -0.009309325367212296, -0.10446904599666595, 0.18674598634243011, 0.34221237897872925], "std": [0.003498444799333811, 0.0061917994171381, 0.009721294045448303, 0.13225099444389343, 0.08999323099851608, 0.1482856273651123, 0.0699193999171257, 0.0074833654798567295, 0.004986968357115984, 0.01306549645960331, 0.3009583652019501, 0.540975034236908, 0.3319353461265564, 0.5861784219741821], "count": [608]}, "timestamp": {"min": [0.0], "max": [20.233333333333334], "mean": [10.116666666666667], "std": [5.850474814539035], "count": [608]}, "frame_index": {"min": [0], "max": [607], "mean": [303.5], "std": [175.51424443617105], "count": [608]}, "episode_index": {"min": [120], "max": [120], "mean": [120.0], "std": [0.0], "count": [608]}, "index": {"min": [77854], "max": [78461], "mean": [78157.5], "std": [175.51424443617105], "count": [608]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [608]}}} +{"episode_index": 121, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49922767303502597]], [[0.46450290975364505]], [[0.4179476998491704]]], "std": [[[0.275497958254024]], [[0.2517511882407964]], [[0.2482653720594235]]], "count": [130]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5201600741578682]], [[0.49582380383777447]], [[0.45316905480140773]]], "std": [[[0.2806084669455509]], [[0.2362740543910524]], [[0.24490208860407894]]], "count": [130]}, "observation.state": {"min": [0.18400956690311432, -0.2321067452430725, 0.11434704065322876, 1.0545307397842407, -0.9560455679893494, -1.0997956991195679, -0.5241187214851379, -0.51712965965271, 0.19888459146022797, -0.03732480853796005, 0.2091904729604721, -1.2103880643844604], "max": [0.2735160291194916, -0.03807307034730911, 0.1491018682718277, 2.718630075454712, 0.3008735775947571, 0.13484592735767365, -0.3597712218761444, -0.3043992519378662, 0.22588372230529785, 2.897076368331909, 1.421976089477539, 0.7497778534889221], "mean": [0.23146353662014008, -0.12939520180225372, 0.13168904185295105, 1.9786655902862549, -0.25231480598449707, -0.5827913880348206, -0.45997050404548645, -0.41067320108413696, 0.21495701372623444, 1.6378917694091797, 0.7504938244819641, 0.1018853485584259], "std": [0.019915543496608734, 0.05358739197254181, 0.010470898821949959, 0.5363885760307312, 0.34508615732192993, 0.31650510430336, 0.041221026331186295, 0.060630861669778824, 0.006873283069580793, 0.7317938208580017, 0.2614295482635498, 0.5444924235343933], "count": [660]}, "action": {"min": [-0.1640772521495819, -0.11397767812013626, 0.1124296486377716, 0.2222641110420227, 0.015650054439902306, -0.20405100286006927, 0.5265904664993286, 0.0988578051328659, -0.1642831712961197, 0.08877303451299667, -0.5185638070106506, -0.6848834156990051, -0.5613144040107727, -0.6899240612983704], "max": [-0.15201348066329956, -0.08481581509113312, 0.1574312001466751, 0.7363347411155701, 0.5659723281860352, 0.5140236020088196, 0.8607839345932007, 0.1359328329563141, -0.12690940499305725, 0.12371353805065155, 0.5577768683433533, 0.7375940084457397, 0.562962532043457, 0.8152367472648621], "mean": [-0.1582247018814087, -0.10377554595470428, 0.13455191254615784, 0.5484388470649719, 0.25156477093696594, 0.2091103345155716, 0.7040039896965027, 0.1121295616030693, -0.15416648983955383, 0.10358690470457077, 0.1801595836877823, -0.32881519198417664, -0.05773906037211418, 0.49539312720298767], "std": [0.0032801281195133924, 0.005572039168328047, 0.012476440519094467, 0.14121657609939575, 0.15100423991680145, 0.211651012301445, 0.09508105367422104, 0.009445280767977238, 0.006159688346087933, 0.009939976036548615, 0.26617205142974854, 0.4658537805080414, 0.2615797817707062, 0.5043641924858093], "count": [660]}, "timestamp": {"min": [0.0], "max": [21.966666666666665], "mean": [10.983333333333333], "std": [6.350845671305573], "count": [660]}, "frame_index": {"min": [0], "max": [659], "mean": [329.5], "std": [190.5253701391672], "count": [660]}, "episode_index": {"min": [121], "max": [121], "mean": [121.0], "std": [0.0], "count": [660]}, "index": {"min": [78462], "max": [79121], "mean": [78791.5], "std": [190.5253701391672], "count": [660]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [660]}}} +{"episode_index": 122, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4906244938751182]], [[0.45821215110782254]], [[0.4119438406914128]]], "std": [[[0.2726359213841048]], [[0.24893733593011177]], [[0.24587832985498792]]], "count": [106]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5112233321001357]], [[0.4904365083035311]], [[0.44797125621737166]]], "std": [[[0.2790610007050144]], [[0.23414892319094355]], [[0.24293093240286567]]], "count": [106]}, "observation.state": {"min": [0.1970609724521637, -0.20850606262683868, 0.1223645880818367, 0.9477985501289368, -0.8815786838531494, -1.1660399436950684, -0.5914223194122314, -0.46941858530044556, 0.18623149394989014, -0.9144578576087952, -1.0574299097061157, -0.9178395867347717], "max": [0.2899113893508911, -0.04977301135659218, 0.14705762267112732, 2.9727742671966553, 0.4525400996208191, 0.08970478922128677, -0.3978134095668793, -0.29458364844322205, 0.21820968389511108, 0.8060481548309326, 0.9753113389015198, -0.14556807279586792], "mean": [0.24793486297130585, -0.1327764093875885, 0.13442564010620117, 2.228614091873169, -0.18550492823123932, -0.7331419587135315, -0.4755514860153198, -0.39516809582710266, 0.20930202305316925, -0.13070788979530334, -0.2470412701368332, -0.5173907279968262], "std": [0.02516808733344078, 0.04566799849271774, 0.00735133234411478, 0.5668473243713379, 0.4550374448299408, 0.32904252409935, 0.04656216502189636, 0.049412306398153305, 0.006700006779283285, 0.4483790993690491, 0.482764333486557, 0.20050086081027985], "count": [505]}, "action": {"min": [-0.1617538034915924, -0.1156482845544815, 0.11730212718248367, 0.25310370326042175, -0.02591961808502674, -0.14694717526435852, 0.3955199122428894, 0.10226914286613464, -0.16492867469787598, 0.08314969390630722, -0.6713032126426697, -0.33133649826049805, -0.6766515374183655, -0.5876617431640625], "max": [-0.1494273841381073, -0.09520155191421509, 0.1555669605731964, 0.755440890789032, 0.5399987697601318, 0.6052424907684326, 0.8341428637504578, 0.12574462592601776, -0.10952450335025787, 0.12360691279172897, 0.7710950970649719, 0.4240294396877289, 0.7192978858947754, 0.7297937273979187], "mean": [-0.1551681011915207, -0.10567588359117508, 0.13539008796215057, 0.5959777235984802, 0.24539519846439362, 0.3034050166606903, 0.6157816648483276, 0.11395685374736786, -0.15019968152046204, 0.10243991017341614, 0.39508411288261414, 0.078012615442276, -0.3025358319282532, 0.16569186747074127], "std": [0.0033155218698084354, 0.0038342426996678114, 0.01031192485243082, 0.1399068385362625, 0.19069607555866241, 0.21280743181705475, 0.11010963469743729, 0.005821020342409611, 0.008782662451267242, 0.010623028501868248, 0.5243709683418274, 0.20612657070159912, 0.5242549180984497, 0.3557312488555908], "count": [505]}, "timestamp": {"min": [0.0], "max": [16.8], "mean": [8.4], "std": [4.859355238437846], "count": [505]}, "frame_index": {"min": [0], "max": [504], "mean": [252.0], "std": [145.78065715313537], "count": [505]}, "episode_index": {"min": [122], "max": [122], "mean": [122.0], "std": [0.0], "count": [505]}, "index": {"min": [79122], "max": [79626], "mean": [79374.0], "std": [145.78065715313537], "count": [505]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [505]}}} +{"episode_index": 123, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4778124291938998]], [[0.4461628730936819]], [[0.4008849264705882]]], "std": [[[0.2809570863501328]], [[0.2551319768476863]], [[0.25017512515323764]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4956608251633987]], [[0.4761874618736383]], [[0.43414135076252724]]], "std": [[[0.28857267884771554]], [[0.24228760995554938]], [[0.2485607318013479]]], "count": [100]}, "observation.state": {"min": [0.18443430960178375, -0.24104194343090057, 0.11521296203136444, 2.032524585723877, -0.6535323858261108, -0.9631413221359253, -0.5593189597129822, -0.4806474447250366, 0.2000395804643631, -0.3537469208240509, -0.5796120166778564, -0.7570682168006897], "max": [0.2741183936595917, -0.042436420917510986, 0.14254522323608398, 2.9327235221862793, 0.44912415742874146, -0.7261583209037781, -0.4708781838417053, -0.29235178232192993, 0.23131127655506134, 0.17613954842090607, 0.5965549349784851, -0.3033882677555084], "mean": [0.22806496918201447, -0.1513776034116745, 0.12665045261383057, 2.443466901779175, 0.2439216822385788, -0.807307243347168, -0.5302120447158813, -0.3672644793987274, 0.21830663084983826, -0.1968035250902176, -0.32037410140037537, -0.5196401476860046], "std": [0.030069557949900627, 0.059628382325172424, 0.008595730178058147, 0.2521899342536926, 0.21755670011043549, 0.06405867636203766, 0.018894584849476814, 0.05389563739299774, 0.009278167970478535, 0.11093590408563614, 0.22675944864749908, 0.12391199916601181], "count": [220]}, "action": {"min": [-0.16698357462882996, -0.11259187757968903, 0.11284276098012924, 0.4933197498321533, -0.08002316951751709, 0.19040004909038544, 0.5410577654838562, 0.09004586189985275, -0.16085800528526306, 0.08121027052402496, -0.6837928295135498, -0.05085638165473938, -0.6849708557128906, -0.5396443009376526], "max": [-0.15928475558757782, -0.08826212584972382, 0.15399594604969025, 0.7863736748695374, 0.44237881898880005, 0.6128984689712524, 0.6602771282196045, 0.11782848089933395, -0.13469785451889038, 0.12394468486309052, 0.7420802116394043, 0.3031264543533325, 0.7386573553085327, 0.42410340905189514], "mean": [-0.16372455656528473, -0.10515177994966507, 0.12870636582374573, 0.674741268157959, 0.015587073750793934, 0.3879545331001282, 0.6027036905288696, 0.10034274309873581, -0.15174494683742523, 0.10707586258649826, 0.1613335907459259, 0.08073262125253677, -0.0558299720287323, 0.03243447467684746], "std": [0.0021110468078404665, 0.005205911118537188, 0.013282482512295246, 0.07090766727924347, 0.10243608802556992, 0.12001389265060425, 0.028228260576725006, 0.008631601929664612, 0.005450725089758635, 0.011945560574531555, 0.6566409468650818, 0.0972193032503128, 0.6361600160598755, 0.3434476852416992], "count": [220]}, "timestamp": {"min": [0.0], "max": [7.3], "mean": [3.65], "std": [2.116929117587287], "count": [220]}, "frame_index": {"min": [0], "max": [219], "mean": [109.5], "std": [63.50787352761861], "count": [220]}, "episode_index": {"min": [123], "max": [123], "mean": [123.0], "std": [0.0], "count": [220]}, "index": {"min": [79627], "max": [79846], "mean": [79736.5], "std": [63.50787352761861], "count": [220]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [220]}}} +{"episode_index": 124, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4905552805544876]], [[0.45676693792985607]], [[0.41039612969370753]]], "std": [[[0.27540527674315685]], [[0.25077314504216563]], [[0.2474068340732726]]], "count": [102]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5100615868896579]], [[0.4878501884958777]], [[0.44446892754923323]]], "std": [[[0.28332789286699955]], [[0.23717017303057056]], [[0.24565045469056235]]], "count": [102]}, "observation.state": {"min": [0.19381743669509888, -0.22418321669101715, 0.11745423823595047, 2.1193363666534424, -0.5347952842712402, -1.1697413921356201, -0.5281268358230591, -0.49615469574928284, 0.20367437601089478, -0.7246884107589722, -0.665966272354126, -0.7758906483650208], "max": [0.2722417712211609, -0.02517610974609852, 0.14411762356758118, 3.1143150329589844, 0.8951057195663452, -0.6469720602035522, -0.4313841462135315, -0.3434685468673706, 0.22164225578308105, 1.0773869752883911, 0.5345219969749451, -0.09841184318065643], "mean": [0.23603101074695587, -0.12502551078796387, 0.13469219207763672, 2.6178102493286133, 0.22495070099830627, -0.9247356653213501, -0.4909716248512268, -0.4156801402568817, 0.21388019621372223, 0.019749289378523827, 0.016387207433581352, -0.5051688551902771], "std": [0.020921358838677406, 0.053896669298410416, 0.006144414190202951, 0.24818889796733856, 0.29092541337013245, 0.10333017259836197, 0.02334505505859852, 0.046376220881938934, 0.004824340809136629, 0.4784877300262451, 0.32046201825141907, 0.16820208728313446], "count": [481]}, "action": {"min": [-0.16475127637386322, -0.11755464971065521, 0.1152360737323761, 0.49604928493499756, -0.22583508491516113, 0.2293417602777481, 0.3454545736312866, 0.10160189867019653, -0.16403226554393768, 0.08405601978302002, -0.6850665807723999, -0.33323508501052856, -0.6886413097381592, -0.6017206907272339], "max": [-0.15494699776172638, -0.0819496437907219, 0.15620584785938263, 0.833557665348053, 0.43727782368659973, 0.6699851751327515, 0.6656556129455566, 0.12215492129325867, -0.1431257128715515, 0.12290263921022415, 0.7007920742034912, 0.27019137144088745, 0.7584252953529358, 0.7718024253845215], "mean": [-0.1598646193742752, -0.10633701831102371, 0.1370946615934372, 0.681027889251709, 0.06455794721841812, 0.4605017304420471, 0.5271942019462585, 0.1100541204214096, -0.15518523752689362, 0.10256826132535934, -0.11222663521766663, -0.044825274497270584, 0.22248688340187073, 0.050758179277181625], "std": [0.0022161039523780346, 0.0072388118132948875, 0.010340365581214428, 0.08851175010204315, 0.1306910216808319, 0.10975991934537888, 0.07124684751033783, 0.0044084698893129826, 0.004929158370941877, 0.010539271868765354, 0.5876199007034302, 0.1566237509250641, 0.5815560221672058, 0.474640429019928], "count": [481]}, "timestamp": {"min": [0.0], "max": [16.0], "mean": [8.0], "std": [4.628414655389275], "count": [481]}, "frame_index": {"min": [0], "max": [480], "mean": [240.0], "std": [138.85243966167826], "count": [481]}, "episode_index": {"min": [124], "max": [124], "mean": [124.0], "std": [0.0], "count": [481]}, "index": {"min": [79847], "max": [80327], "mean": [80087.0], "std": [138.85243966167826], "count": [481]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [481]}}} +{"episode_index": 125, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48744194989106754]], [[0.4525179030501089]], [[0.40535708605664483]]], "std": [[[0.2825200822692585]], [[0.2572517304485333]], [[0.25194957040674704]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5023476416122005]], [[0.4794931318082789]], [[0.43584867102396513]]], "std": [[[0.289302813887202]], [[0.24414318074094282]], [[0.2504750602799698]]], "count": [100]}, "observation.state": {"min": [0.15560534596443176, -0.2525101900100708, 0.11158335208892822, 1.226895809173584, -0.6305774450302124, -1.0036450624465942, -0.5579133629798889, -0.48833927512168884, 0.20834879577159882, -1.2885446548461914, -1.1245183944702148, -0.7787888050079346], "max": [0.27154672145843506, -0.04788867011666298, 0.1464250236749649, 2.738131284713745, 0.14387823641300201, -0.11068913340568542, -0.41847944259643555, -0.32172131538391113, 0.22713981568813324, 1.0172059535980225, 0.5531045794487, -0.06339380145072937], "mean": [0.20743264257907867, -0.14110982418060303, 0.13234205543994904, 2.1217041015625, -0.22065019607543945, -0.7452728748321533, -0.5078743696212769, -0.4048728048801422, 0.2177143692970276, -0.28670862317085266, -0.13641810417175293, -0.39286550879478455], "std": [0.023567326366901398, 0.06206314265727997, 0.007461266126483679, 0.399649053812027, 0.21085914969444275, 0.24050785601139069, 0.03332570567727089, 0.04529258608818054, 0.004401849117130041, 0.44669079780578613, 0.3305598497390747, 0.159651979804039], "count": [451]}, "action": {"min": [-0.17220862209796906, -0.11554424464702606, 0.11519353091716766, 0.323220431804657, 0.060807112604379654, -0.12690086662769318, 0.5483924150466919, 0.09223158657550812, -0.16781967878341675, 0.08677850663661957, -0.6742557883262634, -0.3820227384567261, -0.656034529209137, -0.5612093806266785], "max": [-0.1564176231622696, -0.07987698912620544, 0.1545710265636444, 0.7687453031539917, 0.38969531655311584, 0.5118404626846313, 0.8775764107704163, 0.12126825749874115, -0.14608198404312134, 0.12237218022346497, 0.685339093208313, 0.38760319352149963, 0.8202614188194275, 0.756896436214447], "mean": [-0.16264145076274872, -0.10576943308115005, 0.13542544841766357, 0.598310649394989, 0.2241964191198349, 0.2509543299674988, 0.6855542063713074, 0.10501029342412949, -0.15627437829971313, 0.10395089536905289, -0.3103291988372803, -0.03532613441348076, 0.4402731955051422, -0.1536513864994049], "std": [0.00291069014929235, 0.00752633810043335, 0.011432855390012264, 0.12127546966075897, 0.08722931891679764, 0.17209599912166595, 0.08284701406955719, 0.006696589756757021, 0.005720009561628103, 0.0089527303352952, 0.48592156171798706, 0.14756721258163452, 0.5252804160118103, 0.3888225257396698], "count": [451]}, "timestamp": {"min": [0.0], "max": [15.0], "mean": [7.5], "std": [4.339738855430512], "count": [451]}, "frame_index": {"min": [0], "max": [450], "mean": [225.0], "std": [130.19216566291536], "count": [451]}, "episode_index": {"min": [125], "max": [125], "mean": [125.0], "std": [0.0], "count": [451]}, "index": {"min": [80328], "max": [80778], "mean": [80553.0], "std": [130.19216566291536], "count": [451]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [451]}}} +{"episode_index": 126, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49681989651416125]], [[0.4623732026143791]], [[0.41627671568627456]]], "std": [[[0.2754423972458959]], [[0.2524172247999534]], [[0.24938765265328564]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5179676797385622]], [[0.49453855392156865]], [[0.45192189270152505]]], "std": [[[0.2802310894628136]], [[0.23651029507903348]], [[0.24552073654992876]]], "count": [100]}, "observation.state": {"min": [0.19414177536964417, -0.23915758728981018, 0.11648721247911453, 0.9079574346542358, -0.669792115688324, -1.1829317808151245, -0.583475649356842, -0.5011358857154846, 0.1894100159406662, -1.7903327941894531, -1.3916428089141846, -0.7983148694038391], "max": [0.28143954277038574, -0.05645317956805229, 0.14681780338287354, 2.7460994720458984, 0.21520249545574188, 0.30372869968414307, -0.4301639497280121, -0.3233894407749176, 0.2248661369085312, 0.49381983280181885, 0.9740816354751587, 0.26739999651908875], "mean": [0.24462804198265076, -0.13885286450386047, 0.13253788650035858, 2.071674108505249, -0.12951131165027618, -0.7800260186195374, -0.48078569769859314, -0.4113839864730835, 0.2126377671957016, -0.30081233382225037, -0.1767437905073166, -0.46502193808555603], "std": [0.016930274665355682, 0.051015935838222504, 0.009792149998247623, 0.493318110704422, 0.23470045626163483, 0.36397334933280945, 0.03316812217235565, 0.05074653774499893, 0.007584784645587206, 0.4834803342819214, 0.45592644810676575, 0.21204140782356262], "count": [458]}, "action": {"min": [-0.16495268046855927, -0.1131913959980011, 0.11250732094049454, 0.13032713532447815, 0.070399709045887, -0.19474278390407562, 0.4341225028038025, 0.10229019075632095, -0.1705218106508255, 0.08355148881673813, -0.6685529947280884, -0.3802438974380493, -0.6631279587745667, -0.6290584206581116], "max": [-0.14813436567783356, -0.09704109281301498, 0.15419571101665497, 0.8159686326980591, 0.45013031363487244, 0.5069097280502319, 0.9062328338623047, 0.12381348013877869, -0.11483807861804962, 0.1205722764134407, 0.72933030128479, 0.43964147567749023, 0.8200327157974243, 0.6338775753974915], "mean": [-0.1567292958498001, -0.10539133101701736, 0.13451525568962097, 0.6214250922203064, 0.218789741396904, 0.22695137560367584, 0.6536369919776917, 0.1122175082564354, -0.15421128273010254, 0.10222309082746506, -0.16907641291618347, 0.03293972834944725, 0.30443763732910156, -0.12543173134326935], "std": [0.004870451521128416, 0.0031921567860990763, 0.012202566489577293, 0.16138964891433716, 0.10901505500078201, 0.19500942528247833, 0.10608401894569397, 0.004027393646538258, 0.010387739166617393, 0.009495464153587818, 0.5857089161872864, 0.18238241970539093, 0.5919004678726196, 0.3677610158920288], "count": [458]}, "timestamp": {"min": [0.0], "max": [15.233333333333333], "mean": [7.616666666666667], "std": [4.407096549884062], "count": [458]}, "frame_index": {"min": [0], "max": [457], "mean": [228.5], "std": [132.21289649652186], "count": [458]}, "episode_index": {"min": [126], "max": [126], "mean": [126.0], "std": [0.0], "count": [458]}, "index": {"min": [80779], "max": [81236], "mean": [81007.5], "std": [132.21289649652186], "count": [458]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [458]}}} +{"episode_index": 127, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49347386391663584]], [[0.4568655429152793]], [[0.40913026935092695]]], "std": [[[0.27998093704183985]], [[0.25443225161946764]], [[0.24970462687466824]]], "count": [106]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5126799929091134]], [[0.4863305689151971]], [[0.4423282874994862]]], "std": [[[0.28638937886227384]], [[0.24084090090117902]], [[0.24773455042979636]]], "count": [106]}, "observation.state": {"min": [0.17851096391677856, -0.2482009083032608, 0.12179811298847198, 1.2367513179779053, -0.5812516808509827, -1.1245901584625244, -0.6220120787620544, -0.4746237099170685, 0.18526576459407806, -1.3992609977722168, -1.058932900428772, -0.8875457644462585], "max": [0.27774035930633545, -0.048328861594200134, 0.14708484709262848, 2.8352177143096924, 0.23569795489311218, -0.0943332388997078, -0.43506017327308655, -0.31298691034317017, 0.23051276803016663, 0.8245008587837219, 1.0138428211212158, 0.09857405722141266], "mean": [0.21779102087020874, -0.14512808620929718, 0.1340034008026123, 2.0931448936462402, -0.16406264901161194, -0.8441929221153259, -0.48794153332710266, -0.3915218710899353, 0.2198193520307541, -0.11998651176691055, -0.26684510707855225, -0.4698452949523926], "std": [0.020982038229703903, 0.06232677027583122, 0.006987104192376137, 0.4255902171134949, 0.16403765976428986, 0.2995961308479309, 0.03468697518110275, 0.04999063163995743, 0.008849283680319786, 0.46863695979118347, 0.32337841391563416, 0.23510418832302094], "count": [506]}, "action": {"min": [-0.1666204035282135, -0.11543826758861542, 0.11640188097953796, 0.3239443004131317, 0.11010348796844482, -0.13433849811553955, 0.4581911265850067, 0.09750785678625107, -0.1755223125219345, 0.08694883435964584, -0.6864932179450989, -0.1890174001455307, -0.685489296913147, -0.6118763089179993], "max": [-0.15177713334560394, -0.0894540548324585, 0.15332290530204773, 0.772178590297699, 0.4456293284893036, 0.554999828338623, 0.912186861038208, 0.11841250211000443, -0.1100718230009079, 0.12525346875190735, 0.7501470446586609, 0.44396525621414185, 0.8044701218605042, 0.7389065623283386], "mean": [-0.16081304848194122, -0.10744285583496094, 0.13600300252437592, 0.6403586864471436, 0.22027373313903809, 0.22427242994308472, 0.6503329277038574, 0.10786107927560806, -0.1578112542629242, 0.10783450305461884, 0.18752740323543549, 0.08900335431098938, -0.050097063183784485, 0.13620728254318237], "std": [0.0022401134483516216, 0.005732385907322168, 0.012029613368213177, 0.1291537582874298, 0.05498112365603447, 0.1861652284860611, 0.11759631335735321, 0.004901061300188303, 0.011800166219472885, 0.009489701129496098, 0.6142773628234863, 0.13509561121463776, 0.6148342490196228, 0.4027920067310333], "count": [506]}, "timestamp": {"min": [0.0], "max": [16.833333333333332], "mean": [8.416666666666666], "std": [4.868977761752917], "count": [506]}, "frame_index": {"min": [0], "max": [505], "mean": [252.5], "std": [146.0693328525875], "count": [506]}, "episode_index": {"min": [127], "max": [127], "mean": [127.0], "std": [0.0], "count": [506]}, "index": {"min": [81237], "max": [81742], "mean": [81489.5], "std": [146.0693328525875], "count": [506]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [506]}}} +{"episode_index": 128, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49104209323847536]], [[0.45666869107525015]], [[0.4093308968130025]]], "std": [[[0.28116767620550237]], [[0.25612358676745123]], [[0.2514411990516294]]], "count": [113]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.505950838201554]], [[0.48337603148437347]], [[0.44019590973065725]]], "std": [[[0.28846875049529563]], [[0.24292348416497644]], [[0.24979959734098764]]], "count": [113]}, "observation.state": {"min": [0.14260025322437286, -0.26677408814430237, 0.10770484805107117, 0.6926058530807495, -0.745625376701355, -1.4232555627822876, -0.6158725023269653, -0.5295941233634949, 0.18931148946285248, -1.5013799667358398, -1.38590407371521, -0.9475606679916382], "max": [0.2521008849143982, -0.003127709962427616, 0.1477692872285843, 3.6075057983398438, 1.4154175519943237, 0.2785463333129883, -0.4326043426990509, -0.31870174407958984, 0.22462761402130127, 1.5397533178329468, 0.9280350804328918, -0.018744919449090958], "mean": [0.20908375084400177, -0.14296893775463104, 0.1314089447259903, 2.4435181617736816, 0.2742024064064026, -0.9002320170402527, -0.508417010307312, -0.41763216257095337, 0.21603277325630188, -0.03032774105668068, -0.0011304785730317235, -0.41311073303222656], "std": [0.017279580235481262, 0.05686154589056969, 0.010908111929893494, 0.7058557868003845, 0.5608071684837341, 0.4627777636051178, 0.033680710941553116, 0.048747558146715164, 0.006509259343147278, 0.6579846143722534, 0.4222782552242279, 0.21691884100437164], "count": [548]}, "action": {"min": [-0.17228130996227264, -0.11874212324619293, 0.10377167165279388, 0.19741131365299225, -0.436403751373291, -0.3076878786087036, -0.0026509056333452463, 0.0971173569560051, -0.16811619699001312, 0.07561729848384857, -0.692027747631073, -0.33523616194725037, -0.6938145160675049, -0.6507754325866699], "max": [-0.15548519790172577, -0.09012362360954285, 0.15862609446048737, 0.8399832844734192, 0.4324370324611664, 0.6569784879684448, 0.8981559872627258, 0.12159392982721329, -0.11258836835622787, 0.12509238719940186, 0.7546213865280151, 0.3801027834415436, 0.7987175583839417, 0.81046062707901], "mean": [-0.1648656576871872, -0.1069486141204834, 0.1324787735939026, 0.641217827796936, 0.0780574381351471, 0.3876402676105499, 0.469507098197937, 0.10639194399118423, -0.15595711767673492, 0.10178183764219284, -0.1675269454717636, -0.004790221340954304, 0.3574751615524292, -0.07962978631258011], "std": [0.004894881509244442, 0.0052598705515265465, 0.013927049934864044, 0.1885024458169937, 0.22681380808353424, 0.27349600195884705, 0.22420166432857513, 0.005575979128479958, 0.007820255123078823, 0.010706166736781597, 0.5383830070495605, 0.16207723319530487, 0.5327646136283875, 0.4876670837402344], "count": [548]}, "timestamp": {"min": [0.0], "max": [18.233333333333334], "mean": [9.116666666666667], "std": [5.273123678933895], "count": [548]}, "frame_index": {"min": [0], "max": [547], "mean": [273.5], "std": [158.19371036801684], "count": [548]}, "episode_index": {"min": [128], "max": [128], "mean": [128.0], "std": [0.0], "count": [548]}, "index": {"min": [81743], "max": [82290], "mean": [82016.5], "std": [158.19371036801684], "count": [548]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [548]}}} +{"episode_index": 129, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48681412944807556]], [[0.4538254334604212]], [[0.40779970043572983]]], "std": [[[0.2721113258242477]], [[0.24862479545185265]], [[0.24555928759476323]]], "count": [120]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.500921364379085]], [[0.4798650826071169]], [[0.438704577432825]]], "std": [[[0.27836763224335537]], [[0.23477320543194524]], [[0.24214052387018073]]], "count": [120]}, "observation.state": {"min": [0.19102180004119873, -0.2128848433494568, 0.10269208997488022, 1.9027265310287476, -0.7424827218055725, -1.377144694328308, -0.6011915802955627, -0.5510478615760803, 0.17533619701862335, -1.6204838752746582, -1.0471820831298828, -0.6765641570091248], "max": [0.26514458656311035, -0.05200488120317459, 0.15007278323173523, 3.2915029525756836, 0.5259138941764832, -0.4168854057788849, -0.4512701630592346, -0.25637155771255493, 0.2291775941848755, 2.206986665725708, 1.0678142309188843, 1.286077857017517], "mean": [0.22414124011993408, -0.1109044998884201, 0.13295160233974457, 2.6201789379119873, -0.1306777149438858, -0.7904044985771179, -0.5263045430183411, -0.4185492694377899, 0.20824675261974335, 0.25295186042785645, 0.011916323564946651, -0.11578235030174255], "std": [0.019795848056674004, 0.043849289417266846, 0.015408484265208244, 0.43152549862861633, 0.4305403232574463, 0.2811293601989746, 0.03151954710483551, 0.06038537994027138, 0.013286266475915909, 0.8499443531036377, 0.44914504885673523, 0.3599106967449188], "count": [596]}, "action": {"min": [-0.16605296730995178, -0.11295007169246674, 0.10567590594291687, 0.43390151858329773, -0.1265857070684433, 0.1448327898979187, 0.4072498083114624, 0.09545215219259262, -0.17308776080608368, 0.06642796844244003, -0.6679770946502686, -0.6424885392189026, -0.650327205657959, -0.6465955376625061], "max": [-0.15281997621059418, -0.0869872123003006, 0.15477974712848663, 0.7639919519424438, 0.5001252889633179, 0.7102721929550171, 0.8086714148521423, 0.13114209473133087, -0.10317844152450562, 0.11599484086036682, 0.7724300026893616, 0.6629706621170044, 0.7328271269798279, 0.8168758153915405], "mean": [-0.15965092182159424, -0.10150301456451416, 0.1382807195186615, 0.5771632194519043, 0.19531984627246857, 0.44237077236175537, 0.5728005766868591, 0.10625169426202774, -0.14938011765480042, 0.09536837786436081, 0.13958857953548431, -0.08719491958618164, -0.03821895271539688, 0.2543797492980957], "std": [0.0033597152214497328, 0.007013797294348478, 0.01581207662820816, 0.09129070490598679, 0.21271370351314545, 0.1973535418510437, 0.11140429228544235, 0.007372609339654446, 0.012782430276274681, 0.011288940906524658, 0.5350380539894104, 0.2595958113670349, 0.5365309715270996, 0.5149958729743958], "count": [596]}, "timestamp": {"min": [0.0], "max": [19.833333333333332], "mean": [9.916666666666666], "std": [5.735004601373723], "count": [596]}, "frame_index": {"min": [0], "max": [595], "mean": [297.5], "std": [172.0501380412117], "count": [596]}, "episode_index": {"min": [129], "max": [129], "mean": [129.0], "std": [0.0], "count": [596]}, "index": {"min": [82291], "max": [82886], "mean": [82588.5], "std": [172.0501380412117], "count": [596]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [596]}}} +{"episode_index": 130, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4879283246567361]], [[0.45561453900035465]], [[0.4085873898008816]]], "std": [[[0.2771204502489521]], [[0.25454963604277864]], [[0.25099450078427]]], "count": [172]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5050502672645285]], [[0.48503069583776665]], [[0.44133582389674214]]], "std": [[[0.2830015195884984]], [[0.2400768310246803]], [[0.24825354173392644]]], "count": [172]}, "observation.state": {"min": [0.1614205539226532, -0.1797388792037964, 0.11217574775218964, 2.019104480743408, -0.7441223859786987, -1.1175042390823364, -0.639504075050354, -0.4579194486141205, 0.1978851556777954, 0.6049554944038391, -0.5669048428535461, -1.4812052249908447], "max": [0.2618238031864166, -0.015970610082149506, 0.1438078135251999, 3.3170852661132812, 1.3350752592086792, -0.3908575177192688, -0.46738752722740173, -0.23853977024555206, 0.22940054535865784, 3.7689671516418457, 1.2421624660491943, 1.0218539237976074], "mean": [0.22688105702400208, -0.09369250386953354, 0.13107524812221527, 2.78110933303833, 0.3564578592777252, -0.7359462380409241, -0.5226444005966187, -0.34290820360183716, 0.2176518738269806, 2.8255159854888916, 0.5465041399002075, 0.10917037725448608], "std": [0.022655198350548744, 0.036577366292476654, 0.008726314641535282, 0.23356011509895325, 0.34981000423431396, 0.2044084221124649, 0.029451536014676094, 0.038324613124132156, 0.006905987858772278, 0.5493547320365906, 0.28676557540893555, 0.3309233784675598], "count": [958]}, "action": {"min": [-0.1705329716205597, -0.10624105483293533, 0.1141028106212616, 0.4017612040042877, -0.3631455898284912, 0.18608558177947998, 0.19725742936134338, 0.08979593217372894, -0.16346554458141327, 0.09269127994775772, -0.6537238359451294, -0.6702485680580139, -0.6723846793174744, -0.6658768057823181], "max": [-0.15672869980335236, -0.08637503534555435, 0.15682508051395416, 0.8046159148216248, 0.4590073227882385, 0.6921932101249695, 0.7774951457977295, 0.11023203283548355, -0.11084923893213272, 0.12365719676017761, 0.6944085955619812, 0.7783967852592468, 0.6956857442855835, 0.7270277142524719], "mean": [-0.16201461851596832, -0.10074028372764587, 0.1369267702102661, 0.6313957571983337, -0.02292589098215103, 0.5255588293075562, 0.5221608877182007, 0.10119987279176712, -0.1485050618648529, 0.10960379987955093, -0.08740678429603577, 0.09747730195522308, -0.03885480761528015, 0.025095243006944656], "std": [0.002519802423194051, 0.003202033694833517, 0.01159281749278307, 0.10497784614562988, 0.13181854784488678, 0.09525220096111298, 0.12033341079950333, 0.004077726509422064, 0.008671393617987633, 0.006315772887319326, 0.2696325182914734, 0.637939453125, 0.4213569462299347, 0.5687779784202576], "count": [958]}, "timestamp": {"min": [0.0], "max": [31.9], "mean": [15.950000000000003], "std": [9.218354275875686], "count": [958]}, "frame_index": {"min": [0], "max": [957], "mean": [478.5], "std": [276.5506282762706], "count": [958]}, "episode_index": {"min": [130], "max": [130], "mean": [130.0], "std": [0.0], "count": [958]}, "index": {"min": [82887], "max": [83844], "mean": [83365.5], "std": [276.5506282762706], "count": [958]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [958]}}} +{"episode_index": 131, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4905978221698036]], [[0.45945179124281293]], [[0.4144979134928825]]], "std": [[[0.273269433348145]], [[0.2521936073719563]], [[0.25034427374105017]]], "count": [133]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.507316891083919]], [[0.4887770426884204]], [[0.447083617950104]]], "std": [[[0.2786447067602138]], [[0.23753441343533194]], [[0.24722708012370134]]], "count": [133]}, "observation.state": {"min": [0.17330585420131683, -0.18444974720478058, 0.11492518335580826, 2.2485053539276123, -0.6145910024642944, -1.0189553499221802, -0.6250548362731934, -0.4343419373035431, 0.19109906256198883, 1.2503811120986938, -0.746991753578186, -0.8701715469360352], "max": [0.2909153401851654, -0.01757694035768509, 0.14471910893917084, 3.0186965465545654, 0.5245475172996521, -0.43544504046440125, -0.4745619297027588, -0.2648279666900635, 0.22396910190582275, 4.389859199523926, 0.992937445640564, 0.6682201623916626], "mean": [0.23272646963596344, -0.09448811411857605, 0.13032524287700653, 2.632786512374878, 0.12419614940881729, -0.7323813438415527, -0.5278583765029907, -0.3589991629123688, 0.21155019104480743, 2.882423162460327, 0.4130106568336487, 0.15826083719730377], "std": [0.0266212597489357, 0.04595841094851494, 0.008794578723609447, 0.1936870664358139, 0.2668994069099426, 0.159234881401062, 0.03323638439178467, 0.039892107248306274, 0.00909642968326807, 0.6280149221420288, 0.2858828008174896, 0.3426577150821686], "count": [684]}, "action": {"min": [-0.16835759580135345, -0.10759487003087997, 0.11429233103990555, 0.38181090354919434, -0.1023874580860138, 0.2564028799533844, 0.5094620585441589, 0.09319718927145004, -0.15608493983745575, 0.08231601119041443, -0.6281545758247375, -0.6760628819465637, -0.661741316318512, -0.6730908751487732], "max": [-0.15432500839233398, -0.09167487174272537, 0.15722370147705078, 0.7747988700866699, 0.4321236312389374, 0.6582192778587341, 0.7555575370788574, 0.11706285923719406, -0.10965394228696823, 0.12413426488637924, 0.645137369632721, 0.806134819984436, 0.7622091770172119, 0.7297171354293823], "mean": [-0.16081875562667847, -0.09905298799276352, 0.13757386803627014, 0.6001297831535339, 0.06901291012763977, 0.48028671741485596, 0.6071063280105591, 0.10303757339715958, -0.1456233412027359, 0.10446591675281525, 0.011351816356182098, -0.050285451114177704, 0.11322639137506485, 0.10330191254615784], "std": [0.002270517172291875, 0.0042719910852611065, 0.01212465763092041, 0.11268928647041321, 0.10334599018096924, 0.09132206439971924, 0.06410618126392365, 0.006024944595992565, 0.006802164018154144, 0.00930895283818245, 0.2806028723716736, 0.6302606463432312, 0.4150756597518921, 0.5706110596656799], "count": [684]}, "timestamp": {"min": [0.0], "max": [22.766666666666666], "mean": [11.383333333333333], "std": [6.581786034763467], "count": [684]}, "frame_index": {"min": [0], "max": [683], "mean": [341.5], "std": [197.453581042904], "count": [684]}, "episode_index": {"min": [131], "max": [131], "mean": [131.0], "std": [0.0], "count": [684]}, "index": {"min": [83845], "max": [84528], "mean": [84186.5], "std": [197.453581042904], "count": [684]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [684]}}} +{"episode_index": 132, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.492415252006843]], [[0.4599323229664722]], [[0.4155456565922417]]], "std": [[[0.27488063724193745]], [[0.25448499982205264]], [[0.2525649832282281]]], "count": [149]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5092058019330029]], [[0.48955656811568776]], [[0.44858065754265913]]], "std": [[[0.279443732431592]], [[0.239777414416925]], [[0.24939184667177217]]], "count": [149]}, "observation.state": {"min": [0.18620280921459198, -0.21642959117889404, 0.09570898115634918, 0.7452380657196045, -1.0840740203857422, -1.4047924280166626, -0.613478422164917, -0.4889880120754242, 0.17216934263706207, 0.8110806941986084, -0.8777528405189514, -1.2783483266830444], "max": [0.27922314405441284, -0.014480119571089745, 0.14540743827819824, 3.418365478515625, 0.6318071484565735, 0.08387084305286407, -0.45217373967170715, -0.31134968996047974, 0.22222687304019928, 4.555723667144775, 1.3041954040527344, 0.8980041146278381], "mean": [0.2332446426153183, -0.11899722367525101, 0.12540680170059204, 2.0915708541870117, -0.2326262891292572, -0.7414699792861938, -0.5196850299835205, -0.3802605867385864, 0.2062634974718094, 3.093475341796875, 0.3421546220779419, 0.3214521110057831], "std": [0.020151257514953613, 0.046493127942085266, 0.011172347702085972, 0.6143243312835693, 0.38901224732398987, 0.422580748796463, 0.032599080353975296, 0.046688858419656754, 0.01481187529861927, 0.6921709179878235, 0.36073464155197144, 0.43034255504608154], "count": [792]}, "action": {"min": [-0.17269204556941986, -0.11239220201969147, 0.10761984437704086, 0.24437402188777924, -0.08758213371038437, -0.3348502516746521, 0.3333947956562042, 0.09616720676422119, -0.15818575024604797, 0.06636745482683182, -0.6003308296203613, -0.6135303378105164, -0.6166142225265503, -0.6708701848983765], "max": [-0.1529710292816162, -0.0684027448296547, 0.1595044583082199, 0.8404564261436462, 0.6232461333274841, 0.6112530827522278, 0.9180421233177185, 0.12687303125858307, -0.12596693634986877, 0.12082155048847198, 0.3337433338165283, 0.866590678691864, 0.9008007645606995, 0.7335020899772644], "mean": [-0.15972907841205597, -0.09835125505924225, 0.13090622425079346, 0.5708264112472534, 0.2713276147842407, 0.23201198875904083, 0.6507875919342041, 0.10809994488954544, -0.14462754130363464, 0.10018723458051682, -0.12195955216884613, 0.42266908288002014, -0.10909470915794373, -0.30489256978034973], "std": [0.003939407411962748, 0.007547621615231037, 0.011586520820856094, 0.14472666382789612, 0.16926921904087067, 0.22518213093280792, 0.15126241743564606, 0.008685298264026642, 0.008427860215306282, 0.013462242670357227, 0.1620970517396927, 0.5217123031616211, 0.44218894839286804, 0.45565879344940186], "count": [792]}, "timestamp": {"min": [0.0], "max": [26.366666666666667], "mean": [13.183333333333334], "std": [7.6210174784872], "count": [792]}, "frame_index": {"min": [0], "max": [791], "mean": [395.5], "std": [228.630524354616], "count": [792]}, "episode_index": {"min": [132], "max": [132], "mean": [132.0], "std": [0.0], "count": [792]}, "index": {"min": [84529], "max": [85320], "mean": [84924.5], "std": [228.630524354616], "count": [792]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [792]}}} +{"episode_index": 133, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48250893145323975]], [[0.4525973129992738]], [[0.40992141481078026]]], "std": [[[0.27574597456892824]], [[0.2541299372021045]], [[0.2520023518682639]]], "count": [108]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4951412793512467]], [[0.47911288378520134]], [[0.43936446229726456]]], "std": [[[0.28196425238192324]], [[0.2408538218927765]], [[0.25027638498646204]]], "count": [108]}, "observation.state": {"min": [0.17279614508152008, -0.17700503766536713, 0.11393222212791443, 2.179097890853882, -0.5872637033462524, -1.1297521591186523, -0.6844812631607056, -0.5210373401641846, 0.1795646846294403, 0.7406249046325684, -1.011656641960144, -1.3307524919509888], "max": [0.2582481801509857, 0.0021005833987146616, 0.14420318603515625, 3.1371712684631348, 0.9776341319084167, -0.30817362666130066, -0.47675520181655884, -0.2729368209838867, 0.22797593474388123, 4.539577484130859, 1.2653906345367432, 0.6485413908958435], "mean": [0.21350723505020142, -0.09288818389177322, 0.13324756920337677, 2.678999900817871, 0.2622429132461548, -0.7883557677268982, -0.5400537848472595, -0.38234949111938477, 0.21265527606010437, 3.1566162109375, 0.25275298953056335, 0.1737280637025833], "std": [0.021910563111305237, 0.04921072721481323, 0.008916126564145088, 0.21429434418678284, 0.2561558783054352, 0.23095448315143585, 0.03059195913374424, 0.055167898535728455, 0.010937406681478024, 0.8765531182289124, 0.38358935713768005, 0.32024621963500977], "count": [520]}, "action": {"min": [-0.16785702109336853, -0.10888371616601944, 0.11453767120838165, 0.4259065091609955, -0.21906712651252747, 0.234612837433815, 0.2893681228160858, 0.08531919866800308, -0.15729917585849762, 0.06958384066820145, -0.5817791223526001, -0.6874468326568604, -0.633206307888031, -0.6874685287475586], "max": [-0.15834908187389374, -0.09079673141241074, 0.15998870134353638, 0.796101450920105, 0.40599524974823, 0.6812163591384888, 0.7756369113922119, 0.12469913065433502, -0.10527566820383072, 0.12528014183044434, 0.2942647337913513, 0.7561185956001282, 0.8882454633712769, 0.7487781643867493], "mean": [-0.16393178701400757, -0.10162247717380524, 0.1400020718574524, 0.6327967643737793, 0.017953572794795036, 0.4950055778026581, 0.558395504951477, 0.10126779228448868, -0.14803005754947662, 0.10167308896780014, -0.12240023165941238, -0.10263103246688843, 0.26798614859580994, 0.08608847111463547], "std": [0.001680128276348114, 0.0040282937698066235, 0.012644313275814056, 0.11338401585817337, 0.10639647394418716, 0.09640485793352127, 0.09454744309186935, 0.00703797023743391, 0.007940775714814663, 0.012439025565981865, 0.21195684373378754, 0.5880290865898132, 0.446001261472702, 0.5528438687324524], "count": [520]}, "timestamp": {"min": [0.0], "max": [17.3], "mean": [8.65], "std": [5.003693080560042], "count": [520]}, "frame_index": {"min": [0], "max": [519], "mean": [259.5], "std": [150.11079241680127], "count": [520]}, "episode_index": {"min": [133], "max": [133], "mean": [133.0], "std": [0.0], "count": [520]}, "index": {"min": [85321], "max": [85840], "mean": [85580.5], "std": [150.11079241680127], "count": [520]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [520]}}} +{"episode_index": 134, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49232773420479303]], [[0.46053906590413946]], [[0.4161597331154684]]], "std": [[[0.27621773160410057]], [[0.2546041051811624]], [[0.2524097331252436]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5093624727668846]], [[0.4898016394335512]], [[0.4484461601307189]]], "std": [[[0.28270213180585957]], [[0.2413509210171552]], [[0.25028219517928985]]], "count": [100]}, "observation.state": {"min": [0.18108263611793518, -0.1845964789390564, 0.11999627202749252, 2.143031120300293, -0.589176595211029, -1.0504083633422852, -0.6796391010284424, -0.4304574131965637, 0.19289442896842957, 1.0700477361679077, -1.1202826499938965, -1.3182542324066162], "max": [0.25786978006362915, -0.026906000450253487, 0.14108042418956757, 2.997098445892334, 0.41305214166641235, -0.17810474336147308, -0.4298473000526428, -0.26057273149490356, 0.22963128983974457, 3.5687131881713867, 1.1778066158294678, 1.0564532279968262], "mean": [0.22202788293361664, -0.10243227332830429, 0.12971080839633942, 2.598432779312134, 0.18220531940460205, -0.7401915788650513, -0.5399179458618164, -0.3475528359413147, 0.21220581233501434, 2.8173773288726807, 0.5144430994987488, 0.09218427538871765], "std": [0.017029274255037308, 0.04515516385436058, 0.006367293186485767, 0.21163047850131989, 0.18562598526477814, 0.23015815019607544, 0.04540671035647392, 0.046390652656555176, 0.01128639467060566, 0.5977193713188171, 0.38676440715789795, 0.4494679868221283], "count": [442]}, "action": {"min": [-0.16874389350414276, -0.10719253867864609, 0.11994149535894394, 0.35413238406181335, -0.1569124162197113, 0.23808909952640533, 0.4516459107398987, 0.08341240137815475, -0.1596333533525467, 0.08267778158187866, -0.6539266705513, -0.6512223482131958, -0.5189253091812134, -0.636590301990509], "max": [-0.1562633365392685, -0.09278884530067444, 0.15475820004940033, 0.7372677326202393, 0.4228628873825073, 0.6394941210746765, 0.8764066696166992, 0.1205466091632843, -0.10890667885541916, 0.12671718001365662, 0.7376923561096191, 0.8226445913314819, 0.5613219738006592, 0.6612047553062439], "mean": [-0.16279743611812592, -0.10062090307474136, 0.13636186718940735, 0.6195194721221924, 0.04671230539679527, 0.461111456155777, 0.6043475866317749, 0.1005655899643898, -0.1435154527425766, 0.10472439974546432, -0.1619458943605423, 0.49516668915748596, -0.28173133730888367, -0.3737647831439972], "std": [0.0021155544091016054, 0.003910080064088106, 0.009899485856294632, 0.09081420302391052, 0.09708257764577866, 0.09264419972896576, 0.09949330985546112, 0.010024317540228367, 0.008714123629033566, 0.011049319058656693, 0.27979326248168945, 0.4419179856777191, 0.29839634895324707, 0.3832685351371765], "count": [442]}, "timestamp": {"min": [0.0], "max": [14.7], "mean": [7.35], "std": [4.253136097830243], "count": [442]}, "frame_index": {"min": [0], "max": [441], "mean": [220.5], "std": [127.59408293490729], "count": [442]}, "episode_index": {"min": [134], "max": [134], "mean": [134.0], "std": [0.0], "count": [442]}, "index": {"min": [85841], "max": [86282], "mean": [86061.5], "std": [127.59408293490729], "count": [442]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [442]}}} +{"episode_index": 135, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4934473674655047]], [[0.4613608491544766]], [[0.41579038541342467]]], "std": [[[0.27514553602248815]], [[0.2539398056548376]], [[0.251931272309654]]], "count": [105]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5089312532420375]], [[0.4893939931528167]], [[0.44713346560846556]]], "std": [[[0.2805099792585665]], [[0.2395299879708693]], [[0.24878848250989904]]], "count": [105]}, "observation.state": {"min": [0.17997829616069794, -0.1554354429244995, 0.12076756358146667, 2.412482738494873, -0.41400858759880066, -1.102767825126648, -0.6468020677566528, -0.5042944550514221, 0.18108133971691132, 0.9872202277183533, -0.7945412397384644, -1.2390871047973633], "max": [0.25470346212387085, 0.005259179975837469, 0.14822427928447723, 3.6075057983398438, 1.1454237699508667, -0.4479067623615265, -0.4185026288032532, -0.2523016929626465, 0.22349725663661957, 4.545658588409424, 1.297363519668579, 0.6268309354782104], "mean": [0.21478864550590515, -0.09132511913776398, 0.13496056199073792, 2.9565188884735107, 0.5807091593742371, -0.8451497554779053, -0.5216084718704224, -0.373677134513855, 0.2103215903043747, 3.2365009784698486, 0.22808566689491272, 0.18304090201854706], "std": [0.01994640752673149, 0.0481494665145874, 0.008128336630761623, 0.26917019486427307, 0.36691421270370483, 0.15664628148078918, 0.03538087382912636, 0.059044841676950455, 0.011236390098929405, 0.8857184648513794, 0.3522842526435852, 0.3714793622493744], "count": [499]}, "action": {"min": [-0.17004267871379852, -0.11125945299863815, 0.11947447061538696, 0.4376039505004883, -0.27881699800491333, 0.35023361444473267, 0.07046444714069366, 0.09024777263402939, -0.15328465402126312, 0.070212721824646, -0.5949824452400208, -0.65461266040802, -0.616858959197998, -0.6565126776695251], "max": [-0.15462365746498108, -0.09313295036554337, 0.16053961217403412, 0.7863680720329285, 0.34414058923721313, 0.7115588784217834, 0.7659207582473755, 0.12110333889722824, -0.10485463589429855, 0.1272846758365631, 0.3295958936214447, 0.7452698349952698, 0.9161037802696228, 0.7878804802894592], "mean": [-0.16291233897209167, -0.10344082862138748, 0.13876688480377197, 0.6777080297470093, -0.06394775956869125, 0.5733872056007385, 0.3868409991264343, 0.1052021011710167, -0.14607471227645874, 0.1037764772772789, -0.10353799164295197, -0.13456693291664124, 0.2641220688819885, 0.1145375519990921], "std": [0.004333656281232834, 0.004595061764121056, 0.012814058922231197, 0.08019224554300308, 0.14270824193954468, 0.06911753863096237, 0.16318561136722565, 0.00727119529619813, 0.006949410308152437, 0.013592670671641827, 0.19603006541728973, 0.571657121181488, 0.4809034764766693, 0.5401892066001892], "count": [499]}, "timestamp": {"min": [0.0], "max": [16.6], "mean": [8.299999999999999], "std": [4.801620096962645], "count": [499]}, "frame_index": {"min": [0], "max": [498], "mean": [249.0], "std": [144.04860290887933], "count": [499]}, "episode_index": {"min": [135], "max": [135], "mean": [135.0], "std": [0.0], "count": [499]}, "index": {"min": [86283], "max": [86781], "mean": [86532.0], "std": [144.04860290887933], "count": [499]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [499]}}} +{"episode_index": 136, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4917102654930585]], [[0.4611776354499626]], [[0.4150003399169887]]], "std": [[[0.2682976796137852]], [[0.2484464478624017]], [[0.24770444428959015]]], "count": [137]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.509381402763863]], [[0.49132849100710846]], [[0.4498452980137716]]], "std": [[[0.2726192669153124]], [[0.23338931300242324]], [[0.24318524230252575]]], "count": [137]}, "observation.state": {"min": [0.14017531275749207, -0.17507435381412506, 0.10207246989011765, 2.465324640274048, -0.612814724445343, -1.131293535232544, -0.6065589189529419, -0.48579078912734985, 0.1878894567489624, 0.8481957912445068, -0.42207014560699463, -1.0386475324630737], "max": [0.31749698519706726, -0.043455820530653, 0.14931705594062805, 3.748627185821533, 1.0654914379119873, -0.1277015060186386, -0.4244336783885956, -0.2843587398529053, 0.21563266217708588, 4.545868396759033, 1.2671668529510498, 0.6959030032157898], "mean": [0.2594864070415497, -0.10695973038673401, 0.13217023015022278, 2.8680691719055176, 0.4717065691947937, -0.7224312424659729, -0.4939706027507782, -0.382917582988739, 0.20677410066127777, 2.87625789642334, 0.19768717885017395, 0.21233244240283966], "std": [0.0401088148355484, 0.03075793944299221, 0.009766973555088043, 0.3384252190589905, 0.3497614860534668, 0.2131028026342392, 0.04182134196162224, 0.05398649349808693, 0.005397103261202574, 0.8722680807113647, 0.40201428532600403, 0.3020426034927368], "count": [711]}, "action": {"min": [-0.1827530562877655, -0.10955686867237091, 0.10651419311761856, 0.45165592432022095, -0.35613879561424255, 0.39754676818847656, 0.2156933844089508, 0.096465565264225, -0.15395614504814148, 0.07703988254070282, -0.538151204586029, -0.6691922545433044, -0.6247486472129822, -0.6675145030021667], "max": [-0.14316876232624054, -0.0827820673584938, 0.1542627215385437, 0.7507767081260681, 0.4819634258747101, 0.6928949952125549, 0.673001766204834, 0.12248028069734573, -0.13437813520431519, 0.12585917115211487, 0.4277450442314148, 0.7728614211082458, 0.9421404004096985, 0.8597256541252136], "mean": [-0.1558133214712143, -0.1028871163725853, 0.13424332439899445, 0.6684390306472778, -0.05288352817296982, 0.5237147212028503, 0.47080305218696594, 0.11115206032991409, -0.1454177051782608, 0.10282289236783981, 0.008893517777323723, -0.4112883508205414, 0.3728450536727905, 0.5110700726509094], "std": [0.007789413910359144, 0.004353274591267109, 0.010550306178629398, 0.06101498752832413, 0.1765027642250061, 0.07802582532167435, 0.11617175489664078, 0.005742737557739019, 0.004702034406363964, 0.01196427270770073, 0.2186812162399292, 0.3625613749027252, 0.3081606924533844, 0.39537468552589417], "count": [711]}, "timestamp": {"min": [0.0], "max": [23.666666666666668], "mean": [11.833333333333334], "std": [6.841593923012926], "count": [711]}, "frame_index": {"min": [0], "max": [710], "mean": [355.0], "std": [205.2478176903878], "count": [711]}, "episode_index": {"min": [136], "max": [136], "mean": [136.0], "std": [0.0], "count": [711]}, "index": {"min": [86782], "max": [87492], "mean": [87137.0], "std": [205.2478176903878], "count": [711]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [711]}}} +{"episode_index": 137, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4898681100217865]], [[0.458481947167756]], [[0.4138399128540305]]], "std": [[[0.2737091012653367]], [[0.25141067235649855]], [[0.24913903120090794]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5074681481481481]], [[0.488577091503268]], [[0.44729816448801746]]], "std": [[[0.2794762270402506]], [[0.23705600214681052]], [[0.24603307288277207]]], "count": [100]}, "observation.state": {"min": [0.17215515673160553, -0.19279029965400696, 0.11768238991498947, 2.041541337966919, -0.8552078604698181, -0.9521336555480957, -0.6162895560264587, -0.4591396450996399, 0.19013333320617676, 0.8333078622817993, -1.1308037042617798, -1.3147882223129272], "max": [0.2585262060165405, -0.04577263817191124, 0.1418115347623825, 3.1168313026428223, 0.7931748628616333, -0.4532639682292938, -0.4680362343788147, -0.2602406442165375, 0.22295020520687103, 3.7838549613952637, 1.351881504058838, 0.7535913586616516], "mean": [0.22738847136497498, -0.11876508593559265, 0.13051843643188477, 2.7470462322235107, 0.21009814739227295, -0.7295750975608826, -0.5227261185646057, -0.3476111888885498, 0.2120402753353119, 2.757000684738159, 0.45687708258628845, 0.12670305371284485], "std": [0.020072124898433685, 0.034522417932748795, 0.00831644143909216, 0.21746912598609924, 0.3383549451828003, 0.1413360834121704, 0.03279096260666847, 0.042414091527462006, 0.006975478958338499, 0.5927139520645142, 0.5126921534538269, 0.38437214493751526], "count": [433]}, "action": {"min": [-0.16865579783916473, -0.1073828935623169, 0.11546719819307327, 0.3648498058319092, -0.20612618327140808, 0.18334132432937622, 0.35949209332466125, 0.09374481439590454, -0.1524296998977661, 0.08738147467374802, -0.64706951379776, -0.6763063669204712, -0.5729485750198364, -0.6778494715690613], "max": [-0.1521308869123459, -0.09596208482980728, 0.15252685546875, 0.7392478585243225, 0.5171899199485779, 0.6985897421836853, 0.7398958802223206, 0.11313782632350922, -0.10599394142627716, 0.1263827085494995, 0.6776137948036194, 0.8021436929702759, 0.6293408274650574, 0.7553219795227051], "mean": [-0.16152174770832062, -0.10326644778251648, 0.13460807502269745, 0.6152259111404419, 0.03173311799764633, 0.5169202089309692, 0.5529049634933472, 0.10302470624446869, -0.14370636641979218, 0.1063455119729042, -0.1222057119011879, 0.07828541845083237, 0.06593117117881775, 0.06819163262844086], "std": [0.0035387668758630753, 0.0024998486042022705, 0.011294444091618061, 0.09677974134683609, 0.13705801963806152, 0.09094671159982681, 0.10562549531459808, 0.004777415655553341, 0.008709133602678776, 0.00893346406519413, 0.2779639959335327, 0.6386257410049438, 0.38865917921066284, 0.5777345299720764], "count": [433]}, "timestamp": {"min": [0.0], "max": [14.4], "mean": [7.200000000000001], "std": [4.166533331199932], "count": [433]}, "frame_index": {"min": [0], "max": [432], "mean": [216.0], "std": [124.99599993599796], "count": [433]}, "episode_index": {"min": [137], "max": [137], "mean": [137.0], "std": [0.0], "count": [433]}, "index": {"min": [87493], "max": [87925], "mean": [87709.0], "std": [124.99599993599796], "count": [433]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [433]}}} +{"episode_index": 138, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4893075758278094]], [[0.45695432948593145]], [[0.41102148132696736]]], "std": [[[0.27544902965764856]], [[0.2535121609926431]], [[0.2507102383987135]]], "count": [141]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5035604324077937]], [[0.4837039837605649]], [[0.44084447573355584]]], "std": [[[0.28193597531184067]], [[0.2406526651106646]], [[0.24931148327734684]]], "count": [141]}, "observation.state": {"min": [0.14346520602703094, -0.1743020862340927, 0.11560962349176407, 1.8578529357910156, -0.6394588351249695, -1.2347865104675293, -0.6960885524749756, -0.4953206479549408, 0.181435227394104, 0.9425563216209412, -0.49585387110710144, -1.1870362758636475], "max": [0.24911218881607056, 0.010966279543936253, 0.1477835327386856, 3.0690219402313232, 0.5965549349784851, -0.3809317946434021, -0.4791569709777832, -0.25274959206581116, 0.22810815274715424, 4.539577484130859, 0.9733984470367432, 1.4096934795379639], "mean": [0.20576661825180054, -0.101030632853508, 0.1325085610151291, 2.5635790824890137, 0.16772869229316711, -0.9498322606086731, -0.5414835810661316, -0.3611176013946533, 0.21272864937782288, 2.838946580886841, 0.14376476407051086, 0.3565918505191803], "std": [0.020898878574371338, 0.04576294496655464, 0.008728562854230404, 0.20699091255664825, 0.2660631835460663, 0.18548588454723358, 0.04044170677661896, 0.046245768666267395, 0.011554526165127754, 0.6594136953353882, 0.28081372380256653, 0.4223846197128296], "count": [735]}, "action": {"min": [-0.17576205730438232, -0.10952848941087723, 0.11772777140140533, 0.40478089451789856, -0.0915144830942154, 0.08162159472703934, 0.40460267663002014, 0.0894491896033287, -0.15746048092842102, 0.07672113925218582, -0.6367616057395935, -0.6730338335037231, -0.6497787833213806, -0.6931836605072021], "max": [-0.1555752456188202, -0.09308022260665894, 0.16123828291893005, 0.8283946514129639, 0.43560928106307983, 0.6508697271347046, 0.8192545771598816, 0.12055183947086334, -0.10076815634965897, 0.12529997527599335, 0.6764739751815796, 0.7678918838500977, 0.849136471748352, 0.8473208546638489], "mean": [-0.164838045835495, -0.10206856578588486, 0.13919202983379364, 0.6784424781799316, 0.09022266417741776, 0.4454193413257599, 0.5439116954803467, 0.1004936695098877, -0.14543107151985168, 0.10567507892847061, 0.011090440675616264, -0.3356630504131317, 0.26753437519073486, 0.43965670466423035], "std": [0.004653274081647396, 0.003136939601972699, 0.011480393819510937, 0.09324515610933304, 0.10734452307224274, 0.09865893423557281, 0.08594425767660141, 0.006403164938092232, 0.011268753558397293, 0.010416295379400253, 0.231404110789299, 0.47614574432373047, 0.29873570799827576, 0.5028212070465088], "count": [735]}, "timestamp": {"min": [0.0], "max": [24.466666666666665], "mean": [12.233333333333333], "std": [7.0725342516484675], "count": [735]}, "frame_index": {"min": [0], "max": [734], "mean": [367.0], "std": [212.176027549454], "count": [735]}, "episode_index": {"min": [138], "max": [138], "mean": [138.0], "std": [0.0], "count": [735]}, "index": {"min": [87926], "max": [88660], "mean": [88293.0], "std": [212.176027549454], "count": [735]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [735]}}} +{"episode_index": 139, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4907344417211329]], [[0.46045998093681917]], [[0.4159837145969499]]], "std": [[[0.2750083108971186]], [[0.2544323043048653]], [[0.25246035365483666]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5011884340958606]], [[0.48541273148148145]], [[0.44466242374727666]]], "std": [[[0.28075505909626924]], [[0.24126818484627213]], [[0.24982376067307538]]], "count": [100]}, "observation.state": {"min": [0.13098527491092682, -0.13739514350891113, 0.11566796153783798, 2.3126704692840576, -0.21369948983192444, -0.9777393341064453, -0.6362218856811523, -0.42220181226730347, 0.19180813431739807, -0.26462870836257935, -0.77049320936203, -1.617964744567871], "max": [0.23321108520030975, -0.020944049581885338, 0.13647860288619995, 3.2650821208953857, 1.0657646656036377, -0.18313267827033997, -0.47414490580558777, -0.294019877910614, 0.22840499877929688, 2.786569595336914, 0.64629065990448, 0.4467408359050751], "mean": [0.19635853171348572, -0.07257120311260223, 0.12543053925037384, 2.7050681114196777, 0.4212075173854828, -0.5478283762931824, -0.5570822954177856, -0.37825557589530945, 0.21113495528697968, 0.5962138772010803, -0.19548849761486053, -0.5438571572303772], "std": [0.02008836902678013, 0.020407382398843765, 0.004541797563433647, 0.3147161900997162, 0.46358704566955566, 0.1462036371231079, 0.027780350297689438, 0.034575093537569046, 0.011035091243684292, 0.9867783784866333, 0.30876225233078003, 0.5840484499931335], "count": [392]}, "action": {"min": [-0.1776210218667984, -0.10288376361131668, 0.11602783203125, 0.47559502720832825, -0.3669961988925934, 0.35733726620674133, 0.35339710116386414, 0.08897878974676132, -0.1568933129310608, 0.08229094743728638, -0.6373403668403625, -0.5072267651557922, -0.6531100869178772, -0.5022132396697998], "max": [-0.16148895025253296, -0.0879748985171318, 0.14997310936450958, 0.7478439211845398, 0.26317235827445984, 0.6688941717147827, 0.7732437252998352, 0.12007161974906921, -0.11321453750133514, 0.12169347703456879, 0.8833930492401123, 0.44569090008735657, 0.6734181046485901, 0.874147355556488], "mean": [-0.1679515689611435, -0.09546118974685669, 0.13448818027973175, 0.5900798439979553, -0.09108103811740875, 0.47297120094299316, 0.5843342542648315, 0.1001119315624237, -0.14639946818351746, 0.10075752437114716, 0.46819767355918884, -0.147741436958313, -0.24821925163269043, 0.3521777093410492], "std": [0.0032401306089013815, 0.0038335726130753756, 0.006631696596741676, 0.07670099288225174, 0.20548304915428162, 0.09962061792612076, 0.14258889853954315, 0.007030711509287357, 0.0076716309413313866, 0.010245135985314846, 0.4429507255554199, 0.19978521764278412, 0.44622424244880676, 0.37159910798072815], "count": [392]}, "timestamp": {"min": [0.0], "max": [13.033333333333333], "mean": [6.5166666666666675], "std": [3.772009485082925], "count": [392]}, "frame_index": {"min": [0], "max": [391], "mean": [195.5], "std": [113.16028455248777], "count": [392]}, "episode_index": {"min": [139], "max": [139], "mean": [139.0], "std": [0.0], "count": [392]}, "index": {"min": [88661], "max": [89052], "mean": [88856.5], "std": [113.16028455248777], "count": [392]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [392]}}} +{"episode_index": 140, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49956099673202614]], [[0.4699424346405229]], [[0.4276927614379085]]], "std": [[[0.27678550479760716]], [[0.25445587589077284]], [[0.25173544313705326]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5143275626361656]], [[0.4970075081699346]], [[0.4574002614379085]]], "std": [[[0.2799216867616866]], [[0.23910625860957704]], [[0.24764287403788848]]], "count": [100]}, "observation.state": {"min": [0.17971572279930115, -0.17562267184257507, 0.11256205290555954, 2.449388265609741, -0.19129109382629395, -1.1113759279251099, -0.6077713370323181, -0.4098222553730011, 0.19659015536308289, -0.12602366507053375, -0.4089530408382416, -0.825005829334259], "max": [0.24567557871341705, -0.06135711073875427, 0.1259436458349228, 2.944885492324829, 0.6098086833953857, -0.7601032853126526, -0.486308217048645, -0.30388954281806946, 0.2205170840024948, 0.7836112976074219, 0.34678342938423157, -0.2475261241197586], "mean": [0.21397747099399567, -0.13632842898368835, 0.11659090965986252, 2.633566379547119, 0.325408399105072, -0.910527765750885, -0.5445893406867981, -0.3569217920303345, 0.21195602416992188, 0.13356022536754608, -0.07702279835939407, -0.46865183115005493], "std": [0.020128382369875908, 0.04023188725113869, 0.004767073318362236, 0.1571311205625534, 0.30603933334350586, 0.07269921153783798, 0.03137964755296707, 0.02937138080596924, 0.007201649248600006, 0.17949335277080536, 0.1970101296901703, 0.14324767887592316], "count": [119]}, "action": {"min": [-0.17168878018856049, -0.10185892879962921, 0.1136249527335167, 0.5372600555419922, -0.12778878211975098, 0.3964596092700958, 0.4838331639766693, 0.09275630861520767, -0.15674418210983276, 0.08746873587369919, -0.6067055463790894, -0.27145418524742126, -0.6217767000198364, -0.5719677209854126], "max": [-0.16280075907707214, -0.08417357504367828, 0.1361081600189209, 0.7636013031005859, 0.2732554078102112, 0.5887872576713562, 0.6021497845649719, 0.10993267595767975, -0.1264411360025406, 0.12229901552200317, 0.8193913698196411, 0.13585172593593597, 0.6887133717536926, 0.715874195098877], "mean": [-0.16816428303718567, -0.09800337255001068, 0.12215817719697952, 0.6893890500068665, 0.004626520909368992, 0.47075361013412476, 0.5184832215309143, 0.10070784389972687, -0.1446903496980667, 0.10608913749456406, 0.3379020094871521, -0.026631729677319527, -0.2237602025270462, 0.21413682401180267], "std": [0.0017131790518760681, 0.004968435037881136, 0.008725441060960293, 0.08705034106969833, 0.1428776979446411, 0.06911848485469818, 0.03896376118063927, 0.0038722080644220114, 0.005506252404302359, 0.009565677493810654, 0.5444472432136536, 0.0856211930513382, 0.5322793126106262, 0.4495716392993927], "count": [119]}, "timestamp": {"min": [0.0], "max": [3.933333333333333], "mean": [1.9666666666666668], "std": [1.1450376024878448], "count": [119]}, "frame_index": {"min": [0], "max": [118], "mean": [59.0], "std": [34.351128074635334], "count": [119]}, "episode_index": {"min": [140], "max": [140], "mean": [140.0], "std": [0.0], "count": [119]}, "index": {"min": [89053], "max": [89171], "mean": [89112.0], "std": [34.351128074635334], "count": [119]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [119]}}} +{"episode_index": 141, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5133584504357298]], [[0.4787133741830065]], [[0.4322817755991285]]], "std": [[[0.27543266455400467]], [[0.25424433416255676]], [[0.25165360397553227]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5273937418300653]], [[0.5040066421568627]], [[0.4616748039215686]]], "std": [[[0.27904881723183755]], [[0.24011355797169487]], [[0.24851505442107663]]], "count": [100]}, "observation.state": {"min": [0.13065318763256073, -0.18535330891609192, 0.09690546244382858, 1.5999342203140259, -1.2104628086090088, -1.4113887548446655, -0.6262518763542175, -0.43140730261802673, 0.18363115191459656, -0.7557225823402405, -0.9453879594802856, -0.9699701070785522], "max": [0.2275117039680481, -0.08609303086996078, 0.13506045937538147, 4.091889381408691, 0.7301854491233826, -0.4255634546279907, -0.47507163882255554, -0.2892858386039734, 0.22414149343967438, 2.4418394565582275, 0.5893132090568542, 0.4569290280342102], "mean": [0.18384642899036407, -0.12405610084533691, 0.11704753339290619, 2.682621717453003, -0.23432676494121552, -0.9036760330200195, -0.5383997559547424, -0.36567071080207825, 0.20578429102897644, 0.043143242597579956, -0.3084031045436859, -0.38515472412109375], "std": [0.03294743224978447, 0.028632711619138718, 0.012064473703503609, 0.6967477798461914, 0.7341758608818054, 0.3327086865901947, 0.04187500476837158, 0.04644911363720894, 0.013732969760894775, 0.9007388353347778, 0.39235880970954895, 0.37147048115730286], "count": [198]}, "action": {"min": [-0.18474075198173523, -0.10547902435064316, 0.1093190610408783, -0.012044140137732029, -0.1963614672422409, 0.05599639564752579, 0.29572924971580505, 0.09036851674318314, -0.1553877890110016, 0.08081269264221191, -0.6963198781013489, -0.5164453387260437, -0.6970140933990479, -0.5181341171264648], "max": [-0.15989114344120026, -0.07541932910680771, 0.13692323863506317, 0.7715755105018616, 0.6536169648170471, 0.7208976149559021, 0.7640272974967957, 0.12476813048124313, -0.12433475255966187, 0.12218482047319412, 0.7896818518638611, 0.22152769565582275, 0.7123973369598389, 0.84772789478302], "mean": [-0.17026406526565552, -0.09432726353406906, 0.12418057024478912, 0.525995135307312, 0.24028457701206207, 0.4254978597164154, 0.5331425666809082, 0.10412756353616714, -0.1414894014596939, 0.09969820082187653, 0.015015947632491589, -0.042120758444070816, 0.11050868034362793, -0.02432910166680813], "std": [0.0064847939647734165, 0.008158205077052116, 0.010144812986254692, 0.21968679130077362, 0.28627899289131165, 0.21671828627586365, 0.15204617381095886, 0.011817009188234806, 0.007493005599826574, 0.013339197263121605, 0.6140321493148804, 0.21419458091259003, 0.602002739906311, 0.44707295298576355], "count": [198]}, "timestamp": {"min": [0.0], "max": [6.566666666666666], "mean": [3.2833333333333337], "std": [1.9052315889170555], "count": [198]}, "frame_index": {"min": [0], "max": [197], "mean": [98.5], "std": [57.15694766751166], "count": [198]}, "episode_index": {"min": [141], "max": [141], "mean": [141.0], "std": [0.0], "count": [198]}, "index": {"min": [89172], "max": [89369], "mean": [89270.5], "std": [57.15694766751166], "count": [198]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [198]}}} +{"episode_index": 142, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49758296840958605]], [[0.4659331454248366]], [[0.42163600490196074]]], "std": [[[0.2734401397840031]], [[0.252066067282159]], [[0.24964779977447094]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5150161955337691]], [[0.49526925381263615]], [[0.455316977124183]]], "std": [[[0.27728840546805344]], [[0.23702574927523087]], [[0.24542720720398428]]], "count": [100]}, "observation.state": {"min": [0.1698537915945053, -0.1747654378414154, 0.11101298034191132, 1.0107054710388184, -0.7927649617195129, -1.1182276010513306, -0.6189925074577332, -0.45972657203674316, 0.19527700543403625, -0.3912814259529114, -0.8220051527023315, -1.3509026765823364], "max": [0.24272549152374268, -0.060692958533763885, 0.1356191635131836, 3.141993999481201, 0.6320804357528687, 0.3135204315185547, -0.46105489134788513, -0.30071550607681274, 0.22719167172908783, 2.5359902381896973, 0.8217319250106812, 0.5634210705757141], "mean": [0.20373587310314178, -0.10543878376483917, 0.12621431052684784, 2.181007146835327, -0.16639705002307892, -0.4499284327030182, -0.5236706137657166, -0.36770951747894287, 0.21055246889591217, 0.4197936952114105, -0.10626664757728577, -0.5707520842552185], "std": [0.02088555134832859, 0.036087121814489365, 0.008053898811340332, 0.6686530113220215, 0.5759146809577942, 0.4250631332397461, 0.05192776769399643, 0.03671867027878761, 0.008475217968225479, 0.8223099708557129, 0.4413134455680847, 0.49192994832992554], "count": [347]}, "action": {"min": [-0.1704464852809906, -0.10354810208082199, 0.11196061968803406, 0.18912667036056519, -0.12482057511806488, -0.046905338764190674, 0.4054340422153473, 0.08760044723749161, -0.15963776409626007, 0.07952479273080826, -0.6656967997550964, -0.5795333385467529, -0.6703686714172363, -0.5752636790275574], "max": [-0.15268129110336304, -0.0922875851392746, 0.14373093843460083, 0.7652628421783447, 0.5317006707191467, 0.6723357439041138, 0.8677220344543457, 0.11549936980009079, -0.1266833245754242, 0.12357737869024277, 0.8906417489051819, 0.28470560908317566, 0.6892745494842529, 0.8141178488731384], "mean": [-0.1637946218252182, -0.09849880635738373, 0.13223466277122498, 0.48520052433013916, 0.20240141451358795, 0.3196030557155609, 0.6582998633384705, 0.10539108514785767, -0.14598123729228973, 0.104212187230587, 0.2798584997653961, -0.041984327137470245, -0.07308044284582138, 0.11883296817541122], "std": [0.004303391557186842, 0.003321721451357007, 0.00992204062640667, 0.19748923182487488, 0.24492421746253967, 0.23276928067207336, 0.18691731989383698, 0.0062154196202754974, 0.006196559406816959, 0.012413022108376026, 0.5958656668663025, 0.25851643085479736, 0.518796443939209, 0.4576221704483032], "count": [347]}, "timestamp": {"min": [0.0], "max": [11.533333333333333], "mean": [5.766666666666667], "std": [3.3389951915043077], "count": [347]}, "frame_index": {"min": [0], "max": [346], "mean": [173.0], "std": [100.16985574512923], "count": [347]}, "episode_index": {"min": [142], "max": [142], "mean": [142.0], "std": [0.0], "count": [347]}, "index": {"min": [89370], "max": [89716], "mean": [89543.0], "std": [100.16985574512923], "count": [347]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [347]}}} +{"episode_index": 143, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5002382543572984]], [[0.46642523420479304]], [[0.4220886655773421]]], "std": [[[0.2741915292080153]], [[0.2532747044855581]], [[0.25126116981583996]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5107616993464053]], [[0.48968307734204797]], [[0.45003912854030503]]], "std": [[[0.2792148505783251]], [[0.2405259163411396]], [[0.24923610116095016]]], "count": [100]}, "observation.state": {"min": [0.11562476307153702, -0.23868650197982788, 0.08739327639341354, 1.1751024723052979, -0.8144901990890503, -1.3961976766586304, -0.5630181431770325, -0.4658275246620178, 0.18524372577667236, -0.1333627998828888, -0.2917189300060272, -1.4210180044174194], "max": [0.21994343400001526, -0.09043320268392563, 0.1336643546819687, 2.599945545196533, -0.2607024312019348, -0.05637164041399956, -0.4599968492984772, -0.2929464280605316, 0.22543779015541077, 2.5569591522216797, 0.6124047636985779, 0.5504679083824158], "mean": [0.19063521921634674, -0.13790352642536163, 0.1165318638086319, 2.0670952796936035, -0.5382729172706604, -0.6928983926773071, -0.5260759592056274, -0.3865374028682709, 0.2093837857246399, 0.5279914736747742, 0.029109889641404152, -0.5989792943000793], "std": [0.020518338307738304, 0.04399313032627106, 0.012448315508663654, 0.3725702464580536, 0.14855073392391205, 0.37806642055511475, 0.01968780905008316, 0.06018511578440666, 0.014435244724154472, 0.9385326504707336, 0.23109184205532074, 0.6222703456878662], "count": [260]}, "action": {"min": [-0.1823655515909195, -0.10694140940904617, 0.09536480158567429, 0.34981268644332886, 0.2552737891674042, -0.05864908546209335, 0.47754430770874023, 0.0963250920176506, -0.15850970149040222, 0.079471156001091, -0.6307467818260193, -0.5389490127563477, -0.6253825426101685, -0.4397502839565277], "max": [-0.1601172238588333, -0.08591709285974503, 0.1352025717496872, 0.7712810039520264, 0.4966506361961365, 0.4571882486343384, 0.8137178421020508, 0.11924444884061813, -0.1361636370420456, 0.12637029588222504, 0.8236207365989685, 0.10883646458387375, 0.6795957684516907, 0.842168927192688], "mean": [-0.16606712341308594, -0.09426576644182205, 0.12394074350595474, 0.5272794365882874, 0.3644607663154602, 0.23215638101100922, 0.6993228197097778, 0.10548368841409683, -0.1466832309961319, 0.10218749195337296, 0.13386495411396027, -0.16740037500858307, 0.036509059369564056, 0.12381470203399658], "std": [0.005280238576233387, 0.00415150448679924, 0.01229330524802208, 0.12948130071163177, 0.05974406376481056, 0.12203796952962875, 0.10472596436738968, 0.00845707394182682, 0.006574595347046852, 0.016483670100569725, 0.6026630401611328, 0.2352680116891861, 0.5362088680267334, 0.48095816373825073], "count": [260]}, "timestamp": {"min": [0.0], "max": [8.633333333333333], "mean": [4.316666666666666], "std": [2.501832661603623], "count": [260]}, "frame_index": {"min": [0], "max": [259], "mean": [129.5], "std": [75.05497984810869], "count": [260]}, "episode_index": {"min": [143], "max": [143], "mean": [143.0], "std": [0.0], "count": [260]}, "index": {"min": [89717], "max": [89976], "mean": [89846.5], "std": [75.05497984810869], "count": [260]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [260]}}} +{"episode_index": 144, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.505383720043573]], [[0.4710557216775599]], [[0.42568526416122004]]], "std": [[[0.27426042630889463]], [[0.25356306943927504]], [[0.2509445358162009]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5205017129629629]], [[0.49754145152505447]], [[0.45664482843137255]]], "std": [[[0.27863276532616416]], [[0.23923429985100572]], [[0.24703979457452566]]], "count": [100]}, "observation.state": {"min": [0.1815768927335739, -0.21849927306175232, 0.09973785281181335, 1.1834900379180908, -0.9735350608825684, -1.2365403175354004, -0.5858542323112488, -0.546962559223175, 0.1728343516588211, -0.31474462151527405, 0.12994131445884705, -1.4411143064498901], "max": [0.23319563269615173, -0.06594441831111908, 0.13326898217201233, 2.4862935543060303, 0.1390959620475769, 0.015530929900705814, -0.42603999376296997, -0.34577763080596924, 0.22627778351306915, 2.6228017807006836, 0.9949870109558105, 0.502126157283783], "mean": [0.20492196083068848, -0.12266314774751663, 0.12257973849773407, 1.7895276546478271, -0.5762368440628052, -0.45798230171203613, -0.5107243657112122, -0.42883583903312683, 0.20460256934165955, 0.5953599810600281, 0.6065446734428406, -0.5052152872085571], "std": [0.01698978804051876, 0.04404287412762642, 0.010107161477208138, 0.36964014172554016, 0.36050283908843994, 0.4256933033466339, 0.03908225893974304, 0.06816928833723068, 0.01641611009836197, 0.9629084467887878, 0.20816197991371155, 0.679020881652832], "count": [311]}, "action": {"min": [-0.17406556010246277, -0.10981809347867966, 0.10608595609664917, 0.29620596766471863, 0.05049452185630798, -0.07857624441385269, 0.4939534068107605, 0.09888516366481781, -0.15861445665359497, 0.06975078582763672, -0.5901505947113037, -0.6677248477935791, -0.5867688059806824, -0.585263729095459], "max": [-0.15427088737487793, -0.08898454904556274, 0.1382705420255661, 0.8011705279350281, 0.5474491119384766, 0.3682759702205658, 0.9443101286888123, 0.13471274077892303, -0.1342090219259262, 0.12278712540864944, 0.5636394619941711, 0.4936613142490387, 0.6577416062355042, 0.8062056303024292], "mean": [-0.1624203771352768, -0.09634268283843994, 0.1283094882965088, 0.45042866468429565, 0.38265126943588257, 0.13879357278347015, 0.7406378984451294, 0.11116401851177216, -0.14533889293670654, 0.09675905108451843, -0.10499604791402817, 0.01329881977289915, 0.21216127276420593, 0.12692391872406006], "std": [0.004262798000127077, 0.0052504888735711575, 0.010254458524286747, 0.16788142919540405, 0.14889195561408997, 0.12719279527664185, 0.12787944078445435, 0.011751187965273857, 0.006363126449286938, 0.016450190916657448, 0.4249550998210907, 0.4443422853946686, 0.4955314099788666, 0.5514516234397888], "count": [311]}, "timestamp": {"min": [0.0], "max": [10.333333333333334], "mean": [5.166666666666666], "std": [2.9925834249951255], "count": [311]}, "frame_index": {"min": [0], "max": [310], "mean": [155.0], "std": [89.77750274985377], "count": [311]}, "episode_index": {"min": [144], "max": [144], "mean": [144.0], "std": [0.0], "count": [311]}, "index": {"min": [89977], "max": [90287], "mean": [90132.0], "std": [89.77750274985377], "count": [311]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [311]}}} +{"episode_index": 145, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4962334422657952]], [[0.46497503267973855]], [[0.42004770697167754]]], "std": [[[0.271222218837437]], [[0.2509257079508958]], [[0.24840651577403072]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5103395969498912]], [[0.4924185049019608]], [[0.45167087418300655]]], "std": [[[0.27551087780326855]], [[0.23570457717142665]], [[0.24348349425799123]]], "count": [100]}, "observation.state": {"min": [0.1893227994441986, -0.1376345455646515, 0.11449222266674042, 2.26318359375, -0.3291573226451874, -0.8553193211555481, -0.6646724343299866, -0.4739055037498474, 0.19255350530147552, -0.18935002386569977, -0.5341120958328247, -1.1898797750473022], "max": [0.25570741295814514, -0.04575718939304352, 0.13607026636600494, 3.138010025024414, 0.7277259826660156, -0.3114638924598694, -0.49784597754478455, -0.30187392234802246, 0.22797073423862457, 2.2822654247283936, 0.8755666613578796, 0.3171469271183014], "mean": [0.22275106608867645, -0.08455444872379303, 0.11947358399629593, 2.8586883544921875, 0.2407459169626236, -0.6341678500175476, -0.5641820430755615, -0.3621964454650879, 0.2081134021282196, 0.28794628381729126, -0.07690918445587158, -0.5307019352912903], "std": [0.01353495940566063, 0.033068206161260605, 0.006349869538098574, 0.14432936906814575, 0.3452545404434204, 0.17916303873062134, 0.036335840821266174, 0.042793158441782, 0.010539863258600235, 0.62501460313797, 0.3381233513355255, 0.36864063143730164], "count": [445]}, "action": {"min": [-0.16859300434589386, -0.1025705486536026, 0.11728652566671371, 0.5231027007102966, -0.26425114274024963, 0.3180871903896332, 0.4730129837989807, 0.08227233588695526, -0.1550973504781723, 0.07834424078464508, -0.6047829985618591, -0.5343856811523438, -0.6448441743850708, -0.5142030715942383], "max": [-0.1549835354089737, -0.08376719802618027, 0.14579257369041443, 0.6509978771209717, 0.29080110788345337, 0.640133261680603, 0.713695228099823, 0.11108046770095825, -0.11655589193105698, 0.12263686209917068, 0.8389691710472107, 0.5884555578231812, 0.6430593729019165, 0.8350445628166199], "mean": [-0.1645454317331314, -0.09273684024810791, 0.1290806233882904, 0.5776175856590271, 0.0038621623534709215, 0.549919843673706, 0.5662568807601929, 0.0996270701289177, -0.14155888557434082, 0.10102947056293488, 0.2985007166862488, -0.08149760961532593, -0.1256745308637619, 0.15504728257656097], "std": [0.002536507323384285, 0.007224316708743572, 0.006570442114025354, 0.03929080441594124, 0.1894758641719818, 0.05977034568786621, 0.04761524870991707, 0.00515452865511179, 0.00847738329321146, 0.011410047300159931, 0.5841410756111145, 0.2233758270740509, 0.5210486054420471, 0.4492355287075043], "count": [445]}, "timestamp": {"min": [0.0], "max": [14.8], "mean": [7.4], "std": [4.282003684673281], "count": [445]}, "frame_index": {"min": [0], "max": [444], "mean": [222.0], "std": [128.46011054019843], "count": [445]}, "episode_index": {"min": [145], "max": [145], "mean": [145.0], "std": [0.0], "count": [445]}, "index": {"min": [90288], "max": [90732], "mean": [90510.0], "std": [128.46011054019843], "count": [445]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [445]}}} +{"episode_index": 146, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5027108197167757]], [[0.4706194744008715]], [[0.4262701279956427]]], "std": [[[0.2728648687439587]], [[0.2530188798167982]], [[0.251342544616107]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.51671022875817]], [[0.4975038671023965]], [[0.4567923665577342]]], "std": [[[0.2771493215705172]], [[0.23907850932405658]], [[0.248163141908718]]], "count": [100]}, "observation.state": {"min": [0.16454054415225983, -0.17952264845371246, 0.08939474821090698, 1.1474233865737915, -0.904806911945343, -1.4001415967941284, -0.5971603393554688, -0.44435060024261475, 0.1747748851776123, -0.32774537801742554, -0.529466450214386, -1.5999263525009155], "max": [0.24090293049812317, -0.09188508242368698, 0.13090455532073975, 2.6532068252563477, -0.39638248085975647, -0.07559438049793243, -0.504456639289856, -0.3320311903953552, 0.21844300627708435, 2.361947536468506, 0.8000066876411438, 0.3936767578125], "mean": [0.2007615566253662, -0.12829291820526123, 0.11741236597299576, 2.0020861625671387, -0.6910043954849243, -0.676770031452179, -0.5503258109092712, -0.38678452372550964, 0.19908668100833893, 0.32148927450180054, -0.12622781097888947, -0.7901270985603333], "std": [0.014177348464727402, 0.030221154913306236, 0.015823405236005783, 0.45846670866012573, 0.1726863831281662, 0.47011417150497437, 0.025636622682213783, 0.026886487379670143, 0.014707299880683422, 0.7678333520889282, 0.36722299456596375, 0.5867455005645752], "count": [236]}, "action": {"min": [-0.17339274287223816, -0.10310092568397522, 0.1013735756278038, 0.3411995470523834, 0.349117636680603, -0.062258947640657425, 0.4580254852771759, 0.09689405560493469, -0.1525249481201172, 0.07804665714502335, 0.14516767859458923, -0.564856767654419, -0.6889187693595886, 0.00010277056571794674], "max": [-0.15610957145690918, -0.08164822310209274, 0.13630199432373047, 0.7049809694290161, 0.5453106164932251, 0.3820987939834595, 0.7865736484527588, 0.11559779942035675, -0.12174256145954132, 0.1099572703242302, 0.87171870470047, 0.12073811888694763, 0.19348114728927612, 0.8285658955574036], "mean": [-0.16365382075309753, -0.09300247579813004, 0.12445966899394989, 0.49063146114349365, 0.4522363841533661, 0.20162799954414368, 0.6792672872543335, 0.10706242173910141, -0.13942360877990723, 0.09346611797809601, 0.6687243580818176, -0.17896205186843872, -0.46916237473487854, 0.31640326976776123], "std": [0.004644979722797871, 0.006701014470309019, 0.01331739779561758, 0.13143467903137207, 0.04030504822731018, 0.12749943137168884, 0.1324732005596161, 0.005444300826638937, 0.010478201322257519, 0.010139196179807186, 0.19943180680274963, 0.20346693694591522, 0.23341667652130127, 0.25475654006004333], "count": [236]}, "timestamp": {"min": [0.0], "max": [7.833333333333333], "mean": [3.9166666666666665], "std": [2.270890672058971], "count": [236]}, "frame_index": {"min": [0], "max": [235], "mean": [117.5], "std": [68.12672016176913], "count": [236]}, "episode_index": {"min": [146], "max": [146], "mean": [146.0], "std": [0.0], "count": [236]}, "index": {"min": [90733], "max": [90968], "mean": [90850.5], "std": [68.12672016176913], "count": [236]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [236]}}} +{"episode_index": 147, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5031830882352941]], [[0.4681374591503268]], [[0.4226770697167756]]], "std": [[[0.271164702974592]], [[0.2509217416140921]], [[0.2486993319051325]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5153746323529412]], [[0.49291370098039217]], [[0.4521234150326797]]], "std": [[[0.2762463486313362]], [[0.23830803723054658]], [[0.24656336668124887]]], "count": [100]}, "observation.state": {"min": [0.10582461208105087, -0.18764695525169373, 0.0981641486287117, 1.4653133153915405, -0.8567108511924744, -1.1392641067504883, -0.5847035646438599, -0.436318963766098, 0.1831735521554947, -0.12497521191835403, -0.693293571472168, -0.9111515283584595], "max": [0.24007660150527954, -0.023044630885124207, 0.13053250312805176, 3.0142929553985596, 0.7465818524360657, -0.0029647699557244778, -0.49865686893463135, -0.2857256829738617, 0.22295281291007996, 2.7507126331329346, 0.9595981240272522, 0.6072564125061035], "mean": [0.1733127385377884, -0.10531152784824371, 0.11799221485853195, 2.509690999984741, 0.11902046203613281, -0.7283107042312622, -0.5483841300010681, -0.36697643995285034, 0.20696385204792023, 0.973982572555542, 0.06324741244316101, -0.23893241584300995], "std": [0.040580883622169495, 0.048186417669057846, 0.009399200789630413, 0.4807327687740326, 0.5809115171432495, 0.35219520330429077, 0.021618690341711044, 0.04161444306373596, 0.012411223724484444, 1.1019176244735718, 0.42687633633613586, 0.4449537694454193], "count": [312]}, "action": {"min": [-0.1873711496591568, -0.10286390036344528, 0.10633964836597443, 0.2563862204551697, -0.19365765154361725, 0.07882790267467499, 0.4032772183418274, 0.09267862141132355, -0.15456552803516388, 0.07840994000434875, -0.6179648637771606, -0.6395244598388672, -0.6109376549720764, -0.6240373253822327], "max": [-0.1608622819185257, -0.08682780712842941, 0.14143696427345276, 0.769371509552002, 0.47254490852355957, 0.6011703610420227, 0.8397653698921204, 0.11243397742509842, -0.12309231609106064, 0.12360256910324097, 0.81646728515625, 0.6397076845169067, 0.6919346451759338, 0.8693653345108032], "mean": [-0.17177943885326385, -0.0947309359908104, 0.12635359168052673, 0.597317636013031, 0.0819988027215004, 0.43416452407836914, 0.5545461177825928, 0.10204122960567474, -0.14194868505001068, 0.10010623186826706, 0.28161510825157166, -0.23961162567138672, -0.03559954836964607, 0.3618371784687042], "std": [0.007343450095504522, 0.005486367270350456, 0.011335648596286774, 0.17500899732112885, 0.2363785058259964, 0.16922631859779358, 0.15914449095726013, 0.006531210616230965, 0.007970272563397884, 0.01269685011357069, 0.4703724682331085, 0.2913852632045746, 0.45909446477890015, 0.4627768099308014], "count": [312]}, "timestamp": {"min": [0.0], "max": [10.366666666666667], "mean": [5.183333333333334], "std": [3.0022059790661833], "count": [312]}, "frame_index": {"min": [0], "max": [311], "mean": [155.5], "std": [90.0661793719855], "count": [312]}, "episode_index": {"min": [147], "max": [147], "mean": [147.0], "std": [0.0], "count": [312]}, "index": {"min": [90969], "max": [91280], "mean": [91124.5], "std": [90.0661793719855], "count": [312]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [312]}}} +{"episode_index": 148, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4957708850762527]], [[0.4637969526143791]], [[0.4187664460784314]]], "std": [[[0.27556726202222054]], [[0.253995343340799]], [[0.25078297028156876]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.508218545751634]], [[0.4887066421568627]], [[0.447849272875817]]], "std": [[[0.2809471378848424]], [[0.24055300760095938]], [[0.24771658032518037]]], "count": [100]}, "observation.state": {"min": [0.15510337054729462, -0.15615366399288177, 0.1151961088180542, 1.280576467514038, -0.8460531830787659, -0.9408645033836365, -0.7005677223205566, -0.4682910740375519, 0.18284688889980316, -0.31830933690071106, -0.741799533367157, -1.6652687788009644], "max": [0.2266313135623932, -0.058028608560562134, 0.13058824837207794, 3.2598397731781006, 0.6555819511413574, -0.1260395050048828, -0.5005952715873718, -0.24303439259529114, 0.22713592648506165, 2.6989192962646484, 1.0847572088241577, 0.4336963891983032], "mean": [0.18372727930545807, -0.08966881036758423, 0.12279999256134033, 2.1835954189300537, -0.3056251108646393, -0.4915999174118042, -0.5620735883712769, -0.36254748702049255, 0.21164646744728088, 0.827271580696106, 0.08530700206756592, -0.5354828238487244], "std": [0.02572779729962349, 0.03417177125811577, 0.004013058263808489, 0.5393278002738953, 0.6403913497924805, 0.23498959839344025, 0.038879040628671646, 0.04719141125679016, 0.013148167170584202, 1.0409083366394043, 0.5176511406898499, 0.627328634262085], "count": [376]}, "action": {"min": [-0.16994056105613708, -0.10234691202640533, 0.11722108721733093, 0.3255462944507599, -0.18305236101150513, -0.019994834437966347, 0.335688054561615, 0.07974346727132797, -0.1581508219242096, 0.08147520571947098, -0.6744564175605774, -0.6602844595909119, -0.6713448762893677, -0.5252832770347595], "max": [-0.16055651009082794, -0.08828417956829071, 0.13766422867774963, 0.721251904964447, 0.5035556554794312, 0.6850451231002808, 0.8146141767501831, 0.11352742463350296, -0.10348150879144669, 0.12271060794591904, 0.9409063458442688, 0.671232283115387, 0.7045143246650696, 0.7762588858604431], "mean": [-0.16669905185699463, -0.09360389411449432, 0.13151191174983978, 0.481101393699646, 0.24311771988868713, 0.30084505677223206, 0.6791389584541321, 0.0981496050953865, -0.14363661408424377, 0.10223706066608429, 0.3201730251312256, -0.1562393307685852, -0.05800603702664375, 0.29565319418907166], "std": [0.001881258562207222, 0.005363977048546076, 0.006853587459772825, 0.15323565900325775, 0.266425222158432, 0.19287154078483582, 0.1613522171974182, 0.006866303738206625, 0.012300149537622929, 0.011831192299723625, 0.5149922966957092, 0.3649050295352936, 0.4575783908367157, 0.41779449582099915], "count": [376]}, "timestamp": {"min": [0.0], "max": [12.5], "mean": [6.25], "std": [3.6180488910154014], "count": [376]}, "frame_index": {"min": [0], "max": [375], "mean": [187.5], "std": [108.54146673046205], "count": [376]}, "episode_index": {"min": [148], "max": [148], "mean": [148.0], "std": [0.0], "count": [376]}, "index": {"min": [91281], "max": [91656], "mean": [91468.5], "std": [108.54146673046205], "count": [376]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [376]}}} +{"episode_index": 149, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5219701062091503]], [[0.48399631263616555]], [[0.4313508224400871]]], "std": [[[0.26011263621304287]], [[0.23713532727609166]], [[0.23636759504372348]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5441543654684096]], [[0.516767554466231]], [[0.46874448257080614]]], "std": [[[0.2573075050721067]], [[0.21779760759991437]], [[0.2290676013091928]]], "count": [100]}, "observation.state": {"min": [0.20465241372585297, -0.1687648743391037, 0.09977802634239197, 0.6575876474380493, -1.1675589084625244, -1.401008129119873, -0.44144687056541443, -0.47317957878112793, 0.16361382603645325, -0.2719678580760956, -0.30688557028770447, -1.7027842998504639], "max": [0.3699266314506531, -0.07154340296983719, 0.14672057330608368, 2.5812830924987793, -0.13486023247241974, 0.2790431082248688, -0.3169718384742737, -0.22413687407970428, 0.20566029846668243, 2.8339595794677734, 1.2126489877700806, 0.6334845423698425], "mean": [0.32825446128845215, -0.13581691682338715, 0.13249562680721283, 1.5903520584106445, -0.7930648922920227, -0.44372954964637756, -0.4046376943588257, -0.32994258403778076, 0.18115128576755524, 0.328413188457489, -0.025954879820346832, -1.1537879705429077], "std": [0.03624937683343887, 0.031208623200654984, 0.014209683053195477, 0.6501654982566833, 0.291769415140152, 0.6177059412002563, 0.03192674741148949, 0.0527445450425148, 0.015938980504870415, 0.7226573824882507, 0.36446651816368103, 0.614208459854126], "count": [271]}, "action": {"min": [-0.16926470398902893, -0.11292897164821625, 0.1093900203704834, 0.24592268466949463, 0.2891058325767517, -0.14246925711631775, 0.4479078948497772, 0.12526877224445343, -0.14903636276721954, 0.08500226587057114, -0.6206297874450684, -0.5300847291946411, -0.6277526021003723, -0.6600830554962158], "max": [-0.12912532687187195, -0.08737131208181381, 0.13833455741405487, 0.7867258191108704, 0.6986526250839233, 0.3790448009967804, 0.7449602484703064, 0.14135974645614624, -0.11139953136444092, 0.13503460586071014, 0.85738205909729, 0.7170587778091431, 0.758762538433075, 0.6609553694725037], "mean": [-0.1393670290708542, -0.10152839869260788, 0.127223402261734, 0.44671565294265747, 0.5626261830329895, 0.08736931532621384, 0.6253701448440552, 0.13556918501853943, -0.1250496506690979, 0.10201101005077362, 0.4048759341239929, -0.06720560789108276, -0.21818086504936218, -0.045030754059553146], "std": [0.010244953446090221, 0.00804099440574646, 0.008511644788086414, 0.18877214193344116, 0.11454513669013977, 0.16235171258449554, 0.10031145811080933, 0.004058763850480318, 0.009785918518900871, 0.01573956198990345, 0.5926584005355835, 0.30331405997276306, 0.4909147322177887, 0.31255000829696655], "count": [271]}, "timestamp": {"min": [0.0], "max": [9.0], "mean": [4.5], "std": [2.6076809620810595], "count": [271]}, "frame_index": {"min": [0], "max": [270], "mean": [135.0], "std": [78.23042886243178], "count": [271]}, "episode_index": {"min": [149], "max": [149], "mean": [149.0], "std": [0.0], "count": [271]}, "index": {"min": [91657], "max": [91927], "mean": [91792.0], "std": [78.23042886243178], "count": [271]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [271]}}} +{"episode_index": 150, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.526040582788671]], [[0.4876168409586057]], [[0.43681154956427015]]], "std": [[[0.2638239787277307]], [[0.2407649976572996]], [[0.23934689646803303]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.545516832788671]], [[0.5183100708061003]], [[0.4715971350762527]]], "std": [[[0.2613593415925553]], [[0.2219673041681343]], [[0.23249805732631268]]], "count": [100]}, "observation.state": {"min": [0.1958407759666443, -0.15963661670684814, 0.112755186855793, 0.5890190601348877, -1.3951952457427979, -0.835098147392273, -0.5779229998588562, -0.45478400588035583, 0.1630590260028839, -0.04864807054400444, -0.7039512395858765, -1.4982038736343384], "max": [0.34732991456985474, -0.014804479666054249, 0.14240652322769165, 2.4003207683563232, -0.4250761568546295, 0.8946672081947327, -0.3799121081829071, -0.27740055322647095, 0.20693974196910858, 2.613994836807251, 1.1230154037475586, 0.7954458594322205], "mean": [0.27927401661872864, -0.08688538521528244, 0.12854067981243134, 1.300858974456787, -1.084046483039856, 0.13896963000297546, -0.4430580735206604, -0.33575639128685, 0.1871282458305359, 1.1399600505828857, 0.2535035312175751, -0.47893044352531433], "std": [0.05622988939285278, 0.051576320081949234, 0.010483119636774063, 0.4942902624607086, 0.23825766146183014, 0.5514575839042664, 0.029885778203606606, 0.04307983070611954, 0.014328652061522007, 0.9954617023468018, 0.47078245878219604, 0.7830553650856018], "count": [449]}, "action": {"min": [-0.16399630904197693, -0.10925798118114471, 0.1216200441122055, 0.06704875081777573, 0.3735119104385376, -0.163865327835083, 0.6370493769645691, 0.11443280428647995, -0.1496906876564026, 0.08293906599283218, -0.5890645384788513, -0.6747221946716309, -0.6147284507751465, -0.6685577630996704], "max": [-0.13427403569221497, -0.07952643185853958, 0.13387639820575714, 0.5779080390930176, 0.6927332878112793, 0.35065123438835144, 0.732235312461853, 0.13577900826931, -0.10790152847766876, 0.12441323697566986, 0.9332103133201599, 0.6724458336830139, 0.6195807456970215, 0.8796796202659607], "mean": [-0.14710642397403717, -0.09417925775051117, 0.12830986082553864, 0.2621431350708008, 0.622028112411499, 0.12961405515670776, 0.6929387450218201, 0.1264708787202835, -0.12804466485977173, 0.10153771936893463, 0.41864070296287537, -0.2842801809310913, -0.17819754779338837, 0.42067843675613403], "std": [0.011235789395868778, 0.01091544609516859, 0.004184306133538485, 0.14548441767692566, 0.07588393986225128, 0.1412028819322586, 0.02314155548810959, 0.007074377033859491, 0.012016328051686287, 0.009415121749043465, 0.387882262468338, 0.3448871076107025, 0.3405214548110962, 0.3870986998081207], "count": [449]}, "timestamp": {"min": [0.0], "max": [14.933333333333334], "mean": [7.466666666666667], "std": [4.320493798938574], "count": [449]}, "frame_index": {"min": [0], "max": [448], "mean": [224.0], "std": [129.6148139681572], "count": [449]}, "episode_index": {"min": [150], "max": [150], "mean": [150.0], "std": [0.0], "count": [449]}, "index": {"min": [91928], "max": [92376], "mean": [92152.0], "std": [129.6148139681572], "count": [449]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [449]}}} +{"episode_index": 151, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5255462418300654]], [[0.48916766067538126]], [[0.4396889488017429]]], "std": [[[0.2679017701121251]], [[0.24402293955042925]], [[0.24148709015768866]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5441839025054466]], [[0.5186810185185186]], [[0.47277561274509805]]], "std": [[[0.2639946081047873]], [[0.22449138326484958]], [[0.2341142924877061]]], "count": [100]}, "observation.state": {"min": [0.24950605630874634, -0.18936912715435028, 0.10425800830125809, 1.3489353656768799, -1.0780619382858276, -1.4065508842468262, -0.5428772568702698, -0.4484977126121521, 0.15602664649486542, -0.46823763847351074, -0.2600192725658417, -1.7192788124084473], "max": [0.32639357447624207, -0.0907498300075531, 0.14196579158306122, 3.1621243953704834, -0.7263596057891846, -0.1546163558959961, -0.3850400149822235, -0.24276411533355713, 0.2130361944437027, 2.702483892440796, 1.0347481966018677, 0.6251069903373718], "mean": [0.2860358655452728, -0.14142057299613953, 0.12302698940038681, 2.3233797550201416, -0.9207116961479187, -0.800804078578949, -0.4468809962272644, -0.3700971007347107, 0.18882416188716888, 0.8622636795043945, 0.2967050075531006, -0.643531084060669], "std": [0.016888272017240524, 0.03335660696029663, 0.012468650937080383, 0.623502254486084, 0.06974925845861435, 0.5351192355155945, 0.03029691055417061, 0.04602612555027008, 0.01908828318119049, 1.0101215839385986, 0.35242682695388794, 0.7730047106742859], "count": [401]}, "action": {"min": [-0.16451579332351685, -0.11031226068735123, 0.11172614246606827, 0.26997414231300354, 0.5031844973564148, -0.01131218671798706, 0.4755288362503052, 0.1134546548128128, -0.14811529219150543, 0.07453548908233643, -0.6379262208938599, -0.6824207305908203, -0.653103232383728, -0.6835872530937195], "max": [-0.1385560780763626, -0.08421285450458527, 0.1356727033853531, 0.6140065789222717, 0.6351969838142395, 0.47564035654067993, 0.7723708152770996, 0.14141489565372467, -0.09190483391284943, 0.12135365605354309, 0.8273366689682007, 0.6875991821289062, 0.6763922572135925, 0.7933025360107422], "mean": [-0.14991098642349243, -0.09367742389440536, 0.12458758801221848, 0.3964882493019104, 0.5695101618766785, 0.279365599155426, 0.6284763216972351, 0.1253645271062851, -0.13237924873828888, 0.09864546358585358, 0.5005940794944763, -0.29120948910713196, -0.3442382514476776, 0.3675060272216797], "std": [0.008331097662448883, 0.007776468526571989, 0.009012274444103241, 0.09482251852750778, 0.0450129397213459, 0.1455734521150589, 0.11497095972299576, 0.009368755854666233, 0.01218804158270359, 0.014435015618801117, 0.2770323157310486, 0.3150547444820404, 0.26869112253189087, 0.4035348892211914], "count": [401]}, "timestamp": {"min": [0.0], "max": [13.333333333333334], "mean": [6.666666666666666], "std": [3.8586123009300755], "count": [401]}, "frame_index": {"min": [0], "max": [400], "mean": [200.0], "std": [115.75836902790225], "count": [401]}, "episode_index": {"min": [151], "max": [151], "mean": [151.0], "std": [0.0], "count": [401]}, "index": {"min": [92377], "max": [92777], "mean": [92577.0], "std": [115.75836902790225], "count": [401]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [401]}}} +{"episode_index": 152, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5211543545751635]], [[0.48600255718954244]], [[0.4376464025054466]]], "std": [[[0.2714216932790714]], [[0.24707714667000769]], [[0.24427939226405374]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.542344795751634]], [[0.5180406508714597]], [[0.47307052832244006]]], "std": [[[0.267393241060608]], [[0.22591591832130442]], [[0.23531571840962617]]], "count": [100]}, "observation.state": {"min": [0.26486656069755554, -0.15484851598739624, 0.11965405195951462, -1.2667369842529297, -1.409268856048584, -0.754455029964447, -0.47818389534950256, -0.42859622836112976, 0.14804409444332123, -0.10673218220472336, -0.2880297303199768, -1.688226342201233], "max": [0.35334593057632446, -0.08766846358776093, 0.1396687626838684, 2.551926612854004, -0.7382470369338989, 1.4018062353134155, -0.3920290768146515, -0.30450737476348877, 0.21275359392166138, 2.7505030632019043, 1.0097436904907227, 0.5132975578308105], "mean": [0.3042434751987457, -0.11852095276117325, 0.13062304258346558, 0.6791298985481262, -1.082321047782898, 0.44311559200286865, -0.4449819028377533, -0.36230844259262085, 0.18447184562683105, 0.4767345190048218, 0.18486343324184418, -1.077744722366333], "std": [0.02994380332529545, 0.015696782618761063, 0.008119959384202957, 1.223129153251648, 0.2602151334285736, 0.7308463454246521, 0.02575034275650978, 0.034083250910043716, 0.02601156197488308, 0.7277766466140747, 0.32276099920272827, 0.5927537679672241], "count": [214]}, "action": {"min": [-0.15626642107963562, -0.10896095633506775, 0.11642886698246002, 0.20067085325717926, 0.4452812075614929, -0.3643258213996887, 0.26478004455566406, 0.11665239930152893, -0.14597515761852264, 0.07401709258556366, -0.42698439955711365, -0.6771973371505737, -0.6224898099899292, -0.6770525574684143], "max": [-0.14013949036598206, -0.09147146344184875, 0.13989372551441193, 0.43328070640563965, 0.8319692015647888, 0.41998016834259033, 0.7957699298858643, 0.1403862088918686, -0.10451418161392212, 0.12142006307840347, 0.8057886958122253, 0.6781355738639832, 0.23057220876216888, 0.6927634477615356], "mean": [-0.14806894958019257, -0.09974402189254761, 0.12755174934864044, 0.32526054978370667, 0.6466072201728821, 0.010584755800664425, 0.6038491129875183, 0.12820671498775482, -0.12864166498184204, 0.09860207140445709, 0.647514283657074, -0.2943948209285736, -0.4365352988243103, 0.2705264389514923], "std": [0.005286283791065216, 0.005407270509749651, 0.008719288744032383, 0.07097204029560089, 0.14365258812904358, 0.22502000629901886, 0.18722078204154968, 0.008896642364561558, 0.016515828669071198, 0.018677974119782448, 0.23574087023735046, 0.23935596644878387, 0.18594585359096527, 0.2878692150115967], "count": [214]}, "timestamp": {"min": [0.0], "max": [7.1], "mean": [3.5500000000000003], "std": [2.0591934774998144], "count": [214]}, "frame_index": {"min": [0], "max": [213], "mean": [106.5], "std": [61.775804324994425], "count": [214]}, "episode_index": {"min": [152], "max": [152], "mean": [152.0], "std": [0.0], "count": [214]}, "index": {"min": [92778], "max": [92991], "mean": [92884.5], "std": [61.775804324994425], "count": [214]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [214]}}} +{"episode_index": 153, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4987300708061002]], [[0.4659411546840959]], [[0.42222890795206974]]], "std": [[[0.27144126043782985]], [[0.2506620731035356]], [[0.250265621833422]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5160304711328976]], [[0.49493039215686274]], [[0.45604240468409585]]], "std": [[[0.27681862364255744]], [[0.23760521964448203]], [[0.24738319493694297]]], "count": [100]}, "observation.state": {"min": [0.1529950648546219, -0.23124179244041443, 0.09794507920742035, 1.2357028722763062, -0.9908878803253174, -1.4113041162490845, -0.5786489248275757, -0.5029507279396057, 0.15494036674499512, -4.3774871826171875, -0.3530687093734741, -0.34427547454833984], "max": [0.27268970012664795, -0.048074010759592056, 0.14800779521465302, 2.5387160778045654, 0.14046232402324677, -0.14149560034275055, -0.4241633713245392, -0.31178218126296997, 0.2159230262041092, -2.384593963623047, 0.8778895139694214, 1.1924889087677002], "mean": [0.22685927152633667, -0.11250647902488708, 0.1285000443458557, 1.9741822481155396, -0.4866236448287964, -0.7166425585746765, -0.5080312490463257, -0.3957911431789398, 0.19052843749523163, -3.1715853214263916, 0.026226524263620377, 0.40511801838874817], "std": [0.030796051025390625, 0.044207848608493805, 0.01445496454834938, 0.37906986474990845, 0.32622984051704407, 0.3917299807071686, 0.030839229002594948, 0.05077514424920082, 0.017655977979302406, 0.4863322675228119, 0.29211920499801636, 0.2971937656402588], "count": [373]}, "action": {"min": [-0.1797461211681366, -0.11306089907884598, 0.1017758846282959, 0.32770273089408875, 0.11525657773017883, -0.051106564700603485, 0.4011284410953522, 0.09827516227960587, -0.1516815721988678, 0.062042053788900375, -0.5375578999519348, -0.6698319315910339, -0.6227109432220459, -0.6675245761871338], "max": [-0.1463221162557602, -0.08372487127780914, 0.15347501635551453, 0.8521320223808289, 0.570929229259491, 0.3714027404785156, 0.8677037358283997, 0.14564917981624603, -0.11705787479877472, 0.11596592515707016, 0.4991658627986908, 0.7853009700775146, 0.6489425897598267, 0.8132522106170654], "mean": [-0.1578444391489029, -0.09788935631513596, 0.1338287591934204, 0.5410366654396057, 0.36748167872428894, 0.18684551119804382, 0.6789162755012512, 0.11675649136304855, -0.13449667394161224, 0.09268226474523544, 0.0694943442940712, -0.06629838794469833, 0.10377323627471924, 0.21370086073875427], "std": [0.009076078422367573, 0.005272967740893364, 0.013731961138546467, 0.1522379219532013, 0.1346343457698822, 0.13431955873966217, 0.13058750331401825, 0.011018814519047737, 0.009750624187290668, 0.014686251990497112, 0.1906275451183319, 0.5959956049919128, 0.45647457242012024, 0.5782900452613831], "count": [373]}, "timestamp": {"min": [0.0], "max": [12.4], "mean": [6.199999999999998], "std": [3.5891812746394156], "count": [373]}, "frame_index": {"min": [0], "max": [372], "mean": [186.0], "std": [107.67543823918248], "count": [373]}, "episode_index": {"min": [153], "max": [153], "mean": [153.0], "std": [0.0], "count": [373]}, "index": {"min": [92992], "max": [93364], "mean": [93178.0], "std": [107.67543823918248], "count": [373]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [373]}}} +{"episode_index": 154, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5196922474652255]], [[0.48526119961873637]], [[0.43656410256410255]]], "std": [[[0.27113446409480224]], [[0.24693996902626564]], [[0.24460497285848465]]], "count": [104]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5381452048768225]], [[0.5153373397435898]], [[0.4705768916540975]]], "std": [[[0.26691081741508776]], [[0.22673654529883602]], [[0.23621396646193224]]], "count": [104]}, "observation.state": {"min": [0.2677857577800751, -0.2323615849018097, 0.10313282907009125, 1.1507784128189087, -1.1481565237045288, -1.1754605770111084, -0.4801686406135559, -0.47775915265083313, 0.16181717813014984, -0.2019314169883728, 0.07310052961111069, -1.61422598361969], "max": [0.33627867698669434, -0.09108190983533859, 0.1379641443490982, 2.6666269302368164, -0.5722336769104004, 0.14578987658023834, -0.38694754242897034, -0.283771812915802, 0.21040602028369904, 2.801877021789551, 1.1564912796020508, 0.6818408966064453], "mean": [0.29577091336250305, -0.12163599580526352, 0.12758517265319824, 1.910251498222351, -0.7439451813697815, -0.3452675938606262, -0.43170401453971863, -0.3423047959804535, 0.19370263814926147, 1.3825188875198364, 0.6081626415252686, -0.31335243582725525], "std": [0.019323021173477173, 0.036484088748693466, 0.006647774484008551, 0.3258756995201111, 0.1215677410364151, 0.27808254957199097, 0.020963983610272408, 0.05501408129930496, 0.012313437648117542, 0.9298288226127625, 0.25304076075553894, 0.6484859585762024], "count": [492]}, "action": {"min": [-0.15438351035118103, -0.10876712203025818, 0.10282942652702332, 0.2420889437198639, 0.3903485834598541, -0.067840076982975, 0.5110200643539429, 0.11504747718572617, -0.14636866748332977, 0.07463641464710236, -0.6539513468742371, -0.6873058676719666, -0.6580897569656372, -0.6860246062278748], "max": [-0.139378622174263, -0.09138414263725281, 0.13637171685695648, 0.6264370679855347, 0.6377057433128357, 0.3980065882205963, 0.8143783211708069, 0.13805480301380157, -0.12056884914636612, 0.12808163464069366, 0.7244736552238464, 0.7150985598564148, 0.6630131602287292, 0.7525371313095093], "mean": [-0.14573903381824493, -0.09578216820955276, 0.12880800664424896, 0.3753663897514343, 0.4685651659965515, 0.2217494696378708, 0.7531267404556274, 0.12367399036884308, -0.1318274289369583, 0.10521992295980453, 0.356894850730896, -0.40369078516960144, -0.15245631337165833, 0.4911538362503052], "std": [0.0026738103479146957, 0.002806649310514331, 0.008205200545489788, 0.07792895287275314, 0.06216251850128174, 0.09115426987409592, 0.07020074129104614, 0.005622015334665775, 0.008287540636956692, 0.01230699010193348, 0.30009111762046814, 0.3529375493526459, 0.28954896330833435, 0.38304898142814636], "count": [492]}, "timestamp": {"min": [0.0], "max": [16.366666666666667], "mean": [8.183333333333334], "std": [4.734262428376858], "count": [492]}, "frame_index": {"min": [0], "max": [491], "mean": [245.5], "std": [142.02787285130574], "count": [492]}, "episode_index": {"min": [154], "max": [154], "mean": [154.0], "std": [0.0], "count": [492]}, "index": {"min": [93365], "max": [93856], "mean": [93610.5], "std": [142.02787285130574], "count": [492]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [492]}}} +{"episode_index": 155, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5261361710239651]], [[0.4918821269063181]], [[0.44271603213507627]]], "std": [[[0.2726160228455935]], [[0.2480970676283257]], [[0.24589280348782463]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5452025680827887]], [[0.5218690005446622]], [[0.47660348583878]]], "std": [[[0.2683632657214476]], [[0.22812670302025032]], [[0.23799962765275492]]], "count": [100]}, "observation.state": {"min": [0.2582250237464905, -0.22989803552627563, 0.09825748950242996, 1.1033884286880493, -1.133673071861267, -1.406708002090454, -0.464599609375, -0.45330125093460083, 0.15360647439956665, 0.1316852867603302, -0.381489098072052, -1.3983608484268188], "max": [0.340101420879364, -0.11116102337837219, 0.13690637052059174, 2.8366856575012207, -0.20317848026752472, -0.019813409075140953, -0.3842291235923767, -0.32058608531951904, 0.21062767505645752, 2.6441900730133057, 1.1303937435150146, 0.7039353847503662], "mean": [0.2913348078727722, -0.14820680022239685, 0.12429124861955643, 2.030693769454956, -0.7386687397956848, -0.541373610496521, -0.4277626872062683, -0.3640308678150177, 0.18976254761219025, 1.0900324583053589, 0.3282551169395447, -0.3990464508533478], "std": [0.023191215470433235, 0.036608777940273285, 0.011039859615266323, 0.5376721024513245, 0.148212268948555, 0.4686275124549866, 0.0220141913741827, 0.025731300935149193, 0.01857144758105278, 0.9518212080001831, 0.4152175486087799, 0.7275505661964417], "count": [227]}, "action": {"min": [-0.15702132880687714, -0.10967007279396057, 0.09971214085817337, 0.3170921504497528, 0.28934213519096375, -0.08282990008592606, 0.41487666964530945, 0.11634232103824615, -0.14901621639728546, 0.08027701079845428, -0.5804498195648193, -0.6884310245513916, -0.6809034943580627, -0.6896646022796631], "max": [-0.1406153291463852, -0.08956582844257355, 0.1344238668680191, 0.7147087454795837, 0.6471341848373413, 0.5323041081428528, 0.7884897589683533, 0.14441925287246704, -0.10980433225631714, 0.1220279261469841, 0.8492186665534973, 0.7128791213035583, 0.5939493179321289, 0.7685713171958923], "mean": [-0.14819757640361786, -0.09734576940536499, 0.12424683570861816, 0.426857054233551, 0.4895949065685272, 0.23695190250873566, 0.6794092655181885, 0.12785030901432037, -0.13326270878314972, 0.1008000373840332, 0.45726072788238525, -0.247320756316185, -0.2850213646888733, 0.42265817523002625], "std": [0.003908853512257338, 0.0055932248942554, 0.010538206435739994, 0.12439675629138947, 0.0532020628452301, 0.16064958274364471, 0.12740984559059143, 0.008863568305969238, 0.01197842974215746, 0.01157301850616932, 0.3454631268978119, 0.35675936937332153, 0.27161461114883423, 0.3866150379180908], "count": [227]}, "timestamp": {"min": [0.0], "max": [7.533333333333333], "mean": [3.7666666666666666], "std": [2.1842873233874505], "count": [227]}, "frame_index": {"min": [0], "max": [226], "mean": [113.0], "std": [65.5286197016235], "count": [227]}, "episode_index": {"min": [155], "max": [155], "mean": [155.0], "std": [0.0], "count": [227]}, "index": {"min": [93857], "max": [94083], "mean": [93970.0], "std": [65.5286197016235], "count": [227]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [227]}}} +{"episode_index": 156, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5310274428104576]], [[0.49617837418300653]], [[0.4480070942265795]]], "std": [[[0.2695410664800486]], [[0.24549070699704548]], [[0.2434031960149993]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5512196350762527]], [[0.5268856917211329]], [[0.48260424291938997]]], "std": [[[0.26486244910890633]], [[0.22514563488216024]], [[0.23458945979427784]]], "count": [100]}, "observation.state": {"min": [0.09199319034814835, -0.2137729674577713, 0.08825013041496277, 0.58063143491745, -1.2723591327667236, -1.4043487310409546, -0.5264818668365479, -0.4495943486690521, 0.16003736853599548, -0.6802341938018799, -0.6048897504806519, -1.703199028968811], "max": [0.3419008255004883, -0.08073344826698303, 0.14337226748466492, 3.000453472137451, -0.26712435483932495, 0.5781883001327515, -0.3595704436302185, -0.30253806710243225, 0.20740121603012085, 2.9016895294189453, 0.8165397047996521, 0.6472690105438232], "mean": [0.24708090722560883, -0.16148482263088226, 0.12437266856431961, 2.196367025375366, -0.7435758709907532, -0.7501893639564514, -0.4313018023967743, -0.3535122573375702, 0.18470399081707, 0.2960389256477356, -0.07566503435373306, -0.7762542366981506], "std": [0.06765258312225342, 0.027659663930535316, 0.017181186005473137, 0.6478020548820496, 0.2850276827812195, 0.5140215158462524, 0.03751296550035477, 0.02971879206597805, 0.014029217883944511, 1.1975934505462646, 0.38322630524635315, 0.7446476221084595], "count": [385]}, "action": {"min": [-0.18690034747123718, -0.11165603250265121, 0.0997510552406311, 0.20231439173221588, 0.2869194447994232, -0.03632722422480583, 0.4865613877773285, 0.11171899735927582, -0.14309103786945343, 0.08032801747322083, -0.6761391162872314, -0.6284319758415222, -0.6790558695793152, -0.388263076543808], "max": [-0.13282224535942078, -0.08347196131944656, 0.1330382525920868, 0.6503186225891113, 0.7524231672286987, 0.5000754594802856, 0.7515813112258911, 0.14490312337875366, -0.10913442820310593, 0.1187949851155281, 0.7528702020645142, 0.3736518323421478, 0.8673991560935974, 0.7997109293937683], "mean": [-0.15505839884281158, -0.0997670367360115, 0.12439734488725662, 0.4890235364437103, 0.4925463795661926, 0.28623658418655396, 0.6119089126586914, 0.12986408174037933, -0.1296965628862381, 0.0986223816871643, 0.04424547031521797, -0.12410978972911835, 0.15743257105350494, 0.08480951935052872], "std": [0.015122649259865284, 0.00862035807222128, 0.01114755030721426, 0.10551831126213074, 0.13030372560024261, 0.1687059849500656, 0.07290743291378021, 0.007616981398314238, 0.00890202634036541, 0.01131384912878275, 0.5656139850616455, 0.28374940156936646, 0.6150175929069519, 0.4147070348262787], "count": [385]}, "timestamp": {"min": [0.0], "max": [12.8], "mean": [6.4], "std": [3.704651730519948], "count": [385]}, "frame_index": {"min": [0], "max": [384], "mean": [192.0], "std": [111.13955191559843], "count": [385]}, "episode_index": {"min": [156], "max": [156], "mean": [156.0], "std": [0.0], "count": [385]}, "index": {"min": [94084], "max": [94468], "mean": [94276.0], "std": [111.13955191559843], "count": [385]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [385]}}} +{"episode_index": 157, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.529795089869281]], [[0.49766293845315906]], [[0.45119160675381265]]], "std": [[[0.2738144908771869]], [[0.2509426470202233]], [[0.2486906535155849]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5493927832244009]], [[0.528345059912854]], [[0.48515252723311547]]], "std": [[[0.26965246012803207]], [[0.23112605341597356]], [[0.2410126133328961]]], "count": [100]}, "observation.state": {"min": [0.2506412863731384, -0.20618152618408203, 0.1046365275979042, 1.0641764402389526, -1.0582497119903564, -1.228758454322815, -0.5415566563606262, -0.43194788694381714, 0.1453568935394287, -0.7456574440002441, -0.7187079787254333, -1.7037972211837769], "max": [0.32403814792633057, -0.09013973921537399, 0.1482437252998352, 2.704580783843994, -0.40813320875167847, 0.046432510018348694, -0.3861907124519348, -0.2973252236843109, 0.20997953414916992, 2.7389700412750244, 0.9263954758644104, 0.5573253035545349], "mean": [0.2818143367767334, -0.14857780933380127, 0.13021227717399597, 2.1387441158294678, -0.7457147836685181, -0.6462912559509277, -0.47518810629844666, -0.34565404057502747, 0.1795044243335724, 0.145404651761055, 0.02258227951824665, -0.7866504192352295], "std": [0.020780744031071663, 0.03340400382876396, 0.013407683931291103, 0.5163166522979736, 0.19168339669704437, 0.38629069924354553, 0.034222278743982315, 0.02877912111580372, 0.018570052459836006, 1.1644116640090942, 0.4532468318939209, 0.6990930438041687], "count": [290]}, "action": {"min": [-0.159338116645813, -0.11197212338447571, 0.10802551358938217, 0.282171368598938, 0.3479604423046112, -0.026887638494372368, 0.519690752029419, 0.11419051885604858, -0.14707636833190918, 0.0780244842171669, -0.6775820851325989, -0.6653411388397217, -0.674036979675293, -0.47409552335739136], "max": [-0.13833557069301605, -0.08939173817634583, 0.14698852598667145, 0.5832535028457642, 0.6539855599403381, 0.46400851011276245, 0.7871270775794983, 0.13654528558254242, -0.09484440088272095, 0.11841002851724625, 0.700062096118927, 0.3904745578765869, 0.8898210525512695, 0.7294391989707947], "mean": [-0.14815235137939453, -0.1008087694644928, 0.12928129732608795, 0.45933517813682556, 0.4874873161315918, 0.268237829208374, 0.6575741171836853, 0.12562936544418335, -0.12326254695653915, 0.09413810819387436, -0.2392295002937317, -0.05792461335659027, 0.4405485987663269, -0.021915869787335396], "std": [0.006279577501118183, 0.006517013069242239, 0.01199057325720787, 0.09580354392528534, 0.08705254644155502, 0.15305526554584503, 0.08263950794935226, 0.0057258144952356815, 0.01549921091645956, 0.01081891916692257, 0.48310357332229614, 0.3291483223438263, 0.49081122875213623, 0.4027743339538574], "count": [290]}, "timestamp": {"min": [0.0], "max": [9.633333333333333], "mean": [4.816666666666666], "std": [2.7905097105088963], "count": [290]}, "frame_index": {"min": [0], "max": [289], "mean": [144.5], "std": [83.7152913152669], "count": [290]}, "episode_index": {"min": [157], "max": [157], "mean": [157.0], "std": [0.0], "count": [290]}, "index": {"min": [94469], "max": [94758], "mean": [94613.5], "std": [83.7152913152669], "count": [290]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [290]}}} +{"episode_index": 158, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.521269537037037]], [[0.4882208333333333]], [[0.4424752151416122]]], "std": [[[0.2672987089963142]], [[0.24542691474580713]], [[0.2435302945952668]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5402042783224401]], [[0.5188587636165577]], [[0.4761281563180828]]], "std": [[[0.26299237421518573]], [[0.22580647991935637]], [[0.2355373841011722]]], "count": [100]}, "observation.state": {"min": [0.24897319078445435, -0.19731582701206207, 0.09825877845287323, 1.0138509273529053, -0.9773609042167664, -1.2459487915039062, -0.5565696358680725, -0.483999103307724, 0.146870955824852, -0.6330539584159851, -0.4186542332172394, -1.6903049945831299], "max": [0.32335081696510315, -0.0967426672577858, 0.13789154589176178, 2.5043270587921143, -0.4059470295906067, 0.03630580008029938, -0.41706618666648865, -0.3192577660083771, 0.2060297429561615, 3.002969741821289, 1.3451863527297974, 0.6238949298858643], "mean": [0.2808241844177246, -0.1354321390390396, 0.12612773478031158, 1.889541506767273, -0.7652317881584167, -0.5028053522109985, -0.48170915246009827, -0.3572502136230469, 0.18139460682868958, 0.6099197268486023, 0.13270363211631775, -0.5320554971694946], "std": [0.01925184577703476, 0.037126630544662476, 0.014306101016700268, 0.4044700562953949, 0.16249357163906097, 0.42340168356895447, 0.03175325691699982, 0.031039617955684662, 0.019435755908489227, 1.33139967918396, 0.34012794494628906, 0.7367233037948608], "count": [282]}, "action": {"min": [-0.16197656095027924, -0.10819819569587708, 0.10386820882558823, 0.30048173666000366, 0.3913218080997467, -0.07082410156726837, 0.5005442500114441, 0.11316710710525513, -0.14768822491168976, 0.07865872979164124, -0.6948400139808655, -0.6628428101539612, -0.6919006109237671, -0.6549052596092224], "max": [-0.13835863769054413, -0.08767198771238327, 0.138824462890625, 0.7007017731666565, 0.6206179857254028, 0.3301818072795868, 0.7843164801597595, 0.13837158679962158, -0.09804078936576843, 0.11292994022369385, 0.7451243996620178, 0.7075470089912415, 0.8721670508384705, 0.7654010653495789], "mean": [-0.148395374417305, -0.09712175279855728, 0.1266893744468689, 0.4352831244468689, 0.4968007504940033, 0.18752065300941467, 0.6953768134117126, 0.12403015047311783, -0.1255372166633606, 0.09389720112085342, -0.11493447422981262, -0.08670624345541, 0.2563089430332184, 0.12475257366895676], "std": [0.007253922056406736, 0.005397060886025429, 0.012270241044461727, 0.13953565061092377, 0.05833952873945236, 0.10899875313043594, 0.10124204307794571, 0.007303198799490929, 0.015543511137366295, 0.010807355865836143, 0.5195183753967285, 0.3921404182910919, 0.5268756747245789, 0.44355759024620056], "count": [282]}, "timestamp": {"min": [0.0], "max": [9.366666666666667], "mean": [4.683333333333334], "std": [2.7135292039594376], "count": [282]}, "frame_index": {"min": [0], "max": [281], "mean": [140.5], "std": [81.40587611878314], "count": [282]}, "episode_index": {"min": [158], "max": [158], "mean": [158.0], "std": [0.0], "count": [282]}, "index": {"min": [94759], "max": [95040], "mean": [94899.5], "std": [81.40587611878314], "count": [282]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [282]}}} +{"episode_index": 159, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4931625601285619]], [[0.46206039550033434]], [[0.4189903147177463]]], "std": [[[0.26969566802726486]], [[0.24847737564511355]], [[0.2449833800196568]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5030476444703295]], [[0.4849108290731034]], [[0.44484576349791843]]], "std": [[[0.2759456000427537]], [[0.23795629533402912]], [[0.24640071389569826]]], "count": [101]}, "observation.state": {"min": [0.11966375261545181, -0.2071082442998886, 0.08548902720212936, 1.9119528532028198, -1.0861235857009888, -1.4026737213134766, -0.7784591913223267, -0.4931737184524536, 0.15865682065486908, -1.4298757314682007, -0.4444785416126251, -1.710328459739685], "max": [0.2374276965856552, -0.06843885779380798, 0.13142307102680206, 2.8689777851104736, -0.2956813871860504, -0.6473792195320129, -0.5233078002929688, -0.36997297406196594, 0.21437914669513702, 2.7272274494171143, 1.3902764320373535, 0.7575653791427612], "mean": [0.15336771309375763, -0.11489024013280869, 0.11922682821750641, 2.357786178588867, -0.8328578472137451, -0.838400661945343, -0.5904198288917542, -0.41103655099868774, 0.20087310671806335, 1.4503566026687622, 0.23745974898338318, -0.09245225787162781], "std": [0.02518533542752266, 0.03041931241750717, 0.011358375661075115, 0.26892736554145813, 0.2102096825838089, 0.25284576416015625, 0.07291864603757858, 0.03377983719110489, 0.014786646701395512, 1.3691998720169067, 0.2734093964099884, 0.6223247051239014], "count": [473]}, "action": {"min": [-0.1830415576696396, -0.10095298290252686, 0.09771176427602768, 0.3879970908164978, 0.2960793077945709, 0.14352864027023315, 0.4266970753669739, 0.08549967408180237, -0.15276440978050232, 0.05562294274568558, -0.60688716173172, -0.5825397968292236, -0.5998237729072571, -0.6316820979118347], "max": [-0.1550961285829544, -0.07871057093143463, 0.14159755408763885, 0.6550397872924805, 0.5943832993507385, 0.523023784160614, 0.7419957518577576, 0.10763853043317795, -0.10619835555553436, 0.10416965186595917, 0.5847254395484924, 0.5795279145240784, 0.8680645227432251, 0.9495907425880432], "mean": [-0.1708316206932068, -0.09051390737295151, 0.12924103438854218, 0.4510367810726166, 0.4780172109603882, 0.30799242854118347, 0.6709049940109253, 0.10170850157737732, -0.14071014523506165, 0.08919066190719604, 0.08423106372356415, -0.2813073992729187, 0.3085346817970276, 0.5286769866943359], "std": [0.005141237750649452, 0.0047516715712845325, 0.010507848113775253, 0.06646720319986343, 0.0723571628332138, 0.08908309787511826, 0.07418468594551086, 0.004314962308853865, 0.012121014297008514, 0.014923283830285072, 0.30658042430877686, 0.34428027272224426, 0.355407178401947, 0.4474857747554779], "count": [473]}, "timestamp": {"min": [0.0], "max": [15.733333333333333], "mean": [7.866666666666667], "std": [4.551434450319542], "count": [473]}, "frame_index": {"min": [0], "max": [472], "mean": [236.0], "std": [136.54303350958628], "count": [473]}, "episode_index": {"min": [159], "max": [159], "mean": [159.0], "std": [0.0], "count": [473]}, "index": {"min": [95041], "max": [95513], "mean": [95277.0], "std": [136.54303350958628], "count": [473]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [473]}}} +{"episode_index": 160, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4921206556696753]], [[0.45985617802676626]], [[0.4173752801120448]]], "std": [[[0.2689448001215689]], [[0.24781840279357154]], [[0.2456275048051282]]], "count": [105]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.502110055503683]], [[0.48310355846042125]], [[0.44362052080091297]]], "std": [[[0.27588697156025666]], [[0.23761895212328626]], [[0.24625527613542667]]], "count": [105]}, "observation.state": {"min": [0.08112730830907822, -0.16085679829120636, 0.08684754371643066, 1.835206389427185, -1.0667212009429932, -1.4137377738952637, -0.7360922694206238, -0.5001550912857056, 0.1538916528224945, -1.3996803760528564, -0.23870396614074707, -1.8311450481414795], "max": [0.22196678817272186, -0.0366520881652832, 0.131233811378479, 2.9591445922851562, -0.19498029351234436, -0.3951863646507263, -0.5224660634994507, -0.32374468445777893, 0.21575191617012024, 2.4877614974975586, 1.3148530721664429, 0.46697497367858887], "mean": [0.15095774829387665, -0.08846299350261688, 0.11756393313407898, 2.266202211380005, -0.8860936164855957, -0.89834064245224, -0.6083382368087769, -0.4150417745113373, 0.19509407877922058, 0.913053035736084, 0.3395368158817291, -0.3412156105041504], "std": [0.03688054904341698, 0.038269881159067154, 0.01536615565419197, 0.38359230756759644, 0.16147303581237793, 0.41632747650146484, 0.06911791861057281, 0.03488514944911003, 0.020908072590827942, 1.4295132160186768, 0.3590046465396881, 0.8292204141616821], "count": [501]}, "action": {"min": [-0.1870017796754837, -0.09943392872810364, 0.10264340788125992, 0.3217679262161255, 0.3866472542285919, 0.06745228171348572, 0.42574822902679443, 0.08943109214305878, -0.15256556868553162, 0.06089479476213455, -0.4935779571533203, -0.6506577730178833, -0.5902263522148132, -0.6441808938980103], "max": [-0.15552714467048645, -0.07313921302556992, 0.14244094491004944, 0.6578155159950256, 0.6285904049873352, 0.49680083990097046, 0.7719988226890564, 0.11674244701862335, -0.09997349977493286, 0.11155720055103302, 0.5753862857818604, 0.6562595367431641, 0.8732970952987671, 0.9386682510375977], "mean": [-0.17084500193595886, -0.08606523275375366, 0.1297295093536377, 0.4573114514350891, 0.5226829648017883, 0.24307161569595337, 0.6518303155899048, 0.10298965126276016, -0.1355454921722412, 0.08541955798864365, 0.10672806948423386, -0.10961738228797913, 0.254963755607605, 0.5216485261917114], "std": [0.008184880018234253, 0.006850675214082003, 0.013142338953912258, 0.10204964876174927, 0.04416614770889282, 0.10294722020626068, 0.10363081097602844, 0.0066038393415510654, 0.01722538098692894, 0.014837550930678844, 0.28036320209503174, 0.4249935448169708, 0.428569495677948, 0.4433670938014984], "count": [501]}, "timestamp": {"min": [0.0], "max": [16.666666666666668], "mean": [8.333333333333334], "std": [4.82086514442592], "count": [501]}, "frame_index": {"min": [0], "max": [500], "mean": [250.0], "std": [144.62595433277758], "count": [501]}, "episode_index": {"min": [160], "max": [160], "mean": [160.0], "std": [0.0], "count": [501]}, "index": {"min": [95514], "max": [96014], "mean": [95764.0], "std": [144.62595433277758], "count": [501]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [501]}}} +{"episode_index": 161, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5110700915679803]], [[0.47493952360922365]], [[0.42884719256239345]]], "std": [[[0.27302452196321364]], [[0.251272535862379]], [[0.24922948584523483]]], "count": [101]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.52690359746759]], [[0.5035071507150716]], [[0.46345155471429494]]], "std": [[[0.2782595417518469]], [[0.23858682040064752]], [[0.2466827014373684]]], "count": [101]}, "observation.state": {"min": [0.06833846122026443, -0.14784400165081024, 0.09972099959850311, 1.6274036169052124, -1.0974643230438232, -1.4040870666503906, -0.7636624574661255, -0.49291887879371643, 0.16755974292755127, -1.6624218225479126, -0.3690551817417145, -1.7159982919692993], "max": [0.31191346049308777, 0.06250780075788498, 0.13861747086048126, 3.1319289207458496, -0.3064756691455841, -0.08611597865819931, -0.4389446973800659, -0.2603410482406616, 0.20615029335021973, 2.5408129692077637, 1.1415979862213135, 0.8545103073120117], "mean": [0.1813412308692932, -0.04063151404261589, 0.1268937587738037, 2.1921334266662598, -0.7971010804176331, -0.7600282430648804, -0.5856840014457703, -0.40197598934173584, 0.18954306840896606, 0.9865661263465881, 0.14368535578250885, 0.008051102980971336], "std": [0.06696170568466187, 0.05352972075343132, 0.010567436926066875, 0.44063669443130493, 0.17796765267848969, 0.433115154504776, 0.0874016061425209, 0.059555016458034515, 0.010486115701496601, 1.1826272010803223, 0.32810038328170776, 0.8418488502502441], "count": [471]}, "action": {"min": [-0.1900283247232437, -0.10339157283306122, 0.12330657243728638, 0.22935767471790314, 0.15404655039310455, 0.029851820319890976, 0.5517120957374573, 0.08457989245653152, -0.14692619442939758, 0.07240808755159378, -0.5390357971191406, -0.5714577436447144, -0.6203310489654541, -0.6305917501449585], "max": [-0.13918767869472504, -0.06574951857328415, 0.15985800325870514, 0.6467968225479126, 0.6438664197921753, 0.47411012649536133, 0.9032714366912842, 0.12449509650468826, -0.09391959011554718, 0.10391498357057571, 0.4907446503639221, 0.5284522175788879, 0.8872469663619995, 0.9697856903076172], "mean": [-0.16466575860977173, -0.08517295122146606, 0.14009365439414978, 0.4198146462440491, 0.486233115196228, 0.23074305057525635, 0.693828284740448, 0.10842243582010269, -0.13183647394180298, 0.08515908569097519, 0.10787257552146912, -0.1003422960639, 0.14357873797416687, 0.6411767601966858], "std": [0.0137024549767375, 0.00962884072214365, 0.009256490506231785, 0.09906734526157379, 0.11474946141242981, 0.13114123046398163, 0.11186003684997559, 0.008960354141891003, 0.015998249873518944, 0.00840900931507349, 0.26734858751296997, 0.33395493030548096, 0.4076368510723114, 0.4443010985851288], "count": [471]}, "timestamp": {"min": [0.0], "max": [15.666666666666666], "mean": [7.833333333333333], "std": [4.532189398154135], "count": [471]}, "frame_index": {"min": [0], "max": [470], "mean": [235.0], "std": [135.96568194462407], "count": [471]}, "episode_index": {"min": [161], "max": [161], "mean": [161.0], "std": [0.0], "count": [471]}, "index": {"min": [96015], "max": [96485], "mean": [96250.0], "std": [135.96568194462407], "count": [471]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [471]}}} +{"episode_index": 162, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4938014215686275]], [[0.4612837336601307]], [[0.418594910130719]]], "std": [[[0.27177307426854636]], [[0.251054548576278]], [[0.2492182553735624]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5080230147058824]], [[0.4886420561002179]], [[0.45044080065359476]]], "std": [[[0.2782447367345427]], [[0.23927588351630938]], [[0.24778770875900571]]], "count": [100]}, "observation.state": {"min": [0.15392951667308807, -0.17498168349266052, 0.10413356870412827, 0.9100543260574341, -1.1977555751800537, -1.3046061992645264, -0.6337119936943054, -0.5229448676109314, 0.16269606351852417, -0.7825628519058228, 0.03443240001797676, -1.713678240776062], "max": [0.2655075490474701, -0.0957387164235115, 0.13339990377426147, 2.765181303024292, -0.1459277868270874, 0.2224191576242447, -0.42966967821121216, -0.36531615257263184, 0.22957037389278412, 2.759938955307007, 1.266620397567749, 1.0481266975402832], "mean": [0.20309938490390778, -0.12527897953987122, 0.12237004935741425, 1.905584692955017, -0.827287495136261, -0.46609175205230713, -0.5314410328865051, -0.4350220859050751, 0.1933557391166687, 0.9876440763473511, 0.39585980772972107, -0.14458918571472168], "std": [0.030080419033765793, 0.0202154703438282, 0.009130760096013546, 0.5078570246696472, 0.2458873838186264, 0.487285852432251, 0.045391082763671875, 0.03661529719829559, 0.019114088267087936, 1.1112760305404663, 0.27769067883491516, 1.0019140243530273], "count": [280]}, "action": {"min": [-0.17155121266841888, -0.10725726932287216, 0.11421346664428711, 0.2073056846857071, 0.21174077689647675, -0.13865141570568085, 0.5555784702301025, 0.09403064101934433, -0.1708930879831314, 0.0677812471985817, -0.6502296924591064, -0.6821132898330688, -0.655465304851532, -0.6832498908042908], "max": [-0.15067657828330994, -0.08144543319940567, 0.13557782769203186, 0.6528717279434204, 0.6150127053260803, 0.3915019631385803, 0.8438475728034973, 0.1354406774044037, -0.11534641683101654, 0.11134173721075058, 0.6665970087051392, 0.6887262463569641, 0.7686870098114014, 0.9203938245773315], "mean": [-0.16177816689014435, -0.09518839418888092, 0.1274130791425705, 0.39583420753479004, 0.49024173617362976, 0.1899379938840866, 0.7178300619125366, 0.11301256716251373, -0.13918736577033997, 0.08673308789730072, -0.06569090485572815, -0.14025790989398956, 0.10137045383453369, 0.4556341767311096], "std": [0.005529584363102913, 0.00751374289393425, 0.006236174609512091, 0.13129420578479767, 0.10105647146701813, 0.12844982743263245, 0.0875917598605156, 0.010476929135620594, 0.013637724332511425, 0.012156377546489239, 0.3691027760505676, 0.41994166374206543, 0.44566404819488525, 0.4969204068183899], "count": [280]}, "timestamp": {"min": [0.0], "max": [9.3], "mean": [4.65], "std": [2.6942840731197344], "count": [280]}, "frame_index": {"min": [0], "max": [279], "mean": [139.5], "std": [80.82852219359204], "count": [280]}, "episode_index": {"min": [162], "max": [162], "mean": [162.0], "std": [0.0], "count": [280]}, "index": {"min": [96486], "max": [96765], "mean": [96625.5], "std": [80.82852219359204], "count": [280]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [280]}}} +{"episode_index": 163, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.503034945533769]], [[0.46972626089324615]], [[0.42738485021786493]]], "std": [[[0.2767190451888554]], [[0.2552500733708671]], [[0.25289147848880456]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5168382162309367]], [[0.49647630718954244]], [[0.45882561274509803]]], "std": [[[0.2848445195072035]], [[0.24513335969767266]], [[0.25307989522145746]]], "count": [100]}, "observation.state": {"min": [0.16195343434810638, -0.19804948568344116, 0.10333634912967682, 0.9515729546546936, -1.348328948020935, -1.2278364896774292, -0.6147449612617493, -0.5432633757591248, 0.155081644654274, -1.4799916744232178, 0.07050442695617676, -1.7203670740127563], "max": [0.2265154868364334, -0.06344225257635117, 0.13734321296215057, 2.314347982406616, -0.6169137954711914, -0.1610400676727295, -0.4273296892642975, -0.36115360260009766, 0.22969092428684235, 2.7242918014526367, 1.3244175910949707, 0.5306115746498108], "mean": [0.19290630519390106, -0.11810675263404846, 0.12458480894565582, 1.708497166633606, -0.9303158521652222, -0.5537760853767395, -0.528755784034729, -0.47868186235427856, 0.18574362993240356, 0.07771096378564835, 0.5232845544815063, -1.0080004930496216], "std": [0.017843065783381462, 0.03695597127079964, 0.010116410441696644, 0.4583647847175598, 0.21140944957733154, 0.32969769835472107, 0.05465364828705788, 0.04706642031669617, 0.024679893627762794, 1.2561417818069458, 0.4633554220199585, 0.8812739849090576], "count": [240]}, "action": {"min": [-0.16915461421012878, -0.1068088561296463, 0.10611498355865479, 0.3455934226512909, 0.4217820167541504, -0.1586688756942749, 0.54001384973526, 0.09192511439323425, -0.17049342393875122, 0.06503894925117493, -0.5715777277946472, -0.6775552034378052, -0.5506822466850281, -0.6408999562263489], "max": [-0.1553725004196167, -0.08346565812826157, 0.1392575055360794, 0.5756130218505859, 0.687853991985321, 0.2691119313240051, 0.8088491559028625, 0.1439417004585266, -0.12025543302297592, 0.11300762742757797, 0.4163598418235779, 0.736136794090271, 0.9068889021873474, 0.8913876414299011], "mean": [-0.16222652792930603, -0.09580644220113754, 0.1290711760520935, 0.4465000331401825, 0.533104658126831, 0.07763734459877014, 0.6841983199119568, 0.11965420097112656, -0.1366463005542755, 0.07871966063976288, -0.20758531987667084, 0.21000736951828003, 0.4752468168735504, 0.1422623246908188], "std": [0.003784057218581438, 0.006593257188796997, 0.010821390897035599, 0.06984551250934601, 0.09166783839464188, 0.14966656267642975, 0.0812433585524559, 0.016684720292687416, 0.015291462652385235, 0.014466864988207817, 0.31665942072868347, 0.4535728394985199, 0.3966139853000641, 0.4510018527507782], "count": [240]}, "timestamp": {"min": [0.0], "max": [7.966666666666667], "mean": [3.9833333333333334], "std": [2.309381029787146], "count": [240]}, "frame_index": {"min": [0], "max": [239], "mean": [119.5], "std": [69.2814308936144], "count": [240]}, "episode_index": {"min": [163], "max": [163], "mean": [163.0], "std": [0.0], "count": [240]}, "index": {"min": [96766], "max": [97005], "mean": [96885.5], "std": [69.2814308936144], "count": [240]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [240]}}} +{"episode_index": 164, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.500436712962963]], [[0.4664658442265795]], [[0.42237588507625273]]], "std": [[[0.2705427572986136]], [[0.2492855201471799]], [[0.24699995258380353]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5123433877995643]], [[0.49034761710239655]], [[0.45182641067538126]]], "std": [[[0.27758417816803344]], [[0.23885748398191237]], [[0.2467058736146794]]], "count": [100]}, "observation.state": {"min": [0.15579840540885925, -0.2143212854862213, 0.09515157341957092, 1.1042271852493286, -1.1989853382110596, -1.1781092882156372, -0.6319049000740051, -0.5410701036453247, 0.1468372493982315, 0.425041526556015, -0.06353597342967987, -0.47868019342422485], "max": [0.21931016445159912, -0.053348641842603683, 0.13446545600891113, 2.441629648208618, -0.7832004427909851, 0.24697576463222504, -0.46168041229248047, -0.386978417634964, 0.21677468717098236, 2.5982680320739746, 0.8690081238746643, 0.8590704202651978], "mean": [0.17815090715885162, -0.11646883934736252, 0.11789495497941971, 1.768002986907959, -0.9739318490028381, -0.29574814438819885, -0.5415533781051636, -0.4516223073005676, 0.19446763396263123, 1.6019947528839111, 0.4009571373462677, 0.17532794177532196], "std": [0.020130470395088196, 0.06034718081355095, 0.013196142390370369, 0.3713446259498596, 0.07268945127725601, 0.5030590295791626, 0.04992902651429176, 0.04748717322945595, 0.020934199914336205, 0.7061191201210022, 0.20522361993789673, 0.3673446774482727], "count": [464]}, "action": {"min": [-0.1711290329694748, -0.10620822012424469, 0.10040539503097534, 0.14719384908676147, 0.45594605803489685, -0.05942883342504501, 0.5667756199836731, 0.09640921652317047, -0.1605760008096695, 0.05253366008400917, -0.35654139518737793, -0.6274726390838623, -0.5226845145225525, -0.6390492916107178], "max": [-0.15579865872859955, -0.0812893807888031, 0.13889190554618835, 0.514156699180603, 0.6410965323448181, 0.28365424275398254, 0.8392431139945984, 0.13095465302467346, -0.1081741601228714, 0.10469245165586472, 0.5928606986999512, 0.6688370108604431, 0.24268831312656403, 0.8960235714912415], "mean": [-0.16543103754520416, -0.09086760133504868, 0.12476454675197601, 0.32676422595977783, 0.5273452401161194, 0.16684335470199585, 0.7381179928779602, 0.11158246546983719, -0.14155103266239166, 0.08390984684228897, 0.318587988615036, -0.40554848313331604, -0.14209720492362976, 0.7270264625549316], "std": [0.004171629436314106, 0.005812444258481264, 0.014018546789884567, 0.1488906443119049, 0.04948195070028305, 0.09340526908636093, 0.095585398375988, 0.008020259439945221, 0.01456703245639801, 0.01698124408721924, 0.1812421679496765, 0.19833499193191528, 0.2520032227039337, 0.22266951203346252], "count": [464]}, "timestamp": {"min": [0.0], "max": [15.433333333333334], "mean": [7.716666666666668], "std": [4.464831712642955], "count": [464]}, "frame_index": {"min": [0], "max": [463], "mean": [231.5], "std": [133.94495137928865], "count": [464]}, "episode_index": {"min": [164], "max": [164], "mean": [164.0], "std": [0.0], "count": [464]}, "index": {"min": [97006], "max": [97469], "mean": [97237.5], "std": [133.94495137928865], "count": [464]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [464]}}} +{"episode_index": 165, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48958919117647054]], [[0.4576049101307189]], [[0.41511132897603487]]], "std": [[[0.2664433157245681]], [[0.24605213103329035]], [[0.24458217008627747]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5037174074074074]], [[0.4846151960784314]], [[0.44730042211328974]]], "std": [[[0.2725778754861897]], [[0.23426032112025244]], [[0.24278797579482753]]], "count": [100]}, "observation.state": {"min": [0.17964620888233185, -0.18960081040859222, 0.10838281363248825, 1.0291582345962524, -1.1247916221618652, -1.045090675354004, -0.6012765169143677, -0.6451030373573303, 0.15201722085475922, 0.017194580286741257, 0.09031672775745392, -0.9688043594360352], "max": [0.2548578977584839, -0.059372369199991226, 0.13682858645915985, 2.59134840965271, -0.7259497046470642, -0.0764276385307312, -0.45835962891578674, -0.36552467942237854, 0.21225841343402863, 2.315606117248535, 0.7400232553482056, 0.5756499171257019], "mean": [0.20425532758235931, -0.10907276719808578, 0.12533308565616608, 1.5133304595947266, -0.8989579081535339, -0.299175888299942, -0.520307183265686, -0.4832572340965271, 0.18536099791526794, 1.3057204484939575, 0.4585583806037903, -0.040743760764598846], "std": [0.02404799498617649, 0.040982749313116074, 0.006798940245062113, 0.3476727604866028, 0.0827939361333847, 0.17592327296733856, 0.03886614739894867, 0.07818817347288132, 0.021143538877367973, 0.7586459517478943, 0.15838722884655, 0.5092129111289978], "count": [393]}, "action": {"min": [-0.1649748533964157, -0.10828385502099991, 0.10773509740829468, 0.3110795319080353, 0.46829697489738464, -0.12226344645023346, 0.6119799613952637, 0.10101047158241272, -0.15244142711162567, 0.04506519436836243, -0.612735390663147, -0.5798254609107971, -0.6162986755371094, -0.4285895526409149], "max": [-0.15053080022335052, -0.0887371078133583, 0.14000941812992096, 0.49737635254859924, 0.6105901002883911, 0.36125126481056213, 0.8043528199195862, 0.14234556257724762, -0.11721814423799515, 0.10593106597661972, 0.6408689022064209, 0.3152502775192261, 0.6167747378349304, 0.8702919483184814], "mean": [-0.15994402766227722, -0.09595239162445068, 0.12950074672698975, 0.3871849775314331, 0.5224379301071167, 0.050135254859924316, 0.7402551174163818, 0.11878425627946854, -0.13737522065639496, 0.07740220427513123, 0.39639368653297424, -0.39812037348747253, -0.21098193526268005, 0.6920970678329468], "std": [0.004211046267300844, 0.0062147947028279305, 0.009007562883198261, 0.061713315546512604, 0.04478396475315094, 0.1326352059841156, 0.05699600279331207, 0.013428119011223316, 0.010388118214905262, 0.018569188192486763, 0.1691458821296692, 0.12188670784235, 0.2772369682788849, 0.2013305127620697], "count": [393]}, "timestamp": {"min": [0.0], "max": [13.066666666666666], "mean": [6.533333333333334], "std": [3.7816320208001124], "count": [393]}, "frame_index": {"min": [0], "max": [392], "mean": [196.0], "std": [113.44896062400336], "count": [393]}, "episode_index": {"min": [165], "max": [165], "mean": [165.0], "std": [0.0], "count": [393]}, "index": {"min": [97470], "max": [97862], "mean": [97666.0], "std": [113.44896062400336], "count": [393]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [393]}}} +{"episode_index": 166, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4958568600217865]], [[0.46223143790849675]], [[0.41960882897603485]]], "std": [[[0.2721538130320291]], [[0.25088088595520647]], [[0.2498997937904927]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5085075027233116]], [[0.48798440631808276]], [[0.45153228213507624]]], "std": [[[0.2785941811812921]], [[0.2396251674102997]], [[0.24867741542166155]]], "count": [100]}, "observation.state": {"min": [0.08796192705631256, -0.19044259190559387, 0.08555255085229874, 1.6873749494552612, -0.827607274055481, -1.2658190727233887, -0.592889666557312, -0.4960697591304779, 0.16903361678123474, -4.53873872756958, -0.5712772011756897, -0.5912712216377258], "max": [0.2740797996520996, -0.0639365091919899, 0.13889746367931366, 2.4871323108673096, -0.22244422137737274, -0.5157461166381836, -0.45659884810447693, -0.3076119124889374, 0.21460211277008057, -1.8375129699707031, 0.6614573001861572, 0.780663788318634], "mean": [0.19622915983200073, -0.1187659502029419, 0.11707676947116852, 2.1610958576202393, -0.4894079864025116, -0.8625655174255371, -0.5278388857841492, -0.39004024863243103, 0.19645628333091736, -3.5758230686187744, 0.2021840363740921, 0.3286465108394623], "std": [0.054613105952739716, 0.035896193236112595, 0.01755552366375923, 0.2528451383113861, 0.17480351030826569, 0.23438765108585358, 0.03265048563480377, 0.04569550231099129, 0.015375571325421333, 0.4484504759311676, 0.23107993602752686, 0.30984291434288025], "count": [378]}, "action": {"min": [-0.18654555082321167, -0.102969229221344, 0.09872394055128098, 0.45424970984458923, 0.25578734278678894, 0.05891133099794388, 0.5396493673324585, 0.09922263026237488, -0.1523188352584839, 0.06288163363933563, -0.5763753652572632, -0.6934554576873779, -0.5448424220085144, -0.6916420459747314], "max": [-0.14914405345916748, -0.07849051058292389, 0.14798150956630707, 0.7110956907272339, 0.4934260845184326, 0.3683125376701355, 0.7655640244483948, 0.1255693882703781, -0.11877939850091934, 0.11563833802938461, 0.6176425814628601, 0.7127109169960022, 0.8089216947555542, 0.8003890514373779], "mean": [-0.1646827608346939, -0.09175046533346176, 0.1261531114578247, 0.5802662968635559, 0.3580581843852997, 0.24341972172260284, 0.6705551147460938, 0.11123356223106384, -0.13827107846736908, 0.09389682859182358, 0.13617391884326935, -0.3874836266040802, 0.21634162962436676, 0.5140109062194824], "std": [0.011549881659448147, 0.006907776929438114, 0.01505330204963684, 0.07937648892402649, 0.07068724930286407, 0.09732067584991455, 0.07361922413110733, 0.0062038954347372055, 0.009854855947196484, 0.014842476695775986, 0.18516217172145844, 0.44467249512672424, 0.265041321516037, 0.46694377064704895], "count": [378]}, "timestamp": {"min": [0.0], "max": [12.566666666666666], "mean": [6.283333333333333], "std": [3.6372939676918348], "count": [378]}, "frame_index": {"min": [0], "max": [377], "mean": [188.5], "std": [109.11881903075503], "count": [378]}, "episode_index": {"min": [166], "max": [166], "mean": [166.0], "std": [0.0], "count": [378]}, "index": {"min": [97863], "max": [98240], "mean": [98051.5], "std": [109.11881903075503], "count": [378]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [378]}}} +{"episode_index": 167, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4928520942265795]], [[0.459536832788671]], [[0.41759863017429194]]], "std": [[[0.26866550764363806]], [[0.24817589995178685]], [[0.24702492220788128]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5072797412854031]], [[0.4867737118736383]], [[0.44874041666666664]]], "std": [[[0.2746792867041733]], [[0.2358827257075714]], [[0.2447667444478044]]], "count": [100]}, "observation.state": {"min": [0.2146456390619278, -0.2152634561061859, 0.09807340800762177, 0.9786229729652405, -1.2007615566253662, -1.225792646408081, -0.5716753005981445, -0.48208388686180115, 0.16693103313446045, -3.8465523719787598, -0.5756495594978333, -0.3458850383758545], "max": [0.28434330224990845, -0.05009736865758896, 0.1328139752149582, 2.3921427726745605, -0.1740749031305313, 0.09440139681100845, -0.44611138105392456, -0.3636248707771301, 0.21601636707782745, -0.7395764589309692, 0.5201751589775085, 1.4134080410003662], "mean": [0.2469952255487442, -0.1300082504749298, 0.11583583056926727, 1.7780728340148926, -0.590063750743866, -0.5986319184303284, -0.5154791474342346, -0.4163576364517212, 0.19450931251049042, -3.074141263961792, 0.03971586748957634, 0.7015833258628845], "std": [0.024113023653626442, 0.05910469591617584, 0.013337712734937668, 0.46354940533638, 0.31750231981277466, 0.5177364945411682, 0.029404662549495697, 0.030880946666002274, 0.01680832728743553, 0.9431002140045166, 0.2858579158782959, 0.484046995639801], "count": [328]}, "action": {"min": [-0.16193664073944092, -0.10305196791887283, 0.10138562321662903, 0.24422375857830048, 0.2736167311668396, -0.1979520469903946, 0.5035773515701294, 0.10073360055685043, -0.15437562763690948, 0.07134150713682175, -0.5226472616195679, -0.6822392344474792, -0.560772180557251, -0.693220317363739], "max": [-0.14986449480056763, -0.07956234365701675, 0.14265470206737518, 0.7776561379432678, 0.6458794474601746, 0.3430503308773041, 0.8838633298873901, 0.12883853912353516, -0.12198959290981293, 0.10786620527505875, 0.3519996106624603, 0.8065903782844543, 0.8188717365264893, 0.7885276675224304], "mean": [-0.1576172262430191, -0.09264515340328217, 0.12084981799125671, 0.512985110282898, 0.4262453317642212, 0.12220581620931625, 0.6700923442840576, 0.11505216360092163, -0.14041410386562347, 0.09070540964603424, -0.12551350891590118, -0.2938106656074524, 0.2291286736726761, 0.34061765670776367], "std": [0.0029397080652415752, 0.004357285797595978, 0.014279941096901894, 0.20590811967849731, 0.11472240835428238, 0.13502973318099976, 0.13195015490055084, 0.008989685215055943, 0.010692009702324867, 0.011978437192738056, 0.21555203199386597, 0.5184868574142456, 0.3294084966182709, 0.5528112053871155], "count": [328]}, "timestamp": {"min": [0.0], "max": [10.9], "mean": [5.449999999999999], "std": [3.1561668030839067], "count": [328]}, "frame_index": {"min": [0], "max": [327], "mean": [163.5], "std": [94.6850040925172], "count": [328]}, "episode_index": {"min": [167], "max": [167], "mean": [167.0], "std": [0.0], "count": [328]}, "index": {"min": [98241], "max": [98568], "mean": [98404.5], "std": [94.6850040925172], "count": [328]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [328]}}} +{"episode_index": 168, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4956977968409586]], [[0.46222515250544666]], [[0.41905278050108935]]], "std": [[[0.27539690947579626]], [[0.2542414099248647]], [[0.2520266716634311]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5123948202614379]], [[0.4905388371459695]], [[0.4518885593681917]]], "std": [[[0.2816466858254543]], [[0.24277427906106747]], [[0.25083720676152543]]], "count": [100]}, "observation.state": {"min": [0.16067145764827728, -0.18706776201725006, 0.10352042317390442, 1.0167865753173828, -1.101016879081726, -0.9052534103393555, -0.5925730466842651, -0.4089341461658478, 0.165721595287323, -3.680058479309082, -0.3164501190185547, -0.9871811270713806], "max": [0.26034876704216003, -0.06586719304323196, 0.13432934880256653, 2.32210636138916, 0.08143535256385803, -0.12103244662284851, -0.40687990188598633, -0.30171945691108704, 0.21855579316616058, -2.1522576808929443, 0.9917077422142029, 1.025905728340149], "mean": [0.21226419508457184, -0.11142782121896744, 0.12355779856443405, 1.5033470392227173, -0.763171374797821, -0.41358107328414917, -0.5314645171165466, -0.36000266671180725, 0.19629140198230743, -3.135444402694702, 0.30174434185028076, 0.42875126004219055], "std": [0.02326328493654728, 0.027336739003658295, 0.00887081865221262, 0.362959086894989, 0.27480316162109375, 0.19896650314331055, 0.03588042035698891, 0.02220892533659935, 0.016705965623259544, 0.42564335465431213, 0.31222647428512573, 0.3671002686023712], "count": [469]}, "action": {"min": [-0.1691015511751175, -0.1088070347905159, 0.10878751426935196, 0.3541722893714905, 0.10604976117610931, -0.17556601762771606, 0.6348075270652771, 0.09681768715381622, -0.1526518613100052, 0.07357122749090195, -0.47258010506629944, -0.6752864122390747, -0.6732751131057739, -0.6741029024124146], "max": [-0.15393219888210297, -0.08590374141931534, 0.1373741179704666, 0.6984612345695496, 0.5962061882019043, 0.3362392783164978, 0.7823598384857178, 0.1319858282804489, -0.11465327441692352, 0.1134895607829094, 0.6003013253211975, 0.7838122248649597, 0.7775588035583496, 0.747164785861969], "mean": [-0.15964391827583313, -0.09613247960805893, 0.12801486253738403, 0.4598003327846527, 0.47230851650238037, 0.02040170691907406, 0.724490225315094, 0.11058096587657928, -0.13521669805049896, 0.09676608443260193, 0.056971754878759384, 0.1870003640651703, -0.07464004307985306, -0.07463841885328293], "std": [0.004194016568362713, 0.005822113715112209, 0.008189190179109573, 0.08173756301403046, 0.11930792033672333, 0.1323775202035904, 0.04203643277287483, 0.007706189528107643, 0.012433435767889023, 0.012107516638934612, 0.21006375551223755, 0.6381482481956482, 0.44247955083847046, 0.5509039759635925], "count": [469]}, "timestamp": {"min": [0.0], "max": [15.6], "mean": [7.8], "std": [4.5129443456203475], "count": [469]}, "frame_index": {"min": [0], "max": [468], "mean": [234.0], "std": [135.3883303686104], "count": [469]}, "episode_index": {"min": [168], "max": [168], "mean": [168.0], "std": [0.0], "count": [469]}, "index": {"min": [98569], "max": [99037], "mean": [98803.0], "std": [135.3883303686104], "count": [469]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [469]}}} +{"episode_index": 169, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5011441612200436]], [[0.4655032135076253]], [[0.42051337690631807]]], "std": [[[0.2705758961352122]], [[0.24841924378256472]], [[0.24630094665088573]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5177574918300654]], [[0.4934029411764706]], [[0.45392461873638346]]], "std": [[[0.2767156816444834]], [[0.23622837498560664]], [[0.2441361865532936]]], "count": [100]}, "observation.state": {"min": [0.12008850276470184, -0.2440229058265686, 0.08584810048341751, 1.2742857933044434, -0.9755846261978149, -1.2704534530639648, -0.6581467390060425, -0.4726158082485199, 0.1629708856344223, -3.9440581798553467, -0.5621225833892822, -0.4262845814228058], "max": [0.2632988393306732, -0.014225269667804241, 0.14041154086589813, 2.6781599521636963, -0.10589329153299332, -0.30509719252586365, -0.4263875186443329, -0.2965220510959625, 0.21422359347343445, -0.7504802942276001, 0.41619476675987244, 1.4040658473968506], "mean": [0.20283745229244232, -0.14227820932865143, 0.11781797558069229, 2.0975639820098877, -0.6684727072715759, -0.8121633529663086, -0.5174329876899719, -0.38984617590904236, 0.19150590896606445, -3.0426571369171143, -0.09283579140901566, 0.5399730801582336], "std": [0.03484071046113968, 0.05227730795741081, 0.016200371086597443, 0.2347293645143509, 0.18655720353126526, 0.2608241140842438, 0.05903676524758339, 0.05150879919528961, 0.016693463549017906, 1.098178505897522, 0.2565957009792328, 0.548311173915863], "count": [442]}, "action": {"min": [-0.18142028152942657, -0.10949120670557022, 0.09367704391479492, 0.393699049949646, 0.1803521364927292, -0.05428818240761757, 0.5259602069854736, 0.1038547083735466, -0.15348972380161285, 0.06500014662742615, -0.504873514175415, -0.6524852514266968, -0.5670397877693176, -0.6480749249458313], "max": [-0.1488269716501236, -0.07819663733243942, 0.1445324867963791, 0.7434197068214417, 0.5846359133720398, 0.4559606611728668, 0.7798010110855103, 0.13849608600139618, -0.10759943723678589, 0.11248867213726044, 0.388680636882782, 0.7699532508850098, 0.8518899083137512, 0.8569849133491516], "mean": [-0.16301651298999786, -0.09395965188741684, 0.12389927357435226, 0.5428996086120605, 0.4262131452560425, 0.21281161904335022, 0.6682424545288086, 0.1158900037407875, -0.1346258968114853, 0.09346591681241989, -0.1419072300195694, -0.3726312220096588, 0.3234494626522064, 0.4694274365901947], "std": [0.008180318400263786, 0.006381783168762922, 0.015703298151493073, 0.10517579317092896, 0.08263499289751053, 0.08979500085115433, 0.0762350931763649, 0.008048309944570065, 0.014667075127363205, 0.013235867023468018, 0.2655283212661743, 0.341586709022522, 0.3175234794616699, 0.47751280665397644], "count": [442]}, "timestamp": {"min": [0.0], "max": [14.7], "mean": [7.35], "std": [4.253136097830243], "count": [442]}, "frame_index": {"min": [0], "max": [441], "mean": [220.5], "std": [127.59408293490729], "count": [442]}, "episode_index": {"min": [169], "max": [169], "mean": [169.0], "std": [0.0], "count": [442]}, "index": {"min": [99038], "max": [99479], "mean": [99258.5], "std": [127.59408293490729], "count": [442]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [442]}}} +{"episode_index": 170, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7469258932461874]], [[0.7235264351851852]], [[0.6803772848583878]]], "std": [[[0.22110037960431667]], [[0.20902843428172976]], [[0.2326193619178908]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7469258932461874]], [[0.7235264351851852]], [[0.6803772848583878]]], "std": [[[0.22110037960431667]], [[0.20902843428172976]], [[0.2326193619178908]]], "count": [100]}, "observation.state": {"min": [0.5259566903114319, 0.09692029654979706, 0.12199773639440536, 2.212648391723633, -0.49885985255241394, -0.4015357792377472, -0.1096164733171463, -0.254811555147171, 0.14074987173080444, -2.617140293121338, -1.1726144552230835, -0.04926253855228424], "max": [0.5259876251220703, 0.09692802280187607, 0.12199773639440536, 2.2130677700042725, -0.49872320890426636, -0.40117934346199036, -0.015345069579780102, -0.11733920127153397, 0.15961478650569916, -1.0432075262069702, -0.027190659195184708, 1.3916099071502686], "mean": [0.5259691476821899, 0.09692245721817017, 0.12199782580137253, 2.212942361831665, -0.4987511932849884, -0.40128225088119507, -0.07067409157752991, -0.1858496516942978, 0.14903061091899872, -1.9963133335113525, -0.5684099197387695, 0.847227156162262], "std": [1.269016047444893e-05, 3.530327830958413e-06, 8.940696716308594e-08, 0.0001923568925121799, 5.476803198689595e-05, 9.05035121832043e-05, 0.03410390391945839, 0.042577825486660004, 0.006915460806339979, 0.6502271890640259, 0.48336517810821533, 0.6485044956207275], "count": [189]}, "action": {"min": [-0.11456942558288574, -0.05402280390262604, 0.13072362542152405, 0.3278296887874603, 0.457728773355484, 0.34423738718032837, 0.7511321306228638, 0.17678898572921753, -0.0942877009510994, 0.09601368010044098, -0.6104461550712585, -0.5908440947532654, -0.5879688262939453, -0.4347411096096039], "max": [-0.11456357687711716, -0.054018259048461914, 0.1307281106710434, 0.32802385091781616, 0.4578714966773987, 0.34451645612716675, 0.751255214214325, 0.19768783450126648, -0.08660888671875, 0.1139393076300621, 0.49181732535362244, 0.7997164726257324, 0.7751985788345337, 0.24000363051891327], "mean": [-0.1145670935511589, -0.05402098596096039, 0.1307263970375061, 0.32790422439575195, 0.4577694535255432, 0.34443193674087524, 0.7511937618255615, 0.18653777241706848, -0.09104853123426437, 0.10563987493515015, -0.09999579191207886, 0.2860358953475952, 0.026227440685033798, -0.22251242399215698], "std": [1.887351459117781e-06, 1.276511625292187e-06, 1.1363475778125576e-06, 3.6364155675983056e-05, 4.2684434447437525e-05, 0.00010107365960720927, 2.8192687750561163e-05, 0.007213645149022341, 0.0016242500860244036, 0.005800778511911631, 0.40938690304756165, 0.5594834089279175, 0.5774949193000793, 0.20943914353847504], "count": [189]}, "timestamp": {"min": [0.0], "max": [6.266666666666667], "mean": [3.1333333333333337], "std": [1.8186278914080822], "count": [189]}, "frame_index": {"min": [0], "max": [188], "mean": [94.0], "std": [54.55883674224247], "count": [189]}, "episode_index": {"min": [170], "max": [170], "mean": [170.0], "std": [0.0], "count": [189]}, "index": {"min": [99480], "max": [99668], "mean": [99574.0], "std": [54.55883674224247], "count": [189]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [189]}}} +{"episode_index": 171, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7538535266884532]], [[0.7355399482570806]], [[0.693407121459695]]], "std": [[[0.2187580314336491]], [[0.20218817769787012]], [[0.2258780118458533]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7538535266884532]], [[0.7355399482570806]], [[0.693407121459695]]], "std": [[[0.2187580314336491]], [[0.20218817769787012]], [[0.2258780118458533]]], "count": [100]}, "observation.state": {"min": [0.517963707447052, 0.07408417761325836, 0.12014404684305191, 2.608333110809326, -0.3646828234195709, -0.5310114026069641, -0.10215631127357483, -0.26999446749687195, 0.14139412343502045, -2.450017213821411, -1.2114192247390747, -0.2923528552055359], "max": [0.5180100202560425, 0.07409962266683578, 0.12014404684305191, 2.608962297439575, -0.3646828234195709, -0.5306847095489502, -0.011599539779126644, -0.10938479006290436, 0.16087089478969574, -0.8083547353744507, -0.16109442710876465, 1.3997535705566406], "mean": [0.5179876089096069, 0.0740884393453598, 0.12014393508434296, 2.6087493896484375, -0.3646821975708008, -0.5307020545005798, -0.06724607199430466, -0.1751255989074707, 0.15231047570705414, -1.5871938467025757, -0.7520704865455627, 0.5250426530838013], "std": [8.104651897156145e-06, 4.116320724278921e-06, 1.1175870895385742e-07, 0.00021096250566188246, 6.258487701416016e-07, 6.326233415165916e-05, 0.02986995503306389, 0.05311249569058418, 0.00697675347328186, 0.6697327494621277, 0.36284738779067993, 0.7666893601417542], "count": [165]}, "action": {"min": [-0.11776961386203766, -0.057566914707422256, 0.12953464686870575, 0.39582520723342896, 0.3889951705932617, 0.49503934383392334, 0.6682772040367126, 0.17925409972667694, -0.09673874080181122, 0.09584760665893555, -0.6125918626785278, -0.5895646214485168, -0.5889075398445129, -0.3064403533935547], "max": [-0.11776302009820938, -0.05756399780511856, 0.12953849136829376, 0.39598533511161804, 0.3891372084617615, 0.4953748285770416, 0.6683842539787292, 0.19639921188354492, -0.0862957090139389, 0.11597833037376404, 0.49356886744499207, 0.8353933095932007, 0.7776826024055481, 0.22687579691410065], "mean": [-0.11776673048734665, -0.05756552889943123, 0.12953691184520721, 0.39585012197494507, 0.38902223110198975, 0.4952806830406189, 0.6683275699615479, 0.18576668202877045, -0.09223154932260513, 0.10813574492931366, -0.22842314839363098, 0.10990109294652939, 0.2377995401620865, -0.1199648529291153], "std": [1.2169333558631479e-06, 6.265312890718633e-07, 8.0213254705086e-07, 3.055240449612029e-05, 2.770817809505388e-05, 9.55178911681287e-05, 4.4828226236859336e-05, 0.006296008359640837, 0.0018624421209096909, 0.006522195879369974, 0.41727080941200256, 0.5519099831581116, 0.6043844819068909, 0.14423663914203644], "count": [165]}, "timestamp": {"min": [0.0], "max": [5.466666666666667], "mean": [2.7333333333333325], "std": [1.587684080899201], "count": [165]}, "frame_index": {"min": [0], "max": [164], "mean": [82.0], "std": [47.63052242697603], "count": [165]}, "episode_index": {"min": [171], "max": [171], "mean": [171.0], "std": [0.0], "count": [165]}, "index": {"min": [99669], "max": [99833], "mean": [99751.0], "std": [47.63052242697603], "count": [165]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [165]}}} +{"episode_index": 172, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7483579793028322]], [[0.7276905582788672]], [[0.6849551633986928]]], "std": [[[0.2248081483892523]], [[0.20897374504306426]], [[0.23144818005609688]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7483579793028322]], [[0.7276905582788672]], [[0.6849551633986928]]], "std": [[[0.2248081483892523]], [[0.20897374504306426]], [[0.23144818005609688]]], "count": [100]}, "observation.state": {"min": [0.5336408615112305, 0.07903444766998291, 0.12567013502120972, 2.2466180324554443, -0.4595085382461548, -0.5375714302062988, -0.10002484172582626, -0.27297544479370117, 0.13154232501983643, -2.434919595718384, -1.1518456935882568, 0.07703343033790588], "max": [0.5336717367172241, 0.07904989272356033, 0.12567013502120972, 2.247037410736084, -0.4595085382461548, -0.5373263955116272, -0.009475789964199066, -0.09220942854881287, 0.15891608595848083, -1.0448850393295288, 0.2530508041381836, 1.4052525758743286], "mean": [0.5336588621139526, 0.07904843240976334, 0.12566998600959778, 2.2469518184661865, -0.4595087170600891, -0.53743976354599, -0.07162442058324814, -0.16088278591632843, 0.14696022868156433, -1.7538180351257324, -0.5198788642883301, 0.8187792897224426], "std": [5.647146736009745e-06, 3.905060111719649e-06, 1.4901161193847656e-07, 0.0001693434314802289, 1.7881393432617188e-07, 0.0001096951964427717, 0.0306536927819252, 0.04973052442073822, 0.009208403527736664, 0.544462263584137, 0.5612369179725647, 0.5967230200767517], "count": [195]}, "action": {"min": [-0.1116805374622345, -0.05791112035512924, 0.1320282220840454, 0.3946171998977661, 0.4628905653953552, 0.32918477058410645, 0.7220792770385742, 0.1784363090991974, -0.09222851693630219, 0.08734191209077835, -0.5981817245483398, -0.5977087020874023, -0.5900522470474243, -0.38454771041870117], "max": [-0.11167604476213455, -0.057908084243535995, 0.1320316046476364, 0.3947303891181946, 0.46296530961990356, 0.329439252614975, 0.7221941947937012, 0.19921159744262695, -0.0810237005352974, 0.11378590762615204, 0.44166603684425354, 0.8706879019737244, 0.7640034556388855, 0.15476775169372559], "mean": [-0.11167764663696289, -0.057908669114112854, 0.13202980160713196, 0.3946639895439148, 0.46292203664779663, 0.32937294244766235, 0.7221201658248901, 0.1865803301334381, -0.08765196800231934, 0.10561668872833252, -0.1929706484079361, 0.23126213252544403, 0.08874521404504776, -0.17177820205688477], "std": [9.19405806598661e-07, 6.950434112695802e-07, 6.509642958008044e-07, 4.029210322187282e-05, 2.0159119230811484e-05, 8.258312300313264e-05, 3.337028101668693e-05, 0.006588295102119446, 0.0030250304844230413, 0.008422965183854103, 0.3600209057331085, 0.6173189878463745, 0.5844556093215942, 0.14003780484199524], "count": [195]}, "timestamp": {"min": [0.0], "max": [6.466666666666667], "mean": [3.2333333333333334], "std": [1.8763637016156385], "count": [195]}, "frame_index": {"min": [0], "max": [194], "mean": [97.0], "std": [56.290911048469155], "count": [195]}, "episode_index": {"min": [172], "max": [172], "mean": [172.0], "std": [0.0], "count": [195]}, "index": {"min": [99834], "max": [100028], "mean": [99931.0], "std": [56.290911048469155], "count": [195]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [195]}}} +{"episode_index": 173, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7491971269063181]], [[0.7339291612200435]], [[0.6934907216775599]]], "std": [[[0.22767827953742098]], [[0.20945357163184847]], [[0.23263997187934166]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7491971269063181]], [[0.7339291612200435]], [[0.6934907216775599]]], "std": [[[0.22767827953742098]], [[0.20945357163184847]], [[0.23263997187934166]]], "count": [100]}, "observation.state": {"min": [0.5334246158599854, 0.04566451907157898, 0.12183181941509247, 2.5427002906799316, -0.3481498062610626, -0.43654340505599976, -0.11789523810148239, -0.2773619592189789, 0.13020843267440796, -2.2317299842834473, -0.9657467603683472, 0.0008437632350251079], "max": [0.5334400534629822, 0.04567224159836769, 0.12183181941509247, 2.5431196689605713, -0.34801316261291504, -0.43610528111457825, 0.010472030378878117, -0.08230888843536377, 0.1577649712562561, -1.0715155601501465, -0.14456142485141754, 1.394425630569458], "mean": [0.5334299802780151, 0.04567014425992966, 0.12183187901973724, 2.5428850650787354, -0.34801459312438965, -0.43633708357810974, -0.06575555354356766, -0.1810852587223053, 0.14387106895446777, -1.6244697570800781, -0.5969141125679016, 0.8007785081863403], "std": [5.737978881370509e-06, 3.4535114536993206e-06, 5.960464477539063e-08, 0.00020768327522091568, 1.1059525604650844e-05, 0.0001173782511614263, 0.04535694047808647, 0.06038108095526695, 0.009953196160495281, 0.4066449999809265, 0.3382456600666046, 0.6219618320465088], "count": [152]}, "action": {"min": [-0.11444312334060669, -0.06195798143744469, 0.12755084037780762, 0.387473464012146, 0.3659493327140808, 0.4831784963607788, 0.6943424940109253, 0.17643028497695923, -0.09207826852798462, 0.0864306092262268, -0.5346114635467529, -0.6239674687385559, -0.6251415610313416, -0.21778032183647156], "max": [-0.114439956843853, -0.061955325305461884, 0.12755337357521057, 0.3876686096191406, 0.36608195304870605, 0.4834212362766266, 0.694510817527771, 0.19919253885746002, -0.07863957434892654, 0.11335717141628265, 0.44760242104530334, 0.8729061484336853, 0.8161572217941284, 0.14750711619853973], "mean": [-0.11444174498319626, -0.06195671483874321, 0.1275523155927658, 0.3875841498374939, 0.3660077154636383, 0.483297199010849, 0.6944351196289062, 0.18646427989006042, -0.08721582591533661, 0.10226733237504959, -0.12899355590343475, 0.2519313395023346, 0.08780321478843689, -0.07951685041189194], "std": [9.488001637691923e-07, 6.195680271048332e-07, 6.580918352483422e-07, 4.4828666432294995e-05, 3.886884587700479e-05, 9.627432882552966e-05, 4.591990727931261e-05, 0.008241475559771061, 0.002963727107271552, 0.01003605592995882, 0.3679918348789215, 0.6136741042137146, 0.6228489875793457, 0.076839879155159], "count": [152]}, "timestamp": {"min": [0.0], "max": [5.033333333333333], "mean": [2.5166666666666666], "std": [1.4625890286292547], "count": [152]}, "frame_index": {"min": [0], "max": [151], "mean": [75.5], "std": [43.877670858877636], "count": [152]}, "episode_index": {"min": [173], "max": [173], "mean": [173.0], "std": [0.0], "count": [152]}, "index": {"min": [100029], "max": [100180], "mean": [100104.5], "std": [43.877670858877636], "count": [152]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [152]}}} +{"episode_index": 174, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7505085593681917]], [[0.7336941285403049]], [[0.6926074428104576]]], "std": [[[0.22653618451723634]], [[0.20890728370175896]], [[0.23221646842434235]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7505085593681917]], [[0.7336941285403049]], [[0.6926074428104576]]], "std": [[[0.22653618451723634]], [[0.20890728370175896]], [[0.23221646842434235]]], "count": [100]}, "observation.state": {"min": [0.5203422904014587, 0.06269314885139465, 0.12284550815820694, 2.124159097671509, -0.6144543290138245, -0.29572978615760803, -0.09993989020586014, -0.2965838313102722, 0.13175491988658905, -2.1835014820098877, -1.0728697776794434, -0.03740616887807846], "max": [0.5203731656074524, 0.06270858645439148, 0.12284550815820694, 2.124159097671509, -0.6144543290138245, -0.2955664396286011, 0.014449230395257473, -0.09027101844549179, 0.1592116355895996, -0.9496857523918152, -0.09318608790636063, 1.3933619260787964], "mean": [0.5203537344932556, 0.06269790232181549, 0.12284528464078903, 2.124154567718506, -0.6144556999206543, -0.2957005798816681, -0.05478024482727051, -0.1750333160161972, 0.14692772924900055, -1.5678995847702026, -0.6153796911239624, 0.7705453634262085], "std": [6.4582136474200524e-06, 3.8573921301576775e-06, 2.2351741790771484e-07, 4.5299530029296875e-06, 1.3709068298339844e-06, 6.217726331669837e-05, 0.03791089728474617, 0.06037257984280586, 0.00934505183249712, 0.46745938062667847, 0.4029287099838257, 0.6349086165428162], "count": [201]}, "action": {"min": [-0.11410103738307953, -0.05910243093967438, 0.1286044865846634, 0.28165489435195923, 0.48970285058021545, 0.32911914587020874, 0.7566163539886475, 0.17899717390537262, -0.0929981991648674, 0.08609341084957123, -0.555420994758606, -0.5976840853691101, -0.5938437581062317, -0.22812308371067047], "max": [-0.11409662663936615, -0.05909980461001396, 0.1286073476076126, 0.2817208468914032, 0.48973894119262695, 0.32916080951690674, 0.7566470503807068, 0.20026487112045288, -0.0803823322057724, 0.11451014131307602, 0.5022580027580261, 0.8837437629699707, 0.7854408621788025, 0.11602973192930222], "mean": [-0.1140991672873497, -0.05910149961709976, 0.12860631942749023, 0.28170663118362427, 0.48972752690315247, 0.32912740111351013, 0.7566264271736145, 0.18801249563694, -0.0889030396938324, 0.10477621853351593, -0.1703534722328186, 0.21708257496356964, 0.10840540379285812, -0.1041427031159401], "std": [9.229590318682312e-07, 5.976492047921056e-07, 5.984989570606558e-07, 2.3617858460056596e-05, 1.038314621837344e-05, 1.5259098290698603e-05, 8.87419628270436e-06, 0.00742746377363801, 0.0028409294318407774, 0.009378152899444103, 0.3706570863723755, 0.6206374764442444, 0.6116079688072205, 0.06793801486492157], "count": [201]}, "timestamp": {"min": [0.0], "max": [6.666666666666667], "mean": [3.3333333333333335], "std": [1.9340994650588013], "count": [201]}, "frame_index": {"min": [0], "max": [200], "mean": [100.0], "std": [58.02298395176403], "count": [201]}, "episode_index": {"min": [174], "max": [174], "mean": [174.0], "std": [0.0], "count": [201]}, "index": {"min": [100181], "max": [100381], "mean": [100281.0], "std": [58.02298395176403], "count": [201]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [201]}}} +{"episode_index": 175, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7469773284313725]], [[0.7278422276688453]], [[0.686350697167756]]], "std": [[[0.22701839686528402]], [[0.21018670888059623]], [[0.23310767278821962]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7469773284313725]], [[0.7278422276688453]], [[0.686350697167756]]], "std": [[[0.22701839686528402]], [[0.21018670888059623]], [[0.23310767278821962]]], "count": [100]}, "observation.state": {"min": [0.5431398153305054, 0.06806044280529022, 0.12262126058340073, 2.5395548343658447, -0.16587671637535095, -0.4520905017852783, -0.11343921720981598, -0.2803429365158081, 0.13926303386688232, -2.2847816944122314, -0.9833728671073914, 0.08327019214630127], "max": [0.5431552529335022, 0.06807588785886765, 0.12262126058340073, 2.5395548343658447, -0.16587671637535095, -0.4520905017852783, -0.03499170020222664, -0.10021790117025375, 0.156694233417511, -1.0981462001800537, -0.0661320686340332, 1.3806875944137573], "mean": [0.5431409478187561, 0.06806308031082153, 0.12262137979269028, 2.539552688598633, -0.16587650775909424, -0.4520905613899231, -0.07791385054588318, -0.19151800870895386, 0.14578421413898468, -1.740525484085083, -0.52458655834198, 0.8519335389137268], "std": [3.567354951883317e-06, 3.7442050597746857e-06, 1.1920928955078125e-07, 2.1457672119140625e-06, 2.086162567138672e-07, 5.960464477539063e-08, 0.026877138763666153, 0.0614226795732975, 0.006145607214421034, 0.4494781792163849, 0.39213037490844727, 0.573289155960083], "count": [159]}, "action": {"min": [-0.11330940574407578, -0.06008174642920494, 0.12922029197216034, 0.43716394901275635, 0.3051319420337677, 0.4739896357059479, 0.7007885575294495, 0.1771896481513977, -0.09556442499160767, 0.09246396273374557, -0.5181974768638611, -0.5762718319892883, -0.6080111265182495, -0.2698255479335785], "max": [-0.11330711096525192, -0.060079436749219894, 0.12922260165214539, 0.4371725618839264, 0.3051399290561676, 0.47399112582206726, 0.7007942795753479, 0.19483231008052826, -0.07977157086133957, 0.11248277127742767, 0.4742664396762848, 0.8642899990081787, 0.7725231051445007, 0.15983010828495026], "mean": [-0.11330897361040115, -0.06008128449320793, 0.12922154366970062, 0.4371700584888458, 0.305133581161499, 0.47399070858955383, 0.7007917761802673, 0.18559028208255768, -0.08969546109437943, 0.10285178571939468, -0.12092291563749313, 0.2635669708251953, 0.06540787220001221, -0.1315261870622635], "std": [5.101725832901138e-07, 5.940231631029746e-07, 3.648244728537975e-07, 1.6704087784091826e-06, 1.7646192418396822e-06, 7.445030405506259e-07, 1.1085089681728277e-06, 0.006417851895093918, 0.004163102712482214, 0.007348043844103813, 0.3559745252132416, 0.618635892868042, 0.6121012568473816, 0.10117711871862411], "count": [159]}, "timestamp": {"min": [0.0], "max": [5.266666666666667], "mean": [2.6333333333333333], "std": [1.5299479536052005], "count": [159]}, "frame_index": {"min": [0], "max": [158], "mean": [79.0], "std": [45.89843860815601], "count": [159]}, "episode_index": {"min": [175], "max": [175], "mean": [175.0], "std": [0.0], "count": [159]}, "index": {"min": [100382], "max": [100540], "mean": [100461.0], "std": [45.89843860815601], "count": [159]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [159]}}} +{"episode_index": 176, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7443592674291939]], [[0.7237072440087147]], [[0.6807699373638344]]], "std": [[[0.22678492134837913]], [[0.21091085933422116]], [[0.23302418606085948]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7443592674291939]], [[0.7237072440087147]], [[0.6807699373638344]]], "std": [[[0.22678492134837913]], [[0.21091085933422116]], [[0.23302418606085948]]], "count": [100]}, "observation.state": {"min": [0.5085651278495789, 0.09806326031684875, 0.12479773163795471, 1.9635366201400757, -0.6741644740104675, -0.34464627504348755, -0.14549629390239716, -0.28038153052330017, 0.13042232394218445, -2.429887056350708, -1.0787451267242432, 0.19972540438175201], "max": [0.5085805654525757, 0.09807871282100677, 0.12479773163795471, 1.9639559984207153, -0.6741644740104675, -0.3444828987121582, -0.03133884817361832, -0.0860389694571495, 0.15439331531524658, -1.3329989910125732, 0.15098333358764648, 1.3979123830795288], "mean": [0.508574903011322, 0.09807267040014267, 0.12479781359434128, 1.9639092683792114, -0.6741639375686646, -0.34457680583000183, -0.10313323140144348, -0.17800424993038177, 0.14230722188949585, -1.9278041124343872, -0.4243723750114441, 0.9274924397468567], "std": [6.485407993750414e-06, 7.419515895890072e-06, 8.195638656616211e-08, 0.00013263367873150855, 5.364418029785156e-07, 8.029073069337755e-05, 0.03428088128566742, 0.05093751475214958, 0.008466213941574097, 0.40221157670021057, 0.47069674730300903, 0.5123437643051147], "count": [179]}, "action": {"min": [-0.114542655646801, -0.055213939398527145, 0.13268427550792694, 0.2816394567489624, 0.5347977876663208, 0.23897987604141235, 0.7598649859428406, 0.17399322986602783, -0.08989445865154266, 0.08550333231687546, -0.5319519639015198, -0.6225332617759705, -0.63309246301651, -0.37072545289993286], "max": [-0.11454031616449356, -0.05521092936396599, 0.13268649578094482, 0.2817322313785553, 0.5348541736602783, 0.23922796547412872, 0.7599242329597473, 0.19360187649726868, -0.07710815966129303, 0.11120963096618652, 0.35650208592414856, 0.8753944635391235, 0.7625591158866882, 0.23482494056224823], "mean": [-0.11454121768474579, -0.055212292820215225, 0.13268527388572693, 0.28168100118637085, 0.5348170399665833, 0.2391785979270935, 0.7598815560340881, 0.18317168951034546, -0.085797019302845, 0.10145454853773117, -0.10930116474628448, 0.3033783435821533, 0.0219417754560709, -0.14810416102409363], "std": [8.856386557454243e-07, 1.019912133415346e-06, 8.233225230469543e-07, 3.386066236998886e-05, 1.4433360775001347e-05, 6.902537279529497e-05, 1.5938056094455533e-05, 0.006475349888205528, 0.0033031024504452944, 0.008286391384899616, 0.33910316228866577, 0.6125066876411438, 0.5965330600738525, 0.16610683500766754], "count": [179]}, "timestamp": {"min": [0.0], "max": [5.933333333333334], "mean": [2.9666666666666663], "std": [1.7224014243685084], "count": [179]}, "frame_index": {"min": [0], "max": [178], "mean": [89.0], "std": [51.67204273105525], "count": [179]}, "episode_index": {"min": [176], "max": [176], "mean": [176.0], "std": [0.0], "count": [179]}, "index": {"min": [100541], "max": [100719], "mean": [100630.0], "std": [51.67204273105525], "count": [179]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [179]}}} +{"episode_index": 177, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7508819553376906]], [[0.729323455882353]], [[0.6862970206971678]]], "std": [[[0.22038730114198457]], [[0.20334952987347127]], [[0.22706780003945953]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7508819553376906]], [[0.729323455882353]], [[0.6862970206971678]]], "std": [[[0.22038730114198457]], [[0.20334952987347127]], [[0.22706780003945953]]], "count": [100]}, "observation.state": {"min": [0.5183035135269165, 0.10058087110519409, 0.12531495094299316, 2.3921427726745605, -0.24895170331001282, -0.5512180924415588, -0.1447240114212036, -0.3208332061767578, 0.13387176394462585, -2.276184320449829, -0.8852678537368774, 0.3714618682861328], "max": [0.5183343887329102, 0.1005885973572731, 0.12531495094299316, 2.3925621509552, -0.24895170331001282, -0.5512180924415588, -0.052344679832458496, -0.13004310429096222, 0.15715183317661285, -1.3382412195205688, 0.19088119268417358, 1.4002312421798706], "mean": [0.5183174014091492, 0.10058443248271942, 0.12531477212905884, 2.3923234939575195, -0.24895139038562775, -0.5512186288833618, -0.10535231232643127, -0.20668748021125793, 0.14467255771160126, -1.8045552968978882, -0.29598620533943176, 1.0174707174301147], "std": [4.726551196654327e-06, 3.843332706310321e-06, 1.7881393432617188e-07, 0.00020606914767995477, 3.129243850708008e-07, 5.364418029785156e-07, 0.03135152906179428, 0.05802871659398079, 0.008797659538686275, 0.32874253392219543, 0.44203758239746094, 0.45219817757606506], "count": [134]}, "action": {"min": [-0.11528945714235306, -0.056586090475320816, 0.13527946174144745, 0.43757468461990356, 0.36683395504951477, 0.39627060294151306, 0.718866765499115, 0.17461806535720825, -0.09565959125757217, 0.08461997658014297, -0.48391127586364746, -0.6088449358940125, -0.6473994255065918, -0.2853585481643677], "max": [-0.115284264087677, -0.056583840399980545, 0.13528284430503845, 0.4375963807106018, 0.3668653070926666, 0.39646124839782715, 0.7189570069313049, 0.19462259113788605, -0.0847206637263298, 0.11325503885746002, 0.35830968618392944, 0.898385226726532, 0.744645893573761, 0.15085014700889587], "mean": [-0.11528699100017548, -0.056585099548101425, 0.13528122007846832, 0.43758684396743774, 0.366850346326828, 0.39635539054870605, 0.7189170122146606, 0.18350110948085785, -0.09064000099897385, 0.10093674063682556, -0.10640206933021545, 0.36820077896118164, -0.03749830648303032, -0.12867233157157898], "std": [7.083127115947718e-07, 6.677285568912339e-07, 5.155312692295411e-07, 8.051310032897163e-06, 9.511742973700166e-06, 9.333067282568663e-05, 4.1948078433051705e-05, 0.007181480061262846, 0.00296483444981277, 0.009704576805233955, 0.28600719571113586, 0.6411647200584412, 0.5761845707893372, 0.10130663216114044], "count": [134]}, "timestamp": {"min": [0.0], "max": [4.433333333333334], "mean": [2.216666666666667], "std": [1.2893796958227626], "count": [134]}, "frame_index": {"min": [0], "max": [133], "mean": [66.5], "std": [38.68139087468288], "count": [134]}, "episode_index": {"min": [177], "max": [177], "mean": [177.0], "std": [0.0], "count": [134]}, "index": {"min": [100720], "max": [100853], "mean": [100786.5], "std": [38.68139087468288], "count": [134]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [134]}}} +{"episode_index": 178, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7556157761437908]], [[0.7322830092592593]], [[0.6886992946623094]]], "std": [[[0.22170418187059404]], [[0.2079237445834843]], [[0.23276009028110684]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7556157761437908]], [[0.7322830092592593]], [[0.6886992946623094]]], "std": [[[0.22170418187059404]], [[0.2079237445834843]], [[0.23276009028110684]]], "count": [100]}, "observation.state": {"min": [0.5429235696792603, 0.10425689071416855, 0.12023738026618958, 2.5406033992767334, -0.3072955012321472, -0.41902345418930054, -0.1272706389427185, -0.27038058638572693, 0.13880673050880432, -2.470566987991333, -1.0969178676605225, 0.26727786660194397], "max": [0.5429544448852539, 0.10426461696624756, 0.12023738026618958, 2.541022777557373, -0.3072955012321472, -0.41902345418930054, -0.060106031596660614, -0.1168217808008194, 0.15805794298648834, -1.2904318571090698, 0.13690976798534393, 1.4106546640396118], "mean": [0.5429419875144958, 0.1042582243680954, 0.12023735791444778, 2.540682077407837, -0.307295560836792, -0.41902270913124084, -0.08762200176715851, -0.19508132338523865, 0.14601677656173706, -1.9556348323822021, -0.395240843296051, 1.029969334602356], "std": [6.054776804376161e-06, 2.9718428322667023e-06, 2.2351741790771484e-08, 0.00016659547691233456, 5.960464477539063e-08, 7.450580596923828e-07, 0.021942593157291412, 0.05077345669269562, 0.007574744522571564, 0.42711883783340454, 0.5318158268928528, 0.45277488231658936], "count": [133]}, "action": {"min": [-0.1144627258181572, -0.052625399082899094, 0.1298203468322754, 0.3688543736934662, 0.36150220036506653, 0.48724207282066345, 0.7040386199951172, 0.17757529020309448, -0.09476860612630844, 0.09218046814203262, -0.5602160692214966, -0.5940518379211426, -0.5977683663368225, -0.3815465569496155], "max": [-0.114458367228508, -0.05262291058897972, 0.12982328236103058, 0.36887887120246887, 0.3615524172782898, 0.4874243140220642, 0.7041429281234741, 0.19322708249092102, -0.08487097918987274, 0.11336157470941544, 0.4872117042541504, 0.8612669706344604, 0.7149511575698853, 0.12638196349143982], "mean": [-0.11446012556552887, -0.05262463912367821, 0.12982146441936493, 0.36887308955192566, 0.36153846979141235, 0.48727869987487793, 0.7041178941726685, 0.18529605865478516, -0.09022889286279678, 0.10271050781011581, -0.1110677421092987, 0.3422299921512604, -0.02817550115287304, -0.19332168996334076], "std": [8.614841249254823e-07, 4.869203849011683e-07, 5.609699655906297e-07, 7.2831890065572225e-06, 1.610529943718575e-05, 7.206683221738786e-05, 3.803136860369705e-05, 0.005980081390589476, 0.0030372547917068005, 0.007881796918809414, 0.34309902787208557, 0.6262948513031006, 0.5485512614250183, 0.14664453268051147], "count": [133]}, "timestamp": {"min": [0.0], "max": [4.4], "mean": [2.2], "std": [1.2797569213634978], "count": [133]}, "frame_index": {"min": [0], "max": [132], "mean": [66.0], "std": [38.39270764090493], "count": [133]}, "episode_index": {"min": [178], "max": [178], "mean": [178.0], "std": [0.0], "count": [133]}, "index": {"min": [100854], "max": [100986], "mean": [100920.0], "std": [38.39270764090493], "count": [133]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [133]}}} +{"episode_index": 179, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7450402314814815]], [[0.7287439324618736]], [[0.6861323175381263]]], "std": [[[0.23271850135401131]], [[0.21503420858746858]], [[0.23962393584836209]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7450402314814815]], [[0.7287439324618736]], [[0.6861323175381263]]], "std": [[[0.23271850135401131]], [[0.21503420858746858]], [[0.23962393584836209]]], "count": [100]}, "observation.state": {"min": [0.524126410484314, 0.10335332900285721, 0.1276806741952896, 2.5871546268463135, -0.22176103293895721, -0.7044845819473267, -0.14571252465248108, -0.29170307517051697, 0.13554267585277557, -2.2717809677124023, -0.9335005879402161, 0.2978713810443878], "max": [0.5241495966911316, 0.10336878150701523, 0.12768326699733734, 2.587574005126953, -0.22176103293895721, -0.704239547252655, -0.0454096682369709, -0.11184062063694, 0.15839886665344238, -1.3011261224746704, 0.22654332220554352, 1.3839205503463745], "mean": [0.5241379141807556, 0.10336551815271378, 0.12768107652664185, 2.587317943572998, -0.2217612862586975, -0.7042949199676514, -0.11675385385751724, -0.18666651844978333, 0.14660875499248505, -1.7497438192367554, -0.4372599124908447, 0.8902318477630615], "std": [5.925388450123137e-06, 4.99682164445403e-06, 1.016425017041911e-06, 0.00020238901197444648, 2.5331974029541016e-07, 7.979183283168823e-05, 0.017208708450198174, 0.05186549574136734, 0.00799136608839035, 0.31062522530555725, 0.49122345447540283, 0.44916656613349915], "count": [149]}, "action": {"min": [-0.11367707699537277, -0.05680288374423981, 0.1372082531452179, 0.4861028790473938, 0.38384154438972473, 0.4543728828430176, 0.640055239200592, 0.1744108945131302, -0.09390611201524734, 0.08749370276927948, -0.5076659917831421, -0.6087504625320435, -0.6195223927497864, -0.28747445344924927], "max": [-0.11367272585630417, -0.05679936707019806, 0.13721193373203278, 0.48621276021003723, 0.38391703367233276, 0.45460256934165955, 0.6401811838150024, 0.18909576535224915, -0.08123370260000229, 0.11345509439706802, 0.4175971448421478, 0.8896533250808716, 0.7509536147117615, 0.16698706150054932], "mean": [-0.11367471516132355, -0.056800369173288345, 0.13721007108688354, 0.4861418902873993, 0.38386720418930054, 0.45447883009910583, 0.64012610912323, 0.18085603415966034, -0.08929427713155746, 0.10360673069953918, -0.19721657037734985, 0.1507083773612976, 0.14712901413440704, -0.08582121878862381], "std": [1.1489062217151513e-06, 8.768850534579542e-07, 8.611078783360426e-07, 3.2096697395900264e-05, 2.1801148250233382e-05, 9.295320342062041e-05, 4.722340599982999e-05, 0.004961386322975159, 0.0036109639331698418, 0.00865755882114172, 0.3055468797683716, 0.6636651158332825, 0.6027820110321045, 0.11056256294250488], "count": [149]}, "timestamp": {"min": [0.0], "max": [4.933333333333334], "mean": [2.4666666666666663], "std": [1.4337208778404378], "count": [149]}, "frame_index": {"min": [0], "max": [148], "mean": [74.0], "std": [43.01162633521314], "count": [149]}, "episode_index": {"min": [179], "max": [179], "mean": [179.0], "std": [0.0], "count": [149]}, "index": {"min": [100987], "max": [101135], "mean": [101061.0], "std": [43.01162633521314], "count": [149]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [149]}}} +{"episode_index": 180, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.745817116013072]], [[0.7253030501089324]], [[0.6823900571895425]]], "std": [[[0.23563278388105063]], [[0.21957613324716696]], [[0.24379518780434692]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.745817116013072]], [[0.7253030501089324]], [[0.6823900571895425]]], "std": [[[0.23563278388105063]], [[0.21957613324716696]], [[0.24379518780434692]]], "count": [100]}, "observation.state": {"min": [0.5329535007476807, 0.09446447342634201, 0.1276262253522873, 2.40346622467041, -0.2910357415676117, -0.7011685967445374, -0.1451873779296875, -0.2705196142196655, 0.118981271982193, -2.787198781967163, -0.9791371822357178, 0.19572950899600983], "max": [0.5329998731613159, 0.09447991102933884, 0.1276262253522873, 2.40388560295105, -0.2910357415676117, -0.701005220413208, 0.016024669632315636, -0.14199788868427277, 0.16046126186847687, -1.3065780401229858, 0.41127586364746094, 1.4141372442245483], "mean": [0.5329722762107849, 0.09446676820516586, 0.12762637436389923, 2.4036483764648438, -0.29103562235832214, -0.701076328754425, -0.08628877252340317, -0.19382676482200623, 0.14096477627754211, -2.1458494663238525, -0.1930040419101715, 1.0156017541885376], "std": [1.1341532626829576e-05, 5.120415607962059e-06, 1.4901161193847656e-07, 0.00020722100452985615, 1.1920928955078125e-07, 8.098479156615213e-05, 0.05780178681015968, 0.037635959684848785, 0.013826020993292332, 0.512418806552887, 0.4925176203250885, 0.5108927488327026], "count": [168]}, "action": {"min": [-0.11181016266345978, -0.05734371766448021, 0.13552537560462952, 0.48152029514312744, 0.41779235005378723, 0.3706280589103699, 0.6752637028694153, 0.17600764334201813, -0.09623066335916519, 0.07822100073099136, -0.5173056721687317, -0.6133509874343872, -0.6103041172027588, -0.5266222357749939], "max": [-0.11180265992879868, -0.05733995512127876, 0.13553011417388916, 0.4816083610057831, 0.41784727573394775, 0.37085506319999695, 0.6753963232040405, 0.20292001962661743, -0.07925640046596527, 0.11423470079898834, 0.4001941978931427, 0.852877140045166, 0.7812826037406921, 0.2780665159225464], "mean": [-0.11180704087018967, -0.057342641055583954, 0.13552798330783844, 0.48156479001045227, 0.4178192615509033, 0.37072843313217163, 0.675338864326477, 0.18639792501926422, -0.0874488577246666, 0.0992201417684555, -0.08451145142316818, 0.3839469254016876, -0.016711609438061714, -0.26293665170669556], "std": [1.7463306676290813e-06, 9.554590860716417e-07, 1.1260727887929534e-06, 2.767620208032895e-05, 1.5015834833320696e-05, 9.277259232476354e-05, 4.752975655719638e-05, 0.009788879193365574, 0.005895571783185005, 0.01154615730047226, 0.281006783246994, 0.5858317613601685, 0.5507346391677856, 0.22484514117240906], "count": [168]}, "timestamp": {"min": [0.0], "max": [5.566666666666666], "mean": [2.783333333333333], "std": [1.616552115071067], "count": [168]}, "frame_index": {"min": [0], "max": [167], "mean": [83.5], "std": [48.496563452132015], "count": [168]}, "episode_index": {"min": [180], "max": [180], "mean": [180.0], "std": [0.0], "count": [168]}, "index": {"min": [101136], "max": [101303], "mean": [101219.5], "std": [48.496563452132015], "count": [168]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [168]}}} +{"episode_index": 181, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7462079466230936]], [[0.7195989242919391]], [[0.6758384177559913]]], "std": [[[0.22930476915585724]], [[0.2158124168307183]], [[0.2405527344388142]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7462079466230936]], [[0.7195989242919391]], [[0.6758384177559913]]], "std": [[[0.22930476915585724]], [[0.2158124168307183]], [[0.2405527344388142]]], "count": [100]}, "observation.state": {"min": [0.5426841378211975, 0.10973230749368668, 0.126311793923378, 2.4896488189697266, -0.15125660598278046, -0.5822830200195312, -0.12244392931461334, -0.295085608959198, 0.135983407497406, -2.5303285121917725, -1.0370709896087646, 0.2110924869775772], "max": [0.5427073240280151, 0.1097477599978447, 0.12631309032440186, 2.490068197250366, -0.15125660598278046, -0.5820379853248596, -0.0565226785838604, -0.14692498743534088, 0.16200903058052063, -1.2742857933044434, 0.15221306681632996, 1.3867573738098145], "mean": [0.5426963567733765, 0.10974587500095367, 0.12631268799304962, 2.489654779434204, -0.15125657618045807, -0.5821632742881775, -0.09493143856525421, -0.21901653707027435, 0.14841504395008087, -2.0328054428100586, -0.4100949764251709, 0.9873497486114502], "std": [4.488652848522179e-06, 4.038358383695595e-06, 7.073894039422157e-07, 3.4842523746192455e-05, 2.9802322387695312e-08, 0.00010063656372949481, 0.024434885010123253, 0.05217406153678894, 0.009368447586894035, 0.48452383279800415, 0.46713653206825256, 0.5076583623886108], "count": [145]}, "action": {"min": [-0.11182194203138351, -0.0551912821829319, 0.1351037472486496, 0.46981504559516907, 0.34002020955085754, 0.43408119678497314, 0.6892296075820923, 0.17513492703437805, -0.09738215059041977, 0.08775366842746735, -0.5354355573654175, -0.577467143535614, -0.584172248840332, -0.4002910852432251], "max": [-0.11181776970624924, -0.05518777295947075, 0.13510650396347046, 0.4699151813983917, 0.34009313583374023, 0.4343070387840271, 0.6893306970596313, 0.19366180896759033, -0.09167495369911194, 0.11616160720586777, 0.4968084990978241, 0.8555207252502441, 0.7570070028305054, 0.2086154669523239], "mean": [-0.1118198037147522, -0.05518880486488342, 0.13510549068450928, 0.4698718786239624, 0.34006527066230774, 0.434103399515152, 0.6892972588539124, 0.18392644822597504, -0.09387476742267609, 0.10265380144119263, -0.0658443421125412, 0.3379063010215759, -0.012634589336812496, -0.21167825162410736], "std": [7.726467856628005e-07, 6.986550715737394e-07, 6.281043170019984e-07, 3.426351395319216e-05, 2.2547666958416812e-05, 2.398706419626251e-05, 2.4073171516647562e-05, 0.007230989634990692, 0.0013062270591035485, 0.009946545585989952, 0.35508230328559875, 0.5984489321708679, 0.566362738609314, 0.17755362391471863], "count": [145]}, "timestamp": {"min": [0.0], "max": [4.8], "mean": [2.4], "std": [1.39522996909709], "count": [145]}, "frame_index": {"min": [0], "max": [144], "mean": [72.0], "std": [41.8568990729127], "count": [145]}, "episode_index": {"min": [181], "max": [181], "mean": [181.0], "std": [0.0], "count": [145]}, "index": {"min": [101304], "max": [101448], "mean": [101376.0], "std": [41.8568990729127], "count": [145]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [145]}}} +{"episode_index": 182, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7461871568627451]], [[0.7250683142701525]], [[0.6817543300653595]]], "std": [[[0.22418134122333278]], [[0.21041681931203493]], [[0.23499243570534464]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7461871568627451]], [[0.7250683142701525]], [[0.6817543300653595]]], "std": [[[0.22418134122333278]], [[0.21041681931203493]], [[0.23499243570534464]]], "count": [100]}, "observation.state": {"min": [0.5334246158599854, 0.11031152307987213, 0.1256740242242813, 2.8444440364837646, 0.07965908199548721, -0.5666274428367615, -0.11986453831195831, -0.3076273500919342, 0.13171473145484924, -2.5169084072113037, -1.0337917804718018, 0.5503354668617249], "max": [0.5334400534629822, 0.11032696068286896, 0.1256740242242813, 2.8448634147644043, 0.07965908199548721, -0.5666274428367615, -0.026836499571800232, -0.13448366522789001, 0.16031606495380402, -1.6492114067077637, -0.05301496013998985, 1.3871874809265137], "mean": [0.5334277153015137, 0.1103225126862526, 0.12567400932312012, 2.8447067737579346, 0.07965918630361557, -0.5666274428367615, -0.07898947596549988, -0.21881508827209473, 0.14512784779071808, -2.0575926303863525, -0.4829308092594147, 1.061016321182251], "std": [5.28209011463332e-06, 4.203060598229058e-06, 1.4901161193847656e-08, 0.00020107316959183663, 1.043081283569336e-07, 0.0, 0.03549009561538696, 0.055254701524972916, 0.00961481686681509, 0.2990581691265106, 0.39983075857162476, 0.37526029348373413], "count": [161]}, "action": {"min": [-0.11425402015447617, -0.05720337852835655, 0.13511811196804047, 0.5188066363334656, 0.22492210566997528, 0.5747295618057251, 0.5913907289505005, 0.1766321361064911, -0.09443195164203644, 0.084670789539814, -0.5171375274658203, -0.6074182391166687, -0.6067183017730713, -0.3706258535385132], "max": [-0.11425137519836426, -0.057200342416763306, 0.13512052595615387, 0.5188289284706116, 0.224943608045578, 0.5748904347419739, 0.5915316343307495, 0.19611042737960815, -0.08035445213317871, 0.11488788574934006, 0.4272776246070862, 0.8567070364952087, 0.7194845676422119, 0.23270127177238464], "mean": [-0.11425341665744781, -0.05720154568552971, 0.13511990010738373, 0.5188140869140625, 0.2249300628900528, 0.574832022190094, 0.5914444923400879, 0.18561220169067383, -0.0908990278840065, 0.10102368891239166, -0.08081842213869095, 0.2782036066055298, 0.009290805086493492, -0.13816779851913452], "std": [8.1385758221586e-07, 6.445579856517725e-07, 5.4885970257601e-07, 7.476714927179273e-06, 7.1848462539492175e-06, 7.607122824992985e-05, 6.503481563413516e-05, 0.007605744060128927, 0.0025381932500749826, 0.010460209101438522, 0.34846287965774536, 0.6421858668327332, 0.5716183185577393, 0.19057254493236542], "count": [161]}, "timestamp": {"min": [0.0], "max": [5.333333333333333], "mean": [2.666666666666666], "std": [1.5491933384829668], "count": [161]}, "frame_index": {"min": [0], "max": [160], "mean": [80.0], "std": [46.475800154489], "count": [161]}, "episode_index": {"min": [182], "max": [182], "mean": [182.0], "std": [0.0], "count": [161]}, "index": {"min": [101449], "max": [101609], "mean": [101529.0], "std": [46.475800154489], "count": [161]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [161]}}} +{"episode_index": 183, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7490276007625273]], [[0.7266936274509803]], [[0.6828426770152506]]], "std": [[[0.21882856687051963]], [[0.2059405741399212]], [[0.22980720785789066]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7490276007625273]], [[0.7266936274509803]], [[0.6828426770152506]]], "std": [[[0.21882856687051963]], [[0.2059405741399212]], [[0.22980720785789066]]], "count": [100]}, "observation.state": {"min": [0.52981036901474, 0.09886643290519714, 0.11732721328735352, 2.550039291381836, -0.19812291860580444, -0.5241965651512146, -0.13974285125732422, -0.3156435489654541, 0.13372397422790527, -2.344543218612671, -0.9677963256835938, 0.27775096893310547], "max": [0.5298335552215576, 0.09888187050819397, 0.11732721328735352, 2.5504586696624756, -0.19784964621067047, -0.5238920450210571, 0.01658071018755436, -0.14307907223701477, 0.15598906576633453, -1.343902826309204, -0.2936318516731262, 1.3852205276489258], "mean": [0.5298219323158264, 0.09886856377124786, 0.11732693761587143, 2.5502991676330566, -0.1979057490825653, -0.5240463018417358, -0.06881143152713776, -0.22876551747322083, 0.1445796638727188, -1.9030736684799194, -0.6014560461044312, 0.9451721906661987], "std": [5.8505024753685575e-06, 3.5529646993381903e-06, 2.7567148208618164e-07, 0.00014640612062066793, 0.0001105696355807595, 8.678122685523704e-05, 0.05844448506832123, 0.05714506655931473, 0.007383411284536123, 0.38683027029037476, 0.2270626425743103, 0.4999352991580963], "count": [160]}, "action": {"min": [-0.11802007257938385, -0.053921885788440704, 0.12822000682353973, 0.4377092123031616, 0.33546262979507446, 0.4703654646873474, 0.6886930465698242, 0.1737760305404663, -0.09516619145870209, 0.08587395399808884, -0.5107822418212891, -0.5950073003768921, -0.6032834053039551, -0.2674557864665985], "max": [-0.11801625043153763, -0.053918205201625824, 0.12822262942790985, 0.4379054605960846, 0.33555570244789124, 0.4705749750137329, 0.6888161897659302, 0.19974179565906525, -0.08230221271514893, 0.11059481650590897, 0.4870370328426361, 0.8328511714935303, 0.7904043793678284, 0.14715977013111115], "mean": [-0.11801804602146149, -0.05392072722315788, 0.12822122871875763, 0.43782544136047363, 0.3355006277561188, 0.4705055356025696, 0.6887472867965698, 0.18597808480262756, -0.09148550778627396, 0.09952609241008759, -0.021422486752271652, 0.25652486085891724, 0.028250673785805702, -0.12922519445419312], "std": [7.971955824359611e-07, 1.0168984090341837e-06, 4.83722885746829e-07, 5.956665700068697e-05, 3.027763159479946e-05, 6.256351480260491e-05, 4.1217728721676394e-05, 0.009913453832268715, 0.0024115126579999924, 0.008282683789730072, 0.37967342138290405, 0.6146239638328552, 0.6151254773139954, 0.1262737661600113], "count": [160]}, "timestamp": {"min": [0.0], "max": [5.3], "mean": [2.6499999999999995], "std": [1.5395706472188204], "count": [160]}, "frame_index": {"min": [0], "max": [159], "mean": [79.5], "std": [46.18711941656461], "count": [160]}, "episode_index": {"min": [183], "max": [183], "mean": [183.0], "std": [0.0], "count": [160]}, "index": {"min": [101610], "max": [101769], "mean": [101689.5], "std": [46.18711941656461], "count": [160]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [160]}}} +{"episode_index": 184, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7552214814814815]], [[0.7342747739651416]], [[0.6908860266884531]]], "std": [[[0.21592646317238232]], [[0.20222414139343553]], [[0.22606636088917909]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7552214814814815]], [[0.7342747739651416]], [[0.6908860266884531]]], "std": [[[0.21592646317238232]], [[0.20222414139343553]], [[0.22606636088917909]]], "count": [100]}, "observation.state": {"min": [0.5148282647132874, 0.10571648925542831, 0.11865202337503433, 2.564927339553833, -0.16287070512771606, -0.5997962355613708, -0.1378507763147354, -0.27713799476623535, 0.12861141562461853, -2.0799145698547363, -0.8118940591812134, 0.4618578255176544], "max": [0.514859139919281, 0.10573194175958633, 0.11865202337503433, 2.5653467178344727, -0.16273407638072968, -0.5996847748756409, -0.0747869536280632, -0.12320847809314728, 0.1551620215177536, -1.4086970090866089, 0.040307771414518356, 1.3761883974075317], "mean": [0.5148487091064453, 0.10572794079780579, 0.11865215748548508, 2.5650124549865723, -0.1628357470035553, -0.5997129678726196, -0.1142757460474968, -0.18699315190315247, 0.1429419368505478, -1.7166892290115356, -0.3692050576210022, 0.9880452752113342], "std": [5.255966698314296e-06, 6.564320756297093e-06, 1.341104507446289e-07, 0.0001641683920752257, 5.969991616439074e-05, 4.835681465920061e-05, 0.022908156737685204, 0.05251424387097359, 0.009511248208582401, 0.23357830941677094, 0.36249884963035583, 0.407819002866745], "count": [144]}, "action": {"min": [-0.11963523924350739, -0.05426647141575813, 0.1308145672082901, 0.46826866269111633, 0.33340564370155334, 0.46459245681762695, 0.6734277009963989, 0.17441143095493317, -0.08943379670381546, 0.08474403619766235, -0.44837725162506104, -0.6295530200004578, -0.6451426148414612, -0.17698107659816742], "max": [-0.11963090300559998, -0.05426369234919548, 0.13081705570220947, 0.4683672785758972, 0.3334769010543823, 0.4647930860519409, 0.6735372543334961, 0.19131411612033844, -0.08368559926748276, 0.11301051080226898, 0.3548508286476135, 0.884079098701477, 0.7485466599464417, 0.12961845099925995], "mean": [-0.11963265389204025, -0.05426482856273651, 0.1308155357837677, 0.468307763338089, 0.33344465494155884, 0.4646416902542114, 0.673505961894989, 0.18170064687728882, -0.0871649980545044, 0.10153720527887344, -0.1158602386713028, 0.25569260120391846, 0.03407380357384682, -0.0732743963599205], "std": [8.345601827386417e-07, 9.516813292975712e-07, 6.60320495171618e-07, 3.5421628126641735e-05, 1.3587202374765184e-05, 7.373601692961529e-05, 3.8058431528043e-05, 0.006486459635198116, 0.0016087061958387494, 0.01014445349574089, 0.2850618362426758, 0.6762607097625732, 0.6098383069038391, 0.0646226704120636], "count": [144]}, "timestamp": {"min": [0.0], "max": [4.766666666666667], "mean": [2.3833333333333333], "std": [1.3856072341783612], "count": [144]}, "frame_index": {"min": [0], "max": [143], "mean": [71.5], "std": [41.56821702535083], "count": [144]}, "episode_index": {"min": [184], "max": [184], "mean": [184.0], "std": [0.0], "count": [144]}, "index": {"min": [101770], "max": [101913], "mean": [101841.5], "std": [41.56821702535083], "count": [144]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [144]}}} +{"episode_index": 185, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7469832271241831]], [[0.7252259776688453]], [[0.6817827096949891]]], "std": [[[0.22201145302850508]], [[0.20842173529120073]], [[0.23209852138993187]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7469832271241831]], [[0.7252259776688453]], [[0.6817827096949891]]], "std": [[[0.22201145302850508]], [[0.20842173529120073]], [[0.23209852138993187]]], "count": [100]}, "observation.state": {"min": [0.5392938852310181, 0.0930357575416565, 0.11897867918014526, 2.628882884979248, -0.10138428211212158, -0.46424874663352966, -0.12448272854089737, -0.3231036961078644, 0.13109898567199707, -2.3676092624664307, -0.8425006866455078, 0.44604676961898804], "max": [0.5393093228340149, 0.0930434912443161, 0.11897998303174973, 2.6293022632598877, -0.10138428211212158, -0.46424874663352966, -0.06601391732692719, -0.13592782616615295, 0.15547184646129608, -1.6003535985946655, -0.03388585150241852, 1.385926365852356], "mean": [0.539305567741394, 0.09304327517747879, 0.11897888034582138, 2.629228115081787, -0.10138418525457382, -0.4642486870288849, -0.101250059902668, -0.21768257021903992, 0.14409244060516357, -1.9913002252578735, -0.4262407422065735, 1.007217526435852], "std": [5.69777103009983e-06, 9.365356845592032e-07, 5.856388156644243e-07, 0.00015578143938910216, 9.685754776000977e-08, 5.960464477539063e-08, 0.022107550874352455, 0.05944010242819786, 0.007304313592612743, 0.3028424382209778, 0.3195936679840088, 0.40740758180618286], "count": [136]}, "action": {"min": [-0.1161883994936943, -0.05575651675462723, 0.12849906086921692, 0.44643551111221313, 0.278806209564209, 0.5093414187431335, 0.680697500705719, 0.1759374886751175, -0.09658634662628174, 0.08253877609968185, -0.448300838470459, -0.6248456835746765, -0.6298643350601196, -0.3122671842575073], "max": [-0.11618529260158539, -0.05575505644083023, 0.1285017430782318, 0.44644784927368164, 0.2788429856300354, 0.5095163583755493, 0.6808138489723206, 0.19137971103191376, -0.08005528897047043, 0.11224041134119034, 0.3961530327796936, 0.8601893186569214, 0.7617268562316895, 0.17482174932956696], "mean": [-0.1161864772439003, -0.05575539171695709, 0.12850017845630646, 0.44643908739089966, 0.27881619334220886, 0.5094857215881348, 0.6807188987731934, 0.18306735157966614, -0.09054366499185562, 0.10018434375524521, -0.06602972000837326, 0.2477112114429474, 0.05077369138598442, -0.13026060163974762], "std": [9.048989682014508e-07, 3.069819740630919e-07, 5.672192742167681e-07, 3.822143298748415e-06, 1.1600975994952023e-05, 6.485120684374124e-05, 4.1468658309895545e-05, 0.005917293019592762, 0.0034125924576073885, 0.009305436164140701, 0.31767213344573975, 0.6562033891677856, 0.5961780548095703, 0.16669370234012604], "count": [136]}, "timestamp": {"min": [0.0], "max": [4.5], "mean": [2.25], "std": [1.3086252328302401], "count": [136]}, "frame_index": {"min": [0], "max": [135], "mean": [67.5], "std": [39.2587569849072], "count": [136]}, "episode_index": {"min": [185], "max": [185], "mean": [185.0], "std": [0.0], "count": [136]}, "index": {"min": [101914], "max": [102049], "mean": [101981.5], "std": [39.2587569849072], "count": [136]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [136]}}} +{"episode_index": 186, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7257095697167756]], [[0.7039346051198258]], [[0.6592795098039216]]], "std": [[[0.23493816725767114]], [[0.22202462072141077]], [[0.24503254182329492]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7257095697167756]], [[0.7039346051198258]], [[0.6592795098039216]]], "std": [[[0.23493816725767114]], [[0.22202462072141077]], [[0.24503254182329492]]], "count": [100]}, "observation.state": {"min": [0.5393247604370117, 0.12391897290945053, 0.12410420924425125, 2.7672781944274902, 0.04604649916291237, -0.5039631724357605, -0.16804666817188263, -0.30772000551223755, 0.13291898369789124, -2.314767360687256, -0.7666674256324768, 0.4727090299129486], "max": [0.5393401980400085, 0.12392669171094894, 0.12410551309585571, 2.76769757270813, 0.04618313908576965, -0.5037700533866882, -0.08768390864133835, -0.15582157671451569, 0.15137037634849548, -1.6588571071624756, 0.01885583996772766, 1.3876416683197021], "mean": [0.5393266081809998, 0.12392257153987885, 0.12410544604063034, 2.7675416469573975, 0.04612507298588753, -0.5038344860076904, -0.13136285543441772, -0.2327503114938736, 0.14006854593753815, -2.0699472427368164, -0.32655200362205505, 1.1059718132019043], "std": [4.305828497308539e-06, 3.863880920107476e-06, 1.9545278462373972e-07, 0.00020249729277566075, 6.75555202178657e-05, 5.58227657165844e-05, 0.02034369483590126, 0.052801989018917084, 0.006050919648259878, 0.24822930991649628, 0.3290632367134094, 0.37101832032203674], "count": [181]}, "action": {"min": [-0.11428941786289215, -0.0540635921061039, 0.13448959589004517, 0.48739662766456604, 0.22964107990264893, 0.5552397966384888, 0.6333616971969604, 0.17565099895000458, -0.09267444163560867, 0.08433729410171509, -0.43974143266677856, -0.6193543672561646, -0.6241897940635681, -0.31499868631362915], "max": [-0.11428605020046234, -0.054060906171798706, 0.13449260592460632, 0.48750951886177063, 0.22969022393226624, 0.5554343461990356, 0.6335259675979614, 0.18646274507045746, -0.08205046504735947, 0.10851821303367615, 0.4304937422275543, 0.8600925207138062, 0.7786405682563782, 0.1552795022726059], "mean": [-0.11428817361593246, -0.05406242236495018, 0.13449208438396454, 0.4874448776245117, 0.2296602427959442, 0.5553606748580933, 0.6334238052368164, 0.18061956763267517, -0.08943603932857513, 0.09575994312763214, -0.0013026879169046879, 0.37756776809692383, -0.05183445289731026, -0.14749453961849213], "std": [6.16529348462791e-07, 6.456645564867358e-07, 4.938555662192812e-07, 3.695523992064409e-05, 1.5976002032402903e-05, 7.838356395950541e-05, 6.602779467357323e-05, 0.003016684204339981, 0.0025873323902487755, 0.008464565500617027, 0.29618144035339355, 0.6378461718559265, 0.5571220517158508, 0.16746148467063904], "count": [181]}, "timestamp": {"min": [0.0], "max": [6.0], "mean": [3.0], "std": [1.7416467303484175], "count": [181]}, "frame_index": {"min": [0], "max": [180], "mean": [90.0], "std": [52.24940191045253], "count": [181]}, "episode_index": {"min": [186], "max": [186], "mean": [186.0], "std": [0.0], "count": [181]}, "index": {"min": [102050], "max": [102230], "mean": [102140.0], "std": [52.24940191045253], "count": [181]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [181]}}} +{"episode_index": 187, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7375123311546841]], [[0.716778082788671]], [[0.673059825708061]]], "std": [[[0.22006396261919448]], [[0.20648138410256603]], [[0.22938098061306691]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7375123311546841]], [[0.716778082788671]], [[0.673059825708061]]], "std": [[[0.22006396261919448]], [[0.20648138410256603]], [[0.22938098061306691]]], "count": [100]}, "observation.state": {"min": [0.5030356645584106, 0.10071215778589249, 0.11714702099561691, 2.4793739318847656, -0.03880476951599121, -0.3143484592437744, -0.16355976462364197, -0.30569666624069214, 0.13028362393379211, -2.3707544803619385, -0.9214765429496765, 0.6134978532791138], "max": [0.5030897259712219, 0.10072760283946991, 0.11714702099561691, 2.4797933101654053, -0.03880476951599121, -0.3141034245491028, -0.10817231982946396, -0.12498471140861511, 0.1560642421245575, -1.6261454820632935, 0.11272510886192322, 1.4063808917999268], "mean": [0.5030681490898132, 0.1007181853055954, 0.11714722961187363, 2.479597568511963, -0.03880484402179718, -0.31424129009246826, -0.13098609447479248, -0.2150355726480484, 0.14403381943702698, -2.0745043754577637, -0.3691036105155945, 1.1286845207214355], "std": [1.624919423193205e-05, 7.142064987419872e-06, 2.086162567138672e-07, 0.00019470980623736978, 7.450580596923828e-08, 8.599126886110753e-05, 0.015510112047195435, 0.05324869602918625, 0.008623708970844746, 0.2850552201271057, 0.36703336238861084, 0.33855149149894714], "count": [150]}, "action": {"min": [-0.12238908559083939, -0.056001365184783936, 0.1300094872713089, 0.40116599202156067, 0.21430550515651703, 0.4618334174156189, 0.761290967464447, 0.17369282245635986, -0.09367973357439041, 0.08247808367013931, -0.5050545930862427, -0.6105953454971313, -0.6038293242454529, -0.30767154693603516], "max": [-0.12238125503063202, -0.05599695071578026, 0.13001425564289093, 0.40127596259117126, 0.21441277861595154, 0.4620404839515686, 0.7614508271217346, 0.18571007251739502, -0.08145236223936081, 0.1132442057132721, 0.46010622382164, 0.8730188012123108, 0.7254616022109985, 0.15294882655143738], "mean": [-0.12238450348377228, -0.05599922314286232, 0.13001137971878052, 0.4012308120727539, 0.21436823904514313, 0.46194106340408325, 0.7613607048988342, 0.1797574907541275, -0.09005501121282578, 0.1001238152384758, -0.01774655468761921, 0.3564313054084778, -0.05600548908114433, -0.1662764996290207], "std": [2.3104596493794816e-06, 9.729178600537125e-07, 1.3660450122188195e-06, 3.0110544685157947e-05, 2.654494164744392e-05, 8.486786828143522e-05, 4.8289944970747456e-05, 0.004498256370425224, 0.002202058909460902, 0.00998296681791544, 0.3268669843673706, 0.6417948603630066, 0.5463305711746216, 0.15696297585964203], "count": [150]}, "timestamp": {"min": [0.0], "max": [4.966666666666667], "mean": [2.483333333333333], "std": [1.4433435976027125], "count": [150]}, "frame_index": {"min": [0], "max": [149], "mean": [74.5], "std": [43.300307928081374], "count": [150]}, "episode_index": {"min": [187], "max": [187], "mean": [187.0], "std": [0.0], "count": [150]}, "index": {"min": [102231], "max": [102380], "mean": [102305.5], "std": [43.300307928081374], "count": [150]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [150]}}} +{"episode_index": 188, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.747440582788671]], [[0.726759572440087]], [[0.6834161465141613]]], "std": [[[0.2126787243598799]], [[0.1979382647794925]], [[0.22168619059783326]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.747440582788671]], [[0.726759572440087]], [[0.6834161465141613]]], "std": [[[0.2126787243598799]], [[0.1979382647794925]], [[0.22168619059783326]]], "count": [100]}, "observation.state": {"min": [0.5129671096801758, 0.09756901115179062, 0.12119273841381073, 2.5349416732788086, -0.19484364986419678, -0.7474848628044128, -0.12408886849880219, -0.26899823546409607, 0.12439458072185516, -2.523618459701538, -1.0247737169265747, 0.33452069759368896], "max": [0.5130366086959839, 0.09758444875478745, 0.12119273841381073, 2.5349416732788086, -0.1945703774690628, -0.7472620010375977, -0.019754750654101372, -0.10731510072946548, 0.1580851674079895, -1.3246114253997803, 0.24102678894996643, 1.4109854698181152], "mean": [0.5129958391189575, 0.09756994992494583, 0.12119289487600327, 2.5349411964416504, -0.19467401504516602, -0.7473990321159363, -0.09138178825378418, -0.1663549393415451, 0.14513035118579865, -1.872640609741211, -0.5639560222625732, 0.8598533272743225], "std": [1.269210952159483e-05, 2.677500106074149e-06, 1.564621925354004e-07, 4.76837158203125e-07, 0.00013270750059746206, 0.00010823036427609622, 0.03222163766622543, 0.043329719454050064, 0.01030026376247406, 0.46437200903892517, 0.4715542793273926, 0.4683834910392761], "count": [210]}, "action": {"min": [-0.11844678223133087, -0.05617891624569893, 0.13238516449928284, 0.5127500891685486, 0.37758851051330566, 0.4245309829711914, 0.6435098648071289, 0.17567099630832672, -0.09186378121376038, 0.08255589008331299, -0.5351583957672119, -0.583484411239624, -0.5973410606384277, -0.4164929687976837], "max": [-0.118436798453331, -0.056174177676439285, 0.1323906034231186, 0.5129074454307556, 0.37766754627227783, 0.4245682656764984, 0.6435845494270325, 0.19828324019908905, -0.07802511006593704, 0.11369004100561142, 0.5005701780319214, 0.8594534993171692, 0.7324268817901611, 0.15278232097625732], "mean": [-0.11844237893819809, -0.05617675930261612, 0.13238810002803802, 0.5128463506698608, 0.37762489914894104, 0.4245472252368927, 0.643543004989624, 0.18329007923603058, -0.08606206625699997, 0.1042306050658226, -0.21114081144332886, 0.06638751924037933, 0.2159855216741562, -0.13618594408035278], "std": [1.8293936818736256e-06, 1.2314313835304347e-06, 9.363292292619008e-07, 7.259778794832528e-05, 3.145757000311278e-05, 1.6464617146993987e-05, 2.8998279958614148e-05, 0.007169360760599375, 0.003983088303357363, 0.009152911603450775, 0.34674492478370667, 0.631895899772644, 0.5770328640937805, 0.18254978954792023], "count": [210]}, "timestamp": {"min": [0.0], "max": [6.966666666666667], "mean": [3.4833333333333334], "std": [2.0207030313088414], "count": [210]}, "frame_index": {"min": [0], "max": [209], "mean": [104.5], "std": [60.621090939265244], "count": [210]}, "episode_index": {"min": [188], "max": [188], "mean": [188.0], "std": [0.0], "count": [210]}, "index": {"min": [102381], "max": [102590], "mean": [102485.5], "std": [60.621090939265244], "count": [210]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [210]}}} +{"episode_index": 189, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7311675245098039]], [[0.7156493954248366]], [[0.6720852968409585]]], "std": [[[0.22632302802002813]], [[0.20710233496558925]], [[0.23123718808789442]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7311675245098039]], [[0.7156493954248366]], [[0.6720852968409585]]], "std": [[[0.22632302802002813]], [[0.20710233496558925]], [[0.23123718808789442]]], "count": [100]}, "observation.state": {"min": [0.49145928025245667, 0.08665678650140762, 0.12288440018892288, 2.2751359939575195, -0.4575956463813782, -0.49821025133132935, -0.1642625331878662, -0.27126869559288025, 0.13611823320388794, -2.236762523651123, -0.841270923614502, 0.25899118185043335], "max": [0.4914824366569519, 0.08667223155498505, 0.12288569658994675, 2.275555372238159, -0.4575956463813782, -0.49821025133132935, -0.10734599083662033, -0.11461307853460312, 0.15624183416366577, -1.2449291944503784, 0.16997581720352173, 1.3718081712722778], "mean": [0.4914698302745819, 0.08667110651731491, 0.12288566678762436, 2.275438070297241, -0.4575957953929901, -0.4982105493545532, -0.13751965761184692, -0.1923408955335617, 0.14565904438495636, -1.7183032035827637, -0.39105284214019775, 0.8033267259597778], "std": [5.419425633590436e-06, 3.4927686556329718e-06, 1.1298273250304192e-07, 0.00018532879767008126, 1.4901161193847656e-07, 2.980232238769531e-07, 0.014407495968043804, 0.04620243236422539, 0.007693960331380367, 0.3845164477825165, 0.4442862570285797, 0.49511441588401794], "count": [135]}, "action": {"min": [-0.11924497038125992, -0.05748273804783821, 0.13352501392364502, 0.37412235140800476, 0.43732112646102905, 0.3508295714855194, 0.7386155724525452, 0.17274533212184906, -0.09366708993911743, 0.08978235721588135, -0.4656471610069275, -0.6120036840438843, -0.632594645023346, -0.2824697494506836], "max": [-0.11924054473638535, -0.05747857689857483, 0.13352817296981812, 0.37415775656700134, 0.43735864758491516, 0.35102635622024536, 0.7386826276779175, 0.18521301448345184, -0.08156993240118027, 0.11057208478450775, 0.3742416203022003, 0.8772838711738586, 0.785269021987915, 0.17254211008548737], "mean": [-0.11924301087856293, -0.057479504495859146, 0.13352711498737335, 0.37413090467453003, 0.43733394145965576, 0.35097190737724304, 0.7386358380317688, 0.17846302688121796, -0.0897897332906723, 0.10195090621709824, -0.1936599761247635, 0.14162898063659668, 0.18430937826633453, -0.11932182312011719], "std": [8.676036600263615e-07, 7.739277521068288e-07, 6.385385518115072e-07, 1.2664253517868929e-05, 1.2167151908215601e-05, 8.672253170516342e-05, 2.780404975055717e-05, 0.004557234235107899, 0.002941308543086052, 0.007910534739494324, 0.2845441997051239, 0.6543496251106262, 0.6104010939598083, 0.11180827766656876], "count": [135]}, "timestamp": {"min": [0.0], "max": [4.466666666666667], "mean": [2.233333333333334], "std": [1.2990024662822652], "count": [135]}, "frame_index": {"min": [0], "max": [134], "mean": [67.0], "std": [38.97007398846795], "count": [135]}, "episode_index": {"min": [189], "max": [189], "mean": [189.0], "std": [0.0], "count": [135]}, "index": {"min": [102591], "max": [102725], "mean": [102658.0], "std": [38.97007398846795], "count": [135]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [135]}}} +{"episode_index": 190, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7506265468409585]], [[0.7283507734204794]], [[0.6838107162309368]]], "std": [[[0.21300171846867355]], [[0.19746329694090317]], [[0.22177574776598563]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7506265468409585]], [[0.7283507734204794]], [[0.6838107162309368]]], "std": [[[0.21300171846867355]], [[0.19746329694090317]], [[0.22177574776598563]]], "count": [100]}, "observation.state": {"min": [0.5259644389152527, 0.09663455933332443, 0.12239699810743332, 2.4464526176452637, -0.2928120195865631, -0.44635269045829773, -0.098766028881073, -0.2530353367328644, 0.12885510921478271, -2.338671922683716, -0.9650635719299316, 0.3867749869823456], "max": [0.5259876251220703, 0.09665772318840027, 0.12239828705787659, 2.4468719959259033, -0.2928120195865631, -0.44635269045829773, -0.060546230524778366, -0.09550704061985016, 0.1550142467021942, -1.4202300310134888, 0.13185422122478485, 1.3977059125900269], "mean": [0.5259745121002197, 0.09664367139339447, 0.12239724397659302, 2.446521043777466, -0.2928122580051422, -0.44635310769081116, -0.08192411065101624, -0.17692220211029053, 0.14302605390548706, -1.8712055683135986, -0.4702316224575043, 0.932154655456543], "std": [5.2163845793984365e-06, 3.1463473533221986e-06, 3.8539437241524865e-07, 0.0001453042059438303, 2.384185791015625e-07, 4.172325134277344e-07, 0.010711993090808392, 0.040364980697631836, 0.008859604597091675, 0.3557122051715851, 0.4694391191005707, 0.4501764476299286], "count": [140]}, "action": {"min": [-0.11553683876991272, -0.055438753217458725, 0.1321284919977188, 0.38819172978401184, 0.362120121717453, 0.44000333547592163, 0.7241566181182861, 0.17880327999591827, -0.08967915922403336, 0.08677487820386887, -0.5012387037277222, -0.6251963376998901, -0.6162940859794617, -0.32576480507850647], "max": [-0.11553316563367844, -0.055434927344322205, 0.13213132321834564, 0.38821426033973694, 0.3621620535850525, 0.4401909112930298, 0.7242492437362671, 0.1935395747423172, -0.07956944406032562, 0.11213285475969315, 0.41320493817329407, 0.8642613291740417, 0.7581819891929626, 0.1883457750082016], "mean": [-0.11553498357534409, -0.05543689802289009, 0.13212963938713074, 0.3882085084915161, 0.3621501326560974, 0.4400348663330078, 0.7242308855056763, 0.18550348281860352, -0.08618555217981339, 0.10233175754547119, -0.16586044430732727, 0.18763841688632965, 0.10935747623443604, -0.12799924612045288], "std": [8.293567930195422e-07, 5.416490580500977e-07, 5.519653996088891e-07, 5.815026270283852e-06, 1.2199274351587519e-05, 6.467649654950947e-05, 3.0333741960930638e-05, 0.005311412736773491, 0.002337665995582938, 0.008219574578106403, 0.32135647535324097, 0.6528708338737488, 0.5973378419876099, 0.1503874510526657], "count": [140]}, "timestamp": {"min": [0.0], "max": [4.633333333333334], "mean": [2.3166666666666664], "std": [1.3471162615833208], "count": [140]}, "frame_index": {"min": [0], "max": [139], "mean": [69.5], "std": [40.413487847499624], "count": [140]}, "episode_index": {"min": [190], "max": [190], "mean": [190.0], "std": [0.0], "count": [140]}, "index": {"min": [102726], "max": [102865], "mean": [102795.5], "std": [40.413487847499624], "count": [140]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [140]}}} +{"episode_index": 191, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7380907706971678]], [[0.7102514596949892]], [[0.6658877369281047]]], "std": [[[0.213893899882959]], [[0.206491148798513]], [[0.23064968120474275]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7380907706971678]], [[0.7102514596949892]], [[0.6658877369281047]]], "std": [[[0.213893899882959]], [[0.206491148798513]], [[0.23064968120474275]]], "count": [100]}, "observation.state": {"min": [0.5218250751495361, 0.07767525315284729, 0.11647166311740875, 2.400740146636963, -0.3842218518257141, -0.2639165222644806, -0.10612580180168152, -0.31932729482650757, 0.1408250629901886, -2.4307258129119873, -0.8782994151115417, 0.1848854273557663], "max": [0.5218559503555298, 0.07769069075584412, 0.11647166311740875, 2.400740146636963, -0.3842218518257141, -0.26375314593315125, -0.051016371697187424, -0.1605556160211563, 0.1537412852048874, -1.4711846113204956, -0.27764537930488586, 1.3845678567886353], "mean": [0.5218441486358643, 0.07767578214406967, 0.11647158861160278, 2.4007365703582764, -0.3842211365699768, -0.26378458738327026, -0.08090752363204956, -0.23922666907310486, 0.14643815159797668, -2.0259716510772705, -0.6200575828552246, 0.9148545861244202], "std": [1.0341245797462761e-05, 2.4152870992111275e-06, 7.450580596923828e-08, 3.5762786865234375e-06, 7.152557373046875e-07, 6.395536183845252e-05, 0.02172008343040943, 0.05348188430070877, 0.004460556898266077, 0.3786935806274414, 0.21673806011676788, 0.4926460087299347], "count": [154]}, "action": {"min": [-0.11853377521038055, -0.055599793791770935, 0.1261650025844574, 0.30559027194976807, 0.3584361970424652, 0.4545894265174866, 0.7559176683425903, 0.1784684956073761, -0.10046488046646118, 0.09149468690156937, -0.46146154403686523, -0.6131508350372314, -0.614005982875824, -0.31948423385620117], "max": [-0.11852942407131195, -0.05559724569320679, 0.12616825103759766, 0.30566078424453735, 0.35848087072372437, 0.4546208083629608, 0.755948007106781, 0.19107842445373535, -0.08716443926095963, 0.10970517992973328, 0.427972674369812, 0.8181373476982117, 0.7934818863868713, 0.22763404250144958], "mean": [-0.11853102594614029, -0.05559894070029259, 0.12616585195064545, 0.3056112229824066, 0.35845112800598145, 0.4546143710613251, 0.7559369802474976, 0.18459366261959076, -0.09350987523794174, 0.10023945569992065, -0.03436766192317009, 0.1930370181798935, 0.08294715732336044, -0.10951236635446548], "std": [1.4194583854987286e-06, 5.193401193537284e-07, 7.676723043914535e-07, 2.376922384428326e-05, 1.3014963769819587e-05, 1.176497244159691e-05, 8.805657671473455e-06, 0.005172488745301962, 0.003338955109938979, 0.006162440869957209, 0.38215234875679016, 0.6096039414405823, 0.6216537952423096, 0.19639654457569122], "count": [154]}, "timestamp": {"min": [0.0], "max": [5.1], "mean": [2.55], "std": [1.4818344486930155], "count": [154]}, "frame_index": {"min": [0], "max": [153], "mean": [76.5], "std": [44.45503346079047], "count": [154]}, "episode_index": {"min": [191], "max": [191], "mean": [191.0], "std": [0.0], "count": [154]}, "index": {"min": [102866], "max": [103019], "mean": [102942.5], "std": [44.45503346079047], "count": [154]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [154]}}} +{"episode_index": 192, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7384656508714597]], [[0.7142546132897604]], [[0.6686697766884532]]], "std": [[[0.2192472812022869]], [[0.20507378157879405]], [[0.22971286118326492]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7384656508714597]], [[0.7142546132897604]], [[0.6686697766884532]]], "std": [[[0.2192472812022869]], [[0.20507378157879405]], [[0.22971286118326492]]], "count": [100]}, "observation.state": {"min": [0.5140945911407471, 0.11231943219900131, 0.12812012434005737, 2.330493927001953, -0.5379378795623779, -0.6252133250236511, -0.10319115966558456, -0.307341605424881, 0.14007580280303955, -2.4359681606292725, -1.0305124521255493, 0.23564216494560242], "max": [0.5141177773475647, 0.11233486980199814, 0.12812012434005737, 2.3309133052825928, -0.5379378795623779, -0.6248865723609924, -0.06463155150413513, -0.14308679103851318, 0.15910403430461884, -1.435537338256836, -0.1050734668970108, 1.3426381349563599], "mean": [0.5141050219535828, 0.11233197152614594, 0.1281202882528305, 2.330730676651001, -0.5379385948181152, -0.6250431537628174, -0.07986602187156677, -0.22173862159252167, 0.14713051915168762, -1.944226861000061, -0.5910910964012146, 0.8443187475204468], "std": [5.652026175084757e-06, 6.034043963154545e-06, 1.6391277313232422e-07, 0.00020569603657349944, 7.152557373046875e-07, 0.0001199402249767445, 0.01249654870480299, 0.05248800665140152, 0.007059096358716488, 0.3781535029411316, 0.36419200897216797, 0.4836996793746948], "count": [178]}, "action": {"min": [-0.11360838264226913, -0.053674615919589996, 0.1377103328704834, 0.3824048936367035, 0.5016427040100098, 0.3445115089416504, 0.6950908899307251, 0.17799918353557587, -0.0980454683303833, 0.09009066224098206, -0.5163847804069519, -0.6058418154716492, -0.6022579669952393, -0.3251931965351105], "max": [-0.11360487341880798, -0.05367057025432587, 0.13771264255046844, 0.38256317377090454, 0.5017186403274536, 0.3447894752025604, 0.6952178478240967, 0.19042393565177917, -0.08498269319534302, 0.11312712728977203, 0.4289931058883667, 0.8367589712142944, 0.7719619274139404, 0.2609255611896515], "mean": [-0.11360738426446915, -0.05367195978760719, 0.13771158456802368, 0.38247737288475037, 0.5016791820526123, 0.3446638584136963, 0.6951514482498169, 0.184800922870636, -0.0926436334848404, 0.1017775908112526, -0.12156207859516144, 0.17612893879413605, 0.12130153179168701, -0.1038006991147995], "std": [1.0140169024452916e-06, 1.1475020755824517e-06, 7.619460689056723e-07, 4.821910988539457e-05, 2.2170610463945195e-05, 0.00010225375444861129, 3.7044846976641566e-05, 0.004618568811565638, 0.0032855153549462557, 0.007913785055279732, 0.36331048607826233, 0.6135206818580627, 0.6198538541793823, 0.18997780978679657], "count": [178]}, "timestamp": {"min": [0.0], "max": [5.9], "mean": [2.95], "std": [1.7127787688756277], "count": [178]}, "frame_index": {"min": [0], "max": [177], "mean": [88.5], "std": [51.383363066268835], "count": [178]}, "episode_index": {"min": [192], "max": [192], "mean": [192.0], "std": [0.0], "count": [178]}, "index": {"min": [103020], "max": [103197], "mean": [103108.5], "std": [51.383363066268835], "count": [178]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [178]}}} +{"episode_index": 193, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.742826748366013]], [[0.718447350217865]], [[0.6738730909586057]]], "std": [[[0.2161612789446616]], [[0.203551425433733]], [[0.2281430253154371]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.742826748366013]], [[0.718447350217865]], [[0.6738730909586057]]], "std": [[[0.2161612789446616]], [[0.203551425433733]], [[0.2281430253154371]]], "count": [100]}, "observation.state": {"min": [0.5348996520042419, 0.09932207316160202, 0.12373866140842438, 2.4703571796417236, -0.18432264029979706, -0.484749436378479, -0.10343056172132492, -0.29504701495170593, 0.13214120268821716, -2.6420931816101074, -1.0091972351074219, 0.4028697907924652], "max": [0.5349150896072388, 0.09934523701667786, 0.12374124675989151, 2.4703571796417236, -0.18432264029979706, -0.484749436378479, -0.029385000467300415, -0.14075453579425812, 0.1549740582704544, -1.5816912651062012, 0.12269958108663559, 1.383795142173767], "mean": [0.5349122285842896, 0.09933346509933472, 0.12374097853899002, 2.4703571796417236, -0.1843225061893463, -0.48474904894828796, -0.07273943722248077, -0.2116401642560959, 0.14394359290599823, -2.128915786743164, -0.5244333148002625, 0.9486070871353149], "std": [4.999330940336222e-06, 5.4437382459582295e-06, 6.826019784966775e-07, 0.0, 1.341104507446289e-07, 3.8743019104003906e-07, 0.024478837847709656, 0.04672233760356903, 0.008279229514300823, 0.42277273535728455, 0.4876355230808258, 0.45613810420036316], "count": [121]}, "action": {"min": [-0.11401382833719254, -0.055999696254730225, 0.13288520276546478, 0.4307943880558014, 0.32820579409599304, 0.44183099269866943, 0.715171754360199, 0.17820578813552856, -0.09226834028959274, 0.08540020883083344, -0.5172145962715149, -0.5723738670349121, -0.5869831442832947, -0.46516725420951843], "max": [-0.11401140689849854, -0.05599583685398102, 0.1328894942998886, 0.43080535531044006, 0.32821521162986755, 0.4418327212333679, 0.7151776552200317, 0.1969989687204361, -0.08077754080295563, 0.10981735587120056, 0.4805290102958679, 0.8360862135887146, 0.7584736943244934, 0.24649138748645782], "mean": [-0.11401206254959106, -0.05599769577383995, 0.13288769125938416, 0.4308006167411804, 0.32821139693260193, 0.4418323338031769, 0.7151728868484497, 0.18651418387889862, -0.08941301703453064, 0.10036361217498779, -0.13198399543762207, 0.19179005920886993, 0.11299442499876022, -0.160775825381279], "std": [7.671006301279704e-07, 7.977638460943126e-07, 8.747123274588375e-07, 2.5754407033673488e-06, 2.0781458260898944e-06, 6.812534252276237e-07, 1.5870127754169516e-06, 0.00663622934371233, 0.0024418735411018133, 0.008670036680996418, 0.3645257353782654, 0.6098640561103821, 0.5804637670516968, 0.25579044222831726], "count": [121]}, "timestamp": {"min": [0.0], "max": [4.0], "mean": [2.0], "std": [1.164283279771532], "count": [121]}, "frame_index": {"min": [0], "max": [120], "mean": [60.0], "std": [34.92849839314596], "count": [121]}, "episode_index": {"min": [193], "max": [193], "mean": [193.0], "std": [0.0], "count": [121]}, "index": {"min": [103198], "max": [103318], "mean": [103258.0], "std": [34.92849839314596], "count": [121]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [121]}}} +{"episode_index": 194, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7216515168845316]], [[0.7018207516339869]], [[0.6587563997821351]]], "std": [[[0.2409503477847705]], [[0.22531541615712355]], [[0.2483849447127651]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7216515168845316]], [[0.7018207516339869]], [[0.6587563997821351]]], "std": [[[0.2409503477847705]], [[0.22531541615712355]], [[0.2483849447127651]]], "count": [100]}, "observation.state": {"min": [0.5493643283843994, 0.09045636653900146, 0.13351008296012878, 2.541022777557373, 0.09947136789560318, -0.7319062352180481, -0.1367695927619934, -0.31391364336013794, 0.1266423463821411, -2.6861281394958496, -0.9690260887145996, 0.30957069993019104], "max": [0.5493797659873962, 0.09050270915031433, 0.13351008296012878, 2.5414421558380127, 0.09974464029073715, -0.7316833734512329, -0.03636635094881058, -0.13485436141490936, 0.15659701824188232, -1.4242141246795654, 0.32259878516197205, 1.4073084592819214], "mean": [0.5493701100349426, 0.09048106521368027, 0.133510023355484, 2.5411643981933594, 0.09953097254037857, -0.7317312955856323, -0.09827163815498352, -0.20100049674510956, 0.1424492448568344, -2.129645586013794, -0.34445878863334656, 0.9663824439048767], "std": [5.277027412375901e-06, 9.12254472495988e-06, 5.960464477539063e-08, 0.0001918451307574287, 7.133377948775887e-05, 5.819065700052306e-05, 0.031312245875597, 0.0459277369081974, 0.009317338466644287, 0.47947031259536743, 0.5011245012283325, 0.4775595963001251], "count": [151]}, "action": {"min": [-0.10796079784631729, -0.06239251792430878, 0.1386963576078415, 0.5925999879837036, 0.2636140286922455, 0.42918550968170166, 0.6283345818519592, 0.17492790520191193, -0.09286417067050934, 0.07931434363126755, -0.48990169167518616, -0.596800684928894, -0.6045469641685486, -0.5002334713935852], "max": [-0.10795757174491882, -0.062384817749261856, 0.1387004554271698, 0.5927543044090271, 0.2636941969394684, 0.42939645051956177, 0.6285350918769836, 0.1973225176334381, -0.08044314384460449, 0.11111266165971756, 0.42424431443214417, 0.8573324680328369, 0.7552109956741333, 0.24393923580646515], "mean": [-0.10795947909355164, -0.06238924711942673, 0.13869889080524445, 0.5926402807235718, 0.2636684775352478, 0.4292723834514618, 0.6284751892089844, 0.184138685464859, -0.0883927196264267, 0.09967542439699173, -0.11690858751535416, 0.2696292996406555, 0.07243259996175766, -0.21607299149036407], "std": [9.088408319257724e-07, 2.0319362192822155e-06, 8.283613510684518e-07, 3.889677464030683e-05, 2.0917736037517898e-05, 8.013829938136041e-05, 5.7886682043317705e-05, 0.0071528200060129166, 0.0027893732767552137, 0.009168840944766998, 0.3181968331336975, 0.6152822971343994, 0.5671423077583313, 0.24541065096855164], "count": [151]}, "timestamp": {"min": [0.0], "max": [5.0], "mean": [2.4999999999999996], "std": [1.4529663145135578], "count": [151]}, "frame_index": {"min": [0], "max": [150], "mean": [75.0], "std": [43.58898943540674], "count": [151]}, "episode_index": {"min": [194], "max": [194], "mean": [194.0], "std": [0.0], "count": [151]}, "index": {"min": [103319], "max": [103469], "mean": [103394.0], "std": [43.58898943540674], "count": [151]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [151]}}} +{"episode_index": 195, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7380416503267975]], [[0.713643052832244]], [[0.6674809967320261]]], "std": [[[0.2216540297998987]], [[0.2058080578329909]], [[0.23047208702107422]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7380416503267975]], [[0.713643052832244]], [[0.6674809967320261]]], "std": [[[0.2216540297998987]], [[0.2058080578329909]], [[0.23047208702107422]]], "count": [100]}, "observation.state": {"min": [0.5449623465538025, 0.11330021172761917, 0.12319421768188477, 2.593445301055908, -0.11163201928138733, -0.6068347096443176, -0.1213395819067955, -0.31936588883399963, 0.13118454813957214, -2.655303716659546, -1.0085140466690063, 0.31908899545669556], "max": [0.5449700951576233, 0.11330793797969818, 0.12319421768188477, 2.593864679336548, -0.11163201928138733, -0.6068347096443176, -0.04768788069486618, -0.15848591923713684, 0.16048328578472137, -1.4082776308059692, 0.36154016852378845, 1.4013391733169556], "mean": [0.5449678301811218, 0.11330186575651169, 0.12319396436214447, 2.5937767028808594, -0.11163214594125748, -0.6068344712257385, -0.09613428264856339, -0.21656891703605652, 0.1453510969877243, -2.0018551349639893, -0.40811020135879517, 0.8906630873680115], "std": [3.599724550440442e-06, 3.116492507615476e-06, 2.5331974029541016e-07, 0.00017161945288535208, 1.2665987014770508e-07, 2.384185791015625e-07, 0.021393675357103348, 0.05292998254299164, 0.010189447551965714, 0.48801207542419434, 0.550592303276062, 0.4940648376941681], "count": [137]}, "action": {"min": [-0.1133580207824707, -0.05381596460938454, 0.13278989493846893, 0.4846045672893524, 0.32698115706443787, 0.47454503178596497, 0.6579314470291138, 0.176747128367424, -0.09543929994106293, 0.08095703274011612, -0.5236376523971558, -0.5974082350730896, -0.5881586074829102, -0.49053987860679626], "max": [-0.11335652321577072, -0.053814344108104706, 0.13279125094413757, 0.4846245348453522, 0.3270018696784973, 0.47472381591796875, 0.658043384552002, 0.19526945054531097, -0.08684699237346649, 0.11481059342622757, 0.47018367052078247, 0.8628419041633606, 0.7544878721237183, 0.22134974598884583], "mean": [-0.1133570745587349, -0.05381539836525917, 0.13279041647911072, 0.48461106419563293, 0.3269871175289154, 0.47468456625938416, 0.6579563617706299, 0.18385325372219086, -0.09165330231189728, 0.10002382844686508, -0.18365219235420227, 0.1731543391942978, 0.16667653620243073, -0.1780756413936615], "std": [5.339281869964907e-07, 4.94558889840846e-07, 3.5276138987683225e-07, 6.461616521846736e-06, 6.81601795804454e-06, 7.274490781128407e-05, 4.454121153685264e-05, 0.006605088245123625, 0.0023820577189326286, 0.010941811837255955, 0.3180910646915436, 0.6351283192634583, 0.5661418437957764, 0.22740034759044647], "count": [137]}, "timestamp": {"min": [0.0], "max": [4.533333333333333], "mean": [2.2666666666666666], "std": [1.3182479955523458], "count": [137]}, "frame_index": {"min": [0], "max": [136], "mean": [68.0], "std": [39.54743986657038], "count": [137]}, "episode_index": {"min": [195], "max": [195], "mean": [195.0], "std": [0.0], "count": [137]}, "index": {"min": [103470], "max": [103606], "mean": [103538.0], "std": [39.54743986657038], "count": [137]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [137]}}} +{"episode_index": 196, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7451081699346405]], [[0.72135674291939]], [[0.6768417401960783]]], "std": [[[0.2109832179125646]], [[0.1983036613198453]], [[0.22329315260760768]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7451081699346405]], [[0.72135674291939]], [[0.6768417401960783]]], "std": [[[0.2109832179125646]], [[0.1983036613198453]], [[0.22329315260760768]]], "count": [100]}, "observation.state": {"min": [0.5126349925994873, 0.10231848806142807, 0.11960478872060776, 2.409966468811035, -0.33434951305389404, -0.4039870798587799, -0.14042244851589203, -0.31580573320388794, 0.1342826783657074, -2.4655344486236572, -0.9007077813148499, 0.3444546163082123], "max": [0.5126736164093018, 0.1023339331150055, 0.11960478872060776, 2.410385847091675, -0.33434951305389404, -0.403415322303772, -0.07829307019710541, -0.14985190331935883, 0.1536998152732849, -1.5087190866470337, 0.29540809988975525, 1.3749911785125732], "mean": [0.5126559138298035, 0.10232605785131454, 0.11960487812757492, 2.4099864959716797, -0.33434948325157166, -0.4036214351654053, -0.11670554429292679, -0.22667498886585236, 0.14277508854866028, -2.0166707038879395, -0.18266242742538452, 0.9977167248725891], "std": [6.216469955688808e-06, 7.311044555535773e-06, 8.940696716308594e-08, 8.193775283871219e-05, 2.9802322387695312e-08, 0.0001446957467123866, 0.01345472689718008, 0.05517131835222244, 0.006925687659531832, 0.3289388418197632, 0.5163626074790955, 0.4357522428035736], "count": [126]}, "action": {"min": [-0.11864732205867767, -0.053869787603616714, 0.13110220432281494, 0.3587090075016022, 0.3685137927532196, 0.43219664692878723, 0.7405247092247009, 0.17541496455669403, -0.09670699387788773, 0.0841173604130745, -0.46718356013298035, -0.5815672874450684, -0.6300954818725586, -0.39871910214424133], "max": [-0.11864182353019714, -0.05386685952544212, 0.131105437874794, 0.35892921686172485, 0.36864370107650757, 0.4324001967906952, 0.7407011985778809, 0.1895298957824707, -0.08569984883069992, 0.10954352468252182, 0.35257014632225037, 0.8828351497650146, 0.7645135521888733, 0.2353513538837433], "mean": [-0.1186443343758583, -0.053868118673563004, 0.13110391795635223, 0.35878872871398926, 0.368560254573822, 0.432271271944046, 0.7406582832336426, 0.18319205939769745, -0.09153035283088684, 0.09744472801685333, -0.1314629316329956, 0.3713671565055847, -0.007908839732408524, -0.1726510375738144], "std": [8.618124525128223e-07, 1.034657543641515e-06, 7.205285896816349e-07, 5.46103146916721e-05, 2.9229729989310727e-05, 3.585398371797055e-05, 3.668971112347208e-05, 0.005055387504398823, 0.0033196171279996634, 0.008906629867851734, 0.25405511260032654, 0.6276823282241821, 0.5665774345397949, 0.18813279271125793], "count": [126]}, "timestamp": {"min": [0.0], "max": [4.166666666666667], "mean": [2.0833333333333335], "std": [1.2123973801552888], "count": [126]}, "frame_index": {"min": [0], "max": [125], "mean": [62.5], "std": [36.37192140465866], "count": [126]}, "episode_index": {"min": [196], "max": [196], "mean": [196.0], "std": [0.0], "count": [126]}, "index": {"min": [103607], "max": [103732], "mean": [103669.5], "std": [36.37192140465866], "count": [126]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [126]}}} +{"episode_index": 197, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7316610294117647]], [[0.707613690087146]], [[0.6620602450980393]]], "std": [[[0.22397294755656935]], [[0.2102213807517869]], [[0.23516219959654738]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7316610294117647]], [[0.707613690087146]], [[0.6620602450980393]]], "std": [[[0.22397294755656935]], [[0.2102213807517869]], [[0.23516219959654738]]], "count": [100]}, "observation.state": {"min": [0.5449546575546265, 0.10785569250583649, 0.12590475380420685, 2.6498517990112305, -0.08881372213363647, -0.6808196902275085, -0.11799564212560654, -0.332548588514328, 0.13952487707138062, -2.3984336853027344, -0.9150546193122864, 0.33526772260665894], "max": [0.5449700951576233, 0.10787113010883331, 0.12590475380420685, 2.6498517990112305, -0.08881372213363647, -0.680656373500824, -0.057935938239097595, -0.1493035852909088, 0.15483924746513367, -1.4793626070022583, -0.31016483902931213, 1.3886785507202148], "mean": [0.5449581742286682, 0.1078619435429573, 0.12590476870536804, 2.6498494148254395, -0.08881377428770065, -0.6808122396469116, -0.09231185168027878, -0.22763563692569733, 0.14652346074581146, -1.9130715131759644, -0.6855388879776001, 0.8543481230735779], "std": [4.233706022205297e-06, 7.3569026426412165e-06, 1.4901161193847656e-08, 2.384185791015625e-06, 5.21540641784668e-08, 3.2428699341835454e-05, 0.02007904462516308, 0.05744291841983795, 0.0056086136028170586, 0.3584247827529907, 0.22434543073177338, 0.48381954431533813], "count": [146]}, "action": {"min": [-0.11201392859220505, -0.05572953075170517, 0.1345749944448471, 0.514651894569397, 0.3323875367641449, 0.4855482280254364, 0.6235462427139282, 0.1763075888156891, -0.09932336956262589, 0.08804671466350555, -0.4875934422016144, -0.6070662140846252, -0.6029691696166992, -0.2980039715766907], "max": [-0.11201154440641403, -0.05572646111249924, 0.13457725942134857, 0.5147048234939575, 0.33243709802627563, 0.48557642102241516, 0.6235923767089844, 0.1895025372505188, -0.08210830390453339, 0.11003486067056656, 0.4899844527244568, 0.8246555924415588, 0.7860674262046814, 0.1531328558921814], "mean": [-0.11201334744691849, -0.05572842061519623, 0.1345762461423874, 0.5146986842155457, 0.332428902387619, 0.4855507016181946, 0.623551607131958, 0.1824050396680832, -0.09225989133119583, 0.1006668284535408, -0.09446941316127777, 0.10828381031751633, 0.17454920709133148, -0.07935548573732376], "std": [6.254856543819187e-07, 1.135511865868466e-06, 6.435812451854872e-07, 1.0046647730632685e-05, 8.490960681228898e-06, 5.333904937288025e-06, 8.30578210297972e-06, 0.004846880212426186, 0.003346484387293458, 0.007131427992135286, 0.40053966641426086, 0.6163379549980164, 0.6132384538650513, 0.1619246006011963], "count": [146]}, "timestamp": {"min": [0.0], "max": [4.833333333333333], "mean": [2.4166666666666665], "std": [1.4048527008591012], "count": [146]}, "frame_index": {"min": [0], "max": [145], "mean": [72.5], "std": [42.14558102577303], "count": [146]}, "episode_index": {"min": [197], "max": [197], "mean": [197.0], "std": [0.0], "count": [146]}, "index": {"min": [103733], "max": [103878], "mean": [103805.5], "std": [42.14558102577303], "count": [146]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [146]}}} +{"episode_index": 198, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7373351116557734]], [[0.7164490550108932]], [[0.6731060593681917]]], "std": [[[0.22791424519573394]], [[0.21067984783710308]], [[0.23305947260910426]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7373351116557734]], [[0.7164490550108932]], [[0.6731060593681917]]], "std": [[[0.22791424519573394]], [[0.21067984783710308]], [[0.23305947260910426]]], "count": [100]}, "observation.state": {"min": [0.5458813905715942, 0.08006156980991364, 0.12808901071548462, 2.2956855297088623, -0.3512924313545227, -0.45894473791122437, -0.10626479983329773, -0.3086390197277069, 0.1323758363723755, -2.577089309692383, -0.9742182493209839, 0.26215729117393494], "max": [0.5459045171737671, 0.08007702231407166, 0.12809030711650848, 2.296104907989502, -0.3512924313545227, -0.4587813913822174, -0.037617430090904236, -0.14070047438144684, 0.15309055149555206, -1.4208590984344482, -0.011067559942603111, 1.3914189338684082], "mean": [0.5458933115005493, 0.08007541298866272, 0.1280890852212906, 2.2957546710968018, -0.3512919545173645, -0.45885834097862244, -0.07051987946033478, -0.21382752060890198, 0.14144907891750336, -2.0612988471984863, -0.49289843440055847, 0.902857780456543], "std": [4.75016577183851e-06, 4.141858880757354e-06, 3.061011000227154e-07, 0.00015489180805161595, 4.76837158203125e-07, 8.149482164299116e-05, 0.021804094314575195, 0.055031049996614456, 0.006700008176267147, 0.4426809549331665, 0.37529388070106506, 0.5148496031761169], "count": [135]}, "action": {"min": [-0.10915715247392654, -0.05882207676768303, 0.13350458443164825, 0.3916638493537903, 0.4061912000179291, 0.3695596754550934, 0.7381154894828796, 0.17828404903411865, -0.09326718002557755, 0.08479499071836472, -0.49979764223098755, -0.5872533917427063, -0.5643276572227478, -0.4187428951263428], "max": [-0.10915299504995346, -0.05881856754422188, 0.13350795209407806, 0.39174190163612366, 0.4062572419643402, 0.3697870671749115, 0.7382240891456604, 0.19472165405750275, -0.07899937033653259, 0.10894215852022171, 0.4679054915904999, 0.8335128426551819, 0.7945218086242676, 0.2522956132888794], "mean": [-0.10915552824735641, -0.05881959944963455, 0.13350670039653778, 0.3917045295238495, 0.4062339961528778, 0.3696092963218689, 0.7381941080093384, 0.18710042536258698, -0.08842245489358902, 0.09864442050457001, -0.09970280528068542, 0.20182429254055023, 0.1305360347032547, -0.15088357031345367], "std": [8.399579769502452e-07, 7.00134819453524e-07, 5.879587661183905e-07, 3.1399758881889284e-05, 2.126392791979015e-05, 7.741879380773753e-05, 2.7320098524796776e-05, 0.0056177475489676, 0.0037421041633933783, 0.007941140793263912, 0.33827319741249084, 0.6112245917320251, 0.6052200794219971, 0.23495787382125854], "count": [135]}, "timestamp": {"min": [0.0], "max": [4.466666666666667], "mean": [2.233333333333334], "std": [1.2990024662822652], "count": [135]}, "frame_index": {"min": [0], "max": [134], "mean": [67.0], "std": [38.97007398846795], "count": [135]}, "episode_index": {"min": [198], "max": [198], "mean": [198.0], "std": [0.0], "count": [135]}, "index": {"min": [103879], "max": [104013], "mean": [103946.0], "std": [38.97007398846795], "count": [135]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [135]}}} +{"episode_index": 199, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7229914133986928]], [[0.7058039242919389]], [[0.6628599891067538]]], "std": [[[0.2300098883519011]], [[0.21301000517202842]], [[0.237577892104079]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7229914133986928]], [[0.7058039242919389]], [[0.6628599891067538]]], "std": [[[0.2300098883519011]], [[0.21301000517202842]], [[0.237577892104079]]], "count": [100]}, "observation.state": {"min": [0.5067039728164673, 0.07878731936216354, 0.12344309687614441, 2.342656135559082, -0.4633343815803528, -0.45628517866134644, -0.13923315703868866, -0.32907336950302124, 0.13518749177455902, -2.592816114425659, -1.0210845470428467, 0.22418749332427979], "max": [0.5067348480224609, 0.07880277186632156, 0.12344309687614441, 2.3430755138397217, -0.4633343815803528, -0.45628517866134644, -0.06438442319631577, -0.1532035768032074, 0.16132070124149323, -1.3921315670013428, 0.4943508505821228, 1.4049742221832275], "mean": [0.5067229866981506, 0.0788009837269783, 0.12344302982091904, 2.3429129123687744, -0.46333378553390503, -0.45628437399864197, -0.11917753517627716, -0.22251030802726746, 0.14931245148181915, -1.966827392578125, -0.3893771171569824, 0.8145175576210022], "std": [5.2924174269719515e-06, 4.753124812850729e-06, 6.705522537231445e-08, 0.0002038519742200151, 5.960464477539062e-07, 8.046627044677734e-07, 0.018559809774160385, 0.049862734973430634, 0.008913068100810051, 0.4789423644542694, 0.5791739225387573, 0.5284960269927979], "count": [163]}, "action": {"min": [-0.11687088012695312, -0.05806508660316467, 0.13247883319854736, 0.3571071922779083, 0.4317510724067688, 0.3915822505950928, 0.7297713160514832, 0.17278441786766052, -0.0980047881603241, 0.08198662102222443, -0.5011023879051208, -0.6093494296073914, -0.6021576523780823, -0.4585741460323334], "max": [-0.11686632037162781, -0.0580616295337677, 0.1324826329946518, 0.357143759727478, 0.43179696798324585, 0.3917757570743561, 0.7298480272293091, 0.1906687468290329, -0.08195184916257858, 0.11378105729818344, 0.4144311845302582, 0.8741674423217773, 0.7637448310852051, 0.25898313522338867], "mean": [-0.11686886847019196, -0.058062367141246796, 0.13248126208782196, 0.3571200370788574, 0.43177202343940735, 0.3917006850242615, 0.7298011779785156, 0.18049246072769165, -0.09498123824596405, 0.1017504632472992, -0.214498370885849, 0.16154325008392334, 0.20738418400287628, -0.15220557153224945], "std": [7.981146836755215e-07, 9.087958687814535e-07, 6.317651468634722e-07, 1.3851324183633551e-05, 1.7242446119780652e-05, 9.379840776091442e-05, 3.357899186084978e-05, 0.006084844004362822, 0.003088980447500944, 0.00974829588085413, 0.3009980320930481, 0.62828528881073, 0.5663264989852905, 0.23590566217899323], "count": [163]}, "timestamp": {"min": [0.0], "max": [5.4], "mean": [2.6999999999999993], "std": [1.5684387141358123], "count": [163]}, "frame_index": {"min": [0], "max": [162], "mean": [81.0], "std": [47.05316142407437], "count": [163]}, "episode_index": {"min": [199], "max": [199], "mean": [199.0], "std": [0.0], "count": [163]}, "index": {"min": [104014], "max": [104176], "mean": [104095.0], "std": [47.05316142407437], "count": [163]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [163]}}} +{"episode_index": 200, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7315240904139434]], [[0.7104675381263617]], [[0.666136309912854]]], "std": [[[0.22120135459852916]], [[0.20628827423303728]], [[0.2307097551635517]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7315240904139434]], [[0.7104675381263617]], [[0.666136309912854]]], "std": [[[0.22120135459852916]], [[0.20628827423303728]], [[0.2307097551635517]]], "count": [100]}, "observation.state": {"min": [0.4813193380832672, 0.11364001035690308, 0.1212821900844574, 1.6425013542175293, -0.5502351522445679, -0.23786884546279907, -0.13700899481773376, -0.3006923198699951, 0.13545970618724823, -2.378093719482422, -0.9512633085250854, 0.259332537651062], "max": [0.4846169352531433, 0.11614218354225159, 0.12144941091537476, 1.6909396648406982, -0.5435400009155273, -0.21599948406219482, -0.06855469942092896, -0.1393180936574936, 0.15869052708148956, -1.2950451374053955, -0.0573873296380043, 1.3935818672180176], "mean": [0.48331326246261597, 0.11472856253385544, 0.12137594819068909, 1.6577186584472656, -0.5458468198776245, -0.22422410547733307, -0.1066247969865799, -0.21716511249542236, 0.14660383760929108, -1.8231382369995117, -0.5926018953323364, 0.8027169704437256], "std": [0.0013873366406187415, 0.0010537977796047926, 7.367641956079751e-05, 0.018692754209041595, 0.0021179565228521824, 0.007570164278149605, 0.022098375484347343, 0.05351744592189789, 0.00852210819721222, 0.4526697099208832, 0.32633477449417114, 0.5120423436164856], "count": [133]}, "action": {"min": [-0.12032909691333771, -0.05472962185740471, 0.1327553540468216, 0.2580854594707489, 0.47833505272865295, 0.10857432335615158, 0.8267759680747986, 0.1735931932926178, -0.09531902521848679, 0.08765623718500137, -0.5076783299446106, -0.6090897917747498, -0.6061573624610901, -0.33876895904541016], "max": [-0.11974182724952698, -0.05426965653896332, 0.13309824466705322, 0.2669495642185211, 0.4837014973163605, 0.12780272960662842, 0.8294481039047241, 0.19032078981399536, -0.08152752369642258, 0.1127844825387001, 0.46083584427833557, 0.8324833512306213, 0.7691582441329956, 0.11752961575984955], "mean": [-0.11997918784618378, -0.054525312036275864, 0.132883220911026, 0.262114942073822, 0.4813683331012726, 0.11462974548339844, 0.8284788727760315, 0.18100091814994812, -0.09209825098514557, 0.10101578384637833, -0.14669640362262726, 0.10216832160949707, 0.19926108419895172, -0.1269814819097519], "std": [0.00024660135386511683, 0.00019366356718819588, 0.00013563327956944704, 0.0025470126420259476, 0.0015584053471684456, 0.007299364544451237, 0.0010371063835918903, 0.00610067043453455, 0.0028649591840803623, 0.008621584624052048, 0.36835774779319763, 0.6249419450759888, 0.6020679473876953, 0.15325455367565155], "count": [133]}, "timestamp": {"min": [0.0], "max": [4.4], "mean": [2.2], "std": [1.2797569213634978], "count": [133]}, "frame_index": {"min": [0], "max": [132], "mean": [66.0], "std": [38.39270764090493], "count": [133]}, "episode_index": {"min": [200], "max": [200], "mean": [200.0], "std": [0.0], "count": [133]}, "index": {"min": [104177], "max": [104309], "mean": [104243.0], "std": [38.39270764090493], "count": [133]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [133]}}} +{"episode_index": 201, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7315496160130719]], [[0.7134194117647059]], [[0.6696447167755991]]], "std": [[[0.22324287200124066]], [[0.20668942898537312]], [[0.23107011821772583]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7315496160130719]], [[0.7134194117647059]], [[0.6696447167755991]]], "std": [[[0.22324287200124066]], [[0.20668942898537312]], [[0.23107011821772583]]], "count": [100]}, "observation.state": {"min": [0.5274008512496948, 0.09394705295562744, 0.12344440072774887, 2.2849912643432617, -0.26794418692588806, -0.39965420961380005, -0.14405213296413422, -0.27766314148902893, 0.13191436231136322, -2.2216649055480957, -0.7823805809020996, 0.3788136839866638], "max": [0.5274240374565125, 0.09395477175712585, 0.12344440072774887, 2.2854106426239014, -0.26794418692588806, -0.3994908332824707, -0.1095469668507576, -0.14131057262420654, 0.1524709314107895, -1.4290369749069214, 0.21192321181297302, 1.371270775794983], "mean": [0.5274115204811096, 0.09394900500774384, 0.12344437837600708, 2.285350799560547, -0.2679443061351776, -0.39954835176467896, -0.12803496420383453, -0.19604359567165375, 0.14404098689556122, -1.7344270944595337, -0.42079025506973267, 0.7863491177558899], "std": [4.089614321856061e-06, 3.2980724427034147e-06, 2.2351741790771484e-08, 0.0001455230958526954, 1.1920928955078125e-07, 7.809498492861167e-05, 0.006916793994605541, 0.042754802852869034, 0.007672409061342478, 0.31880447268486023, 0.4119179844856262, 0.4322796165943146], "count": [150]}, "action": {"min": [-0.11461258679628372, -0.05653224140405655, 0.1324680894613266, 0.3828011751174927, 0.35499662160873413, 0.37466511130332947, 0.7660704851150513, 0.17497582733631134, -0.09141673892736435, 0.08602313697338104, -0.4398152232170105, -0.6348857879638672, -0.6422979831695557, -0.27112460136413574], "max": [-0.11460920423269272, -0.056530218571424484, 0.13247038424015045, 0.3828689754009247, 0.3550359904766083, 0.3748583197593689, 0.766183078289032, 0.18708965182304382, -0.08433178812265396, 0.10926806181669235, 0.3684445917606354, 0.8795110583305359, 0.7777909636497498, 0.15797820687294006], "mean": [-0.11461097747087479, -0.0565313957631588, 0.13246910274028778, 0.38282760977745056, 0.35501593351364136, 0.37482044100761414, 0.7661051154136658, 0.17956911027431488, -0.08890418708324432, 0.100811667740345, -0.21361137926578522, 0.03497586026787758, 0.2649848759174347, -0.09143229573965073], "std": [6.078778937990137e-07, 5.662958528773743e-07, 4.090217089469661e-07, 2.9340360924834386e-05, 1.585362224432174e-05, 6.404375017154962e-05, 3.4290264011360705e-05, 0.004251678939908743, 0.0015769241144880652, 0.008233941160142422, 0.26290470361709595, 0.6549772024154663, 0.6019748449325562, 0.1186690703034401], "count": [150]}, "timestamp": {"min": [0.0], "max": [4.966666666666667], "mean": [2.483333333333333], "std": [1.4433435976027125], "count": [150]}, "frame_index": {"min": [0], "max": [149], "mean": [74.5], "std": [43.300307928081374], "count": [150]}, "episode_index": {"min": [201], "max": [201], "mean": [201.0], "std": [0.0], "count": [150]}, "index": {"min": [104310], "max": [104459], "mean": [104384.5], "std": [43.300307928081374], "count": [150]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [150]}}} +{"episode_index": 202, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7445188562091503]], [[0.722724447167756]], [[0.678214008714597]]], "std": [[[0.21537910166586724]], [[0.2001347997407828]], [[0.2243835728409422]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7445188562091503]], [[0.722724447167756]], [[0.678214008714597]]], "std": [[[0.21537910166586724]], [[0.2001347997407828]], [[0.2243835728409422]]], "count": [100]}, "observation.state": {"min": [0.528899073600769, 0.1010596826672554, 0.12292587757110596, 2.4082889556884766, -0.2561934292316437, -0.6017529368400574, -0.10869746655225754, -0.2579547166824341, 0.13350102305412292, -2.424225330352783, -0.992937445640564, 0.3704873323440552], "max": [0.5289145112037659, 0.10106740891933441, 0.12292587757110596, 2.408708333969116, -0.2561934292316437, -0.601589560508728, -0.061218101531267166, -0.12741737067699432, 0.15643368661403656, -1.3424350023269653, -0.052878331393003464, 1.4009184837341309], "mean": [0.5289113521575928, 0.10106220841407776, 0.12292589247226715, 2.408363103866577, -0.2561935484409332, -0.6016471982002258, -0.08868681639432907, -0.1843394786119461, 0.1447834074497223, -1.8328005075454712, -0.6162307262420654, 0.8893428444862366], "std": [4.20660126110306e-06, 3.5720356663659913e-06, 1.4901161193847656e-08, 0.00015675686881877482, 1.1920928955078125e-07, 7.729896606178954e-05, 0.014901900663971901, 0.04535115510225296, 0.00847592856734991, 0.44345739483833313, 0.3621285855770111, 0.43719834089279175], "count": [149]}, "action": {"min": [-0.11495443433523178, -0.0551675446331501, 0.13264240324497223, 0.453471839427948, 0.3836594223976135, 0.39390891790390015, 0.7012647986412048, 0.1773739755153656, -0.09074553847312927, 0.09022069722414017, -0.5289437770843506, -0.606866717338562, -0.6010298132896423, -0.3542473316192627], "max": [-0.11495216190814972, -0.05516564100980759, 0.13264408707618713, 0.45355141162872314, 0.3837124705314636, 0.39413049817085266, 0.7013929486274719, 0.1909952312707901, -0.08201445639133453, 0.1132088229060173, 0.4607032239437103, 0.8237544894218445, 0.7212454676628113, 0.10001513361930847], "mean": [-0.11495271325111389, -0.05516696721315384, 0.13264288008213043, 0.45351025462150574, 0.3836861848831177, 0.3939613103866577, 0.7013616561889648, 0.1834161877632141, -0.0876428484916687, 0.10272741317749023, -0.159232035279274, 0.07475746423006058, 0.17643848061561584, -0.14489975571632385], "std": [6.482795242845896e-07, 6.098529752307513e-07, 4.43448499254373e-07, 2.707672683754936e-05, 1.5629031622665934e-05, 7.032902794890106e-05, 3.8710659282514825e-05, 0.00532327126711607, 0.002296414924785495, 0.008063261397182941, 0.37152165174484253, 0.6429067254066467, 0.5885008573532104, 0.13870608806610107], "count": [149]}, "timestamp": {"min": [0.0], "max": [4.933333333333334], "mean": [2.4666666666666663], "std": [1.4337208778404378], "count": [149]}, "frame_index": {"min": [0], "max": [148], "mean": [74.0], "std": [43.01162633521314], "count": [149]}, "episode_index": {"min": [202], "max": [202], "mean": [202.0], "std": [0.0], "count": [149]}, "index": {"min": [104460], "max": [104608], "mean": [104534.0], "std": [43.01162633521314], "count": [149]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [149]}}} +{"episode_index": 203, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7355433986928105]], [[0.7124269662309368]], [[0.666755787037037]]], "std": [[[0.22641042225250604]], [[0.2109162031089228]], [[0.23511770150464548]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7355433986928105]], [[0.7124269662309368]], [[0.666755787037037]]], "std": [[[0.22641042225250604]], [[0.2109162031089228]], [[0.23511770150464548]]], "count": [100]}, "observation.state": {"min": [0.5634505748748779, 0.09159161150455475, 0.12479124963283539, 2.3881587982177734, -0.1616409868001938, -0.5027547478675842, -0.10155393928289413, -0.30232954025268555, 0.13376156985759735, -2.3648831844329834, -0.872287392616272, 0.5437366366386414], "max": [0.5634815096855164, 0.09160705655813217, 0.12479124963283539, 2.388578176498413, -0.1616409868001938, -0.5027547478675842, -0.05500902980566025, -0.12270650267601013, 0.15349887311458588, -1.566803216934204, -0.05137531831860542, 1.3916709423065186], "mean": [0.563468337059021, 0.09159432351589203, 0.12479129433631897, 2.388211727142334, -0.16164076328277588, -0.5027543902397156, -0.08551982045173645, -0.20338258147239685, 0.14503119885921478, -1.933120846748352, -0.5627073645591736, 0.9734077453613281], "std": [7.01428325555753e-06, 5.1880629143852275e-06, 4.470348358154297e-08, 0.00014040552196092904, 2.2351741790771484e-07, 3.5762786865234375e-07, 0.014355448074638844, 0.0588049590587616, 0.006844480987638235, 0.31316903233528137, 0.32083335518836975, 0.382464736700058], "count": [149]}, "action": {"min": [-0.10933350771665573, -0.05651247501373291, 0.13091705739498138, 0.45077139139175415, 0.3379405438899994, 0.40092405676841736, 0.7222894430160522, 0.17885205149650574, -0.09545118361711502, 0.08626559376716614, -0.45802947878837585, -0.6209906339645386, -0.618196964263916, -0.31212782859802246], "max": [-0.10932913422584534, -0.05650941655039787, 0.13091948628425598, 0.4507794976234436, 0.33797502517700195, 0.4011116325855255, 0.722387433052063, 0.19192445278167725, -0.08142704516649246, 0.11151198297739029, 0.457415372133255, 0.8505246639251709, 0.7346625924110413, 0.10648418962955475], "mean": [-0.10933100432157516, -0.056511640548706055, 0.13091780245304108, 0.45077744126319885, 0.3379654288291931, 0.4009489417076111, 0.7223706245422363, 0.18413886427879333, -0.08933036029338837, 0.10203511267900467, -0.09720791131258011, 0.1377255618572235, 0.11769266426563263, -0.10914913564920425], "std": [1.0104535022037453e-06, 7.961286883073626e-07, 7.068768468343478e-07, 2.468291540935752e-06, 8.561519280192442e-06, 6.263676914386451e-05, 3.070654929615557e-05, 0.004927896428853273, 0.003110468154773116, 0.008735247887670994, 0.35813483595848083, 0.6587633490562439, 0.6006841659545898, 0.15088458359241486], "count": [149]}, "timestamp": {"min": [0.0], "max": [4.933333333333334], "mean": [2.4666666666666663], "std": [1.4337208778404378], "count": [149]}, "frame_index": {"min": [0], "max": [148], "mean": [74.0], "std": [43.01162633521314], "count": [149]}, "episode_index": {"min": [203], "max": [203], "mean": [203.0], "std": [0.0], "count": [149]}, "index": {"min": [104609], "max": [104757], "mean": [104683.0], "std": [43.01162633521314], "count": [149]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [149]}}} +{"episode_index": 204, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7251223120915034]], [[0.7085287309368192]], [[0.6650791312636165]]], "std": [[[0.23106343389530903]], [[0.21178631338607043]], [[0.235024351917668]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7251223120915034]], [[0.7085287309368192]], [[0.6650791312636165]]], "std": [[[0.23106343389530903]], [[0.21178631338607043]], [[0.235024351917668]]], "count": [100]}, "observation.state": {"min": [0.5363283753395081, 0.08211582154035568, 0.1230529174208641, 2.266538619995117, -0.4614214599132538, -0.5954737067222595, -0.14864715933799744, -0.25834858417510986, 0.13203231990337372, -2.5640885829925537, -0.8933294415473938, 0.5226492285728455], "max": [0.5363515019416809, 0.08213125914335251, 0.1230529174208641, 2.266538619995117, -0.4614214599132538, -0.5953103303909302, -0.09714426100254059, -0.14867033064365387, 0.15546147525310516, -1.5103967189788818, 0.5214048624038696, 1.3951029777526855], "mean": [0.536339521408081, 0.08213101327419281, 0.12305274605751038, 2.266540288925171, -0.4614211916923523, -0.5954213738441467, -0.12238042801618576, -0.19625630974769592, 0.14544112980365753, -1.9570566415786743, -0.33557334542274475, 0.9369032382965088], "std": [4.7981170610000845e-06, 1.7693587324174587e-06, 1.7136335372924805e-07, 1.6689300537109375e-06, 2.682209014892578e-07, 7.609127351315692e-05, 0.01044551469385624, 0.031222853809595108, 0.008666369132697582, 0.4413692057132721, 0.6018005609512329, 0.3992849290370941], "count": [166]}, "action": {"min": [-0.11269345879554749, -0.05632984638214111, 0.13003817200660706, 0.41232535243034363, 0.47365298867225647, 0.3250059485435486, 0.7070578932762146, 0.17481480538845062, -0.0928424671292305, 0.08557704091072083, -0.4750344157218933, -0.6205117106437683, -0.6150696277618408, -0.46427279710769653], "max": [-0.11269012838602066, -0.05632684752345085, 0.1300404816865921, 0.4123900532722473, 0.4736858606338501, 0.325044721364975, 0.7070972919464111, 0.18922798335552216, -0.08507794141769409, 0.1099335178732872, 0.4480544626712799, 0.8572435975074768, 0.7193900942802429, 0.14670422673225403], "mean": [-0.11269193887710571, -0.056327469646930695, 0.13003957271575928, 0.412365198135376, 0.4736720621585846, 0.3250180184841156, 0.7070730924606323, 0.1806655377149582, -0.09003016352653503, 0.10120531171560287, -0.22057227790355682, 0.10467355698347092, 0.19770804047584534, -0.17705978453159332], "std": [6.73629642733431e-07, 3.2312115649801854e-07, 3.9718847233416454e-07, 2.7052141376771033e-05, 1.3079051313980017e-05, 1.8028711565420963e-05, 1.6216195945162326e-05, 0.005611887201666832, 0.001990394899621606, 0.008465546183288097, 0.2824983298778534, 0.6722255945205688, 0.5441558361053467, 0.20531541109085083], "count": [166]}, "timestamp": {"min": [0.0], "max": [5.5], "mean": [2.749999999999999], "std": [1.597306761047761], "count": [166]}, "frame_index": {"min": [0], "max": [165], "mean": [82.5], "std": [47.91920283143283], "count": [166]}, "episode_index": {"min": [204], "max": [204], "mean": [204.0], "std": [0.0], "count": [166]}, "index": {"min": [104758], "max": [104923], "mean": [104840.5], "std": [47.91920283143283], "count": [166]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [166]}}} +{"episode_index": 205, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7305823665577342]], [[0.7089072875816993]], [[0.6630864188453159]]], "std": [[[0.22959493429567043]], [[0.21058745976007426]], [[0.23353640795053507]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7305823665577342]], [[0.7089072875816993]], [[0.6630864188453159]]], "std": [[[0.22959493429567043]], [[0.21058745976007426]], [[0.23353640795053507]]], "count": [100]}, "observation.state": {"min": [0.520921528339386, 0.11558613926172256, 0.1293489933013916, 1.607483148574829, -0.7546433806419373, -0.4372328519821167, -0.13883928954601288, -0.2049458920955658, 0.12974047660827637, -2.559056043624878, -0.7980937957763672, 0.6696619391441345], "max": [0.5209524035453796, 0.115609310567379, 0.12935158610343933, 1.6079025268554688, -0.7546433806419373, -0.4369061291217804, -0.04768788069486618, -0.13405120372772217, 0.15312036871910095, -1.792849063873291, 0.44789445400238037, 1.3974635601043701], "mean": [0.5209370255470276, 0.11559039354324341, 0.12935055792331696, 1.607534646987915, -0.754643976688385, -0.4370826780796051, -0.10125050693750381, -0.168376162648201, 0.14170901477336884, -2.1476330757141113, -0.28987234830856323, 1.042648434638977], "std": [1.1136108696518932e-05, 5.679634341504425e-06, 1.2502297295213793e-06, 0.0001377764856442809, 5.960464477539062e-07, 0.00014883057156112045, 0.020948002114892006, 0.021255478262901306, 0.009151623584330082, 0.31560561060905457, 0.5277144908905029, 0.321687251329422], "count": [130]}, "action": {"min": [-0.10998453944921494, -0.05488744378089905, 0.13500060141086578, 0.31743964552879333, 0.5941200256347656, 0.03713422641158104, 0.7380875945091248, 0.17887195944786072, -0.08840741962194443, 0.08912306278944016, -0.43425124883651733, -0.6238564252853394, -0.6158751845359802, -0.45094388723373413], "max": [-0.10997992753982544, -0.05488348379731178, 0.13500617444515228, 0.31756824254989624, 0.594138503074646, 0.03739288076758385, 0.7381492853164673, 0.19035650789737701, -0.08104389905929565, 0.11231807619333267, 0.4028528332710266, 0.8354564309120178, 0.7329557538032532, 0.18441681563854218], "mean": [-0.10998258739709854, -0.054885465651750565, 0.13500356674194336, 0.31750571727752686, 0.5941296219825745, 0.037205975502729416, 0.7381167411804199, 0.184199720621109, -0.08456088602542877, 0.10222314298152924, -0.16533604264259338, 0.11680928617715836, 0.1682775616645813, -0.14426808059215546], "std": [1.3307967492437456e-06, 7.858187132114836e-07, 2.0120337467233185e-06, 5.2045750635443255e-05, 4.044823981530499e-06, 6.753588968422264e-05, 2.2112652004580013e-05, 0.00416569784283638, 0.0022062715142965317, 0.008774527348577976, 0.2677665650844574, 0.6781238317489624, 0.5570353865623474, 0.26086339354515076], "count": [130]}, "timestamp": {"min": [0.0], "max": [4.3], "mean": [2.15], "std": [1.2508885730640529], "count": [130]}, "frame_index": {"min": [0], "max": [129], "mean": [64.5], "std": [37.526657191921586], "count": [130]}, "episode_index": {"min": [205], "max": [205], "mean": [205.0], "std": [0.0], "count": [130]}, "index": {"min": [104924], "max": [105053], "mean": [104988.5], "std": [37.526657191921586], "count": [130]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [130]}}} +{"episode_index": 206, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7321125925925925]], [[0.7094467674291939]], [[0.6637996514161221]]], "std": [[[0.22898137562719784]], [[0.21379140987567175]], [[0.23767407790862796]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7321125925925925]], [[0.7094467674291939]], [[0.6637996514161221]]], "std": [[[0.22898137562719784]], [[0.21379140987567175]], [[0.23767407790862796]]], "count": [100]}, "observation.state": {"min": [0.5621840357780457, 0.10008662194013596, 0.12500901520252228, 2.485454797744751, -0.04700295999646187, -0.6310295462608337, -0.1537364423274994, -0.25024744868278503, 0.1291169673204422, -2.4068212509155273, -0.657494843006134, 0.7033688426017761], "max": [0.5622072219848633, 0.10010205954313278, 0.12500901520252228, 2.4858741760253906, -0.046866320073604584, -0.6308141946792603, -0.09680446237325668, -0.15963661670684814, 0.15130814909934998, -1.9293571710586548, 0.30688557028770447, 1.369388222694397], "mean": [0.5621999502182007, 0.10008789598941803, 0.12500891089439392, 2.4857053756713867, -0.046881359070539474, -0.6308687925338745, -0.12545736134052277, -0.1870782971382141, 0.14208179712295532, -2.0927586555480957, -0.24568162858486176, 0.977563202381134], "std": [7.253204330481822e-06, 3.5409300380706554e-06, 1.043081283569336e-07, 0.00019926879031118006, 4.268327757017687e-05, 7.737790292594582e-05, 0.018820956349372864, 0.028244754299521446, 0.008477919735014439, 0.16232334077358246, 0.39239203929901123, 0.28088876605033875], "count": [146]}, "action": {"min": [-0.11000673472881317, -0.05623862147331238, 0.1319100707769394, 0.5206605792045593, 0.31280195713043213, 0.4216899871826172, 0.6730247735977173, 0.17501336336135864, -0.08958921581506729, 0.08625306934118271, -0.3687368929386139, -0.6396018266677856, -0.644370436668396, -0.36439698934555054], "max": [-0.11000274866819382, -0.056235212832689285, 0.1319124847650528, 0.5207414031028748, 0.3129242956638336, 0.42190563678741455, 0.6731903553009033, 0.19059504568576813, -0.08013539016246796, 0.11002590507268906, 0.29965344071388245, 0.8654554486274719, 0.7288585305213928, 0.2708211839199066], "mean": [-0.11000437289476395, -0.0562376044690609, 0.13191086053848267, 0.5206958055496216, 0.3128302991390228, 0.4218234419822693, 0.6731103658676147, 0.18136553466320038, -0.0864659920334816, 0.10134094208478928, -0.1613418459892273, 0.044337738305330276, 0.1949024349451065, -0.045136816799640656], "std": [1.0704833357522148e-06, 7.40014456823701e-07, 5.956355266789615e-07, 2.5802781237871386e-05, 2.8729353289236315e-05, 8.688978414284065e-05, 5.404956027632579e-05, 0.005726247560232878, 0.0026495838537812233, 0.008431847207248211, 0.2136085331439972, 0.6912162899971008, 0.5906476378440857, 0.24434694647789001], "count": [146]}, "timestamp": {"min": [0.0], "max": [4.833333333333333], "mean": [2.4166666666666665], "std": [1.4048527008591012], "count": [146]}, "frame_index": {"min": [0], "max": [145], "mean": [72.5], "std": [42.14558102577303], "count": [146]}, "episode_index": {"min": [206], "max": [206], "mean": [206.0], "std": [0.0], "count": [146]}, "index": {"min": [105054], "max": [105199], "mean": [105126.5], "std": [42.14558102577303], "count": [146]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [146]}}} +{"episode_index": 207, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7469894090413943]], [[0.7216186628540305]], [[0.6760298011982572]]], "std": [[[0.21568742723070358]], [[0.20306292924502023]], [[0.2266152334287479]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7469894090413943]], [[0.7216186628540305]], [[0.6760298011982572]]], "std": [[[0.21568742723070358]], [[0.20306292924502023]], [[0.2266152334287479]]], "count": [100]}, "observation.state": {"min": [0.5767413973808289, 0.12174887955188751, 0.11668036133050919, 2.508101463317871, -0.06353597342967987, -0.4793475270271301, -0.12926310300827026, -0.29148682951927185, 0.12333551049232483, -2.4275805950164795, -0.8918264508247375, 0.6664180159568787], "max": [0.5767645835876465, 0.12177976965904236, 0.11668036133050919, 2.508101463317871, -0.06353597342967987, -0.4790208041667938, -0.08426274359226227, -0.1164897009730339, 0.1539836972951889, -1.6498404741287231, 0.332983136177063, 1.3942142724990845], "mean": [0.5767524838447571, 0.1217576339840889, 0.11668020486831665, 2.5080974102020264, -0.06353598833084106, -0.4791524410247803, -0.11028987914323807, -0.19005846977233887, 0.1422223597764969, -1.9918783903121948, -0.41919559240341187, 1.0214529037475586], "std": [4.067250301886816e-06, 9.886647603707388e-06, 1.564621925354004e-07, 4.0531158447265625e-06, 1.4901161193847656e-08, 0.0001245973980985582, 0.012270939536392689, 0.04951436445116997, 0.010087692178785801, 0.3004223108291626, 0.4861290752887726, 0.33169025182724], "count": [153]}, "action": {"min": [-0.11262164264917374, -0.04951653257012367, 0.12578503787517548, 0.45635777711868286, 0.2962336540222168, 0.45652735233306885, 0.7038479447364807, 0.17632469534873962, -0.08907182514667511, 0.07801682502031326, -0.4748115539550781, -0.6197956800460815, -0.6030110120773315, -0.36345094442367554], "max": [-0.11261854320764542, -0.04951200261712074, 0.1257876455783844, 0.45648691058158875, 0.29631471633911133, 0.45657914876937866, 0.7039282321929932, 0.18943357467651367, -0.08008632808923721, 0.11196329444646835, 0.4310319721698761, 0.873238205909729, 0.7121925354003906, 0.15116293728351593], "mean": [-0.1126200258731842, -0.04951513558626175, 0.1257859617471695, 0.4564140737056732, 0.2962671220302582, 0.45655718445777893, 0.7038947939872742, 0.18223406374454498, -0.08637537062168121, 0.10061316192150116, -0.17784617841243744, 0.10464975237846375, 0.15907937288284302, -0.12305742502212524], "std": [5.375052865019825e-07, 1.5023875903352746e-06, 6.478867362602614e-07, 4.573565092869103e-05, 2.7627023882814683e-05, 1.8903170712292194e-05, 2.8906413717777468e-05, 0.004771399311721325, 0.0021858299151062965, 0.011021981947124004, 0.30696433782577515, 0.685724675655365, 0.5640154480934143, 0.18550153076648712], "count": [153]}, "timestamp": {"min": [0.0], "max": [5.066666666666666], "mean": [2.533333333333333], "std": [1.4722117400046122], "count": [153]}, "frame_index": {"min": [0], "max": [152], "mean": [76.0], "std": [44.16635220013836], "count": [153]}, "episode_index": {"min": [207], "max": [207], "mean": [207.0], "std": [0.0], "count": [153]}, "index": {"min": [105200], "max": [105352], "mean": [105276.0], "std": [44.16635220013836], "count": [153]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [153]}}} +{"episode_index": 208, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7244845152505446]], [[0.7052134095860567]], [[0.6595589406318082]]], "std": [[[0.2312681258098828]], [[0.21310213921034982]], [[0.23685611712043808]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7244845152505446]], [[0.7052134095860567]], [[0.6595589406318082]]], "std": [[[0.2312681258098828]], [[0.21310213921034982]], [[0.23685611712043808]]], "count": [100]}, "observation.state": {"min": [0.5578129887580872, 0.08750628679990768, 0.11919905245304108, 2.294217586517334, -0.2616589069366455, -0.4352456033229828, -0.16314272582530975, -0.2709906995296478, 0.13531452417373657, -2.450436592102051, -0.7699466943740845, 0.7132370471954346], "max": [0.5578516125679016, 0.08752173185348511, 0.11919905245304108, 2.2946369647979736, -0.2616589069366455, -0.4352456033229828, -0.0952676311135292, -0.1264520287513733, 0.15515942871570587, -1.7236512899398804, 0.5302862524986267, 1.3705414533615112], "mean": [0.5578302145004272, 0.08751963824033737, 0.11919905245304108, 2.2945663928985596, -0.2616589367389679, -0.435245543718338, -0.13633248209953308, -0.19128289818763733, 0.14578086137771606, -2.0165457725524902, -0.2846668064594269, 0.9938170909881592], "std": [6.666387889708858e-06, 3.8311532080115285e-06, 0.0, 0.00015786832955200225, 2.9802322387695312e-08, 5.960464477539063e-08, 0.01935364305973053, 0.03992452844977379, 0.0068035549484193325, 0.28448787331581116, 0.5321416854858398, 0.28493183851242065], "count": [147]}, "action": {"min": [-0.11252447217702866, -0.054740533232688904, 0.12644022703170776, 0.4028564989566803, 0.3703201115131378, 0.37242117524147034, 0.7494747638702393, 0.17237482964992523, -0.0947730541229248, 0.08704090863466263, -0.4282377362251282, -0.6295185089111328, -0.6346703171730042, -0.416044145822525], "max": [-0.11251912266016006, -0.05473724380135536, 0.12644368410110474, 0.40286603569984436, 0.3703601658344269, 0.37261414527893066, 0.7495618462562561, 0.1897551417350769, -0.07895991206169128, 0.11153946816921234, 0.4103536903858185, 0.8644412755966187, 0.7079355120658875, 0.1379111111164093], "mean": [-0.11252196878194809, -0.05473821982741356, 0.12644211947917938, 0.4028596580028534, 0.3703325092792511, 0.37258055806159973, 0.7494946718215942, 0.17902302742004395, -0.08921592682600021, 0.10248307883739471, -0.2207856923341751, 0.022352581843733788, 0.22845430672168732, -0.10946144163608551], "std": [9.725666814119904e-07, 6.475245868386992e-07, 6.266989771575027e-07, 2.3964450974744977e-06, 1.2222748409840278e-05, 7.229280163301155e-05, 2.925852641055826e-05, 0.0062483930960297585, 0.003478220896795392, 0.008267026394605637, 0.23898829519748688, 0.6950455904006958, 0.5470719933509827, 0.21700052917003632], "count": [147]}, "timestamp": {"min": [0.0], "max": [4.866666666666666], "mean": [2.433333333333333], "std": [1.4144754295288202], "count": [147]}, "frame_index": {"min": [0], "max": [146], "mean": [73.0], "std": [42.43426288586461], "count": [147]}, "episode_index": {"min": [208], "max": [208], "mean": [208.0], "std": [0.0], "count": [147]}, "index": {"min": [105353], "max": [105499], "mean": [105426.0], "std": [42.43426288586461], "count": [147]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [147]}}} +{"episode_index": 209, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7397617265795208]], [[0.7166939733115468]], [[0.6710025571895425]]], "std": [[[0.22339806430039438]], [[0.20800998474003377]], [[0.23124690698892444]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7397617265795208]], [[0.7166939733115468]], [[0.6710025571895425]]], "std": [[[0.22339806430039438]], [[0.20800998474003377]], [[0.23124690698892444]]], "count": [100]}, "observation.state": {"min": [0.5732198357582092, 0.12455224245786667, 0.11715739220380783, 2.6135754585266113, 0.11860048025846481, -0.5135173797607422, -0.14776676893234253, -0.28839772939682007, 0.13643322885036469, -2.1140940189361572, -0.7920817732810974, 0.5365519523620605], "max": [0.5732507109642029, 0.12457539886236191, 0.11715739220380783, 2.613994836807251, 0.11860048025846481, -0.5133540034294128, -0.07152023166418076, -0.12003444135189056, 0.15496498346328735, -1.5768684148788452, 0.4681166410446167, 1.3736751079559326], "mean": [0.573237419128418, 0.12455906718969345, 0.1171572208404541, 2.61379337310791, 0.11860060691833496, -0.5134470462799072, -0.1231299489736557, -0.18811967968940735, 0.14540518820285797, -1.7404526472091675, -0.30274027585983276, 0.9226651787757874], "std": [5.591071385424584e-06, 6.591677902179072e-06, 1.7136335372924805e-07, 0.00020959721587132663, 1.2665987014770508e-07, 8.067199087236077e-05, 0.01780788227915764, 0.04734152927994728, 0.006212848704308271, 0.16389232873916626, 0.5434395670890808, 0.3658042252063751], "count": [130]}, "action": {"min": [-0.1135406419634819, -0.05090409889817238, 0.12641994655132294, 0.5166868567466736, 0.22273682057857513, 0.48709866404533386, 0.6677611470222473, 0.17420777678489685, -0.09395233541727066, 0.08810695260763168, -0.441577672958374, -0.6203278303146362, -0.6402634382247925, -0.19538217782974243], "max": [-0.11353620886802673, -0.0508996956050396, 0.12642298638820648, 0.5167528390884399, 0.22280146181583405, 0.4872882664203644, 0.667930006980896, 0.19095243513584137, -0.08089524507522583, 0.11115022003650665, 0.3903070092201233, 0.881828784942627, 0.7431108951568604, 0.14291270077228546], "mean": [-0.11353788524866104, -0.05090261250734329, 0.12642087042331696, 0.5167220830917358, 0.2227717638015747, 0.48719462752342224, 0.6678414940834045, 0.1810528188943863, -0.08868934214115143, 0.10275498032569885, -0.23535668849945068, 0.11454810202121735, 0.15952777862548828, -0.05138063430786133], "std": [7.735794724794687e-07, 9.160454510492855e-07, 6.839791808488371e-07, 2.676328585948795e-05, 2.18033128476236e-05, 8.576965046813712e-05, 6.30145295872353e-05, 0.005757356062531471, 0.0034780260175466537, 0.007496918085962534, 0.23593923449516296, 0.6845197081565857, 0.6084849834442139, 0.09438339620828629], "count": [130]}, "timestamp": {"min": [0.0], "max": [4.3], "mean": [2.15], "std": [1.2508885730640529], "count": [130]}, "frame_index": {"min": [0], "max": [129], "mean": [64.5], "std": [37.526657191921586], "count": [130]}, "episode_index": {"min": [209], "max": [209], "mean": [209.0], "std": [0.0], "count": [130]}, "index": {"min": [105500], "max": [105629], "mean": [105564.5], "std": [37.526657191921586], "count": [130]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [130]}}} +{"episode_index": 210, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.729457385620915]], [[0.7088790277777778]], [[0.6629550871459695]]], "std": [[[0.2290034367966099]], [[0.21178403769015675]], [[0.2361918180602992]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.729457385620915]], [[0.7088790277777778]], [[0.6629550871459695]]], "std": [[[0.2290034367966099]], [[0.21178403769015675]], [[0.2361918180602992]]], "count": [100]}, "observation.state": {"min": [0.5059471130371094, 0.12124691158533096, 0.12338735908269882, 2.412482738494873, -0.4142818748950958, -0.8880971074104309, -0.20405776798725128, -0.3247949779033661, 0.1311676949262619, -2.5452165603637695, -0.7877094149589539, 0.4306891858577728], "max": [0.505977988243103, 0.1212700679898262, 0.12338735908269882, 2.4129021167755127, -0.4142818748950958, -0.8879337906837463, -0.12145542353391647, -0.15311090648174286, 0.15782330930233002, -1.4445539712905884, 0.5946420431137085, 1.3797732591629028], "mean": [0.5059649348258972, 0.12126018851995468, 0.12338734418153763, 2.412687301635742, -0.41428253054618835, -0.8879836201667786, -0.1582925021648407, -0.20636507868766785, 0.14448513090610504, -1.9815576076507568, -0.08644262701272964, 0.957099974155426], "std": [7.088679467415204e-06, 7.086052846716484e-06, 1.4901161193847656e-08, 0.00020878258510492742, 6.556510925292969e-07, 7.56006920710206e-05, 0.026004841551184654, 0.05759071186184883, 0.009437596425414085, 0.41371798515319824, 0.5931708216667175, 0.40502142906188965], "count": [119]}, "action": {"min": [-0.11772569268941879, -0.05189778283238411, 0.1356896013021469, 0.4944736361503601, 0.4939362108707428, 0.32575055956840515, 0.6365388631820679, 0.16981282830238342, -0.0946914479136467, 0.07919546216726303, -0.44559893012046814, -0.6246739029884338, -0.6238664984703064, -0.43991151452064514], "max": [-0.11772020161151886, -0.05189380794763565, 0.13569316267967224, 0.4945748448371887, 0.4939838945865631, 0.3259849548339844, 0.6366596817970276, 0.18886417150497437, -0.08378545939922333, 0.11177286505699158, 0.39816659688949585, 0.879514217376709, 0.7531745433807373, 0.17145007848739624], "mean": [-0.11772260814905167, -0.05189588665962219, 0.13569135963916779, 0.49451521039009094, 0.49395647644996643, 0.325874000787735, 0.6366066932678223, 0.1778663545846939, -0.0905747190117836, 0.09915625303983688, -0.1933557391166687, 0.25516071915626526, 0.09293997287750244, -0.19449621438980103], "std": [1.2602999959199224e-06, 1.1271511084487429e-06, 1.0064962907563313e-06, 2.8407992431311868e-05, 1.4296379049483221e-05, 9.192187280859798e-05, 4.479784911382012e-05, 0.007118923123925924, 0.003575409296900034, 0.011121346615254879, 0.23108157515525818, 0.6685600280761719, 0.5624905228614807, 0.18513037264347076], "count": [119]}, "timestamp": {"min": [0.0], "max": [3.933333333333333], "mean": [1.9666666666666668], "std": [1.1450376024878448], "count": [119]}, "frame_index": {"min": [0], "max": [118], "mean": [59.0], "std": [34.351128074635334], "count": [119]}, "episode_index": {"min": [210], "max": [210], "mean": [210.0], "std": [0.0], "count": [119]}, "index": {"min": [105630], "max": [105748], "mean": [105689.0], "std": [34.351128074635334], "count": [119]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [119]}}} +{"episode_index": 211, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7225875953159041]], [[0.7004662173202615]], [[0.6542452668845317]]], "std": [[[0.2184029528992769]], [[0.2039111724717957]], [[0.2288317214568819]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7225875953159041]], [[0.7004662173202615]], [[0.6542452668845317]]], "std": [[[0.2184029528992769]], [[0.2039111724717957]], [[0.2288317214568819]]], "count": [100]}, "observation.state": {"min": [0.4810181260108948, 0.15588335692882538, 0.12347421795129776, 1.258558988571167, -0.7066839933395386, 0.25930261611938477, -0.1792755126953125, -0.28394943475723267, 0.13102899491786957, -2.682982921600342, -0.8968819975852966, 0.663849949836731], "max": [0.48114168643951416, 0.1559065282344818, 0.12347421795129776, 1.2591880559921265, -0.7061374187469482, 0.25974828004837036, -0.07844752073287964, -0.12554074823856354, 0.15482239425182343, -1.6590667963027954, 0.5449063777923584, 1.3719878196716309], "mean": [0.4810866117477417, 0.1559002548456192, 0.1234741359949112, 1.2588677406311035, -0.7065460681915283, 0.2593986392021179, -0.12692402303218842, -0.20241522789001465, 0.14319179952144623, -2.1311068534851074, -0.23092225193977356, 1.0500234365463257], "std": [5.047541708336212e-05, 6.7279515860718675e-06, 8.195638656616211e-08, 0.00017975368245970458, 4.4634150981437415e-05, 4.6111053961794823e-05, 0.031122131273150444, 0.04169091582298279, 0.008475450798869133, 0.38868454098701477, 0.6155747175216675, 0.27761226892471313], "count": [103]}, "action": {"min": [-0.11919570714235306, -0.05062240734696388, 0.1355077028274536, 0.049765024334192276, 0.5619931221008301, 0.05607004091143608, 0.823582649230957, 0.1729169636964798, -0.09342534095048904, 0.08292680978775024, -0.4822762608528137, -0.6149419546127319, -0.6259977221488953, -0.5067892074584961], "max": [-0.11917754262685776, -0.050614871084690094, 0.13551856577396393, 0.0499277263879776, 0.5621969699859619, 0.056358590722084045, 0.8237259984016418, 0.19345730543136597, -0.0810476765036583, 0.1093517392873764, 0.4236818552017212, 0.8446530103683472, 0.7172998785972595, 0.15943019092082977], "mean": [-0.11918570846319199, -0.05061770975589752, 0.13551291823387146, 0.049906812608242035, 0.5621181130409241, 0.05621076747775078, 0.8236339688301086, 0.180867999792099, -0.08898551017045975, 0.09914648532867432, -0.19528114795684814, 0.16273663938045502, 0.11369287967681885, -0.2027401179075241], "std": [7.018312317086384e-06, 2.4319740532519063e-06, 3.4210092962894123e-06, 2.0298884919611737e-05, 3.8550955650862306e-05, 8.210505620809272e-05, 2.2378595531336032e-05, 0.007390499114990234, 0.0027371093165129423, 0.00930632371455431, 0.2714065611362457, 0.687221884727478, 0.5268545746803284, 0.2405020147562027], "count": [103]}, "timestamp": {"min": [0.0], "max": [3.4], "mean": [1.7], "std": [0.9910712498212337], "count": [103]}, "frame_index": {"min": [0], "max": [102], "mean": [51.0], "std": [29.732137494637012], "count": [103]}, "episode_index": {"min": [211], "max": [211], "mean": [211.0], "std": [0.0], "count": [103]}, "index": {"min": [105749], "max": [105851], "mean": [105800.0], "std": [29.732137494637012], "count": [103]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [103]}}} +{"episode_index": 212, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7127668518518518]], [[0.6955104193899783]], [[0.6495227668845316]]], "std": [[[0.23287449686056233]], [[0.21524216194090123]], [[0.2401104896701131]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7127668518518518]], [[0.6955104193899783]], [[0.6495227668845316]]], "std": [[[0.23287449686056233]], [[0.21524216194090123]], [[0.2401104896701131]]], "count": [100]}, "observation.state": {"min": [0.49361392855644226, 0.12641340494155884, 0.1235831007361412, 2.268216133117676, -0.4368268847465515, -0.6962275505065918, -0.20422767102718353, -0.2937573194503784, 0.13036270439624786, -2.6253180503845215, -0.8097078800201416, 0.6033573150634766], "max": [0.49366024136543274, 0.12643657624721527, 0.1235831007361412, 2.2686355113983154, -0.4368268847465515, -0.6960641741752625, -0.0848264992237091, -0.18523746728897095, 0.1597936749458313, -1.65361487865448, 0.3767068386077881, 1.357628345489502], "mean": [0.49364203214645386, 0.12642624974250793, 0.12358298897743225, 2.268495798110962, -0.436827689409256, -0.6961114406585693, -0.14741352200508118, -0.22146491706371307, 0.146211177110672, -2.0880157947540283, -0.2493143230676651, 0.9733793139457703], "std": [1.1766382158384658e-05, 4.413072019815445e-06, 1.1175870895385742e-07, 0.00019745023746509105, 8.046627044677734e-07, 7.332376844715327e-05, 0.03682461380958557, 0.033887919038534164, 0.010447684675455093, 0.37706390023231506, 0.5145350694656372, 0.31215664744377136], "count": [150]}, "action": {"min": [-0.11904093623161316, -0.05175917595624924, 0.1366707980632782, 0.43380528688430786, 0.46793684363365173, 0.3033373951911926, 0.7075484991073608, 0.16971543431282043, -0.09766068309545517, 0.08224841207265854, -0.4537333846092224, -0.6241112947463989, -0.5941250324249268, -0.4696575105190277], "max": [-0.11903326213359833, -0.0517546683549881, 0.13667543232440948, 0.43390190601348877, 0.46798160672187805, 0.3035735785961151, 0.7076574563980103, 0.19127295911312103, -0.08939867466688156, 0.11140143871307373, 0.3525702655315399, 0.8565644025802612, 0.7182914018630981, 0.249363973736763], "mean": [-0.11903659999370575, -0.051756978034973145, 0.1366729885339737, 0.4338338077068329, 0.4679543077945709, 0.30349600315093994, 0.7075996994972229, 0.17767862975597382, -0.09275170415639877, 0.0997779592871666, -0.19131417572498322, 0.12517477571964264, 0.15023073554039001, -0.16758738458156586], "std": [1.7795691746869124e-06, 1.0221986030956032e-06, 9.22618141885323e-07, 2.9845708922948688e-05, 1.1452572834969033e-05, 9.467670315643772e-05, 3.300125172245316e-05, 0.008562960661947727, 0.002556122839450836, 0.010009906254708767, 0.2511393129825592, 0.6869032382965088, 0.5518380403518677, 0.2400895059108734], "count": [150]}, "timestamp": {"min": [0.0], "max": [4.966666666666667], "mean": [2.483333333333333], "std": [1.4433435976027125], "count": [150]}, "frame_index": {"min": [0], "max": [149], "mean": [74.5], "std": [43.300307928081374], "count": [150]}, "episode_index": {"min": [212], "max": [212], "mean": [212.0], "std": [0.0], "count": [150]}, "index": {"min": [105852], "max": [106001], "mean": [105926.5], "std": [43.300307928081374], "count": [150]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [150]}}} +{"episode_index": 213, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7350606263616557]], [[0.7083309912854031]], [[0.6618572031590414]]], "std": [[[0.21584827108972657]], [[0.20388292663474047]], [[0.228742615633058]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7350606263616557]], [[0.7083309912854031]], [[0.6618572031590414]]], "std": [[[0.21584827108972657]], [[0.20388292663474047]], [[0.228742615633058]]], "count": [100]}, "observation.state": {"min": [0.5230143666267395, 0.12577243149280548, 0.12219736725091934, 2.408708333969116, -0.5276901721954346, -0.5917501449584961, -0.14483985304832458, -0.2896179258823395, 0.13050399720668793, -2.5408129692077637, -0.7707664966583252, 0.7233408689498901], "max": [0.5230298042297363, 0.1257878690958023, 0.12219996005296707, 2.409127712249756, -0.5276901721954346, -0.5915867686271667, -0.08382254093885422, -0.15721939504146576, 0.1536777764558792, -1.7628633975982666, 0.41906413435935974, 1.3741676807403564], "mean": [0.5230170488357544, 0.12578460574150085, 0.12219816446304321, 2.4090840816497803, -0.527690589427948, -0.5916252732276917, -0.11508078128099442, -0.2054566740989685, 0.14228422939777374, -2.175807237625122, -0.19422481954097748, 1.092183232307434], "std": [4.670460384659236e-06, 3.928552814613795e-06, 1.2240966498211492e-06, 0.00012893615348730236, 4.172325134277344e-07, 6.856297113699839e-05, 0.015483025461435318, 0.04787807539105415, 0.008075553923845291, 0.3086681365966797, 0.5216515064239502, 0.29579728841781616], "count": [123]}, "action": {"min": [-0.11566449701786041, -0.04918792098760605, 0.13341495394706726, 0.3610229790210724, 0.49285072088241577, 0.3892994523048401, 0.689187228679657, 0.17597243189811707, -0.09293719381093979, 0.08248554915189743, -0.4245093762874603, -0.6093200445175171, -0.6212182641029358, -0.442255437374115], "max": [-0.11566104739904404, -0.04918492212891579, 0.1334187388420105, 0.3611207902431488, 0.49291378259658813, 0.38953229784965515, 0.6892598867416382, 0.1911717653274536, -0.08346424996852875, 0.110994853079319, 0.41810986399650574, 0.8597579002380371, 0.7113317847251892, 0.19832536578178406], "mean": [-0.1156635731458664, -0.049186281859874725, 0.13341686129570007, 0.36104175448417664, 0.49286434054374695, 0.3895018398761749, 0.6892179250717163, 0.18308968842029572, -0.08871322870254517, 0.0992434173822403, -0.13285772502422333, 0.2284441590309143, 0.07228320837020874, -0.18422885239124298], "std": [8.923752830014564e-07, 6.820162070653168e-07, 1.209084643960523e-06, 3.225818363716826e-05, 1.9021354091819376e-05, 7.090868894010782e-05, 1.6996931663015857e-05, 0.005311647430062294, 0.0026890744920819998, 0.010244511999189854, 0.26382923126220703, 0.6831006407737732, 0.5428870916366577, 0.24502670764923096], "count": [123]}, "timestamp": {"min": [0.0], "max": [4.066666666666666], "mean": [2.033333333333333], "std": [1.1835289353204428], "count": [123]}, "frame_index": {"min": [0], "max": [122], "mean": [61.0], "std": [35.505868059613285], "count": [123]}, "episode_index": {"min": [213], "max": [213], "mean": [213.0], "std": [0.0], "count": [123]}, "index": {"min": [106002], "max": [106124], "mean": [106063.0], "std": [35.505868059613285], "count": [123]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [123]}}} +{"episode_index": 214, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7390658333333334]], [[0.711229910130719]], [[0.6648981862745098]]], "std": [[[0.2201842712453516]], [[0.21033475308338181]], [[0.23394537840980498]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7390658333333334]], [[0.711229910130719]], [[0.6648981862745098]]], "std": [[[0.2201842712453516]], [[0.21033475308338181]], [[0.23394537840980498]]], "count": [100]}, "observation.state": {"min": [0.5518355965614319, 0.10330700129270554, 0.12573234736919403, 2.649013042449951, 0.008198189549148083, -0.7518402338027954, -0.1323135793209076, -0.2585184872150421, 0.13783711194992065, -2.463437557220459, -0.7342845797538757, 0.5579955577850342], "max": [0.5518510341644287, 0.10332243889570236, 0.12573234736919403, 2.649432420730591, 0.008198189549148083, -0.7516768574714661, -0.07169785350561142, -0.15217645466327667, 0.14870519936084747, -1.7567822933197021, 0.2698570787906647, 1.2773534059524536], "mean": [0.5518398284912109, 0.10330759733915329, 0.1257324069738388, 2.6491191387176514, 0.008198190480470657, -0.7518278360366821, -0.10861985385417938, -0.19781593978405, 0.14239978790283203, -2.1036431789398193, -0.27450186014175415, 0.9304872155189514], "std": [6.015710823703557e-06, 2.4904786641855026e-06, 5.960464477539063e-08, 0.00018116591672878712, 9.313225746154785e-10, 4.194563734927215e-05, 0.020825181156396866, 0.035488568246364594, 0.0039217364974319935, 0.2706207036972046, 0.4231277108192444, 0.32722675800323486], "count": [141]}, "action": {"min": [-0.11136171221733093, -0.056894589215517044, 0.13347969949245453, 0.5668537616729736, 0.3114323019981384, 0.4725663661956787, 0.5984488129615784, 0.17688463628292084, -0.09436775743961334, 0.09179644286632538, -0.38232067227363586, -0.6250890493392944, -0.6310353875160217, -0.39913997054100037], "max": [-0.11135939508676529, -0.05689186975359917, 0.1334814578294754, 0.5669046640396118, 0.31147903203964233, 0.47274062037467957, 0.5986170172691345, 0.1919843554496765, -0.08080887049436569, 0.10715990513563156, 0.36230233311653137, 0.8302736282348633, 0.7633344531059265, 0.20801517367362976], "mean": [-0.11136089265346527, -0.05689427629113197, 0.1334805190563202, 0.5668946504592896, 0.3114701211452484, 0.4726128578186035, 0.5985434055328369, 0.18333671987056732, -0.08805440366268158, 0.10046058893203735, -0.13520318269729614, 0.15819454193115234, 0.12088935077190399, -0.12126806378364563], "std": [8.580856274420512e-07, 4.836181233258685e-07, 4.794439973920817e-07, 1.3967372979095671e-05, 1.0464197657711338e-05, 7.37333029974252e-05, 5.4064305004430935e-05, 0.0052656857296824455, 0.0035246643237769604, 0.005530729424208403, 0.24512112140655518, 0.6582552194595337, 0.6104314923286438, 0.24771656095981598], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [214], "max": [214], "mean": [214.0], "std": [0.0], "count": [141]}, "index": {"min": [106125], "max": [106265], "mean": [106195.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [141]}}} +{"episode_index": 215, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7364935511982571]], [[0.7135633360566449]], [[0.668078371459695]]], "std": [[[0.22031749081738933]], [[0.20933235300362982]], [[0.2332999746810189]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7364935511982571]], [[0.7135633360566449]], [[0.668078371459695]]], "std": [[[0.22031749081738933]], [[0.20933235300362982]], [[0.2332999746810189]]], "count": [100]}, "observation.state": {"min": [0.5486306548118591, 0.10964736342430115, 0.11971627175807953, 2.610849380493164, 0.056020960211753845, -0.6474086046218872, -0.1521919071674347, -0.2553444504737854, 0.13050788640975952, -2.571427822113037, -0.8702378869056702, 0.44598907232284546], "max": [0.548646092414856, 0.10967052727937698, 0.11971627175807953, 2.6112687587738037, 0.056020960211753845, -0.6474086046218872, -0.07165151834487915, -0.14773587882518768, 0.15511925518512726, -1.5154292583465576, 0.4678433835506439, 1.3784486055374146], "mean": [0.5486347079277039, 0.10965866595506668, 0.11971645057201385, 2.6109917163848877, 0.05602084845304489, -0.6474080085754395, -0.11792586743831635, -0.18952715396881104, 0.14431899785995483, -1.9839599132537842, -0.31267622113227844, 0.8685255646705627], "std": [6.204144483490381e-06, 4.131886271352414e-06, 1.7881393432617188e-07, 0.00017758127069100738, 1.1175870895385742e-07, 5.960464477539062e-07, 0.024953216314315796, 0.03085630014538765, 0.008685299195349216, 0.43956515192985535, 0.5622155666351318, 0.4220583736896515], "count": [155]}, "action": {"min": [-0.11517804861068726, -0.054470375180244446, 0.12936291098594666, 0.5459997057914734, 0.2674022614955902, 0.4721718430519104, 0.6381704211235046, 0.1743464469909668, -0.09215323626995087, 0.08559195697307587, -0.45454853773117065, -0.6163234114646912, -0.6074472069740295, -0.45797625184059143], "max": [-0.11517559736967087, -0.05446725711226463, 0.12936563789844513, 0.5460153818130493, 0.2674155533313751, 0.4723469614982605, 0.638295590877533, 0.1942533254623413, -0.08183492720127106, 0.11107195913791656, 0.342652827501297, 0.8435018658638, 0.7513322234153748, 0.23579899966716766], "mean": [-0.11517728120088577, -0.054468873888254166, 0.12936444580554962, 0.5460072755813599, 0.2674083113670349, 0.4722333252429962, 0.6382512450218201, 0.18132637441158295, -0.08866046369075775, 0.10126376897096634, -0.22792412340641022, 0.0731959342956543, 0.24958926439285278, -0.15679791569709778], "std": [8.7131564896481e-07, 6.294891363722854e-07, 5.722336595681554e-07, 3.787090236073709e-06, 3.299233412690228e-06, 7.299430581042543e-05, 5.042649354436435e-05, 0.007011598441749811, 0.0024348103906959295, 0.00858503207564354, 0.24932730197906494, 0.6526018381118774, 0.558506190776825, 0.23628410696983337], "count": [155]}, "timestamp": {"min": [0.0], "max": [5.133333333333334], "mean": [2.5666666666666664], "std": [1.491457154746473], "count": [155]}, "frame_index": {"min": [0], "max": [154], "mean": [77.0], "std": [44.74371464239419], "count": [155]}, "episode_index": {"min": [215], "max": [215], "mean": [215.0], "std": [0.0], "count": [155]}, "index": {"min": [106266], "max": [106420], "mean": [106343.0], "std": [44.74371464239419], "count": [155]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [155]}}} +{"episode_index": 216, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7249450653594771]], [[0.7059505855119825]], [[0.6602658741830065]]], "std": [[[0.22576435976616993]], [[0.2120880649454019]], [[0.23605407965257555]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7249450653594771]], [[0.7059505855119825]], [[0.6602658741830065]]], "std": [[[0.22576435976616993]], [[0.2120880649454019]], [[0.23605407965257555]]], "count": [100]}, "observation.state": {"min": [0.5061324834823608, 0.13159537315368652, 0.12201330065727234, 2.680466651916504, 0.05684078112244606, -0.7616105675697327, -0.16724349558353424, -0.2770298719406128, 0.13607674837112427, -2.5741536617279053, -0.8105277419090271, 0.6289331912994385], "max": [0.5061401724815369, 0.13160309195518494, 0.12201330065727234, 2.6808860301971436, 0.05684078112244606, -0.7614471912384033, -0.06526482105255127, -0.15210695564746857, 0.15625090897083282, -1.7066664695739746, 0.5334289073944092, 1.3728317022323608], "mean": [0.5061345100402832, 0.13160082697868347, 0.1220131367444992, 2.680785655975342, 0.056840866804122925, -0.7614997029304504, -0.1291152536869049, -0.20110371708869934, 0.1476471722126007, -2.041334390640259, -0.34615662693977356, 0.8899908661842346], "std": [2.908507440224639e-06, 3.5769239730143454e-06, 1.6391277313232422e-07, 0.0001789868256310001, 8.568167686462402e-08, 7.597151852678508e-05, 0.03204434737563133, 0.03654943034052849, 0.0072128805331885815, 0.33050423860549927, 0.5633167624473572, 0.29756098985671997], "count": [167]}, "action": {"min": [-0.12024703621864319, -0.05367842689156532, 0.13569597899913788, 0.5647305250167847, 0.2828856408596039, 0.49037644267082214, 0.6002769470214844, 0.17093658447265625, -0.09506348520517349, 0.08704190701246262, -0.43228721618652344, -0.634034276008606, -0.629923939704895, -0.4561789035797119], "max": [-0.12024566531181335, -0.05367690324783325, 0.135697141289711, 0.5648033022880554, 0.28293779492378235, 0.49056944251060486, 0.6004482507705688, 0.19354835152626038, -0.0802665427327156, 0.11083785444498062, 0.3702939450740814, 0.854653000831604, 0.7317419052124023, 0.19016559422016144], "mean": [-0.12024671584367752, -0.05367756634950638, 0.13569673895835876, 0.5647525191307068, 0.2829057276248932, 0.49052178859710693, 0.600340723991394, 0.1792135387659073, -0.09125886857509613, 0.10279259085655212, -0.2672276496887207, -0.04209866374731064, 0.30760717391967773, -0.09022723883390427], "std": [4.17129342622502e-07, 5.571232009060623e-07, 3.217731148197345e-07, 2.619602673803456e-05, 1.850221451604739e-05, 7.493781595258042e-05, 5.267010419629514e-05, 0.007432542275637388, 0.003371431725099683, 0.008388075977563858, 0.22231550514698029, 0.6532720923423767, 0.5324558615684509, 0.2536848187446594], "count": [167]}, "timestamp": {"min": [0.0], "max": [5.533333333333333], "mean": [2.766666666666666], "std": [1.6069294390925266], "count": [167]}, "frame_index": {"min": [0], "max": [166], "mean": [83.0], "std": [48.2078831727758], "count": [167]}, "episode_index": {"min": [216], "max": [216], "mean": [216.0], "std": [0.0], "count": [167]}, "index": {"min": [106421], "max": [106587], "mean": [106504.0], "std": [48.2078831727758], "count": [167]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [167]}}} +{"episode_index": 217, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7424072739651416]], [[0.7111303622004357]], [[0.6644010620915033]]], "std": [[[0.22337362504975325]], [[0.21134242208611664]], [[0.23531499480216503]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7424072739651416]], [[0.7111303622004357]], [[0.6644010620915033]]], "std": [[[0.22337362504975325]], [[0.21134242208611664]], [[0.23531499480216503]]], "count": [100]}, "observation.state": {"min": [0.5774518847465515, 0.10624164342880249, 0.12686660885810852, 2.5219409465789795, -0.025414390489459038, -0.7667707204818726, -0.11416515707969666, -0.2732689082622528, 0.1322423219680786, -2.7150654792785645, -0.6775804162025452, 0.5438242554664612], "max": [0.5774750709533691, 0.10626479983329773, 0.12686660885810852, 2.522360324859619, -0.025277750566601753, -0.7666593194007874, -0.05981257185339928, -0.1479443907737732, 0.15214036405086517, -1.7339261770248413, 0.6838656663894653, 1.3382045030593872], "mean": [0.5774629712104797, 0.10625501722097397, 0.12686680257320404, 2.522230625152588, -0.02535991184413433, -0.7667054533958435, -0.09409374743700027, -0.18264202773571014, 0.14445407688617706, -2.1877660751342773, -0.12251684069633484, 0.9396157264709473], "std": [3.980040673923213e-06, 3.7344950669648824e-06, 1.9371509552001953e-07, 0.00017638824647292495, 6.691124144708738e-05, 5.457803126773797e-05, 0.01649700663983822, 0.03710128739476204, 0.007103512529283762, 0.39115914702415466, 0.5625690221786499, 0.3365457057952881], "count": [198]}, "action": {"min": [-0.10698810964822769, -0.05537502467632294, 0.13258600234985352, 0.5686658024787903, 0.33953168988227844, 0.4146343767642975, 0.6238433122634888, 0.17852836847305298, -0.09174879640340805, 0.08310668915510178, -0.3653024137020111, -0.6489871740341187, -0.6280697584152222, -0.538709819316864], "max": [-0.10698480904102325, -0.05537110194563866, 0.13258786499500275, 0.5687525272369385, 0.33957529067993164, 0.41483116149902344, 0.6239888668060303, 0.1945137083530426, -0.08266467601060867, 0.11096137762069702, 0.29716774821281433, 0.8288961052894592, 0.7765492796897888, 0.2687999904155731], "mean": [-0.1069868728518486, -0.05537327751517296, 0.13258740305900574, 0.5686991810798645, 0.3395565450191498, 0.41476741433143616, 0.623898983001709, 0.18556325137615204, -0.08853407949209213, 0.10261926800012589, -0.18864887952804565, 0.10294888913631439, 0.21453382074832916, -0.16849301755428314], "std": [6.551125011355907e-07, 7.203361178653722e-07, 3.924958207335294e-07, 3.441620719968341e-05, 1.6979862266452983e-05, 7.499676576117054e-05, 4.99183515785262e-05, 0.005935117602348328, 0.0023324480280280113, 0.009177042171359062, 0.1919124722480774, 0.6618268489837646, 0.5590503215789795, 0.30334165692329407], "count": [198]}, "timestamp": {"min": [0.0], "max": [6.566666666666666], "mean": [3.2833333333333337], "std": [1.9052315889170555], "count": [198]}, "frame_index": {"min": [0], "max": [197], "mean": [98.5], "std": [57.15694766751166], "count": [198]}, "episode_index": {"min": [217], "max": [217], "mean": [217.0], "std": [0.0], "count": [198]}, "index": {"min": [106588], "max": [106785], "mean": [106686.5], "std": [57.15694766751166], "count": [198]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [198]}}} +{"episode_index": 218, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00784313725490196]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7515794117647059]], [[0.722538461328976]], [[0.6776175762527232]]], "std": [[[0.21097211776194286]], [[0.2044110659450478]], [[0.22759702260138034]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00784313725490196]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7515794117647059]], [[0.722538461328976]], [[0.6776175762527232]]], "std": [[[0.21097211776194286]], [[0.2044110659450478]], [[0.22759702260138034]]], "count": [100]}, "observation.state": {"min": [0.5356255769729614, 0.07908850908279419, 0.12706364691257477, 2.459033966064453, -0.17544126510620117, -0.8465070724487305, -0.09076528251171112, -0.24985358119010925, 0.13700489699840546, -2.659287929534912, -1.1305303573608398, 0.16849954426288605], "max": [0.5356410145759583, 0.07910394668579102, 0.12706494331359863, 2.4594533443450928, -0.17530463635921478, -0.8461506366729736, -0.011398750357329845, -0.12940211594104767, 0.15970422327518463, -1.300497055053711, 0.09127318114042282, 1.379559874534607], "mean": [0.5356288552284241, 0.07910344749689102, 0.12706398963928223, 2.459165334701538, -0.17544080317020416, -0.8462892174720764, -0.059722404927015305, -0.1913449913263321, 0.14645329117774963, -2.0817830562591553, -0.48721668124198914, 0.9229021668434143], "std": [4.521271421253914e-06, 1.9460323983366834e-06, 5.29648218616785e-07, 0.00019275811791885644, 1.0453668437548913e-05, 8.001680544111878e-05, 0.028477372601628304, 0.03707601875066757, 0.008752790279686451, 0.5371801853179932, 0.4986160695552826, 0.5410829782485962], "count": [170]}, "action": {"min": [-0.11207215487957001, -0.06031528860330582, 0.13398008048534393, 0.5636810660362244, 0.39457619190216064, 0.3701572120189667, 0.6239460110664368, 0.1792660504579544, -0.09390000998973846, 0.09300684183835983, -0.547196626663208, -0.5913418531417847, -0.585582435131073, -0.46884116530418396], "max": [-0.11206938326358795, -0.06031198427081108, 0.13398325443267822, 0.5638303160667419, 0.3946278989315033, 0.37039268016815186, 0.6241061091423035, 0.19905288517475128, -0.08426117897033691, 0.11409847438335419, 0.46279484033584595, 0.8165510296821594, 0.7455191016197205, 0.25293585658073425], "mean": [-0.1120714396238327, -0.06031292304396629, 0.13398194313049316, 0.5637177228927612, 0.39460450410842896, 0.3702529966831207, 0.6240383386611938, 0.188418447971344, -0.08986340463161469, 0.1038239449262619, -0.1053638681769371, 0.27416595816612244, 0.0334952175617218, -0.214140385389328], "std": [7.110687647582381e-07, 4.6577409307246853e-07, 6.086224857426714e-07, 3.298633237136528e-05, 1.3878287973057013e-05, 9.416841203346848e-05, 3.755738725885749e-05, 0.006909764371812344, 0.002536496613174677, 0.0073877968825399876, 0.3682488799095154, 0.582722544670105, 0.5817335844039917, 0.23057906329631805], "count": [170]}, "timestamp": {"min": [0.0], "max": [5.633333333333334], "mean": [2.8166666666666664], "std": [1.6357974609753292], "count": [170]}, "frame_index": {"min": [0], "max": [169], "mean": [84.5], "std": [49.073923829259876], "count": [170]}, "episode_index": {"min": [218], "max": [218], "mean": [218.0], "std": [0.0], "count": [170]}, "index": {"min": [106786], "max": [106955], "mean": [106870.5], "std": [49.073923829259876], "count": [170]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [170]}}} +{"episode_index": 219, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00784313725490196]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7545903322440087]], [[0.7215317674291939]], [[0.6768101797385621]]], "std": [[[0.2129107830672003]], [[0.2054150224578747]], [[0.22862922499547103]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00784313725490196]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7545903322440087]], [[0.7215317674291939]], [[0.6768101797385621]]], "std": [[[0.2129107830672003]], [[0.2054150224578747]], [[0.22862922499547103]]], "count": [100]}, "observation.state": {"min": [0.5260339379310608, 0.09178467839956284, 0.1315578818321228, 2.563040256500244, -0.2238105833530426, -0.8219009637832642, -0.09615574777126312, -0.33763787150382996, 0.12945140898227692, -2.572056770324707, -0.9761311411857605, 0.3979441225528717], "max": [0.5260725617408752, 0.0918310210108757, 0.13157862424850464, 2.563040256500244, -0.2238105833530426, -0.8216559290885925, 0.09207814186811447, -0.15649345517158508, 0.16077107191085815, -1.6181772947311401, 0.06886480003595352, 1.4002704620361328], "mean": [0.5260554552078247, 0.09180840104818344, 0.13156577944755554, 2.563040256500244, -0.2238103300333023, -0.821780264377594, -0.02829543873667717, -0.21793557703495026, 0.14587090909481049, -2.103092908859253, -0.4530673921108246, 1.0332001447677612], "std": [6.0900565586052835e-06, 1.908141166495625e-05, 9.50697449297877e-06, 0.0, 2.5331974029541016e-07, 8.69309005793184e-05, 0.0644398108124733, 0.05601325258612633, 0.011022347956895828, 0.3395158052444458, 0.41539162397384644, 0.436771422624588], "count": [129]}, "action": {"min": [-0.11130787432193756, -0.05988013371825218, 0.13927483558654785, 0.5291347503662109, 0.40894725918769836, 0.4200557768344879, 0.6133435964584351, 0.17861619591712952, -0.09448514133691788, 0.0794682577252388, -0.5068565607070923, -0.5800850987434387, -0.5726650953292847, -0.40915054082870483], "max": [-0.11129429191350937, -0.05987665057182312, 0.13929647207260132, 0.5292192697525024, 0.40901070833206177, 0.4201091527938843, 0.6134222149848938, 0.2112055867910385, -0.0868048146367073, 0.11606428027153015, 0.4807002544403076, 0.8585134744644165, 0.7609291672706604, 0.22931520640850067], "mean": [-0.11130064725875854, -0.059878572821617126, 0.13928432762622833, 0.5291717648506165, 0.40898367762565613, 0.42008233070373535, 0.613384485244751, 0.19231650233268738, -0.09143152832984924, 0.10195165127515793, -0.08741900324821472, 0.29208633303642273, 0.010749871842563152, -0.16227149963378906], "std": [4.8968404371407814e-06, 7.041000458229973e-07, 8.816478839435149e-06, 2.5585630282876082e-05, 2.0709399905172177e-05, 1.777665784175042e-05, 2.2647383957519196e-05, 0.011547054164111614, 0.0023497941438108683, 0.011831426061689854, 0.33078527450561523, 0.6150515079498291, 0.5858829617500305, 0.22277729213237762], "count": [129]}, "timestamp": {"min": [0.0], "max": [4.266666666666667], "mean": [2.1333333333333333], "std": [1.2412657816683503], "count": [129]}, "frame_index": {"min": [0], "max": [128], "mean": [64.0], "std": [37.23797345005051], "count": [129]}, "episode_index": {"min": [219], "max": [219], "mean": [219.0], "std": [0.0], "count": [129]}, "index": {"min": [106956], "max": [107084], "mean": [107020.0], "std": [37.23797345005051], "count": [129]}, "task_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [129]}}} +{"episode_index": 220, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49364723311546843]], [[0.45067408224400873]], [[0.4024713289760349]]], "std": [[[0.2709422098874451]], [[0.24915696629244288]], [[0.24462080469212055]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5098118300653595]], [[0.4796825708061002]], [[0.43668120915032677]]], "std": [[[0.2746190645099717]], [[0.23605337858793277]], [[0.24234575448423953]]], "count": [100]}, "observation.state": {"min": [0.256139874458313, -0.10926122218370438, 0.11147446185350418, 0.735382616519928, -0.8565742373466492, -0.9578700065612793, -0.5667327642440796, -0.3901447355747223, 0.1921451836824417, -0.6200531721115112, -0.40061822533607483, -0.9915119409561157], "max": [0.3106701076030731, 0.0011815800098702312, 0.13369545340538025, 2.1969215869903564, 0.043040499091148376, 0.5798518657684326, -0.4768633246421814, -0.3181148171424866, 0.21864522993564606, 1.2027815580368042, 0.38873085379600525, 0.3904055655002594], "mean": [0.27429404854774475, -0.04408910125494003, 0.12466537952423096, 1.5362364053726196, -0.6887829899787903, -0.22192710638046265, -0.5287256836891174, -0.35064205527305603, 0.20472875237464905, 0.47498995065689087, -0.04494974762201309, -0.1519443690776825], "std": [0.015642940998077393, 0.0362895242869854, 0.006140707992017269, 0.4285144507884979, 0.2341899573802948, 0.47510984539985657, 0.023750197142362595, 0.019860543310642242, 0.005407581105828285, 0.7736966013908386, 0.20236244797706604, 0.580699622631073], "count": [337]}, "action": {"min": [-0.15191704034805298, -0.09951484948396683, 0.12289659678936005, 0.062415119260549545, 0.1530272364616394, -0.10048794746398926, 0.6459962129592896, 0.1019245982170105, -0.1474073827266693, 0.09393506497144699, -0.6530956625938416, -0.18525677919387817, -0.5904167890548706, -0.5963137745857239], "max": [-0.14798089861869812, -0.07538015395402908, 0.13790790736675262, 0.6964598298072815, 0.597337007522583, 0.2716122269630432, 0.8168412446975708, 0.11160781234502792, -0.1308709681034088, 0.1211056336760521, 0.47422561049461365, 0.24965719878673553, 0.7963992357254028, 0.9176581501960754], "mean": [-0.14994993805885315, -0.08653610944747925, 0.13340701162815094, 0.3497215509414673, 0.47788122296333313, 0.07887306064367294, 0.7642874717712402, 0.10597097873687744, -0.13925333321094513, 0.1046857088804245, -0.028329750522971153, -0.04681885987520218, 0.12951414287090302, 0.48775145411491394], "std": [0.0007581684039905667, 0.0072695971466600895, 0.004236524924635887, 0.18417984247207642, 0.10951045155525208, 0.09805464744567871, 0.05863692983984947, 0.0024024364538490772, 0.0035491425078362226, 0.0063611785881221294, 0.45403093099594116, 0.12229572236537933, 0.5009863376617432, 0.5198487639427185], "count": [337]}, "timestamp": {"min": [0.0], "max": [11.2], "mean": [5.6000000000000005], "std": [3.2427697352040825], "count": [337]}, "frame_index": {"min": [0], "max": [336], "mean": [168.0], "std": [97.28309205612247], "count": [337]}, "episode_index": {"min": [220], "max": [220], "mean": [220.0], "std": [0.0], "count": [337]}, "index": {"min": [107085], "max": [107421], "mean": [107253.0], "std": [97.28309205612247], "count": [337]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [337]}}} +{"episode_index": 221, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5060670806100218]], [[0.4653495261437909]], [[0.41925243736383444]]], "std": [[[0.27415217683940835]], [[0.2532888289690562]], [[0.25072517515325127]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5202247140522875]], [[0.4922153349673203]], [[0.4507454983660131]]], "std": [[[0.2761298369201092]], [[0.23830998694293143]], [[0.24666097052040953]]], "count": [100]}, "observation.state": {"min": [0.23158931732177734, -0.12324708700180054, 0.11704721301794052, 0.19459226727485657, -1.2234432697296143, -1.089146614074707, -0.5619060397148132, -0.42116695642471313, 0.1901761144399643, -0.6565392017364502, -0.8839015364646912, -1.2461909055709839], "max": [0.34322914481163025, -0.01579299010336399, 0.13150084018707275, 2.4930038452148438, 0.12051338702440262, 1.0027525424957275, -0.4598964750766754, -0.34281983971595764, 0.22287632524967194, 1.9379544258117676, 1.0486851930618286, 1.389963984489441], "mean": [0.2925252616405487, -0.04755895584821701, 0.12509344518184662, 0.9450727701187134, -0.9249281287193298, 0.35422149300575256, -0.5134358406066895, -0.3797248601913452, 0.20578506588935852, 0.7069754004478455, 0.05141955241560936, -0.07449004799127579], "std": [0.02483421191573143, 0.03272559493780136, 0.004541161470115185, 0.7789616584777832, 0.3457832336425781, 0.6994227766990662, 0.027073614299297333, 0.017728270962834358, 0.008470548316836357, 0.9686999320983887, 0.4432777762413025, 0.7511981129646301], "count": [417]}, "action": {"min": [-0.155288964509964, -0.102200947701931, 0.11959078162908554, 0.016235781833529472, 0.14604952931404114, -0.15570878982543945, 0.5413272976875305, 0.10048539191484451, -0.15296638011932373, 0.09361342340707779, -0.6262855529785156, -0.31264176964759827, -0.6108035445213318, -0.6409722566604614], "max": [-0.14536377787590027, -0.08581084758043289, 0.13815763592720032, 0.7271303534507751, 0.7557269930839539, 0.39686983823776245, 0.754447877407074, 0.11691407859325409, -0.13205984234809875, 0.12196198850870132, 0.38730111718177795, 0.4636218845844269, 0.8170608878135681, 0.9768807888031006], "mean": [-0.14886163175106049, -0.08924873173236847, 0.12962107360363007, 0.2272283136844635, 0.6406264901161194, 0.0368322990834713, 0.6645110249519348, 0.10981397330760956, -0.143313929438591, 0.10335696488618851, -0.08443086594343185, -0.03290901333093643, 0.25887778401374817, 0.44770389795303345], "std": [0.002064535627141595, 0.004206015262752771, 0.004773308522999287, 0.20360800623893738, 0.16438908874988556, 0.15759755671024323, 0.04143119603395462, 0.004680403508245945, 0.005372326355427504, 0.006190265994518995, 0.3720235228538513, 0.22475102543830872, 0.4375346302986145, 0.5864987373352051], "count": [417]}, "timestamp": {"min": [0.0], "max": [13.866666666666667], "mean": [6.933333333333332], "std": [4.012572833076148], "count": [417]}, "frame_index": {"min": [0], "max": [416], "mean": [208.0], "std": [120.37718499228443], "count": [417]}, "episode_index": {"min": [221], "max": [221], "mean": [221.0], "std": [0.0], "count": [417]}, "index": {"min": [107422], "max": [107838], "mean": [107630.0], "std": [120.37718499228443], "count": [417]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [417]}}} +{"episode_index": 222, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5143270173453998]], [[0.473646247067203]], [[0.4265422139475448]]], "std": [[[0.27375465154576817]], [[0.2529422240927523]], [[0.2508134803452314]]], "count": [104]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5293044086224233]], [[0.5011593111069215]], [[0.4591140465267304]]], "std": [[[0.2750067011327073]], [[0.2369924767600935]], [[0.24624040838144004]]], "count": [104]}, "observation.state": {"min": [0.1831832230091095, -0.15041567385196686, 0.11768758296966553, 0.25057947635650635, -1.11235773563385, -0.9770753383636475, -0.5817148685455322, -0.4534248113632202, 0.18907037377357483, -0.5200310349464417, -0.9724419713020325, -1.4111523628234863], "max": [0.36290666460990906, -0.014495570212602615, 0.13346990942955017, 2.4676313400268555, -0.13772958517074585, 0.9293659329414368, -0.40755176544189453, -0.3405802547931671, 0.22126244008541107, 2.02875018119812, 1.0020921230316162, 1.34309983253479], "mean": [0.3069092631340027, -0.059081271290779114, 0.12607409060001373, 0.9319341778755188, -0.8735312223434448, 0.34848108887672424, -0.5152533650398254, -0.3885568380355835, 0.20084889233112335, 1.1460487842559814, 0.061489202082157135, 0.255145788192749], "std": [0.028610778972506523, 0.0320465974509716, 0.004434553906321526, 0.715969979763031, 0.24553655087947845, 0.6284680962562561, 0.04155944660305977, 0.02728887088596821, 0.007493987213820219, 0.7296503186225891, 0.5023000836372375, 0.8145719170570374], "count": [491]}, "action": {"min": [-0.1650712490081787, -0.1043311059474945, 0.12204992026090622, 0.006384643726050854, 0.2576441168785095, -0.1536255180835724, 0.5970020890235901, 0.10426522046327591, -0.15052811801433563, 0.08674793690443039, -0.6106503009796143, -0.4534153640270233, -0.5657389760017395, -0.5715469717979431], "max": [-0.14131776988506317, -0.08424673974514008, 0.14025099575519562, 0.6912476420402527, 0.7290427684783936, 0.3736184537410736, 0.7425254583358765, 0.12388493865728378, -0.13058020174503326, 0.11779017746448517, 0.4825221002101898, 0.4841548204421997, 0.7470816969871521, 0.9755896925926208], "mean": [-0.14608754217624664, -0.09106659144163132, 0.1291612684726715, 0.21187295019626617, 0.6319043636322021, 0.006486664526164532, 0.6903848648071289, 0.11212578415870667, -0.14021959900856018, 0.0995573028922081, -0.0007615810609422624, -0.12234041839838028, 0.01923702470958233, 0.6893502473831177], "std": [0.0036103420425206423, 0.004718846641480923, 0.0040089767426252365, 0.19028834998607635, 0.13283072412014008, 0.15565626323223114, 0.032403137534856796, 0.004701019264757633, 0.005017820745706558, 0.007942662574350834, 0.3175134062767029, 0.2591140568256378, 0.3610208034515381, 0.4595300257205963], "count": [491]}, "timestamp": {"min": [0.0], "max": [16.333333333333332], "mean": [8.166666666666668], "std": [4.724639903973871], "count": [491]}, "frame_index": {"min": [0], "max": [490], "mean": [245.0], "std": [141.7391971192161], "count": [491]}, "episode_index": {"min": [222], "max": [222], "mean": [222.0], "std": [0.0], "count": [491]}, "index": {"min": [107839], "max": [108329], "mean": [108084.0], "std": [141.7391971192161], "count": [491]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [491]}}} +{"episode_index": 223, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4817069498910675]], [[0.44026900871459695]], [[0.39508357026143787]]], "std": [[[0.27175461272612556]], [[0.2507774318923378]], [[0.24727442849752634]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4927333551198257]], [[0.4656992701525054]], [[0.42405468409586056]]], "std": [[[0.27642982140235167]], [[0.2379719971588668]], [[0.24473025496946496]]], "count": [100]}, "observation.state": {"min": [0.1721319854259491, -0.1640540063381195, 0.11294186115264893, 0.6800245046615601, -1.0555169582366943, -0.8242334723472595, -0.6022109985351562, -0.47629955410957336, 0.19255998730659485, -0.7089617252349854, -1.139548420906067, -1.2553973197937012], "max": [0.2717706859111786, -0.01800169050693512, 0.13032770156860352, 2.5349416732788086, 0.010930920019745827, 0.7940388321876526, -0.44858264923095703, -0.3332127630710602, 0.23047387599945068, 1.6315973997116089, 0.6327636241912842, 0.475021094083786], "mean": [0.23932796716690063, -0.05766366422176361, 0.12447761744260788, 1.5065016746520996, -0.7397534847259521, 0.035768236964941025, -0.5382477641105652, -0.3940163254737854, 0.21342045068740845, 0.319706529378891, -0.030652720481157303, -0.3813413977622986], "std": [0.019954774528741837, 0.0375496968626976, 0.005182424560189247, 0.6491385698318481, 0.37447014451026917, 0.5761457085609436, 0.031194353476166725, 0.02844482846558094, 0.007677691988646984, 0.8938930034637451, 0.4315696060657501, 0.5917242765426636], "count": [359]}, "action": {"min": [-0.1682470142841339, -0.10046307742595673, 0.11953633278608322, 0.026450028643012047, 0.13725076615810394, -0.032144270837306976, 0.6311651468276978, 0.09352365136146545, -0.16520632803440094, 0.08632395416498184, -0.6026231050491333, -0.3264438509941101, -0.6434124112129211, -0.6039894819259644], "max": [-0.15283997356891632, -0.08083793520927429, 0.13927888870239258, 0.6358612775802612, 0.6411457657814026, 0.43865829706192017, 0.8023749589920044, 0.12331784516572952, -0.13190308213233948, 0.11994197964668274, 0.8092373609542847, 0.4355688989162445, 0.8274327516555786, 0.9388399720191956], "mean": [-0.15598878264427185, -0.08976968377828598, 0.13240700960159302, 0.2810021936893463, 0.4855875074863434, 0.15888971090316772, 0.7456457018852234, 0.102247454226017, -0.15003244578838348, 0.10173282027244568, 0.09492333233356476, -0.0006115403375588357, 0.09277749806642532, 0.27108094096183777], "std": [0.0034646999556571245, 0.005905875936150551, 0.0044151050969958305, 0.20838536322116852, 0.17984940111637115, 0.1583717167377472, 0.056188758462667465, 0.005711575038731098, 0.006931744050234556, 0.007654298562556505, 0.5010858774185181, 0.21565505862236023, 0.5607795119285583, 0.544820249080658], "count": [359]}, "timestamp": {"min": [0.0], "max": [11.933333333333334], "mean": [5.966666666666667], "std": [3.454465708808431], "count": [359]}, "frame_index": {"min": [0], "max": [358], "mean": [179.0], "std": [103.63397126425292], "count": [359]}, "episode_index": {"min": [223], "max": [223], "mean": [223.0], "std": [0.0], "count": [359]}, "index": {"min": [108330], "max": [108688], "mean": [108509.0], "std": [103.63397126425292], "count": [359]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [359]}}} +{"episode_index": 224, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5006107461873639]], [[0.45896755174291937]], [[0.4119339705882353]]], "std": [[[0.27250577913504553]], [[0.25171426715231404]], [[0.24908179054982338]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5172474754901961]], [[0.4878873393246187]], [[0.4452538289760349]]], "std": [[[0.27456839587188375]], [[0.2367845311494748]], [[0.24474405936075572]]], "count": [100]}, "observation.state": {"min": [0.1821792721748352, -0.11618851870298386, 0.11567185074090958, 0.43846166133880615, -1.0861235857009888, -1.1009082794189453, -0.5677907466888428, -0.5054605603218079, 0.1901320368051529, -0.741044282913208, -0.2997804880142212, -1.3930490016937256], "max": [0.31134968996047974, -0.03311508148908615, 0.13106918334960938, 2.469308853149414, 0.23323850333690643, 0.8772491812705994, -0.46080002188682556, -0.339414119720459, 0.22558298707008362, 1.7771222591400146, 0.9673864245414734, 0.40155187249183655], "mean": [0.2647397220134735, -0.06429018080234528, 0.12576621770858765, 1.5244967937469482, -0.8193122148513794, -0.1431151181459427, -0.508478581905365, -0.4018087089061737, 0.20597434043884277, 0.32893019914627075, 0.3183618485927582, -0.5831908583641052], "std": [0.022912034764885902, 0.02579857036471367, 0.0039561036974191666, 0.6220036149024963, 0.3828563988208771, 0.597616970539093, 0.028919054195284843, 0.03903153911232948, 0.008194062858819962, 0.9130328893661499, 0.3054661452770233, 0.6171860098838806], "count": [329]}, "action": {"min": [-0.1653738021850586, -0.10107909142971039, 0.12085265666246414, 0.04268858581781387, 0.10860709100961685, -0.0850747674703598, 0.510792076587677, 0.10169399529695511, -0.15721087157726288, 0.08471978455781937, -0.6111114621162415, -0.48602378368377686, -0.6115010380744934, -0.5576048493385315], "max": [-0.14891664683818817, -0.08464198559522629, 0.1423761248588562, 0.7650092244148254, 0.7002626657485962, 0.3903987407684326, 0.7929173707962036, 0.1224043145775795, -0.13493841886520386, 0.12417575716972351, 0.657250702381134, 0.5177815556526184, 0.8193689584732056, 0.9341351389884949], "mean": [-0.1513577252626419, -0.08994642645120621, 0.1316571980714798, 0.331113338470459, 0.5373786091804504, 0.12968385219573975, 0.7021978497505188, 0.11111462116241455, -0.1454181671142578, 0.10164486616849899, -0.09526718407869339, 0.05059552565217018, 0.32355231046676636, 0.1868889480829239], "std": [0.0032213961239904165, 0.00458147656172514, 0.004503338597714901, 0.20271293818950653, 0.1633191555738449, 0.1379900872707367, 0.0698687806725502, 0.0052113039419054985, 0.006018562242388725, 0.009243390522897243, 0.43116554617881775, 0.30300235748291016, 0.5030363202095032, 0.5639066696166992], "count": [329]}, "timestamp": {"min": [0.0], "max": [10.933333333333334], "mean": [5.466666666666667], "std": [3.165789352155671], "count": [329]}, "frame_index": {"min": [0], "max": [328], "mean": [164.0], "std": [94.97368056467013], "count": [329]}, "episode_index": {"min": [224], "max": [224], "mean": [224.0], "std": [0.0], "count": [329]}, "index": {"min": [108689], "max": [109017], "mean": [108853.0], "std": [94.97368056467013], "count": [329]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [329]}}} +{"episode_index": 225, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4968629003267974]], [[0.45782279956427013]], [[0.410621364379085]]], "std": [[[0.27282923709516144]], [[0.2522670137758305]], [[0.249297693166926]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5118252233115469]], [[0.4856358741830065]], [[0.44251681644880175]]], "std": [[[0.2751945950340708]], [[0.23734015337237074]], [[0.24499948027947793]]], "count": [100]}, "observation.state": {"min": [0.19877542555332184, -0.11974869668483734, 0.11287964135408401, 0.5149984955787659, -0.9553624391555786, -0.9633964896202087, -0.5790582299232483, -0.42615583539009094, 0.196456640958786, -0.5837767720222473, -0.1996259242296219, -1.1714011430740356], "max": [0.28649795055389404, -0.03500714898109436, 0.12961344420909882, 2.563459634780884, -0.04222067818045616, 0.9453559517860413, -0.49467965960502625, -0.33291929960250854, 0.22923332452774048, 1.6261454820632935, 0.6937035322189331, 0.31100940704345703], "mean": [0.24696826934814453, -0.05785611271858215, 0.12230421602725983, 1.2992570400238037, -0.7725310921669006, 0.18492011725902557, -0.5296756029129028, -0.36357244849205017, 0.20976035296916962, 0.6096969246864319, 0.278373658657074, -0.376579225063324], "std": [0.02036171220242977, 0.02654050849378109, 0.005169630516320467, 0.5585113763809204, 0.24524874985218048, 0.5458138585090637, 0.01963920332491398, 0.019605379551649094, 0.008353409357368946, 0.8802597522735596, 0.18332234025001526, 0.5302837491035461], "count": [309]}, "action": {"min": [-0.1653193086385727, -0.10105791687965393, 0.12212163209915161, -0.050782378762960434, 0.18219196796417236, -0.09421342611312866, 0.5954075455665588, 0.09691908955574036, -0.15563496947288513, 0.09119828790426254, -0.6668563485145569, -0.4455679953098297, -0.6494452953338623, -0.5486859679222107], "max": [-0.1512267291545868, -0.08108729124069214, 0.13509328663349152, 0.6927723288536072, 0.6361371874809265, 0.4277978241443634, 0.8269048929214478, 0.1094437763094902, -0.1322847157716751, 0.12401917576789856, 0.6535633206367493, 0.44524654746055603, 0.8019148111343384, 0.8827219605445862], "mean": [-0.1551070511341095, -0.0887727364897728, 0.13022254407405853, 0.22400864958763123, 0.5208961963653564, 0.09008584916591644, 0.7732860445976257, 0.10330639034509659, -0.14307399094104767, 0.10613442957401276, 0.0001489259593654424, -0.08607736974954605, 0.20002523064613342, 0.3523281216621399], "std": [0.0031463815830647945, 0.0045231301337480545, 0.004128425382077694, 0.19194971024990082, 0.12866142392158508, 0.12856538593769073, 0.049729444086551666, 0.003064329270273447, 0.00677539361640811, 0.007018785458058119, 0.453616738319397, 0.29380786418914795, 0.48007285594940186, 0.5530682802200317], "count": [309]}, "timestamp": {"min": [0.0], "max": [10.266666666666667], "mean": [5.133333333333333], "std": [2.973338315890195], "count": [309]}, "frame_index": {"min": [0], "max": [308], "mean": [154.0], "std": [89.20014947670585], "count": [309]}, "episode_index": {"min": [225], "max": [225], "mean": [225.0], "std": [0.0], "count": [309]}, "index": {"min": [109018], "max": [109326], "mean": [109172.0], "std": [89.20014947670585], "count": [309]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [309]}}} +{"episode_index": 226, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49663282952069715]], [[0.4598354820261438]], [[0.4125972848583878]]], "std": [[[0.2685926487063171]], [[0.2486283222502632]], [[0.24866687830562875]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5127612745098039]], [[0.4887906154684096]], [[0.4463711791938998]]], "std": [[[0.2689063942508583]], [[0.23175322594964198]], [[0.24276691894011168]]], "count": [100]}, "observation.state": {"min": [0.2333037555217743, -0.16420075297355652, 0.12201330065727234, 0.8245008587837219, -0.8572574257850647, -1.1452611684799194, -0.5579442977905273, -0.40742048621177673, 0.19037185609340668, -0.3583601117134094, -0.2919921875, -1.1264046430587769], "max": [0.31128019094467163, -0.05739535018801689, 0.13992932438850403, 2.3999013900756836, 0.20304183661937714, 0.34714803099632263, -0.4389446973800659, -0.3384719491004944, 0.22189763188362122, 1.7274256944656372, 1.1070289611816406, 0.3957729637622833], "mean": [0.28672105073928833, -0.08458669483661652, 0.13095340132713318, 1.5347572565078735, -0.6249472498893738, -0.2941504120826721, -0.5043441653251648, -0.36933496594429016, 0.20469693839550018, 0.8633193969726562, 0.17916692793369293, -0.22444632649421692], "std": [0.02142600528895855, 0.02817896008491516, 0.006119009107351303, 0.5279701352119446, 0.2637133002281189, 0.49182412028312683, 0.03604976832866669, 0.015791499987244606, 0.007664342410862446, 0.786394476890564, 0.4197295308113098, 0.565682053565979], "count": [281]}, "action": {"min": [-0.1566038578748703, -0.11346153169870377, 0.12699604034423828, 0.16057716310024261, 0.10436064749956131, -0.1417168527841568, 0.5221351385116577, 0.10464539378881454, -0.15026508271694183, 0.09256115555763245, -0.5778118968009949, -0.43516042828559875, -0.5155923962593079, -0.5552783012390137], "max": [-0.14267340302467346, -0.08750713616609573, 0.1427762657403946, 0.8023113012313843, 0.5433130264282227, 0.3330647349357605, 0.822849690914154, 0.11905908584594727, -0.128447487950325, 0.12593252956867218, 0.4956345856189728, 0.567192018032074, 0.7467628717422485, 0.9621981978416443], "mean": [-0.14679941534996033, -0.09560058265924454, 0.13432231545448303, 0.39088475704193115, 0.46755141019821167, 0.06318702548742294, 0.7396349310874939, 0.11120150238275528, -0.1410577893257141, 0.10538079589605331, 0.019955303519964218, -0.02266288734972477, 0.19300056993961334, 0.4195433557033539], "std": [0.0037541675847023726, 0.006648116745054722, 0.004596511367708445, 0.18277616798877716, 0.11306263506412506, 0.15195493400096893, 0.09094960987567902, 0.003358535934239626, 0.004707776475697756, 0.008300418965518475, 0.40097343921661377, 0.2909843623638153, 0.38974490761756897, 0.6232734322547913], "count": [281]}, "timestamp": {"min": [0.0], "max": [9.333333333333334], "mean": [4.666666666666667], "std": [2.703906638756433], "count": [281]}, "frame_index": {"min": [0], "max": [280], "mean": [140.0], "std": [81.11719916269298], "count": [281]}, "episode_index": {"min": [226], "max": [226], "mean": [226.0], "std": [0.0], "count": [281]}, "index": {"min": [109327], "max": [109607], "mean": [109467.0], "std": [81.11719916269298], "count": [281]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [281]}}} +{"episode_index": 227, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4951315876906318]], [[0.4583434885620915]], [[0.4109931808278867]]], "std": [[[0.2737636830706438]], [[0.25267484199752993]], [[0.2508811484467647]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5108755501089324]], [[0.4870508142701525]], [[0.4441791013071895]]], "std": [[[0.2753988877046422]], [[0.2365955611594502]], [[0.2456790016035389]]], "count": [100]}, "observation.state": {"min": [0.18638816475868225, -0.1375804841518402, 0.11832535266876221, 0.6238275766372681, -1.032971978187561, -1.0226408243179321, -0.5461748242378235, -0.43632668256759644, 0.19180555641651154, -0.6280213594436646, 0.06435579061508179, -1.1755157709121704], "max": [0.28604230284690857, -0.033339038491249084, 0.1348128616809845, 2.239278793334961, -0.18459591269493103, 0.6548393368721008, -0.4975602328777313, -0.346287339925766, 0.2232600301504135, 1.788655161857605, 0.8912798762321472, 0.32607102394104004], "mean": [0.2497890293598175, -0.06439581513404846, 0.12868967652320862, 1.453692078590393, -0.8091883659362793, -0.1590939164161682, -0.5171528458595276, -0.3738798499107361, 0.2072797417640686, 0.640501081943512, 0.32642608880996704, -0.29620975255966187], "std": [0.02160562574863434, 0.028370410203933716, 0.00525927497074008, 0.5175075531005859, 0.2790215313434601, 0.5214900970458984, 0.010815362446010113, 0.018837610259652138, 0.007303095422685146, 0.9497610926628113, 0.23670043051242828, 0.5575934648513794], "count": [262]}, "action": {"min": [-0.16430309414863586, -0.10589158535003662, 0.12460900098085403, 0.09719336777925491, 0.2461656928062439, -0.08595327287912369, 0.62430739402771, 0.10319151729345322, -0.15206784009933472, 0.09077876806259155, -0.6111183762550354, -0.4737582802772522, -0.5704469680786133, -0.5679889917373657], "max": [-0.14912049472332, -0.0856127068400383, 0.14147624373435974, 0.7160472869873047, 0.6507433652877808, 0.2669467329978943, 0.8106836080551147, 0.1137009784579277, -0.13217632472515106, 0.11882573366165161, 0.5034680962562561, 0.488446444272995, 0.8094850182533264, 0.9105849266052246], "mean": [-0.15280918776988983, -0.09216875582933426, 0.13475100696086884, 0.34730783104896545, 0.5236990451812744, 0.08108263462781906, 0.7307359576225281, 0.1072041317820549, -0.1428796499967575, 0.10483859479427338, -0.046459414064884186, -0.06039302051067352, 0.2773103415966034, 0.30570223927497864], "std": [0.003582770237699151, 0.00544092757627368, 0.004955952521413565, 0.179043248295784, 0.134671151638031, 0.1112697571516037, 0.04464628919959068, 0.00235767406411469, 0.00474710576236248, 0.006736985873430967, 0.39289823174476624, 0.3041982650756836, 0.45693090558052063, 0.6067518591880798], "count": [262]}, "timestamp": {"min": [0.0], "max": [8.7], "mean": [4.3500000000000005], "std": [2.5210778118363053], "count": [262]}, "frame_index": {"min": [0], "max": [261], "mean": [130.5], "std": [75.63233435508916], "count": [262]}, "episode_index": {"min": [227], "max": [227], "mean": [227.0], "std": [0.0], "count": [262]}, "index": {"min": [109608], "max": [109869], "mean": [109738.5], "std": [75.63233435508916], "count": [262]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [262]}}} +{"episode_index": 228, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48899044934640523]], [[0.45169781590413943]], [[0.40839336328976034]]], "std": [[[0.27196125937486476]], [[0.25190474423726916]], [[0.2506026404485804]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5030937118736384]], [[0.47979517973856206]], [[0.4412638916122004]]], "std": [[[0.2749901558800739]], [[0.23758882607116236]], [[0.24675819785863579]]], "count": [100]}, "observation.state": {"min": [0.19851285219192505, -0.1666102409362793, 0.11614499241113663, 0.7274144291877747, -1.1947495937347412, -1.1953320503234863, -0.579390287399292, -0.4738282859325409, 0.1878155767917633, -0.6959609389305115, -0.14579114317893982, -1.2853128910064697], "max": [0.2856098413467407, -0.039988309144973755, 0.13332213461399078, 2.5399742126464844, 0.009291280061006546, 0.63258296251297, -0.49070245027542114, -0.34583941102027893, 0.22420501708984375, 1.5422695875167847, 0.7126959562301636, 0.45486557483673096], "mean": [0.24202609062194824, -0.07860654592514038, 0.12522411346435547, 1.5540038347244263, -0.8737824559211731, -0.16188697516918182, -0.5343117713928223, -0.3993125557899475, 0.205289825797081, 0.41461172699928284, 0.1639772653579712, -0.3801548480987549], "std": [0.02114606462419033, 0.03739849105477333, 0.004974388983100653, 0.58570796251297, 0.2945747971534729, 0.5499135851860046, 0.02405606023967266, 0.02565314993262291, 0.007844051346182823, 0.918589174747467, 0.246987447142601, 0.6765362620353699], "count": [307]}, "action": {"min": [-0.1637757420539856, -0.108897864818573, 0.12021242827177048, 0.11741247773170471, 0.19220545887947083, -0.020865779370069504, 0.5112121105194092, 0.09978493303060532, -0.1564173400402069, 0.08135999739170074, -0.6096291542053223, -0.3385483920574188, -0.5815633535385132, -0.591022789478302], "max": [-0.1509036421775818, -0.08606075495481491, 0.13927526772022247, 0.7773685455322266, 0.6864409446716309, 0.39909830689430237, 0.782412052154541, 0.11728347092866898, -0.13209152221679688, 0.12212403863668442, 0.4712423086166382, 0.4592154920101166, 0.8164299726486206, 0.9399439096450806], "mean": [-0.1548132598400116, -0.09178730845451355, 0.1307622492313385, 0.3359047472476959, 0.5413835048675537, 0.1357107311487198, 0.7123902440071106, 0.1070408746600151, -0.14458177983760834, 0.09886829555034637, -0.1489780694246292, 0.02290206402540207, 0.340400367975235, 0.2820206582546234], "std": [0.0030264502856880426, 0.005768826697021723, 0.004702103324234486, 0.17104873061180115, 0.12814097106456757, 0.13168871402740479, 0.07165712863206863, 0.004169787745922804, 0.00484326621517539, 0.008199943229556084, 0.4078577160835266, 0.24552011489868164, 0.4569368362426758, 0.5886031985282898], "count": [307]}, "timestamp": {"min": [0.0], "max": [10.2], "mean": [5.1], "std": [2.9540932054806035], "count": [307]}, "frame_index": {"min": [0], "max": [306], "mean": [153.0], "std": [88.6227961644181], "count": [307]}, "episode_index": {"min": [228], "max": [228], "mean": [228.0], "std": [0.0], "count": [307]}, "index": {"min": [109870], "max": [110176], "mean": [110023.0], "std": [88.6227961644181], "count": [307]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [307]}}} +{"episode_index": 229, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4931138017429194]], [[0.4502595806100218]], [[0.405121394335512]]], "std": [[[0.2723661666697495]], [[0.2517994116634638]], [[0.24858588030639442]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5076426960784314]], [[0.47801645697167755]], [[0.43718769607843133]]], "std": [[[0.27535053352849687]], [[0.23797327578855998]], [[0.2448129225985021]]], "count": [100]}, "observation.state": {"min": [0.13039833307266235, -0.16321223974227905, 0.11464518308639526, 0.7290919423103333, -1.2656638622283936, -1.0824376344680786, -0.5718992352485657, -0.44543951749801636, 0.18582706153392792, -0.6309570670127869, -0.2702670097351074, -1.1719591617584229], "max": [0.277578204870224, 0.012580329552292824, 0.12888363003730774, 2.9981467723846436, -0.18637219071388245, 0.7035570740699768, -0.48262447118759155, -0.3410590589046478, 0.23052962124347687, 1.6108381748199463, 1.0667212009429932, 0.4860265552997589], "mean": [0.24933260679244995, -0.07237622141838074, 0.12465092539787292, 1.855605125427246, -0.9346575140953064, -0.4113270938396454, -0.5340452790260315, -0.3820485770702362, 0.2045237421989441, 0.5324499607086182, 0.11886826157569885, -0.19602862000465393], "std": [0.022838134318590164, 0.03711673989892006, 0.004211390856653452, 0.5947427749633789, 0.26212993264198303, 0.5495933294296265, 0.019951876252889633, 0.021434426307678223, 0.010130888782441616, 0.9189562201499939, 0.27987948060035706, 0.5402405261993408], "count": [374]}, "action": {"min": [-0.17547526955604553, -0.10287921130657196, 0.12161761522293091, 0.11416329443454742, 0.26722174882888794, 0.03414227440953255, 0.5739932060241699, 0.09832198172807693, -0.15555605292320251, 0.08371955901384354, -0.6112175583839417, -0.2886614501476288, -0.6137857437133789, -0.6045070290565491], "max": [-0.1492798626422882, -0.07180452346801758, 0.147425577044487, 0.722028911113739, 0.69590824842453, 0.5549812316894531, 0.74673992395401, 0.11409752815961838, -0.12784910202026367, 0.12590724229812622, 0.48704543709754944, 0.5456984639167786, 0.8221031427383423, 0.9562539458274841], "mean": [-0.15380634367465973, -0.08838195353746414, 0.13148996233940125, 0.3643539249897003, 0.5592305064201355, 0.20271050930023193, 0.6783868074417114, 0.10660786181688309, -0.14205031096935272, 0.10058988630771637, -0.05894724652171135, -0.058893535286188126, 0.2616446316242218, 0.36235281825065613], "std": [0.004831136204302311, 0.005618148948997259, 0.005243151448667049, 0.15227805078029633, 0.1130194216966629, 0.12579645216464996, 0.037694405764341354, 0.003122837282717228, 0.006488862447440624, 0.009170548990368843, 0.4129170775413513, 0.20841354131698608, 0.47620558738708496, 0.5937938690185547], "count": [374]}, "timestamp": {"min": [0.0], "max": [12.433333333333334], "mean": [6.216666666666665], "std": [3.598803813614864], "count": [374]}, "frame_index": {"min": [0], "max": [373], "mean": [186.5], "std": [107.96411440844592], "count": [374]}, "episode_index": {"min": [229], "max": [229], "mean": [229.0], "std": [0.0], "count": [374]}, "index": {"min": [110177], "max": [110550], "mean": [110363.5], "std": [107.96411440844592], "count": [374]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [374]}}} +{"episode_index": 230, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4999148011982571]], [[0.4577938200280112]], [[0.4097962729536259]]], "std": [[[0.2740421905973263]], [[0.25217175018068294]], [[0.24806328014059817]]], "count": [140]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5154512060379707]], [[0.48563613056333643]], [[0.441213138032991]]], "std": [[[0.2781481161805233]], [[0.23812056898465625]], [[0.24500490636019587]]], "count": [140]}, "observation.state": {"min": [0.18704459071159363, -0.15538911521434784, 0.1224825531244278, 0.7402055263519287, -1.303922176361084, -1.1089681386947632, -0.6085668206214905, -0.40832406282424927, 0.1913285255432129, 2.6395769119262695, -0.48423975706100464, -0.15766607224941254], "max": [0.2804742157459259, 0.006772839929908514, 0.1339508295059204, 2.5150210857391357, -0.3618134558200836, 0.6462205052375793, -0.4891887903213501, -0.3108631670475006, 0.2253522425889969, 4.540206432342529, 0.47153255343437195, 0.9570598006248474], "mean": [0.23833589255809784, -0.061399757862091064, 0.12724021077156067, 1.8651829957962036, -1.1068129539489746, -0.37531810998916626, -0.552367627620697, -0.3440019190311432, 0.20621448755264282, 3.3265633583068848, -0.0008836413035169244, 0.5061392188072205], "std": [0.01714378222823143, 0.03091437928378582, 0.0030487379990518093, 0.38379552960395813, 0.20991641283035278, 0.39125484228134155, 0.02508872002363205, 0.024533122777938843, 0.006003853399306536, 0.6017122268676758, 0.20974737405776978, 0.3203253149986267], "count": [732]}, "action": {"min": [-0.16354118287563324, -0.10458947718143463, 0.13011665642261505, 0.13620206713676453, 0.35192742943763733, 0.030012179166078568, 0.5739590525627136, 0.09407814592123032, -0.15145042538642883, 0.08683660626411438, -0.3379381000995636, -0.7027087807655334, -0.6016784906387329, -0.703039824962616], "max": [-0.1490069329738617, -0.0809769481420517, 0.14180436730384827, 0.6911898851394653, 0.7165813446044922, 0.37565183639526367, 0.8117412328720093, 0.11000441014766693, -0.12925930321216583, 0.1246519386768341, 0.23086731135845184, 0.7321399450302124, 0.899446427822113, 0.7657122015953064], "mean": [-0.15381306409835815, -0.0870075672864914, 0.13427402079105377, 0.30762770771980286, 0.606680154800415, 0.2011033296585083, 0.6874725222587585, 0.10135891288518906, -0.13810521364212036, 0.1046699658036232, -0.09073511511087418, -0.19748751819133759, 0.2973049581050873, 0.21090562641620636], "std": [0.0028562978841364384, 0.004054310731589794, 0.0036832201294600964, 0.10694365948438644, 0.07930551469326019, 0.06563151627779007, 0.047011829912662506, 0.003173298668116331, 0.0052053360268473625, 0.007074710447341204, 0.1307525634765625, 0.5524682402610779, 0.43230271339416504, 0.5573968291282654], "count": [732]}, "timestamp": {"min": [0.0], "max": [24.366666666666667], "mean": [12.183333333333334], "std": [7.043666711361402], "count": [732]}, "frame_index": {"min": [0], "max": [731], "mean": [365.5], "std": [211.31000134084204], "count": [732]}, "episode_index": {"min": [230], "max": [230], "mean": [230.0], "std": [0.0], "count": [732]}, "index": {"min": [110551], "max": [111282], "mean": [110916.5], "std": [211.31000134084204], "count": [732]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [732]}}} +{"episode_index": 231, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5015993899782135]], [[0.4625416067538127]], [[0.41441986383442264]]], "std": [[[0.2734029405299787]], [[0.2535551040049395]], [[0.2507614509398016]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5161014787581699]], [[0.4896269934640523]], [[0.4448459477124183]]], "std": [[[0.27744416929025245]], [[0.23966847940676295]], [[0.24809185038815515]]], "count": [100]}, "observation.state": {"min": [0.21476919949054718, -0.11912315338850021, 0.11860276013612747, 0.8515508770942688, -1.0380275249481201, -0.7987033724784851, -0.594789445400238, -0.3944694697856903, 0.19353091716766357, 2.619866132736206, -0.6763506531715393, -0.28256234526634216], "max": [0.2676544785499573, -0.016294969245791435, 0.13598859310150146, 2.6594974994659424, -0.4321812391281128, 0.6193910837173462, -0.5083875060081482, -0.3211652934551239, 0.22304613888263702, 4.544190883636475, 0.46278780698776245, 1.156925916671753], "mean": [0.23790386319160461, -0.05425693839788437, 0.12894640862941742, 1.8489216566085815, -0.8049052357673645, -0.28065025806427, -0.5579613447189331, -0.35814276337623596, 0.2077602744102478, 3.8423736095428467, 0.008843405172228813, 0.2978176772594452], "std": [0.013797626830637455, 0.024430876597762108, 0.005504433996975422, 0.4235514998435974, 0.16708099842071533, 0.4025375247001648, 0.02671021595597267, 0.020823592320084572, 0.006119869649410248, 0.8304091095924377, 0.2893180549144745, 0.4731737971305847], "count": [378]}, "action": {"min": [-0.16194778680801392, -0.10200010240077972, 0.12789122760295868, 0.07453138381242752, 0.30228638648986816, 0.0023206588812172413, 0.6912600994110107, 0.09625885635614395, -0.15258736908435822, 0.09304971992969513, -0.433775395154953, -0.6064013242721558, -0.5689472556114197, -0.5811054110527039], "max": [-0.14930590987205505, -0.0814007818698883, 0.1455007642507553, 0.5813971757888794, 0.6155881285667419, 0.497422993183136, 0.7991039156913757, 0.11052627861499786, -0.12984292209148407, 0.11745408177375793, 0.2660011053085327, 0.6026195287704468, 0.9426575899124146, 0.7931657433509827], "mean": [-0.1543305218219757, -0.0889158621430397, 0.1380503624677658, 0.32809901237487793, 0.48332399129867554, 0.21343794465065002, 0.7614853382110596, 0.10122877359390259, -0.14060887694358826, 0.10393264889717102, -0.17314037680625916, -0.4446677267551422, 0.6412598490715027, 0.32836902141571045], "std": [0.002091426867991686, 0.004987512249499559, 0.005090928636491299, 0.12938135862350464, 0.08041456341743469, 0.09601634740829468, 0.030135009437799454, 0.003298442577943206, 0.0061260126531124115, 0.004647251684218645, 0.09982283413410187, 0.15494170784950256, 0.3195760250091553, 0.3422754108905792], "count": [378]}, "timestamp": {"min": [0.0], "max": [12.566666666666666], "mean": [6.283333333333333], "std": [3.6372939676918348], "count": [378]}, "frame_index": {"min": [0], "max": [377], "mean": [188.5], "std": [109.11881903075503], "count": [378]}, "episode_index": {"min": [231], "max": [231], "mean": [231.0], "std": [0.0], "count": [378]}, "index": {"min": [111283], "max": [111660], "mean": [111471.5], "std": [109.11881903075503], "count": [378]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [378]}}} +{"episode_index": 232, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5036579438997821]], [[0.4628182788671024]], [[0.41524038126361656]]], "std": [[[0.27176035869738496]], [[0.2529001913337599]], [[0.24986489752037355]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5187824482570805]], [[0.4910030174291939]], [[0.44671892701525057]]], "std": [[[0.2748919853573737]], [[0.23850753671290256]], [[0.2464054622896077]]], "count": [100]}, "observation.state": {"min": [0.16326630115509033, -0.14305590093135834, 0.11567702889442444, 0.4028143882751465, -1.2648440599441528, -1.1256822347640991, -0.577112078666687, -0.37340185046195984, 0.1927570253610611, 2.747148036956787, -0.7264962792396545, -0.259294718503952], "max": [0.2932784855365753, -0.012140139937400818, 0.13222676515579224, 2.5039076805114746, 0.08840382099151611, 0.967894434928894, -0.4903240203857422, -0.3244860768318176, 0.22456279397010803, 4.539158344268799, 0.17954036593437195, 1.0746504068374634], "mean": [0.2589699923992157, -0.046483203768730164, 0.12695950269699097, 1.394123911857605, -0.9244386553764343, -0.004259852692484856, -0.541879415512085, -0.3516799509525299, 0.20644722878932953, 3.875439405441284, -0.04748619347810745, 0.3381209671497345], "std": [0.024501217529177666, 0.03548775613307953, 0.005281918682157993, 0.6822459697723389, 0.3884834051132202, 0.6457594037055969, 0.024680322036147118, 0.012624295428395271, 0.006514029111713171, 0.7657197117805481, 0.24602636694908142, 0.4162840247154236], "count": [300]}, "action": {"min": [-0.1685599386692047, -0.10519100725650787, 0.1235690787434578, 0.0350542888045311, 0.15886183083057404, -0.04244744032621384, 0.5308952927589417, 0.0991695374250412, -0.14966247975826263, 0.09413294494152069, -0.4861062169075012, -0.662922739982605, -0.5484314560890198, -0.6021991968154907], "max": [-0.14779584109783173, -0.08185544610023499, 0.1440640538930893, 0.7574567794799805, 0.7275013327598572, 0.36575424671173096, 0.8667274117469788, 0.10932795703411102, -0.1277933120727539, 0.12134721875190735, 0.2939852476119995, 0.606334924697876, 0.9076180458068848, 0.7558788061141968], "mean": [-0.15213856101036072, -0.0887465700507164, 0.1333857923746109, 0.29970458149909973, 0.5781182050704956, 0.12464668601751328, 0.6852464079856873, 0.10350336879491806, -0.13950693607330322, 0.1052260547876358, -0.20050778985023499, -0.4818180203437805, 0.6401708126068115, 0.3336646556854248], "std": [0.003580803284421563, 0.005618961527943611, 0.005219474900513887, 0.19673147797584534, 0.17266762256622314, 0.1351601481437683, 0.06381311267614365, 0.0030530188232660294, 0.005048095248639584, 0.0055403150618076324, 0.10122885555028915, 0.14194932579994202, 0.2852312922477722, 0.3078048825263977], "count": [300]}, "timestamp": {"min": [0.0], "max": [9.966666666666667], "mean": [4.983333333333333], "std": [2.8867353083961027], "count": [300]}, "frame_index": {"min": [0], "max": [299], "mean": [149.5], "std": [86.60205925188308], "count": [300]}, "episode_index": {"min": [232], "max": [232], "mean": [232.0], "std": [0.0], "count": [300]}, "index": {"min": [111661], "max": [111960], "mean": [111810.5], "std": [86.60205925188308], "count": [300]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [300]}}} +{"episode_index": 233, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49759136982570806]], [[0.45288066448801745]], [[0.4078648828976035]]], "std": [[[0.27013641489454604]], [[0.25172416063472747]], [[0.24847726594793468]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5113538017429194]], [[0.4790373502178649]], [[0.4375746541394336]]], "std": [[[0.27364541937356696]], [[0.23871542469204712]], [[0.24558553820111229]]], "count": [100]}, "observation.state": {"min": [0.17295832931995392, -0.12776489555835724, 0.11237926781177521, 0.3812163174152374, -1.2865692377090454, -1.1495221853256226, -0.5986353754997253, -0.3998676538467407, 0.1926092505455017, 2.582331657409668, -0.6413717269897461, -0.09786895662546158], "max": [0.2675231993198395, 0.008247880265116692, 0.13008658587932587, 2.9572572708129883, 0.12269958108663559, 0.9228708148002625, -0.4909959137439728, -0.32348984479904175, 0.2281237095594406, 4.549642562866211, 0.30196666717529297, 1.1767719984054565], "mean": [0.23443758487701416, -0.038432776927948, 0.12304464727640152, 1.5445444583892822, -0.937893807888031, -0.17543673515319824, -0.5574042797088623, -0.3575061559677124, 0.208939790725708, 3.7603659629821777, -0.0008281494374386966, 0.4270798861980438], "std": [0.019061695784330368, 0.036311134696006775, 0.005137043539434671, 0.6886481642723083, 0.40285417437553406, 0.6197656393051147, 0.02944398671388626, 0.019108319655060768, 0.00786414835602045, 0.7966029047966003, 0.2514020502567291, 0.41680750250816345], "count": [295]}, "action": {"min": [-0.1673859804868698, -0.10141168534755707, 0.12242235243320465, 0.08571889996528625, 0.13006140291690826, -0.06125044822692871, 0.4716259837150574, 0.09463335573673248, -0.15389001369476318, 0.0903114601969719, -0.48864710330963135, -0.6793195605278015, -0.5879263877868652, -0.6525237560272217], "max": [-0.15314453840255737, -0.07918184250593185, 0.14060188829898834, 0.7765364646911621, 0.7309417128562927, 0.5978363752365112, 0.7452863454818726, 0.10718165338039398, -0.1283656507730484, 0.12360358983278275, 0.484706848859787, 0.6814977526664734, 0.8979544639587402, 0.7644068598747253], "mean": [-0.1566927433013916, -0.08525606244802475, 0.1322077512741089, 0.3343093693256378, 0.5692307353019714, 0.1399889886379242, 0.6753209233283997, 0.09993309527635574, -0.1414152830839157, 0.10398001968860626, -0.14967256784439087, -0.3554973602294922, 0.4716929793357849, 0.2089015543460846], "std": [0.003228057874366641, 0.005716660991311073, 0.004678227007389069, 0.18220514059066772, 0.16669835150241852, 0.15540985763072968, 0.05847283825278282, 0.004023722372949123, 0.006331338081508875, 0.007184370420873165, 0.1729429066181183, 0.4080129563808441, 0.4567035138607025, 0.4244101643562317], "count": [295]}, "timestamp": {"min": [0.0], "max": [9.8], "mean": [4.9], "std": [2.838622514139169], "count": [295]}, "frame_index": {"min": [0], "max": [294], "mean": [147.0], "std": [85.15867542417507], "count": [295]}, "episode_index": {"min": [233], "max": [233], "mean": [233.0], "std": [0.0], "count": [295]}, "index": {"min": [111961], "max": [112255], "mean": [112108.0], "std": [85.15867542417507], "count": [295]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [295]}}} +{"episode_index": 234, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4888907489106754]], [[0.4516691149237473]], [[0.4064814760348584]]], "std": [[[0.2712397258759508]], [[0.25183878771708673]], [[0.24891901978142458]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5001989106753812]], [[0.4771297576252724]], [[0.4347745016339869]]], "std": [[[0.2764593693788456]], [[0.23958360860092173]], [[0.2473847091444373]]], "count": [100]}, "observation.state": {"min": [0.18619509041309357, -0.11997266113758087, 0.11273834109306335, 0.965202808380127, -1.0795649290084839, -0.8899357318878174, -0.5761699080467224, -0.4001997411251068, 0.19863052666187286, 2.778182029724121, -0.5720970034599304, -0.18869006633758545], "max": [0.23832353949546814, -0.0036605799105018377, 0.13369028270244598, 2.4229671955108643, -0.10261400789022446, 0.5334582924842834, -0.5145888328552246, -0.319489449262619, 0.2281496226787567, 4.54922342300415, 0.2791483700275421, 0.9658200740814209], "mean": [0.22062350809574127, -0.05134154483675957, 0.12441983819007874, 1.7154954671859741, -0.7697479724884033, -0.2788146138191223, -0.5548065900802612, -0.36784249544143677, 0.21092474460601807, 3.69748592376709, -0.1784995049238205, 0.32498684525489807], "std": [0.014205976389348507, 0.029011191800236702, 0.0055755432695150375, 0.3868478834629059, 0.2856564521789551, 0.40820303559303284, 0.014984158799052238, 0.022077515721321106, 0.0075131552293896675, 0.7355359196662903, 0.21370139718055725, 0.37010058760643005], "count": [301]}, "action": {"min": [-0.1659844070672989, -0.10241680592298508, 0.12537311017513275, 0.09780671447515488, 0.19041964411735535, 0.0033485963940620422, 0.6765721440315247, 0.09330788254737854, -0.15257173776626587, 0.09199096262454987, -0.4193090498447418, -0.6754298210144043, 0.23874974250793457, 0.09861911088228226], "max": [-0.15271136164665222, -0.07783577591180801, 0.14117664098739624, 0.6758023500442505, 0.597144603729248, 0.3981795907020569, 0.8129959106445312, 0.10656490176916122, -0.13528412580490112, 0.12179237604141235, -0.0016588158905506134, -0.34965476393699646, 0.8996292352676392, 0.7280312776565552], "mean": [-0.15812282264232635, -0.08737960457801819, 0.1346786916255951, 0.35521164536476135, 0.4710576832294464, 0.15516817569732666, 0.7605684995651245, 0.09902376681566238, -0.1434672474861145, 0.1041451171040535, -0.22078639268875122, -0.491346150636673, 0.6079961061477661, 0.4433920681476593], "std": [0.003314391942694783, 0.006204589735716581, 0.0036994582042098045, 0.15697377920150757, 0.12497422844171524, 0.08900335431098938, 0.03473005071282387, 0.002871460746973753, 0.003968867007642984, 0.007788314018398523, 0.10648329555988312, 0.09195123612880707, 0.2288416475057602, 0.267234742641449], "count": [301]}, "timestamp": {"min": [0.0], "max": [10.0], "mean": [5.0], "std": [2.8963578661637945], "count": [301]}, "frame_index": {"min": [0], "max": [300], "mean": [150.0], "std": [86.89073598491383], "count": [301]}, "episode_index": {"min": [234], "max": [234], "mean": [234.0], "std": [0.0], "count": [301]}, "index": {"min": [112256], "max": [112556], "mean": [112406.0], "std": [86.89073598491383], "count": [301]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [301]}}} +{"episode_index": 235, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49605036492374727]], [[0.4573878676470588]], [[0.4114976089324619]]], "std": [[[0.2729985137684924]], [[0.2539401426052862]], [[0.2518374628888317]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5106833142701525]], [[0.4852176960784314]], [[0.4426174537037037]]], "std": [[[0.2759606163818591]], [[0.23945528953099185]], [[0.24832437166357144]]], "count": [100]}, "observation.state": {"min": [0.17068012058734894, -0.1324603110551834, 0.11810238659381866, 0.8809074759483337, -1.0878998041152954, -1.0282825231552124, -0.590696394443512, -0.4371839165687561, 0.18888242542743683, 2.6800472736358643, -0.8871808052062988, -0.38806867599487305], "max": [0.2769680917263031, -0.01543773990124464, 0.13341805338859558, 2.886172294616699, 0.08690080791711807, 0.4843340218067169, -0.5049740672111511, -0.33324363827705383, 0.2308964729309082, 4.545238971710205, 0.4795941114425659, 1.0773018598556519], "mean": [0.24349820613861084, -0.0618136040866375, 0.1277420073747635, 1.7939814329147339, -0.7896621823310852, -0.38798847794532776, -0.5493171215057373, -0.3648622930049896, 0.2075834572315216, 3.6855154037475586, -0.04228829964995384, 0.27149251103401184], "std": [0.02197403833270073, 0.028960203751921654, 0.00502866180613637, 0.4905933439731598, 0.3316028118133545, 0.4469849765300751, 0.028345569968223572, 0.025478387251496315, 0.00966047402471304, 0.7703994512557983, 0.3694065809249878, 0.5177648067474365], "count": [257]}, "action": {"min": [-0.1673528403043747, -0.10387890785932541, 0.12588229775428772, 0.1485672891139984, 0.1558818817138672, 0.0003111068799626082, 0.5100391507148743, 0.0960538238286972, -0.15265534818172455, 0.08505688607692719, -0.5325454473495483, -0.6463859677314758, 0.22798122465610504, -0.004462050274014473], "max": [-0.15123622119426727, -0.08283643424510956, 0.1430821567773819, 0.7332541346549988, 0.6483844518661499, 0.5779479742050171, 0.776303768157959, 0.11136898398399353, -0.13185952603816986, 0.12422990053892136, 0.1603940725326538, -0.2515624165534973, 0.956699550151825, 0.7627716064453125], "mean": [-0.15391266345977783, -0.08988406509160995, 0.13546058535575867, 0.38836050033569336, 0.496840238571167, 0.1740080714225769, 0.7129544615745544, 0.10284098237752914, -0.14118893444538116, 0.10381776094436646, -0.16800419986248016, -0.4439508318901062, 0.6316628456115723, 0.4109262228012085], "std": [0.003945409785956144, 0.005621528718620539, 0.004554399289190769, 0.1581042855978012, 0.135231152176857, 0.12907344102859497, 0.061638228595256805, 0.0041112229228019714, 0.005365628749132156, 0.009429635480046272, 0.1345035880804062, 0.12475080788135529, 0.2790396511554718, 0.3087175190448761], "count": [257]}, "timestamp": {"min": [0.0], "max": [8.533333333333333], "mean": [4.266666666666667], "std": [2.4729649321321876], "count": [257]}, "frame_index": {"min": [0], "max": [256], "mean": [128.0], "std": [74.18894796396563], "count": [257]}, "episode_index": {"min": [235], "max": [235], "mean": [235.0], "std": [0.0], "count": [257]}, "index": {"min": [112557], "max": [112813], "mean": [112685.0], "std": [74.18894796396563], "count": [257]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [257]}}} +{"episode_index": 236, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5175153867102397]], [[0.4750276279956427]], [[0.42853442810457515]]], "std": [[[0.27250573120167393]], [[0.2539996659300779]], [[0.25245353778647905]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5334988126361656]], [[0.5029920098039216]], [[0.4602958850762527]]], "std": [[[0.27289131778462]], [[0.2375775137641835]], [[0.2473316086631745]]], "count": [100]}, "observation.state": {"min": [0.22990575432777405, -0.15062418580055237, 0.11767201870679855, 0.5294671058654785, -1.2670302391052246, -1.1693776845932007, -0.5962181687355042, -0.4790179431438446, 0.17659617960453033, 2.340139865875244, -0.9236627221107483, -0.4952540695667267], "max": [0.3473762571811676, -0.01885119080543518, 0.1354493349790573, 2.7892956733703613, 0.3462368845939636, 0.7230274081230164, -0.4668855369091034, -0.33104267716407776, 0.21615895628929138, 4.543142318725586, 0.7028581500053406, 1.2421672344207764], "mean": [0.3035215735435486, -0.05764905363321304, 0.12749849259853363, 1.4402034282684326, -0.8623232841491699, -0.12783457338809967, -0.5337650775909424, -0.371539443731308, 0.1988823115825653, 3.5379700660705566, -0.036251459270715714, 0.35079485177993774], "std": [0.028781292960047722, 0.03390486165881157, 0.005307094193994999, 0.7315854430198669, 0.4207265079021454, 0.643894612789154, 0.03545155003666878, 0.030970705673098564, 0.007938629016280174, 0.8926828503608704, 0.49148818850517273, 0.6111408472061157], "count": [290]}, "action": {"min": [-0.1601811945438385, -0.10665728896856308, 0.12122029066085815, 0.10561056435108185, 0.09364702552556992, -0.06378607451915741, 0.4390101432800293, 0.10398837178945541, -0.1495271474123001, 0.07864196598529816, -0.460643470287323, -0.5722446441650391, -0.049878235906362534, -0.059849321842193604], "max": [-0.13884475827217102, -0.08179891109466553, 0.14006394147872925, 0.7748374342918396, 0.7239711284637451, 0.5273206830024719, 0.7181692123413086, 0.12011068314313889, -0.12436845898628235, 0.11901237815618515, 0.059541892260313034, -0.20062211155891418, 0.9736546874046326, 0.8522918820381165], "mean": [-0.14507485926151276, -0.08979102969169617, 0.1309894621372223, 0.34516507387161255, 0.5778023600578308, 0.11328762769699097, 0.653681755065918, 0.11083496361970901, -0.13630230724811554, 0.1001439094543457, -0.15722224116325378, -0.3923719823360443, 0.5942835211753845, 0.436780720949173], "std": [0.005097831599414349, 0.006047068163752556, 0.0042342934757471085, 0.20490193367004395, 0.17423219978809357, 0.17402096092700958, 0.06516571342945099, 0.004046123009175062, 0.005305261351168156, 0.008513112552464008, 0.13949856162071228, 0.09771955013275146, 0.3345661163330078, 0.36936673521995544], "count": [290]}, "timestamp": {"min": [0.0], "max": [9.633333333333333], "mean": [4.816666666666666], "std": [2.7905097105088963], "count": [290]}, "frame_index": {"min": [0], "max": [289], "mean": [144.5], "std": [83.7152913152669], "count": [290]}, "episode_index": {"min": [236], "max": [236], "mean": [236.0], "std": [0.0], "count": [290]}, "index": {"min": [112814], "max": [113103], "mean": [112958.5], "std": [83.7152913152669], "count": [290]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [290]}}} +{"episode_index": 237, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4841148611111111]], [[0.43635681100217866]], [[0.3947964733115468]]], "std": [[[0.26593967714858996]], [[0.2475232074866003]], [[0.2453614166175508]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49686747549019605]], [[0.4632511574074074]], [[0.4252277205882353]]], "std": [[[0.2688990008914686]], [[0.23409765803814325]], [[0.2423996275278484]]], "count": [100]}, "observation.state": {"min": [0.13530999422073364, -0.1637219339609146, 0.1152181401848793, 0.5391128659248352, -1.0257302522659302, -0.970719575881958, -0.6204057335853577, -0.45007315278053284, 0.18327854573726654, 2.6771116256713867, -0.8050622344017029, -0.6337093114852905], "max": [0.3075655698776245, 0.006085509900003672, 0.13184954226016998, 2.8689777851104736, 0.05479123815894127, 0.7914853692054749, -0.4907873868942261, -0.33244821429252625, 0.22569186985492706, 4.543561935424805, 0.6435579061508179, 1.0620445013046265], "mean": [0.24787947535514832, -0.08452778309583664, 0.1250254362821579, 1.476906657218933, -0.8657063245773315, -0.14727599918842316, -0.5409756898880005, -0.37318527698516846, 0.20512883365154266, 3.5610313415527344, 0.06662415713071823, 0.39156055450439453], "std": [0.03720264136791229, 0.05435149371623993, 0.004780012648552656, 0.5787988305091858, 0.20449845492839813, 0.5245416760444641, 0.0372491218149662, 0.03559174761176109, 0.009425293654203415, 0.8183561563491821, 0.3726837933063507, 0.57899409532547], "count": [286]}, "action": {"min": [-0.171437069773674, -0.105011947453022, 0.1253858208656311, 0.03318202123045921, 0.15966598689556122, -0.10418577492237091, 0.5046254992485046, 0.09970799833536148, -0.15189623832702637, 0.08016512542963028, -0.4948940575122833, -0.6277976036071777, 0.14719292521476746, -0.06530750542879105], "max": [-0.14731572568416595, -0.07876250147819519, 0.13764327764511108, 0.6300842761993408, 0.6681528687477112, 0.5672890543937683, 0.7883657217025757, 0.11430364847183228, -0.12670807540416718, 0.12342046946287155, 0.11319419741630554, -0.14255143702030182, 0.987123966217041, 0.7680953741073608], "mean": [-0.1537661850452423, -0.09239748865365982, 0.12977132201194763, 0.3277146518230438, 0.5482538342475891, 0.08711683005094528, 0.7223210334777832, 0.10625456273555756, -0.14131814241409302, 0.1018073633313179, -0.1424553543329239, -0.4784276485443115, 0.5564424395561218, 0.4272773563861847], "std": [0.0055164373479783535, 0.007957007735967636, 0.0024513890966773033, 0.16747398674488068, 0.10130548477172852, 0.1467653512954712, 0.05322205647826195, 0.0027439033146947622, 0.005434051156044006, 0.011684780940413475, 0.13388487696647644, 0.14545154571533203, 0.317613810300827, 0.3444698452949524], "count": [286]}, "timestamp": {"min": [0.0], "max": [9.5], "mean": [4.75], "std": [2.7520194605255086], "count": [286]}, "frame_index": {"min": [0], "max": [285], "mean": [142.5], "std": [82.56058381576526], "count": [286]}, "episode_index": {"min": [237], "max": [237], "mean": [237.0], "std": [0.0], "count": [286]}, "index": {"min": [113104], "max": [113389], "mean": [113246.5], "std": [82.56058381576526], "count": [286]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [286]}}} +{"episode_index": 238, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48840803921568626]], [[0.4455765386710239]], [[0.4004568110021786]]], "std": [[[0.26695123908753354]], [[0.24729724142329318]], [[0.24462552896857925]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5014815659041394]], [[0.4720577205882353]], [[0.42994459150326797]]], "std": [[[0.27059195751177506]], [[0.23376908882950975]], [[0.2416922083292908]]], "count": [100]}, "observation.state": {"min": [0.15141190588474274, -0.13439099490642548, 0.11546444147825241, 0.6219403743743896, -1.11235773563385, -1.0224558115005493, -0.5918470621109009, -0.41509687900543213, 0.19538849592208862, 2.762035846710205, -0.544496476650238, -0.299089640378952], "max": [0.2662643790245056, -0.010688260197639465, 0.13335713744163513, 2.8540897369384766, 0.20864394307136536, 0.7946415543556213, -0.5099243521690369, -0.32282567024230957, 0.22699593007564545, 4.555513858795166, 0.32314532995224, 0.9492312073707581], "mean": [0.22751569747924805, -0.05373949185013771, 0.12410537153482437, 1.6937869787216187, -0.7735362648963928, -0.19874829053878784, -0.5491934418678284, -0.3660178780555725, 0.2106228619813919, 3.5540030002593994, -0.06747183948755264, 0.3898320496082306], "std": [0.02193235605955124, 0.03501645103096962, 0.0059785256162285805, 0.6772266030311584, 0.41204777359962463, 0.5875036120414734, 0.025938184931874275, 0.019302258267998695, 0.008854194544255733, 0.7315223217010498, 0.26508837938308716, 0.4301047921180725], "count": [303]}, "action": {"min": [-0.17100855708122253, -0.10104021430015564, 0.12537814676761627, 0.028930528089404106, 0.051681604236364365, -0.056047726422548294, 0.506969690322876, 0.09497995674610138, -0.15662716329097748, 0.08957799524068832, -0.40463921427726746, -0.6506316661834717, -0.5369415283203125, -0.6477586030960083], "max": [-0.1534079760313034, -0.08090627193450928, 0.14088743925094604, 0.6679728031158447, 0.6401008367538452, 0.5709409117698669, 0.7749404907226562, 0.10705863684415817, -0.130455881357193, 0.1209523007273674, 0.32900410890579224, 0.648392379283905, 0.9280213117599487, 0.7455908060073853], "mean": [-0.15784214437007904, -0.08818977326154709, 0.13316713273525238, 0.3326956033706665, 0.4945543706417084, 0.18129976093769073, 0.7099632024765015, 0.10082162916660309, -0.1438058763742447, 0.10478302091360092, -0.16688093543052673, -0.4933229982852936, 0.5547764897346497, 0.45509251952171326], "std": [0.0044130971655249596, 0.006339790299534798, 0.005067390855401754, 0.19451755285263062, 0.184230774641037, 0.17596493661403656, 0.07120571285486221, 0.002869182964786887, 0.006416235119104385, 0.008059469982981682, 0.12970058619976044, 0.16771793365478516, 0.27620258927345276, 0.3043965995311737], "count": [303]}, "timestamp": {"min": [0.0], "max": [10.066666666666666], "mean": [5.033333333333333], "std": [2.9156029806440964], "count": [303]}, "frame_index": {"min": [0], "max": [302], "mean": [151.0], "std": [87.46808941932291], "count": [303]}, "episode_index": {"min": [238], "max": [238], "mean": [238.0], "std": [0.0], "count": [303]}, "index": {"min": [113390], "max": [113692], "mean": [113541.0], "std": [87.46808941932291], "count": [303]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [303]}}} +{"episode_index": 239, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5011537935729847]], [[0.45995454520697165]], [[0.4147303948801743]]], "std": [[[0.2691120118392024]], [[0.25063721406315137]], [[0.2486831673694393]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5154173828976034]], [[0.48661199074074074]], [[0.44464005174291943]]], "std": [[[0.2727640180718603]], [[0.23671913165257685]], [[0.2450627346166288]]], "count": [100]}, "observation.state": {"min": [0.10885191708803177, -0.12917815148830414, 0.11933904886245728, 0.38499075174331665, -1.0730063915252686, -0.8358624577522278, -0.6192010045051575, -0.40406882762908936, 0.1870429813861847, 2.7169525623321533, -0.7859331369400024, -0.5057603120803833], "max": [0.2792463004589081, -0.01284290011972189, 0.13493859767913818, 2.6464967727661133, 0.09960801154375076, 0.8790647387504578, -0.4964713156223297, -0.308824360370636, 0.22728371620178223, 4.543981075286865, 0.6800398826599121, 1.0520570278167725], "mean": [0.2245367467403412, -0.047362230718135834, 0.1294829100370407, 1.2630338668823242, -0.8980249166488647, 0.04904131963849068, -0.5628779530525208, -0.35397034883499146, 0.2075951099395752, 3.833217144012451, 0.21094685792922974, 0.15560320019721985], "std": [0.0336868092417717, 0.02850644290447235, 0.004552751313894987, 0.5777031779289246, 0.25138208270072937, 0.47113972902297974, 0.0377863347530365, 0.025440294295549393, 0.006881382316350937, 0.7449082732200623, 0.33597633242607117, 0.5778549909591675], "count": [392]}, "action": {"min": [-0.17609210312366486, -0.10353318601846695, 0.1292824149131775, 0.022832274436950684, 0.0982031375169754, -0.12817257642745972, 0.6096916198730469, 0.09541527181863785, -0.1500740349292755, 0.09016649425029755, -0.4728177785873413, -0.6759772896766663, -0.5767220854759216, -0.6826261878013611], "max": [-0.14942769706249237, -0.08310185372829437, 0.1435501128435135, 0.6155793070793152, 0.6940969228744507, 0.492966890335083, 0.8390606045722961, 0.10754142701625824, -0.12192830443382263, 0.12379086017608643, 0.15292973816394806, 0.7650353908538818, 0.9560853838920593, 0.7040797472000122], "mean": [-0.15674273669719696, -0.09135272353887558, 0.13689115643501282, 0.28301510214805603, 0.5605992674827576, 0.0487375445663929, 0.7366719245910645, 0.10085070133209229, -0.14034657180309296, 0.10289746522903442, -0.10716632008552551, -0.10006898641586304, 0.5670943260192871, 0.003186082700267434], "std": [0.005752460565418005, 0.004350098315626383, 0.0032020441722124815, 0.14247417449951172, 0.13487914204597473, 0.1456669420003891, 0.029319236055016518, 0.0029004872776567936, 0.005044043064117432, 0.007978436537086964, 0.11246048659086227, 0.479728639125824, 0.478330135345459, 0.4304749071598053], "count": [392]}, "timestamp": {"min": [0.0], "max": [13.033333333333333], "mean": [6.5166666666666675], "std": [3.772009485082925], "count": [392]}, "frame_index": {"min": [0], "max": [391], "mean": [195.5], "std": [113.16028455248777], "count": [392]}, "episode_index": {"min": [239], "max": [239], "mean": [239.0], "std": [0.0], "count": [392]}, "index": {"min": [113693], "max": [114084], "mean": [113888.5], "std": [113.16028455248777], "count": [392]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [392]}}} +{"episode_index": 240, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4976211574074074]], [[0.45445107298474946]], [[0.4093654656862745]]], "std": [[[0.27000521933298816]], [[0.25060364799250273]], [[0.24728393665472687]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5118111465141613]], [[0.4810272467320261]], [[0.4403486465141612]]], "std": [[[0.2735028339992239]], [[0.237140959129234]], [[0.24386641432454262]]], "count": [100]}, "observation.state": {"min": [0.20758706331253052, -0.1478131115436554, 0.1104063168168068, 0.20151203870773315, -1.0314689874649048, -0.6363418102264404, -0.5957702398300171, -0.44462090730667114, 0.18941518664360046, -0.830372154712677, -0.6482035517692566, -0.9812701344490051], "max": [0.33445611596107483, -0.03442021831870079, 0.1349671185016632, 1.930195927619934, 0.05957350879907608, 0.9354071617126465, -0.45478400588035583, -0.32274845242500305, 0.22363336384296417, 1.6586474180221558, 0.673481285572052, 0.470465749502182], "mean": [0.27285829186439514, -0.07802899181842804, 0.12444624304771423, 0.8147287368774414, -0.5019903779029846, 0.48412105441093445, -0.5461928844451904, -0.36735087633132935, 0.20695236325263977, 0.4666372835636139, -0.006025478709489107, -0.30135592818260193], "std": [0.05035155639052391, 0.03367568552494049, 0.007816811092197895, 0.5903050303459167, 0.38197755813598633, 0.5325376391410828, 0.03507690876722336, 0.02857285737991333, 0.00821633730083704, 0.9101748466491699, 0.31568247079849243, 0.5662612318992615], "count": [274]}, "action": {"min": [-0.15778569877147675, -0.10524432361125946, 0.11934539675712585, -0.23023594915866852, 0.4714871346950531, -0.3927173912525177, 0.7133521437644958, 0.0965021401643753, -0.1520588994026184, 0.08449719846248627, -0.6908450126647949, -0.2988607883453369, -0.5874267220497131, -0.5867345333099365], "max": [-0.14678700268268585, -0.08443377912044525, 0.13944777846336365, 0.4937892258167267, 0.5971216559410095, 0.17015674710273743, 0.8168588876724243, 0.11381256580352783, -0.1306968331336975, 0.12012013047933578, 0.5924907326698303, 0.3737594187259674, 0.8326094746589661, 0.9557924866676331], "mean": [-0.15239004790782928, -0.09226390719413757, 0.13077609241008759, 0.04664270207285881, 0.5358027219772339, -0.12424643337726593, 0.7716153264045715, 0.10336974263191223, -0.1416100710630417, 0.10270211845636368, -0.17168079316616058, -0.01776154153048992, 0.3429866135120392, 0.2652936279773712], "std": [0.0038934589829295874, 0.0059586213901638985, 0.006196632981300354, 0.23189614713191986, 0.04385644197463989, 0.20794332027435303, 0.031186046078801155, 0.0037635110784322023, 0.005524342879652977, 0.009561455808579922, 0.43874067068099976, 0.20087216794490814, 0.4318724572658539, 0.6023561954498291], "count": [274]}, "timestamp": {"min": [0.0], "max": [9.1], "mean": [4.550000000000001], "std": [2.6365486699260625], "count": [274]}, "frame_index": {"min": [0], "max": [273], "mean": [136.5], "std": [79.09646009778187], "count": [274]}, "episode_index": {"min": [240], "max": [240], "mean": [240.0], "std": [0.0], "count": [274]}, "index": {"min": [114085], "max": [114358], "mean": [114221.5], "std": [79.09646009778187], "count": [274]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [274]}}} +{"episode_index": 241, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4985601824618736]], [[0.4606907843137255]], [[0.41488087962962966]]], "std": [[[0.27207215825516123]], [[0.25259762407328057]], [[0.25038629873114104]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5123190713507625]], [[0.4872091775599129]], [[0.4453653104575164]]], "std": [[[0.27592676376528064]], [[0.2386878516054131]], [[0.24658725985495514]]], "count": [100]}, "observation.state": {"min": [0.15584474802017212, -0.12110017240047455, 0.11652740091085434, 0.5896481275558472, -1.2447584867477417, -1.317263126373291, -0.6090301871299744, -0.41403886675834656, 0.19150739908218384, -0.44559112191200256, -0.44598153233528137, -1.1548924446105957], "max": [0.2708517014980316, 0.0018380103865638375, 0.14528559148311615, 4.544610023498535, 1.3026924133300781, 0.6260371804237366, -0.5119940042495728, -0.33878856897354126, 0.22682352364063263, 2.102351427078247, 0.6770338416099548, 0.583966076374054], "mean": [0.22509416937828064, -0.04993031173944473, 0.1283617615699768, 2.280423164367676, -0.13250628113746643, -0.3525722026824951, -0.5605146884918213, -0.36894404888153076, 0.2059139758348465, 0.6810081005096436, 0.08062341064214706, -0.2598605453968048], "std": [0.025442354381084442, 0.03219474107027054, 0.006468483246862888, 1.1477826833724976, 0.9394773244857788, 0.6267838478088379, 0.02574765682220459, 0.015891382470726967, 0.008383733220398426, 0.8397135734558105, 0.33403462171554565, 0.5523968935012817], "count": [400]}, "action": {"min": [-0.17518775165081024, -0.10776108503341675, 0.1263445019721985, -0.04750042036175728, -0.4591246545314789, -0.3143685460090637, 0.03506402298808098, 0.09413272887468338, -0.15457642078399658, 0.09156689792871475, -0.6843550801277161, -0.4347071349620819, -0.6715717315673828, -0.5510334372520447], "max": [-0.14980743825435638, -0.07985051721334457, 0.145696759223938, 0.7368714809417725, 0.6967492699623108, 0.6639512777328491, 0.9424580931663513, 0.10871706902980804, -0.12737570703029633, 0.12142150104045868, 0.6720564365386963, 0.4808404743671417, 0.7650141716003418, 0.9836858510971069], "mean": [-0.15875425934791565, -0.0919683575630188, 0.13568465411663055, 0.47714781761169434, 0.262766569852829, 0.3289174735546112, 0.49511489272117615, 0.10130983591079712, -0.13980914652347565, 0.10126733779907227, 0.024178028106689453, -0.09705031663179398, 0.07181597501039505, 0.42969807982444763], "std": [0.004418735392391682, 0.004624360706657171, 0.005332843866199255, 0.2280290722846985, 0.37316304445266724, 0.309123694896698, 0.25130248069763184, 0.004394381307065487, 0.0058310809545218945, 0.00632209237664938, 0.4695757031440735, 0.22672304511070251, 0.4965847432613373, 0.5307518839836121], "count": [400]}, "timestamp": {"min": [0.0], "max": [13.3], "mean": [6.65], "std": [3.848989766448103], "count": [400]}, "frame_index": {"min": [0], "max": [399], "mean": [199.5], "std": [115.46969299344309], "count": [400]}, "episode_index": {"min": [241], "max": [241], "mean": [241.0], "std": [0.0], "count": [400]}, "index": {"min": [114359], "max": [114758], "mean": [114558.5], "std": [115.46969299344309], "count": [400]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [400]}}} +{"episode_index": 242, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4997448066448802]], [[0.46220446078431376]], [[0.41589656318082785]]], "std": [[[0.27412869331414563]], [[0.25395918420042446]], [[0.25121520506693906]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.514707704248366]], [[0.4900304275599129]], [[0.4466487227668845]]], "std": [[[0.27801008452497183]], [[0.23940992193821306]], [[0.2479995588836569]]], "count": [100]}, "observation.state": {"min": [0.1602776050567627, -0.13681593537330627, 0.12041108310222626, 0.7773206233978271, -1.0765589475631714, -0.9786523580551147, -0.5828192234039307, -0.4176376760005951, 0.19433720409870148, -0.39547523856163025, -0.264664888381958, -1.140329122543335], "max": [0.25546029210090637, -0.0338873490691185, 0.1359911859035492, 2.8683488368988037, -0.12980467081069946, 0.6537771821022034, -0.472005695104599, -0.33580759167671204, 0.22277909517288208, 1.5508668422698975, 0.6102185845375061, 0.23307877779006958], "mean": [0.21766425669193268, -0.07038558274507523, 0.12970894575119019, 1.6568658351898193, -0.8675229549407959, -0.05327983200550079, -0.5410172939300537, -0.36259812116622925, 0.20854827761650085, 0.6734170317649841, 0.09482523053884506, -0.38941746950149536], "std": [0.02639554627239704, 0.02840377390384674, 0.004991328343749046, 0.6578794121742249, 0.2728104293346405, 0.5573932528495789, 0.031531739979982376, 0.018879815936088562, 0.006331319455057383, 0.8080613613128662, 0.2529325485229492, 0.5329774022102356], "count": [267]}, "action": {"min": [-0.16944926977157593, -0.10594155639410019, 0.12939070165157318, 0.10070120543241501, 0.22669857740402222, 0.0120500847697258, 0.5786522626876831, 0.0963885709643364, -0.15216302871704102, 0.08975853025913239, -0.6227588653564453, -0.3963375985622406, -0.5686129927635193, -0.5538089275360107], "max": [-0.15302668511867523, -0.08649202436208725, 0.1426512598991394, 0.6584876179695129, 0.6573858261108398, 0.5713843703269958, 0.7777574062347412, 0.11787411570549011, -0.13440121710300446, 0.1193690150976181, 0.5756085515022278, 0.44858604669570923, 0.7425141930580139, 0.9212155342102051], "mean": [-0.1578843742609024, -0.09328704327344894, 0.13648004829883575, 0.2779611647129059, 0.515156090259552, 0.2087094485759735, 0.7377644181251526, 0.1030665710568428, -0.1420854777097702, 0.10520872473716736, -0.04670747369527817, -0.002985625294968486, 0.2527090311050415, 0.3376951813697815], "std": [0.00430272938683629, 0.00508823012933135, 0.004137129057198763, 0.16161730885505676, 0.13004834949970245, 0.15376120805740356, 0.05310853198170662, 0.005108011420816183, 0.004159159492701292, 0.006234996486455202, 0.4822544455528259, 0.25103020668029785, 0.4065168499946594, 0.5992229580879211], "count": [267]}, "timestamp": {"min": [0.0], "max": [8.866666666666667], "mean": [4.433333333333334], "std": [2.5691906781593192], "count": [267]}, "frame_index": {"min": [0], "max": [266], "mean": [133.0], "std": [77.07572034477957], "count": [267]}, "episode_index": {"min": [242], "max": [242], "mean": [242.0], "std": [0.0], "count": [267]}, "index": {"min": [114759], "max": [115025], "mean": [114892.0], "std": [77.07572034477957], "count": [267]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [267]}}} +{"episode_index": 243, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49419810185185187]], [[0.45254214869281045]], [[0.4090209831154684]]], "std": [[[0.26988196401023234]], [[0.25059173757997233]], [[0.2474504059458825]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5084775708061002]], [[0.47940011165577345]], [[0.43946279956427015]]], "std": [[[0.2741569805621809]], [[0.2369764540656854]], [[0.24350870117678142]]], "count": [100]}, "observation.state": {"min": [0.16320450603961945, -0.14199788868427277, 0.11769016832113266, 0.38666826486587524, -1.0285996198654175, -1.0487502813339233, -0.6020179390907288, -0.4017288386821747, 0.1948557198047638, -0.35605353116989136, -0.289669394493103, -0.9994099140167236], "max": [0.27532315254211426, -0.03119984082877636, 0.1335645467042923, 2.738131284713745, 0.06339933723211288, 0.9959820508956909, -0.493297278881073, -0.33162185549736023, 0.22597575187683105, 1.8616273403167725, 0.8852678537368774, 0.20463736355304718], "mean": [0.22456173598766327, -0.0639689639210701, 0.12707433104515076, 1.4668687582015991, -0.8208960294723511, 0.05191745609045029, -0.5595778226852417, -0.3582940399646759, 0.20780089497566223, 0.8477683663368225, -0.004477935377508402, -0.31806549429893494], "std": [0.0245277788490057, 0.028916046023368835, 0.004701052326709032, 0.6590493321418762, 0.23704148828983307, 0.6030066609382629, 0.03421221673488617, 0.016540465876460075, 0.006974488962441683, 0.821079671382904, 0.30558621883392334, 0.44912466406822205], "count": [255]}, "action": {"min": [-0.1698562651872635, -0.10445208847522736, 0.12721586227416992, -0.044838257133960724, 0.1786382645368576, -0.12209293246269226, 0.5138131976127625, 0.09416511654853821, -0.1493755429983139, 0.09127601981163025, -0.695035994052887, -0.4889247417449951, -0.6947756409645081, -0.5498645305633545], "max": [-0.15431223809719086, -0.08550822734832764, 0.1406242698431015, 0.6643585562705994, 0.664417564868927, 0.512554407119751, 0.7937976121902466, 0.10822338610887527, -0.13077497482299805, 0.1219673752784729, 0.7012271285057068, 0.5397185683250427, 0.7099255323410034, 0.9194738864898682], "mean": [-0.1574726700782776, -0.09154718369245529, 0.1347196400165558, 0.25419139862060547, 0.5240146517753601, 0.13987572491168976, 0.7522861957550049, 0.1004028394818306, -0.14038297533988953, 0.10339435189962387, 0.11024533212184906, -0.09184124320745468, 0.11111819744110107, 0.4479672312736511], "std": [0.0038372166454792023, 0.0044328318908810616, 0.0036009084433317184, 0.1888463795185089, 0.12265769392251968, 0.15059134364128113, 0.04369631037116051, 0.0040892320685088634, 0.004322038497775793, 0.007379140704870224, 0.48374703526496887, 0.22522760927677155, 0.417793333530426, 0.5541653037071228], "count": [255]}, "timestamp": {"min": [0.0], "max": [8.466666666666667], "mean": [4.233333333333333], "std": [2.4537197763275134], "count": [255]}, "frame_index": {"min": [0], "max": [254], "mean": [127.0], "std": [73.6115932898254], "count": [255]}, "episode_index": {"min": [243], "max": [243], "mean": [243.0], "std": [0.0], "count": [255]}, "index": {"min": [115026], "max": [115280], "mean": [115153.0], "std": [73.6115932898254], "count": [255]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [255]}}} +{"episode_index": 244, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4990203404139434]], [[0.4585163970588236]], [[0.4126722031590414]]], "std": [[[0.27155910254506205]], [[0.25262943115007064]], [[0.250508672281384]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5137993491285403]], [[0.4855096023965142]], [[0.44349519880174293]]], "std": [[[0.2751001876963407]], [[0.2388377465337001]], [[0.2469537192570172]]], "count": [100]}, "observation.state": {"min": [0.15918096899986267, -0.11515367031097412, 0.12198348343372345, 0.540580689907074, -1.0792917013168335, -0.9202564358711243, -0.6008749604225159, -0.39212948083877563, 0.18945926427841187, -0.5755988955497742, -0.36973837018013, -0.9770086407661438], "max": [0.26709842681884766, -0.019360890612006187, 0.13705545663833618, 2.472454071044922, -0.6315339207649231, 0.7709400057792664, -0.5050049424171448, -0.3251193165779114, 0.22556482255458832, 1.8373032808303833, 0.593002438545227, 0.32416191697120667], "mean": [0.23102475702762604, -0.053776685148477554, 0.13026638329029083, 1.4972290992736816, -0.9233146905899048, -0.10616367310285568, -0.5536184310913086, -0.3501112163066864, 0.20565131306648254, 0.6660262942314148, 0.02578488551080227, -0.2503384053707123], "std": [0.024620264768600464, 0.024377577006816864, 0.005546160973608494, 0.6187096238136292, 0.14664579927921295, 0.552833080291748, 0.023395445197820663, 0.01580367051064968, 0.008111308328807354, 0.8568496108055115, 0.24775025248527527, 0.445115327835083], "count": [357]}, "action": {"min": [-0.16834954917430878, -0.1011488288640976, 0.13067543506622314, 0.059063833206892014, 0.38217198848724365, -0.09320848435163498, 0.6551415324211121, 0.09703329205513, -0.15077409148216248, 0.09154190123081207, -0.6542997360229492, -0.2951466739177704, -0.5740355253219604, -0.5943098068237305], "max": [-0.15200209617614746, -0.08587788045406342, 0.14286363124847412, 0.5708884596824646, 0.6586304306983948, 0.3999630808830261, 0.757552444934845, 0.10741285234689713, -0.12744727730751038, 0.12303166836500168, 0.534353494644165, 0.3618006706237793, 0.776394248008728, 0.9263863563537598], "mean": [-0.15516522526741028, -0.0909423753619194, 0.13766901195049286, 0.293514609336853, 0.5653244256973267, 0.10826696455478668, 0.7310237288475037, 0.10202953964471817, -0.1381600797176361, 0.10410699993371964, -0.051836952567100525, -0.050291284918785095, 0.2637065052986145, 0.33012136816978455], "std": [0.00447679590433836, 0.0037317692767828703, 0.004030991345643997, 0.14415425062179565, 0.087122842669487, 0.138458251953125, 0.024460699409246445, 0.002119288081303239, 0.0054292986169457436, 0.007642379030585289, 0.46187642216682434, 0.2004326432943344, 0.4155346155166626, 0.6245720982551575], "count": [357]}, "timestamp": {"min": [0.0], "max": [11.866666666666667], "mean": [5.933333333333333], "std": [3.435220624754798], "count": [357]}, "frame_index": {"min": [0], "max": [356], "mean": [178.0], "std": [103.05661874264392], "count": [357]}, "episode_index": {"min": [244], "max": [244], "mean": [244.0], "std": [0.0], "count": [357]}, "index": {"min": [115281], "max": [115637], "mean": [115459.0], "std": [103.05661874264392], "count": [357]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [357]}}} +{"episode_index": 245, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5015351906318083]], [[0.4609652287581699]], [[0.41567628267973855]]], "std": [[[0.27394163114907094]], [[0.2543585935443408]], [[0.25160939540416716]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5167710457516339]], [[0.48896390250544663]], [[0.4464608306100218]]], "std": [[[0.27843136291840026]], [[0.24058245744162432]], [[0.24874739803509116]]], "count": [100]}, "observation.state": {"min": [0.1434960961341858, -0.11607267707586288, 0.12259402871131897, 0.8498733639717102, -1.035294771194458, -0.8600208163261414, -0.588564932346344, -0.36632782220840454, 0.19200259447097778, -0.44747835397720337, -0.3096183240413666, -0.918328046798706], "max": [0.257916122674942, -0.020666029304265976, 0.13385361433029175, 2.4546303749084473, -0.11627765744924545, 0.8117577433586121, -0.5040318965911865, -0.31216058135032654, 0.2268131673336029, 1.8815478086471558, 0.7382470369338989, 0.27720195055007935], "mean": [0.21695664525032043, -0.061558790504932404, 0.12976135313510895, 1.7636287212371826, -0.7219051718711853, -0.08997593075037003, -0.5561710596084595, -0.3352842628955841, 0.2092384397983551, 0.8293532729148865, 0.11281023174524307, -0.2962304651737213], "std": [0.029188314452767372, 0.027687858790159225, 0.003433183766901493, 0.5203145146369934, 0.26677244901657104, 0.5364915132522583, 0.02309887483716011, 0.01266693975776434, 0.006286580581218004, 0.8939965963363647, 0.23865452408790588, 0.44149884581565857], "count": [257]}, "action": {"min": [-0.17204728722572327, -0.10186511278152466, 0.13096866011619568, -0.012859351001679897, 0.20304496586322784, 0.02864553965628147, 0.649092435836792, 0.09422825276851654, -0.14824524521827698, 0.09544525295495987, -0.6762160062789917, -0.3955537974834442, -0.5439961552619934, -0.573800802230835], "max": [-0.1528526246547699, -0.08467170596122742, 0.1447940170764923, 0.6376804113388062, 0.6146649718284607, 0.39540842175483704, 0.8318879008293152, 0.10801038891077042, -0.12805606424808502, 0.12356844544410706, 0.5295019745826721, 0.4284927546977997, 0.742894172668457, 0.8960866332054138], "mean": [-0.15816153585910797, -0.0919240266084671, 0.13863128423690796, 0.2808684706687927, 0.44128289818763733, 0.22695717215538025, 0.7783525586128235, 0.09849442541599274, -0.13834157586097717, 0.10728844255208969, -0.0223897285759449, -0.11492104828357697, 0.2453031986951828, 0.3825385272502899], "std": [0.004649659618735313, 0.004850608296692371, 0.0036651920527219772, 0.19542784988880157, 0.11944732815027237, 0.11458144336938858, 0.05874747410416603, 0.00334766018204391, 0.004821795970201492, 0.0055565061047673225, 0.4709379971027374, 0.2630506455898285, 0.3856002688407898, 0.5831953287124634], "count": [257]}, "timestamp": {"min": [0.0], "max": [8.533333333333333], "mean": [4.266666666666667], "std": [2.4729649321321876], "count": [257]}, "frame_index": {"min": [0], "max": [256], "mean": [128.0], "std": [74.18894796396563], "count": [257]}, "episode_index": {"min": [245], "max": [245], "mean": [245.0], "std": [0.0], "count": [257]}, "index": {"min": [115638], "max": [115894], "mean": [115766.0], "std": [74.18894796396563], "count": [257]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [257]}}} +{"episode_index": 246, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4934382952069717]], [[0.4494812445533769]], [[0.4074424809368192]]], "std": [[[0.2684500112728652]], [[0.24997889776753518]], [[0.24813217113491343]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5077108469498911]], [[0.47776274782135075]], [[0.43895067265795207]]], "std": [[[0.2707556127464751]], [[0.23547870433442847]], [[0.2442105382045195]]], "count": [100]}, "observation.state": {"min": [0.1783410757780075, -0.12286096066236496, 0.11775238811969757, 0.28496864438056946, -1.0812046527862549, -0.947438657283783, -0.5683081746101379, -0.4139384925365448, 0.19167980551719666, -0.6101977229118347, -0.251001238822937, -1.0884158611297607], "max": [0.32510387897491455, -0.04808945953845978, 0.13339732587337494, 2.60371994972229, -0.22886614501476288, 1.0418604612350464, -0.493559867143631, -0.3350430428981781, 0.20912916958332062, 1.938583493232727, 0.593958854675293, 0.2813425064086914], "mean": [0.25055328011512756, -0.07157491147518158, 0.12826338410377502, 1.3220939636230469, -0.833899736404419, 0.16402538120746613, -0.535879373550415, -0.3618302643299103, 0.20185574889183044, 0.9392278790473938, 0.035294998437166214, -0.2463109791278839], "std": [0.03958732262253761, 0.023562978953123093, 0.00481332466006279, 0.7454109191894531, 0.24030756950378418, 0.656396746635437, 0.019522078335285187, 0.019286850467324257, 0.004083051811903715, 1.010172963142395, 0.2075483202934265, 0.4963985085487366], "count": [198]}, "action": {"min": [-0.1657903790473938, -0.10158538818359375, 0.12416015565395355, -0.0671599730849266, 0.2736361026763916, -0.15136024355888367, 0.6349172592163086, 0.10072416812181473, -0.14649330079555511, 0.09288999438285828, -0.6275707483291626, -0.45820799469947815, -0.5634385943412781, -0.5452666282653809], "max": [-0.14675450325012207, -0.08677167445421219, 0.14180494844913483, 0.6319781541824341, 0.7017191648483276, 0.44407397508621216, 0.7683772444725037, 0.11484497785568237, -0.1310187131166458, 0.10654908418655396, 0.6340622901916504, 0.30110520124435425, 0.7776828408241272, 0.9095512628555298], "mean": [-0.15355758368968964, -0.09325553476810455, 0.13358721137046814, 0.22308441996574402, 0.5621984601020813, 0.11315538734197617, 0.7314832806587219, 0.10620112717151642, -0.1380387395620346, 0.1010843887925148, 0.07321851700544357, -0.18234753608703613, 0.18301035463809967, 0.5454899072647095], "std": [0.004876886028796434, 0.003562226425856352, 0.00512041337788105, 0.20050661265850067, 0.12295373529195786, 0.1726904660463333, 0.03392891585826874, 0.003907371312379837, 0.0034078480675816536, 0.0032200359273701906, 0.44888341426849365, 0.2076185941696167, 0.41113904118537903, 0.4655096232891083], "count": [198]}, "timestamp": {"min": [0.0], "max": [6.566666666666666], "mean": [3.2833333333333337], "std": [1.9052315889170555], "count": [198]}, "frame_index": {"min": [0], "max": [197], "mean": [98.5], "std": [57.15694766751166], "count": [198]}, "episode_index": {"min": [246], "max": [246], "mean": [246.0], "std": [0.0], "count": [198]}, "index": {"min": [115895], "max": [116092], "mean": [115993.5], "std": [57.15694766751166], "count": [198]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [198]}}} +{"episode_index": 247, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5076816702669769]], [[0.46404110815701044]], [[0.41918950094161955]]], "std": [[[0.2720496514800365]], [[0.2522895863194864]], [[0.24903502533330912]]], "count": [118]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5218405962667553]], [[0.4898994082567113]], [[0.44870384679295444]]], "std": [[[0.27659316835625974]], [[0.23965992615252918]], [[0.24638381849906799]]], "count": [118]}, "observation.state": {"min": [0.14502519369125366, -0.11899186670780182, 0.11108297854661942, 0.4407682716846466, -1.3443665504455566, -1.1831640005111694, -0.6248694658279419, -0.4067794978618622, 0.1943735033273697, -0.4258802831172943, -0.4681166410446167, -1.0104877948760986], "max": [0.2531975209712982, 0.014202109538018703, 0.1324639916419983, 2.825362205505371, -0.5459994673728943, 0.9881516695022583, -0.5249836444854736, -0.3197288513183594, 0.22839981317520142, 1.626774549484253, 0.6818161010742188, 0.6124066710472107], "mean": [0.20089168846607208, -0.047283414751291275, 0.12376317381858826, 1.5008550882339478, -1.0008294582366943, -0.03902103006839752, -0.576117217540741, -0.3572486639022827, 0.2078024446964264, 0.6262766122817993, 0.03531996160745621, -0.1956382840871811], "std": [0.025977713987231255, 0.037438638508319855, 0.003902181750163436, 0.701065719127655, 0.2027686983346939, 0.6589894890785217, 0.027184799313545227, 0.021959105506539345, 0.0077058388851583, 0.6879573464393616, 0.36872947216033936, 0.5624157786369324], "count": [585]}, "action": {"min": [-0.17112106084823608, -0.09829270094633102, 0.1242632046341896, 0.05124088004231453, 0.30672845244407654, -0.04963141307234764, 0.6100436449050903, 0.08840716630220413, -0.15568210184574127, 0.08874881267547607, -0.6927842497825623, -0.5137902498245239, -0.689765989780426, -0.3862152695655823], "max": [-0.15222212672233582, -0.0784580260515213, 0.14024005830287933, 0.586763858795166, 0.7224315404891968, 0.3644249439239502, 0.8725762367248535, 0.10679450631141663, -0.13190752267837524, 0.12252481281757355, 0.7368890047073364, 0.3665887713432312, 0.7153987884521484, 0.9658277034759521], "mean": [-0.1617783159017563, -0.08688855916261673, 0.13358193635940552, 0.27389830350875854, 0.5729465484619141, 0.14107541739940643, 0.7251158356666565, 0.09731997549533844, -0.13913390040397644, 0.10170803219079971, 0.2353014498949051, -0.11199384927749634, -0.13531740009784698, 0.5165265202522278], "std": [0.003981008660048246, 0.0038395756855607033, 0.002637933474034071, 0.1366470903158188, 0.11746463179588318, 0.12526865303516388, 0.053423620760440826, 0.003580382326617837, 0.005009334534406662, 0.007813695818185806, 0.42664337158203125, 0.21435080468654633, 0.44721537828445435, 0.4679827392101288], "count": [585]}, "timestamp": {"min": [0.0], "max": [19.466666666666665], "mean": [9.733333333333333], "std": [5.629156900230034], "count": [585]}, "frame_index": {"min": [0], "max": [584], "mean": [292.0], "std": [168.87470700690102], "count": [585]}, "episode_index": {"min": [247], "max": [247], "mean": [247.0], "std": [0.0], "count": [585]}, "index": {"min": [116093], "max": [116677], "mean": [116385.0], "std": [168.87470700690102], "count": [585]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [585]}}} +{"episode_index": 248, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4965413180827887]], [[0.4597905337690632]], [[0.415421598583878]]], "std": [[[0.27251314232221613]], [[0.2532265496213581]], [[0.25111565572871475]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5105298311546841]], [[0.4862409831154684]], [[0.4452443001089325]]], "std": [[[0.27751445498629357]], [[0.24021746611794248]], [[0.24809248510705834]]], "count": [100]}, "observation.state": {"min": [0.12812785804271698, -0.12937122583389282, 0.12026848644018173, 0.4793512225151062, -1.3137599229812622, -0.779136598110199, -0.6337429285049438, -0.403682678937912, 0.19432294368743896, -0.4556562602519989, -0.42698904871940613, -1.14662766456604], "max": [0.2527882158756256, -0.013599730096757412, 0.1351771205663681, 2.3558664321899414, -0.4894319474697113, 0.7426736950874329, -0.5054296851158142, -0.32174450159072876, 0.22442668676376343, 1.7595083713531494, 0.6480669379234314, 0.39939287304878235], "mean": [0.2157636135816574, -0.06759161502122879, 0.12830008566379547, 1.7818737030029297, -0.9425598978996277, -0.37421029806137085, -0.5679259896278381, -0.3591254651546478, 0.20899711549282074, 0.6190956234931946, 0.042638298124074936, -0.4208393394947052], "std": [0.026675527915358543, 0.02973329834640026, 0.003170598763972521, 0.548836350440979, 0.205693319439888, 0.4890439510345459, 0.03473738580942154, 0.01622861437499523, 0.005802199710160494, 0.7914812564849854, 0.29764872789382935, 0.4703344404697418], "count": [427]}, "action": {"min": [-0.17361892759799957, -0.10368573665618896, 0.13361980020999908, 0.140934020280838, 0.34347838163375854, -0.07785795629024506, 0.6806290149688721, 0.09197445213794708, -0.15314684808254242, 0.08978190273046494, -0.594758152961731, -0.38526996970176697, -0.5753891468048096, -0.5644266605377197], "max": [-0.15245099365711212, -0.07965405285358429, 0.14327794313430786, 0.5844882726669312, 0.7148606777191162, 0.3458656072616577, 0.7642155885696411, 0.10451637208461761, -0.12593670189380646, 0.12179526686668396, 0.723672091960907, 0.4302484691143036, 0.7617731690406799, 0.9486616253852844], "mean": [-0.15806640684604645, -0.09055314213037491, 0.1361539363861084, 0.36866018176078796, 0.5449532866477966, 0.1750974953174591, 0.708698570728302, 0.09876672178506851, -0.14073675870895386, 0.1036679595708847, 0.08649257570505142, -0.016692493110895157, 0.13712307810783386, 0.3489421308040619], "std": [0.004463994409888983, 0.004287599585950375, 0.0018847290193662047, 0.11570102721452713, 0.10141026228666306, 0.10095221549272537, 0.018444983288645744, 0.003247996559366584, 0.004631955176591873, 0.006826566066592932, 0.5120283961296082, 0.23061279952526093, 0.4776347279548645, 0.5551457405090332], "count": [427]}, "timestamp": {"min": [0.0], "max": [14.2], "mean": [7.1000000000000005], "std": [4.108798148147731], "count": [427]}, "frame_index": {"min": [0], "max": [426], "mean": [213.0], "std": [123.26394444443193], "count": [427]}, "episode_index": {"min": [248], "max": [248], "mean": [248.0], "std": [0.0], "count": [427]}, "index": {"min": [116678], "max": [117104], "mean": [116891.0], "std": [123.26394444443193], "count": [427]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [427]}}} +{"episode_index": 249, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5230244825708061]], [[0.4841347821350762]], [[0.4335708959694989]]], "std": [[[0.2634338412376112]], [[0.23983245068414877]], [[0.23803218749961746]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5414320561002178]], [[0.5141386737472767]], [[0.46761402777777783]]], "std": [[[0.25929895494639404]], [[0.22104577041375978]], [[0.2308049417460036]]], "count": [100]}, "observation.state": {"min": [0.2970317602157593, -0.16051700711250305, 0.13115862011909485, 0.25770893692970276, -1.1398216485977173, -0.9951092600822449, -0.5286828279495239, -0.36194130778312683, 0.16826492547988892, -0.7293016314506531, -0.47166919708251953, -1.4605892896652222], "max": [0.40344327688217163, -0.048769060522317886, 0.14679446816444397, 2.4147894382476807, -0.4183809459209442, 0.9251070618629456, -0.37637510895729065, -0.29849907755851746, 0.20957380533218384, 2.150789737701416, 0.665966272354126, 0.20247924327850342], "mean": [0.3475781977176666, -0.0755891427397728, 0.1378902792930603, 1.1790293455123901, -1.027125358581543, 0.12595434486865997, -0.45763811469078064, -0.333274245262146, 0.18965882062911987, 0.38806062936782837, -0.039527229964733124, -0.6197506785392761], "std": [0.028982477262616158, 0.02282029762864113, 0.004778875969350338, 0.5408608317375183, 0.1404828131198883, 0.49239426851272583, 0.03408454358577728, 0.017575157806277275, 0.008547629229724407, 1.0892003774642944, 0.2536233067512512, 0.5242264866828918], "count": [414]}, "action": {"min": [-0.14250366389751434, -0.10998981446027756, 0.12765882909297943, 0.042113419622182846, 0.41244271397590637, -0.13949166238307953, 0.5810378193855286, 0.11573721468448639, -0.14546464383602142, 0.09329291433095932, -0.6426452398300171, -0.38677993416786194, -0.6002128720283508, -0.5409896373748779], "max": [-0.1254471093416214, -0.09173373132944107, 0.1431741565465927, 0.6442621946334839, 0.7647115588188171, 0.31701886653900146, 0.7181009650230408, 0.13756757974624634, -0.11507686972618103, 0.12808260321617126, 0.603540301322937, 0.4439489543437958, 0.800042986869812, 0.9511697292327881], "mean": [-0.13387201726436615, -0.09629596024751663, 0.13410182297229767, 0.25023871660232544, 0.6637404561042786, 0.05445973947644234, 0.6802527904510498, 0.1244194284081459, -0.12893827259540558, 0.10517574846744537, -0.22094422578811646, 0.04994090646505356, 0.5032143592834473, 0.18410855531692505], "std": [0.004798725247383118, 0.003582398872822523, 0.003751999232918024, 0.12601357698440552, 0.06623215228319168, 0.09918054938316345, 0.031875330954790115, 0.004327811766415834, 0.006263923365622759, 0.007658441551029682, 0.43237361311912537, 0.19856573641300201, 0.36343422532081604, 0.5505537390708923], "count": [414]}, "timestamp": {"min": [0.0], "max": [13.766666666666667], "mean": [6.883333333333333], "std": [3.9837052360092366], "count": [414]}, "frame_index": {"min": [0], "max": [413], "mean": [206.5], "std": [119.5111570802771], "count": [414]}, "episode_index": {"min": [249], "max": [249], "mean": [249.0], "std": [0.0], "count": [414]}, "index": {"min": [117105], "max": [117518], "mean": [117311.5], "std": [119.5111570802771], "count": [414]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [414]}}} +{"episode_index": 250, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5098619414541415]], [[0.47073782519543766]], [[0.42156863813063356]]], "std": [[[0.2604615072197229]], [[0.23731250650627225]], [[0.23547074238899743]]], "count": [102]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.526847694796873]], [[0.5001808225468837]], [[0.4554246657268572]]], "std": [[[0.25579573262045235]], [[0.2189340952001869]], [[0.22851218950077717]]], "count": [102]}, "observation.state": {"min": [0.299557089805603, -0.16502708196640015, 0.13268694281578064, -0.03019534982740879, -1.2410693168640137, -0.9952073097229004, -0.521160900592804, -0.3669224679470062, 0.17274489998817444, -0.8630838394165039, -0.4360070824623108, -1.4862470626831055], "max": [0.4022848904132843, -0.06358125805854797, 0.1448526233434677, 2.414370059967041, -0.5833012461662292, 1.1710385084152222, -0.38788971304893494, -0.302105575799942, 0.21026989817619324, 1.8570141792297363, 0.6543521881103516, 0.3099885880947113], "mean": [0.36282503604888916, -0.1002347320318222, 0.13814347982406616, 1.3381890058517456, -0.9961439371109009, 0.015061330050230026, -0.46337592601776123, -0.33725425601005554, 0.19151431322097778, 0.30005258321762085, 0.03776978328824043, -0.6040090322494507], "std": [0.02105054445564747, 0.026015393435955048, 0.004138104151934385, 0.6710168719291687, 0.16885724663734436, 0.6150794625282288, 0.03325646370649338, 0.013036294840276241, 0.007556918077170849, 0.9677137136459351, 0.21371018886566162, 0.6026298999786377], "count": [477]}, "action": {"min": [-0.14155195653438568, -0.10916728526353836, 0.12617610394954681, 0.04265011474490166, 0.4576282501220703, -0.109368696808815, 0.5562053322792053, 0.11580035835504532, -0.14753617346286774, 0.09231818467378616, -0.6100834608078003, -0.3825375437736511, -0.5904875993728638, -0.5619153380393982], "max": [-0.12617237865924835, -0.09441708773374557, 0.13726386427879333, 0.5716062188148499, 0.8220270276069641, 0.3247852921485901, 0.8270713090896606, 0.13334020972251892, -0.11765613406896591, 0.12575726211071014, 0.5042399764060974, 0.39274463057518005, 0.8377371430397034, 0.9460752010345459], "mean": [-0.13166344165802002, -0.09839019924402237, 0.13211014866828918, 0.28183090686798096, 0.6456508040428162, 0.09837079048156738, 0.6702781915664673, 0.12257947772741318, -0.1305227279663086, 0.10531865805387497, -0.18051263689994812, 0.056455355137586594, 0.4290079176425934, 0.23534150421619415], "std": [0.0030318719800561666, 0.003297960152849555, 0.003261441830545664, 0.14149446785449982, 0.10065316408872604, 0.09708711504936218, 0.07196257263422012, 0.0036827242001891136, 0.005703945178538561, 0.006830275058746338, 0.4364926517009735, 0.2156638652086258, 0.4388626515865326, 0.5432840585708618], "count": [477]}, "timestamp": {"min": [0.0], "max": [15.866666666666667], "mean": [7.933333333333333], "std": [4.589924553563752], "count": [477]}, "frame_index": {"min": [0], "max": [476], "mean": [238.0], "std": [137.69773660691257], "count": [477]}, "episode_index": {"min": [250], "max": [250], "mean": [250.0], "std": [0.0], "count": [477]}, "index": {"min": [117519], "max": [117995], "mean": [117757.0], "std": [137.69773660691257], "count": [477]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [477]}}} +{"episode_index": 251, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5040303159041395]], [[0.4619640468409586]], [[0.4138185620915033]]], "std": [[[0.2598638172965114]], [[0.23711119430586958]], [[0.23465929601765492]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5194234640522876]], [[0.48969129357298474]], [[0.4455970806100218]]], "std": [[[0.25769037388340627]], [[0.22117095083573657]], [[0.229734731712366]]], "count": [100]}, "observation.state": {"min": [0.2589200735092163, -0.1806192845106125, 0.12580494582653046, 0.38939422369003296, -1.1750738620758057, -0.7737367153167725, -0.5540906190872192, -0.3995201289653778, 0.1806807965040207, -0.622779130935669, -0.7454887628555298, -1.3737844228744507], "max": [0.407621294260025, -0.019662080332636833, 0.1477874368429184, 3.081184148788452, -0.06175969913601875, 0.9965489506721497, -0.4132511615753174, -0.30954256653785706, 0.21515172719955444, 2.064816951751709, 0.54067063331604, 0.9318469762802124], "mean": [0.33637914061546326, -0.07212655991315842, 0.13680504262447357, 1.6438932418823242, -0.7861860990524292, 0.03184691444039345, -0.47914162278175354, -0.35503602027893066, 0.199989914894104, 0.5493541359901428, -0.028827082365751266, -0.5137500762939453], "std": [0.03525795787572861, 0.03989238291978836, 0.005298778880387545, 0.8244133591651917, 0.3456772565841675, 0.5579854249954224, 0.047336842864751816, 0.01955888792872429, 0.008987553417682648, 1.0201127529144287, 0.2918761670589447, 0.6959443092346191], "count": [426]}, "action": {"min": [-0.1500440090894699, -0.10940517485141754, 0.12628859281539917, -0.028278620913624763, 0.024826571345329285, -0.08973707258701324, 0.5128909945487976, 0.10768653452396393, -0.14787958562374115, 0.09294082969427109, -0.6227602958679199, -0.34459826350212097, -0.5835580229759216, -0.5768383145332336], "max": [-0.12362917512655258, -0.08639992773532867, 0.15258236229419708, 0.5971018671989441, 0.7265950441360474, 0.6670427918434143, 0.9179880619049072, 0.12911835312843323, -0.12471044808626175, 0.12233470380306244, 0.578352153301239, 0.3196150064468384, 0.7891052961349487, 0.9790853261947632], "mean": [-0.13687503337860107, -0.09462595731019974, 0.13690683245658875, 0.24932849407196045, 0.5252434015274048, 0.20963989198207855, 0.7058184742927551, 0.11753251403570175, -0.13791081309318542, 0.10681991279125214, -0.22286568582057953, 0.06270959228277206, 0.4350908398628235, 0.2504311501979828], "std": [0.005120042245835066, 0.004855045583099127, 0.006239170674234629, 0.16117890179157257, 0.19458265602588654, 0.22306545078754425, 0.07890970259904861, 0.00475134514272213, 0.006791048217564821, 0.00875934399664402, 0.4167154133319855, 0.22201944887638092, 0.35826125741004944, 0.5857328772544861], "count": [426]}, "timestamp": {"min": [0.0], "max": [14.166666666666666], "mean": [7.083333333333333], "std": [4.099175617211434], "count": [426]}, "frame_index": {"min": [0], "max": [425], "mean": [212.5], "std": [122.97526851634302], "count": [426]}, "episode_index": {"min": [251], "max": [251], "mean": [251.0], "std": [0.0], "count": [426]}, "index": {"min": [117996], "max": [118421], "mean": [118208.5], "std": [122.97526851634302], "count": [426]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [426]}}} +{"episode_index": 252, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5090730255991285]], [[0.4736574891067538]], [[0.4268631154684096]]], "std": [[[0.2612405900354544]], [[0.23923910978157417]], [[0.2386247140653951]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5261497331154684]], [[0.5034984994553376]], [[0.45971683823529413]]], "std": [[[0.2583395289191106]], [[0.221267206003716]], [[0.23257395373392756]]], "count": [100]}, "observation.state": {"min": [0.2493516057729721, -0.17747612297534943, 0.12502586841583252, 0.2705000340938568, -1.1660559177398682, -1.014189600944519, -0.5625856518745422, -0.4291522800922394, 0.17299768328666687, -0.7653682827949524, -0.45486292243003845, -1.1341028213500977], "max": [0.3479709029197693, -0.04618966951966286, 0.1435680091381073, 2.92035174369812, 0.21042020618915558, 1.0163565874099731, -0.44294506311416626, -0.2882046699523926, 0.21333563327789307, 1.867079257965088, 0.5199018716812134, 0.20231853425502777], "mean": [0.3157767355442047, -0.09146662056446075, 0.13603469729423523, 1.2701911926269531, -0.8834996819496155, 0.11883394420146942, -0.5086031556129456, -0.34894129633903503, 0.19357477128505707, 0.9021497368812561, -0.05809531733393669, -0.19316793978214264], "std": [0.020172012969851494, 0.04465572535991669, 0.005022136960178614, 0.8370482325553894, 0.32429876923561096, 0.7138925790786743, 0.027242088690400124, 0.023901091888546944, 0.0071559264324605465, 0.9548879265785217, 0.24416886270046234, 0.41534560918807983], "count": [469]}, "action": {"min": [-0.15149053931236267, -0.11157917231321335, 0.1265804022550583, -0.004758765920996666, 0.1032370775938034, -0.09797242283821106, 0.4384644329547882, 0.11075101047754288, -0.1458408683538437, 0.08679777383804321, -0.6282791495323181, -0.28066715598106384, -0.592803418636322, -0.4780268669128418], "max": [-0.1382560133934021, -0.09010989218950272, 0.1433972269296646, 0.6925325989723206, 0.7517887353897095, 0.5718134045600891, 0.821145236492157, 0.12396283447742462, -0.11760959029197693, 0.12230612337589264, 0.6351603865623474, 0.33070650696754456, 0.8385539650917053, 0.9380882978439331], "mean": [-0.14125856757164001, -0.0993146151304245, 0.13384930789470673, 0.27964282035827637, 0.6044765114784241, 0.10765451937913895, 0.6625139117240906, 0.1155167818069458, -0.1318923830986023, 0.10158100724220276, 0.12404745072126389, -0.0834428071975708, 0.21527184545993805, 0.5389776229858398], "std": [0.002148769795894623, 0.005933264270424843, 0.003975763451308012, 0.20758876204490662, 0.16273720562458038, 0.17968714237213135, 0.06348304450511932, 0.002765200100839138, 0.00537641579285264, 0.007514800876379013, 0.4048984944820404, 0.1669497936964035, 0.39476460218429565, 0.5414393544197083], "count": [469]}, "timestamp": {"min": [0.0], "max": [15.6], "mean": [7.8], "std": [4.5129443456203475], "count": [469]}, "frame_index": {"min": [0], "max": [468], "mean": [234.0], "std": [135.3883303686104], "count": [469]}, "episode_index": {"min": [252], "max": [252], "mean": [252.0], "std": [0.0], "count": [469]}, "index": {"min": [118422], "max": [118890], "mean": [118656.0], "std": [135.3883303686104], "count": [469]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [469]}}} +{"episode_index": 253, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5186433387799564]], [[0.4792775462962963]], [[0.4300039351851852]]], "std": [[[0.26234576288015077]], [[0.23939700672804992]], [[0.2375303645632688]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5364796350762527]], [[0.5093152968409586]], [[0.4644122331154684]]], "std": [[[0.2577930077750516]], [[0.22056534795375024]], [[0.23032747582720256]]], "count": [100]}, "observation.state": {"min": [0.28784942626953125, -0.17580801248550415, 0.12749400734901428, 0.45712408423423767, -1.123561978340149, -1.1424438953399658, -0.48512664437294006, -0.3500019907951355, 0.1758352667093277, -0.5556783676147461, -0.2843405604362488, -1.3106052875518799], "max": [0.39456215500831604, -0.06229155883193016, 0.14407485723495483, 2.3747386932373047, -0.0934593677520752, 0.7441871762275696, -0.37730956077575684, -0.29715532064437866, 0.21057972311973572, 2.0671234130859375, 0.5968282222747803, 0.2429487109184265], "mean": [0.35518985986709595, -0.09393862634897232, 0.13638485968112946, 1.2028216123580933, -0.8904858231544495, 0.010300043039023876, -0.44837984442710876, -0.32492494583129883, 0.19112278521060944, 0.7650167942047119, 0.07566975802183151, -0.4377879202365875], "std": [0.023382240906357765, 0.03570815548300743, 0.005328907631337643, 0.6453387141227722, 0.2824189364910126, 0.6319727301597595, 0.02802969701588154, 0.012895356863737106, 0.007187789771705866, 1.0923222303390503, 0.20608437061309814, 0.591606080532074], "count": [234]}, "action": {"min": [-0.14386044442653656, -0.11283211410045624, 0.12507463991641998, 0.05414772406220436, 0.27530157566070557, -0.10694002360105515, 0.5170421004295349, 0.11876596510410309, -0.14261889457702637, 0.09782923012971878, -0.6289775967597961, -0.3963901698589325, -0.5688926577568054, -0.4318947196006775], "max": [-0.13205650448799133, -0.09141658991575241, 0.14139486849308014, 0.7588679790496826, 0.7348417639732361, 0.29720833897590637, 0.7328336238861084, 0.13476453721523285, -0.117519810795784, 0.12760278582572937, 0.6065534949302673, 0.4002613127231598, 0.780428409576416, 0.9243045449256897], "mean": [-0.1340913474559784, -0.09865612536668777, 0.13150684535503387, 0.30868464708328247, 0.6251394152641296, 0.03518063575029373, 0.6609912514686584, 0.12392383813858032, -0.1293967068195343, 0.10698810964822769, -0.05312530696392059, -0.07964590191841125, 0.33478206396102905, 0.40292060375213623], "std": [0.00205216184258461, 0.0060457936488091946, 0.0043776193633675575, 0.20369766652584076, 0.1277320832014084, 0.12347827851772308, 0.05208098888397217, 0.00368592725135386, 0.00461950246244669, 0.006987819913774729, 0.44970017671585083, 0.2659164071083069, 0.3933327794075012, 0.5373618006706238], "count": [234]}, "timestamp": {"min": [0.0], "max": [7.766666666666667], "mean": [3.8833333333333337], "std": [2.251645488838642], "count": [234]}, "frame_index": {"min": [0], "max": [233], "mean": [116.5], "std": [67.54936466515926], "count": [234]}, "episode_index": {"min": [253], "max": [253], "mean": [253.0], "std": [0.0], "count": [234]}, "index": {"min": [118891], "max": [119124], "mean": [119007.5], "std": [67.54936466515926], "count": [234]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [234]}}} +{"episode_index": 254, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5085922875816994]], [[0.4704649645969499]], [[0.4233599319172113]]], "std": [[[0.2637694682946508]], [[0.2413700926318328]], [[0.2401857206306593]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5260901824618737]], [[0.5011007298474945]], [[0.45776953703703704]]], "std": [[[0.2605531410549843]], [[0.22269088565273953]], [[0.23257495873178774]]], "count": [100]}, "observation.state": {"min": [0.2581709623336792, -0.1729428768157959, 0.1287669688463211, 0.5240151882171631, -1.2495408058166504, -1.0636550188064575, -0.4933744966983795, -0.3538247346878052, 0.17938190698623657, -0.5519039034843445, -0.19429710507392883, -1.3840644359588623], "max": [0.36147797107696533, -0.05438347905874252, 0.14235468208789825, 2.2105512619018555, -0.10739628970623016, 0.8830594420433044, -0.4222713112831116, -0.2974642217159271, 0.21067693829536438, 2.0763497352600098, 0.5760594606399536, 0.158157080411911], "mean": [0.3229459226131439, -0.09743385761976242, 0.13477455079555511, 1.507981777191162, -0.9149898886680603, -0.09932884573936462, -0.4600490629673004, -0.32755473256111145, 0.1926729828119278, 0.5700380206108093, 0.12895788252353668, -0.5270401835441589], "std": [0.02224498987197876, 0.030972406268119812, 0.003959530498832464, 0.5500079989433289, 0.30025148391723633, 0.5586767196655273, 0.022479930892586708, 0.013755402527749538, 0.007457590661942959, 0.9727830290794373, 0.16933445632457733, 0.49884557723999023], "count": [293]}, "action": {"min": [-0.15055347979068756, -0.11074680089950562, 0.12652045488357544, 0.006169790402054787, 0.24901539087295532, -0.04347726330161095, 0.5732942819595337, 0.11536699533462524, -0.14337746798992157, 0.09861588478088379, -0.6567436456680298, -0.4495944082736969, -0.6163397431373596, -0.47686538100242615], "max": [-0.13607481122016907, -0.08876138925552368, 0.14103245735168457, 0.7393125295639038, 0.7340759038925171, 0.29723167419433594, 0.7976586818695068, 0.12888050079345703, -0.11799614131450653, 0.12576402723789215, 0.6770844459533691, 0.40336498618125916, 0.7687779068946838, 0.8992142081260681], "mean": [-0.1390351504087448, -0.09720298647880554, 0.13254521787166595, 0.310107558965683, 0.5859077572822571, 0.1358778029680252, 0.6921796798706055, 0.12131070345640182, -0.13023440539836884, 0.10679220408201218, -0.012151925824582577, -0.06112482771277428, 0.253923237323761, 0.3004307150840759], "std": [0.0028853260446339846, 0.005015636328607798, 0.0034749244805425406, 0.18355759978294373, 0.1339087039232254, 0.09392464905977249, 0.050231702625751495, 0.0036449998151510954, 0.004872301127761602, 0.007035103160887957, 0.5046215057373047, 0.26764771342277527, 0.484049916267395, 0.529903769493103], "count": [293]}, "timestamp": {"min": [0.0], "max": [9.733333333333333], "mean": [4.866666666666667], "std": [2.8193773938387334], "count": [293]}, "frame_index": {"min": [0], "max": [292], "mean": [146.0], "std": [84.581321815162], "count": [293]}, "episode_index": {"min": [254], "max": [254], "mean": [254.0], "std": [0.0], "count": [293]}, "index": {"min": [119125], "max": [119417], "mean": [119271.0], "std": [84.581321815162], "count": [293]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [293]}}} +{"episode_index": 255, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5022131944444445]], [[0.46619203703703704]], [[0.41878149237472767]]], "std": [[[0.2636455908595006]], [[0.24113516039901725]], [[0.24025935772511037]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5185688371459696]], [[0.4963926307189543]], [[0.4527232162309368]]], "std": [[[0.26096472351569605]], [[0.2231667393857363]], [[0.23336795320114453]]], "count": [100]}, "observation.state": {"min": [0.268133282661438, -0.18139155209064484, 0.12836381793022156, 0.540580689907074, -1.1864147186279297, -0.8731736540794373, -0.4972204267978668, -0.3988328278064728, 0.18035930395126343, -0.8251299262046814, -0.03183630108833313, -1.3725908994674683], "max": [0.35926154255867004, -0.06642322987318039, 0.13941988348960876, 2.3571245670318604, 0.18063345551490784, 0.7779145836830139, -0.4349674880504608, -0.32718130946159363, 0.21257470548152924, 2.0304276943206787, 0.6655563712120056, 0.14275957643985748], "mean": [0.3281272351741791, -0.11226533353328705, 0.13479416072368622, 1.5823478698730469, -0.9098584651947021, -0.17985892295837402, -0.4741937518119812, -0.34488752484321594, 0.1938425451517105, 0.6052557229995728, 0.21336916089057922, -0.5005565285682678], "std": [0.02010682225227356, 0.028813600540161133, 0.003394560655578971, 0.5750005841255188, 0.2896094024181366, 0.5374162793159485, 0.01563362218439579, 0.015391109511256218, 0.00805001612752676, 1.1220957040786743, 0.19343312084674835, 0.5805780291557312], "count": [285]}, "action": {"min": [-0.14911828935146332, -0.11278575658798218, 0.12541711330413818, 0.09594713896512985, 0.10310172289609909, -0.01768997684121132, 0.5985535979270935, 0.11560112982988358, -0.14511466026306152, 0.09247372299432755, -0.539550244808197, -0.43492257595062256, -0.553451657295227, -0.5113277435302734], "max": [-0.1322997510433197, -0.09131862223148346, 0.1356528103351593, 0.7268746495246887, 0.731357753276825, 0.335702508687973, 0.7813716530799866, 0.12745897471904755, -0.12123849242925644, 0.12086929380893707, 0.6204531192779541, 0.4195907413959503, 0.8310597538948059, 0.898060142993927], "mean": [-0.13828055560588837, -0.09887050837278366, 0.13104084134101868, 0.34307006001472473, 0.5797963738441467, 0.14711838960647583, 0.6863200664520264, 0.11941931396722794, -0.13224400579929352, 0.10471503436565399, -0.00015355348295997828, -0.05028659105300903, 0.3295512795448303, 0.3647368252277374], "std": [0.0037182364612817764, 0.004233052022755146, 0.0027867972385138273, 0.15262605249881744, 0.13868333399295807, 0.09723766893148422, 0.03843735158443451, 0.0030020875856280327, 0.005538396071642637, 0.006381195038557053, 0.42555662989616394, 0.3008761405944824, 0.44611382484436035, 0.534033477306366], "count": [285]}, "timestamp": {"min": [0.0], "max": [9.466666666666667], "mean": [4.733333333333333], "std": [2.7423968970119446], "count": [285]}, "frame_index": {"min": [0], "max": [284], "mean": [142.0], "std": [82.27190691035833], "count": [285]}, "episode_index": {"min": [255], "max": [255], "mean": [255.0], "std": [0.0], "count": [285]}, "index": {"min": [119418], "max": [119702], "mean": [119560.0], "std": [82.27190691035833], "count": [285]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [285]}}} +{"episode_index": 256, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.511182121459695]], [[0.4729528213507625]], [[0.4254952151416122]]], "std": [[[0.2619256026674631]], [[0.23889164412148803]], [[0.23735083004699922]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5289945397603486]], [[0.5035975626361656]], [[0.46046886437908496]]], "std": [[[0.2581640317261443]], [[0.22069767379920988]], [[0.22974795679992796]]], "count": [100]}, "observation.state": {"min": [0.3076968491077423, -0.16660252213478088, 0.12410809844732285, 0.10840970277786255, -1.3811217546463013, -1.1892427206039429, -0.5275862216949463, -0.4028022885322571, 0.17373916506767273, -0.4399294853210449, -0.41619476675987244, -0.94675213098526], "max": [0.41795429587364197, -0.05359577015042305, 0.14410726726055145, 3.358394145965576, 0.20768748223781586, 1.2280610799789429, -0.4321795701980591, -0.32240864634513855, 0.2040749341249466, 1.9685691595077515, 0.7062740921974182, 0.31860414147377014], "mean": [0.3605170249938965, -0.09735896438360214, 0.13533799350261688, 1.740707516670227, -0.82062828540802, -0.04586762189865112, -0.47356513142585754, -0.34749293327331543, 0.18826790153980255, 0.7324414253234863, 0.025863653048872948, -0.28046467900276184], "std": [0.026788556948304176, 0.03659011796116829, 0.0073697553016245365, 1.0724735260009766, 0.4863870143890381, 0.8166933655738831, 0.032947663217782974, 0.01924622245132923, 0.005576091352850199, 0.9806975722312927, 0.33585283160209656, 0.4548177421092987], "count": [236]}, "action": {"min": [-0.14576588571071625, -0.10750027745962143, 0.1237606629729271, -0.09545283019542694, 0.031759560108184814, -0.1092911809682846, 0.3733765184879303, 0.11576614528894424, -0.13793590664863586, 0.0928538590669632, -0.61026531457901, -0.4744815528392792, -0.5724665522575378, -0.5617068409919739], "max": [-0.12428193539381027, -0.09098991751670837, 0.13809312880039215, 0.6873840093612671, 0.7689095735549927, 0.7388213276863098, 0.7770373821258545, 0.1307724267244339, -0.11622972041368484, 0.11722347140312195, 0.5729976892471313, 0.31521138548851013, 0.8031806349754333, 0.9643098711967468], "mean": [-0.13454629480838776, -0.0968397781252861, 0.1316063106060028, 0.28015828132629395, 0.5735246539115906, 0.2778438925743103, 0.5856816172599792, 0.12292355298995972, -0.12867596745491028, 0.10164583474397659, -0.08352390676736832, -0.043387509882450104, 0.3585052490234375, 0.28759080171585083], "std": [0.00520752090960741, 0.0037539268378168344, 0.004718133248388767, 0.23284809291362762, 0.22157758474349976, 0.24929185211658478, 0.0830630362033844, 0.005062195938080549, 0.0037356282118707895, 0.0050371126271784306, 0.4200424551963806, 0.2008381485939026, 0.38729482889175415, 0.6427580714225769], "count": [236]}, "timestamp": {"min": [0.0], "max": [7.833333333333333], "mean": [3.9166666666666665], "std": [2.270890672058971], "count": [236]}, "frame_index": {"min": [0], "max": [235], "mean": [117.5], "std": [68.12672016176913], "count": [236]}, "episode_index": {"min": [256], "max": [256], "mean": [256.0], "std": [0.0], "count": [236]}, "index": {"min": [119703], "max": [119938], "mean": [119820.5], "std": [68.12672016176913], "count": [236]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [236]}}} +{"episode_index": 257, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5004622004357299]], [[0.4662439760348584]], [[0.4250522984749456]]], "std": [[[0.2688600146746244]], [[0.24596591240315022]], [[0.24655306384378395]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5192385757080611]], [[0.4989723229847495]], [[0.4623703839869281]]], "std": [[[0.26637586588500517]], [[0.22721497868109414]], [[0.23663229375665476]]], "count": [100]}, "observation.state": {"min": [0.19427306950092316, -0.22458478808403015, 0.12487421184778214, 0.5307252407073975, -1.3777058124542236, -1.2879849672317505, -0.4862232506275177, -0.4203251898288727, 0.17230287194252014, -0.698896586894989, 0.020495470613241196, -1.1875168085098267], "max": [0.34841108322143555, -0.05042944848537445, 0.14425893127918243, 2.831233501434326, -0.08280172199010849, 0.8050081133842468, -0.44913098216056824, -0.30480852723121643, 0.20984213054180145, 0.261483371257782, 0.37137800455093384, -0.362278014421463], "mean": [0.3083469867706299, -0.12217824906110764, 0.13447080552577972, 1.9530696868896484, -0.8145643472671509, -0.5526009202003479, -0.46793869137763977, -0.35703396797180176, 0.19154790043830872, -0.3103730082511902, 0.22312738001346588, -0.7241098880767822], "std": [0.03722333908081055, 0.05746008828282356, 0.0058148750104010105, 0.7757337093353271, 0.501151978969574, 0.7415162324905396, 0.010707267560064793, 0.028473390266299248, 0.009431851096451283, 0.2893519103527069, 0.07709511369466782, 0.2180624157190323], "count": [210]}, "action": {"min": [-0.16410648822784424, -0.1181691512465477, 0.12263011932373047, 0.14262647926807404, 0.2716592252254486, 0.0394384041428566, 0.4460112452507019, 0.11609119176864624, -0.14421150088310242, 0.08580376952886581, -0.5708191990852356, -0.09938250482082367, -0.5803777575492859, -0.5807030200958252], "max": [-0.13569442927837372, -0.08754514902830124, 0.14331184327602386, 0.7707524299621582, 0.7621576189994812, 0.46854907274246216, 0.6987417936325073, 0.12902799248695374, -0.1200774684548378, 0.12233752757310867, 0.5597438216209412, 0.3285941183567047, 0.8397663831710815, 0.5935686230659485], "mean": [-0.14337413012981415, -0.10040690749883652, 0.1314648985862732, 0.4484647214412689, 0.5461413264274597, 0.2516379654407501, 0.5650386214256287, 0.12223600596189499, -0.13195805251598358, 0.1032506674528122, -0.4781615138053894, 0.14420486986637115, 0.7398366332054138, -0.34883058071136475], "std": [0.006900240201503038, 0.010358961299061775, 0.005979134701192379, 0.23328889906406403, 0.18781515955924988, 0.14613333344459534, 0.0834609642624855, 0.003654437605291605, 0.005223918706178665, 0.00900343805551529, 0.1308179348707199, 0.06344158202409744, 0.1792314648628235, 0.1681169867515564], "count": [210]}, "timestamp": {"min": [0.0], "max": [6.966666666666667], "mean": [3.4833333333333334], "std": [2.0207030313088414], "count": [210]}, "frame_index": {"min": [0], "max": [209], "mean": [104.5], "std": [60.621090939265244], "count": [210]}, "episode_index": {"min": [257], "max": [257], "mean": [257.0], "std": [0.0], "count": [210]}, "index": {"min": [119939], "max": [120148], "mean": [120043.5], "std": [60.621090939265244], "count": [210]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [210]}}} +{"episode_index": 258, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5040572222222223]], [[0.46746282135076256]], [[0.42260159586056645]]], "std": [[[0.2637843739877323]], [[0.24034354118385085]], [[0.23875139199457884]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5221679602396514]], [[0.4987175190631808]], [[0.45701568355119826]]], "std": [[[0.2612691430156792]], [[0.22213592517724723]], [[0.23097805111051986]]], "count": [100]}, "observation.state": {"min": [0.2350722700357437, -0.1594049334526062, 0.12965622544288635, 0.5634368658065796, -1.2696263790130615, -1.2032288312911987, -0.5194309949874878, -0.37800461053848267, 0.17743617296218872, -0.5667918920516968, -0.25851625204086304, -1.1106009483337402], "max": [0.3497162461280823, -0.04538650065660477, 0.1415652334690094, 2.364044427871704, -0.38681793212890625, 0.759114682674408, -0.4313223361968994, -0.3138209581375122, 0.20969046652317047, 1.941099762916565, 0.626478374004364, 0.21516065299510956], "mean": [0.3096081614494324, -0.09212809801101685, 0.13606657087802887, 1.6763944625854492, -1.0344829559326172, -0.22186939418315887, -0.48204097151756287, -0.34444674849510193, 0.19317391514778137, 0.5243172645568848, 0.11899879574775696, -0.4245084226131439], "std": [0.025302739813923836, 0.030854690819978714, 0.0038809243123978376, 0.5942056179046631, 0.24534840881824493, 0.5831669569015503, 0.024816283956170082, 0.015929337590932846, 0.0070158932358026505, 0.9670270085334778, 0.25780200958251953, 0.455491304397583], "count": [295]}, "action": {"min": [-0.15383516252040863, -0.10821931809186935, 0.1278275102376938, 0.139582097530365, 0.3819427788257599, 0.029825197532773018, 0.5193376541137695, 0.11436542868614197, -0.1444363296031952, 0.0947326272726059, -0.5648647546768188, -0.38605859875679016, -0.567735493183136, -0.5831195712089539], "max": [-0.13427969813346863, -0.08975426107645035, 0.1453159749507904, 0.6752825975418091, 0.7594415545463562, 0.37375807762145996, 0.756287693977356, 0.12481134384870529, -0.11849696189165115, 0.12276633828878403, 0.5404098033905029, 0.3625878095626831, 0.8033097386360168, 0.9413121938705444], "mean": [-0.14063039422035217, -0.09619428217411041, 0.134688600897789, 0.32450541853904724, 0.6139956712722778, 0.18768320977687836, 0.6619454026222229, 0.11926274746656418, -0.13136275112628937, 0.10448656231164932, -0.1291787028312683, 0.010820379480719566, 0.41653764247894287, 0.18230681121349335], "std": [0.004598625469952822, 0.004076419863849878, 0.00352327898144722, 0.14566415548324585, 0.10889959335327148, 0.0943523421883583, 0.04826461151242256, 0.0026894162874668837, 0.005485336296260357, 0.005994023289531469, 0.4258289635181427, 0.21576163172721863, 0.39692115783691406, 0.6253212690353394], "count": [295]}, "timestamp": {"min": [0.0], "max": [9.8], "mean": [4.9], "std": [2.838622514139169], "count": [295]}, "frame_index": {"min": [0], "max": [294], "mean": [147.0], "std": [85.15867542417507], "count": [295]}, "episode_index": {"min": [258], "max": [258], "mean": [258.0], "std": [0.0], "count": [295]}, "index": {"min": [120149], "max": [120443], "mean": [120296.0], "std": [85.15867542417507], "count": [295]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [295]}}} +{"episode_index": 259, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4621153540305011]], [[0.41782803649237477]], [[0.3796437445533769]]], "std": [[[0.26741501269280954]], [[0.24818100073160154]], [[0.24596911696558027]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47494397331154686]], [[0.445079128540305]], [[0.4114011982570806]]], "std": [[[0.2761346282334856]], [[0.23961886856282463]], [[0.24517299997808314]]], "count": [100]}, "observation.state": {"min": [0.19601067900657654, -0.14049196243286133, 0.10969594866037369, 0.48060935735702515, -1.1368156671524048, -0.9965778589248657, -0.616428554058075, -0.387511283159256, 0.19245629012584686, -0.6804438829421997, -0.2433496117591858, -0.9623655676841736], "max": [0.276218980550766, 0.003266720101237297, 0.13217361271381378, 2.1956634521484375, -0.453633189201355, 0.911887526512146, -0.5150676965713501, -0.3297297954559326, 0.2180580049753189, 1.797671914100647, 0.4951706826686859, 0.07849320024251938], "mean": [0.2420792430639267, -0.04639211297035217, 0.12299615144729614, 1.105057716369629, -0.9488452076911926, 0.1790739893913269, -0.5657120943069458, -0.3654535710811615, 0.20412157475948334, 0.5460743308067322, 0.07939888536930084, -0.41709327697753906], "std": [0.019508952274918556, 0.0435161218047142, 0.006865072529762983, 0.6342907547950745, 0.19064924120903015, 0.6910045742988586, 0.02403770200908184, 0.011294227093458176, 0.006389380898326635, 0.9684434533119202, 0.23665209114551544, 0.39768141508102417], "count": [251]}, "action": {"min": [-0.16121156513690948, -0.10349158197641373, 0.12147191911935806, 0.033663418143987656, 0.35851868987083435, -0.06077165901660919, 0.6361740827560425, 0.09573308378458023, -0.1501980721950531, 0.09155294299125671, -0.5735172629356384, -0.3714774549007416, -0.5311512351036072, -0.5436714291572571], "max": [-0.15264391899108887, -0.07782725989818573, 0.13690435886383057, 0.6558525562286377, 0.6938607096672058, 0.21660037338733673, 0.7629320621490479, 0.10733189433813095, -0.12800301611423492, 0.11913208663463593, 0.5562620759010315, 0.31133684515953064, 0.822752058506012, 0.9036974906921387], "mean": [-0.1560164988040924, -0.08818849176168442, 0.13044069707393646, 0.25271478295326233, 0.6127211451530457, 0.03070290945470333, 0.7057046890258789, 0.10135656595230103, -0.13833323121070862, 0.10027934610843658, 0.015165871009230614, -0.06944567710161209, 0.29745128750801086, 0.35768988728523254], "std": [0.002842243295162916, 0.006923639215528965, 0.004545927979052067, 0.20020386576652527, 0.10311626642942429, 0.10013923794031143, 0.03168560564517975, 0.002985648112371564, 0.004969997797161341, 0.005831092596054077, 0.48033300042152405, 0.21637269854545593, 0.4604204595088959, 0.5375910997390747], "count": [251]}, "timestamp": {"min": [0.0], "max": [8.333333333333334], "mean": [4.166666666666667], "std": [2.41522945769824], "count": [251]}, "frame_index": {"min": [0], "max": [250], "mean": [125.0], "std": [72.4568837309472], "count": [251]}, "episode_index": {"min": [259], "max": [259], "mean": [259.0], "std": [0.0], "count": [251]}, "index": {"min": [120444], "max": [120694], "mean": [120569.0], "std": [72.4568837309472], "count": [251]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [251]}}} +{"episode_index": 260, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48477554193899786]], [[0.4456425408496732]], [[0.4047174074074074]]], "std": [[[0.2697428725010241]], [[0.24778893791596301]], [[0.2447019745172382]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49632047930283224]], [[0.4706046405228758]], [[0.4330365740740741]]], "std": [[[0.27593093633752136]], [[0.23677296883598947]], [[0.24461461340010426]]], "count": [100]}, "observation.state": {"min": [0.10702162981033325, -0.1394648253917694, 0.11675166338682175, 0.7680942416191101, -1.3271503448486328, -1.1848795413970947, -0.6389017105102539, -0.46388912200927734, 0.18912222981452942, -0.6680721640586853, -0.4951706826686859, -0.9558786153793335], "max": [0.26661962270736694, 0.015182889997959137, 0.1362374871969223, 2.5194246768951416, 0.06257952004671097, 0.650154173374176, -0.515693187713623, -0.3191496729850769, 0.21820060908794403, 1.831641674041748, 0.6943866610527039, 0.5355986952781677], "mean": [0.20648334920406342, -0.06821372359991074, 0.12688462436199188, 1.9055932760238647, -0.7709843516349792, -0.5630124807357788, -0.5732619166374207, -0.4004039764404297, 0.20163123309612274, 0.1332012265920639, 0.1803663671016693, -0.4081721007823944], "std": [0.03149636462330818, 0.047871656715869904, 0.004046875983476639, 0.5077201724052429, 0.512639045715332, 0.5471105575561523, 0.033157628029584885, 0.025062087923288345, 0.007259618025273085, 0.9534099102020264, 0.34674033522605896, 0.5182009339332581], "count": [362]}, "action": {"min": [-0.1768062710762024, -0.10502870380878448, 0.12679041922092438, 0.11372832953929901, 0.15734601020812988, 0.03163410723209381, 0.519677460193634, 0.09199494123458862, -0.15247631072998047, 0.0760037824511528, -0.6180713176727295, -0.410030722618103, -0.61055988073349, -0.5859425663948059], "max": [-0.14982493221759796, -0.07788913697004318, 0.14683078229427338, 0.7389296293258667, 0.6972212791442871, 0.4164268672466278, 0.7299625873565674, 0.11107318848371506, -0.12684524059295654, 0.12018778920173645, 0.4707881808280945, 0.305241197347641, 0.8524138331413269, 0.9693462252616882], "mean": [-0.16079534590244293, -0.09095478802919388, 0.13512453436851501, 0.4476882815361023, 0.48250898718833923, 0.2064049392938614, 0.6474888324737549, 0.10399218648672104, -0.13992395997047424, 0.09466465562582016, -0.21160508692264557, 0.049239858984947205, 0.5364900827407837, 0.09401167929172516], "std": [0.005739521235227585, 0.009370611049234867, 0.0036388717126101255, 0.21346686780452728, 0.1973949670791626, 0.12100719660520554, 0.0757594108581543, 0.0037791039794683456, 0.005212737247347832, 0.008640469051897526, 0.3475390672683716, 0.17671753466129303, 0.4142046570777893, 0.5766810178756714], "count": [362]}, "timestamp": {"min": [0.0], "max": [12.033333333333333], "mean": [6.016666666666667], "std": [3.4833333333333334], "count": [362]}, "frame_index": {"min": [0], "max": [361], "mean": [180.5], "std": [104.5], "count": [362]}, "episode_index": {"min": [260], "max": [260], "mean": [260.0], "std": [0.0], "count": [362]}, "index": {"min": [120695], "max": [121056], "mean": [120875.5], "std": [104.5], "count": [362]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [362]}}} +{"episode_index": 261, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49117080882352937]], [[0.45045707788671024]], [[0.4033823066448802]]], "std": [[[0.26916280459531533]], [[0.24754390723702763]], [[0.24491721341214737]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5062362554466231]], [[0.4784955473856209]], [[0.4359959368191721]]], "std": [[[0.2753995592334837]], [[0.23613930119541943]], [[0.24349271168717704]]], "count": [100]}, "observation.state": {"min": [0.19034992158412933, -0.12398847937583923, 0.12339255213737488, 0.7412539720535278, -0.928445041179657, -1.2095577716827393, -0.613385796546936, -0.40816959738731384, 0.18231800198554993, -0.8058384656906128, -0.7114662528038025, -0.9987714290618896], "max": [0.3260151743888855, -0.017901290208101273, 0.1409132033586502, 2.5250864028930664, -0.18924154341220856, 0.21582241356372833, -0.4814583361148834, -0.30900198221206665, 0.21435710787773132, 1.456506371498108, 0.7316884398460388, 0.6245264410972595], "mean": [0.2880900204181671, -0.06277230381965637, 0.1321595013141632, 1.5264872312545776, -0.7039799690246582, -0.5245042443275452, -0.560140073299408, -0.3668051064014435, 0.1988103985786438, 0.46780094504356384, -0.04234437644481659, -0.1403583288192749], "std": [0.037544939666986465, 0.03510110080242157, 0.005918974056839943, 0.5791912078857422, 0.23477080464363098, 0.4927810728549957, 0.03888865187764168, 0.025337327271699905, 0.007776136044412851, 0.89154452085495, 0.5485551953315735, 0.5976161360740662], "count": [254]}, "action": {"min": [-0.16267390549182892, -0.10327786952257156, 0.12974604964256287, 0.22687681019306183, 0.3054184019565582, -0.1867893636226654, 0.5415678024291992, 0.09995722770690918, -0.1479991227388382, 0.08407927304506302, -0.46955278515815735, -0.3269542157649994, -0.6385011076927185, -0.6046406626701355], "max": [-0.13840892910957336, -0.08431360870599747, 0.14834098517894745, 0.7581526637077332, 0.6172477602958679, 0.36424410343170166, 0.7585551738739014, 0.11332341283559799, -0.12244964390993118, 0.11531863361597061, 0.4141148030757904, 0.3248213529586792, 0.8654217720031738, 0.9789390563964844], "mean": [-0.1459653675556183, -0.09298304468393326, 0.13677476346492767, 0.47034838795661926, 0.5033689737319946, 0.010219902731478214, 0.6744444966316223, 0.10778152942657471, -0.13479840755462646, 0.09880270063877106, -0.026978185400366783, 0.08592074364423752, 0.3315817713737488, 0.3619779348373413], "std": [0.007426194380968809, 0.006408486980944872, 0.003992905840277672, 0.16339951753616333, 0.10004640370607376, 0.17214566469192505, 0.06379100680351257, 0.003148420015349984, 0.006181379780173302, 0.008055136539041996, 0.3459776043891907, 0.16233426332473755, 0.44616204500198364, 0.6370258927345276], "count": [254]}, "timestamp": {"min": [0.0], "max": [8.433333333333334], "mean": [4.216666666666667], "std": [2.4440971975580497], "count": [254]}, "frame_index": {"min": [0], "max": [253], "mean": [126.5], "std": [73.32291592674149], "count": [254]}, "episode_index": {"min": [261], "max": [261], "mean": [261.0], "std": [0.0], "count": [254]}, "index": {"min": [121057], "max": [121310], "mean": [121183.5], "std": [73.32291592674149], "count": [254]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [254]}}} +{"episode_index": 262, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46949836328976036]], [[0.43433508714596947]], [[0.3926457189542483]]], "std": [[[0.2691568448144145]], [[0.24794427207303132]], [[0.24587826357108292]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4801602913943355]], [[0.46014474128540306]], [[0.42286570261437906]]], "std": [[[0.27594809126884795]], [[0.23689009737796884]], [[0.24447167586298066]]], "count": [100]}, "observation.state": {"min": [0.18455787003040314, -0.14843864738941193, 0.12240218371152878, 0.891391932964325, -1.329609751701355, -0.9319567084312439, -0.5774750709533691, -0.46382734179496765, 0.1968403458595276, -0.5061914920806885, -0.23665441572666168, -0.9976030588150024], "max": [0.2810611426830292, -0.01980108954012394, 0.1369919329881668, 2.3715932369232178, -0.19252082705497742, 0.5116251111030579, -0.4729556143283844, -0.3719731569290161, 0.22365668416023254, 2.4726638793945312, 0.949487030506134, 0.48729395866394043], "mean": [0.24178148806095123, -0.07099317759275436, 0.13007716834545135, 1.4430861473083496, -1.066503643989563, -0.0909857526421547, -0.5349366068840027, -0.4073972702026367, 0.2077597975730896, 0.5894015431404114, 0.3880434036254883, -0.2627527415752411], "std": [0.028946856036782265, 0.032972872257232666, 0.004844414535909891, 0.4229753613471985, 0.2727484107017517, 0.40730026364326477, 0.028263438493013382, 0.024420876055955887, 0.006146916653960943, 0.9001302719116211, 0.3832821846008301, 0.6087902188301086], "count": [331]}, "action": {"min": [-0.16331587731838226, -0.10643827170133591, 0.12521912157535553, 0.16382619738578796, 0.2536885738372803, -0.07103108614683151, 0.6399503946304321, 0.09890860319137573, -0.1545204073190689, 0.08939600735902786, -0.6024990677833557, -0.6062881350517273, -0.58890300989151, -0.5757564306259155], "max": [-0.14537543058395386, -0.0838729739189148, 0.1400517225265503, 0.6670752763748169, 0.7168237566947937, 0.325324147939682, 0.8320034742355347, 0.11443239450454712, -0.13951577246189117, 0.11739794164896011, 0.512855589389801, 0.4322260320186615, 0.7906896471977234, 0.9520958662033081], "mean": [-0.15269266068935394, -0.09262543171644211, 0.13385075330734253, 0.29784348607063293, 0.6096106767654419, 0.09861527383327484, 0.7029623985290527, 0.10625225305557251, -0.14598268270492554, 0.09930843114852905, -0.066548191010952, 0.02316666767001152, 0.2956925928592682, 0.23985294997692108], "std": [0.005562630947679281, 0.005726464092731476, 0.003860357217490673, 0.10970791429281235, 0.11170633882284164, 0.0860283151268959, 0.062192223966121674, 0.0041935136541724205, 0.0037974100559949875, 0.00673476979136467, 0.3613451421260834, 0.31613889336586, 0.44881895184516907, 0.6466208696365356], "count": [331]}, "timestamp": {"min": [0.0], "max": [11.0], "mean": [5.5], "std": [3.1850344494910012], "count": [331]}, "frame_index": {"min": [0], "max": [330], "mean": [165.0], "std": [95.55103348473003], "count": [331]}, "episode_index": {"min": [262], "max": [262], "mean": [262.0], "std": [0.0], "count": [331]}, "index": {"min": [121311], "max": [121641], "mean": [121476.0], "std": [95.55103348473003], "count": [331]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [331]}}} +{"episode_index": 263, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4765360321350762]], [[0.43761026960784316]], [[0.39571202886710244]]], "std": [[[0.26956840386847547]], [[0.24743399495678606]], [[0.2428791445325566]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4872867293028323]], [[0.46249199074074077]], [[0.42371304466230936]]], "std": [[[0.27560191108724247]], [[0.2364277259387196]], [[0.2419051360802051]]], "count": [100]}, "observation.state": {"min": [0.126529261469841, -0.12970329821109772, 0.1180790588259697, 0.8603578209877014, -1.2002149820327759, -0.7861189842224121, -0.6168609857559204, -0.46113210916519165, 0.19553756713867188, -0.40155625343322754, -0.42097705602645874, -1.1566118001937866], "max": [0.2741261422634125, 0.020055940374732018, 0.13568267226219177, 2.4533722400665283, -0.6136345267295837, 0.509009599685669, -0.4999079406261444, -0.3727145195007324, 0.22313040494918823, 1.5963695049285889, 0.7237635254859924, 0.4877064526081085], "mean": [0.23997776210308075, -0.04698975384235382, 0.1258486807346344, 1.4768894910812378, -1.0311630964279175, -0.11592191457748413, -0.5538504123687744, -0.4014948010444641, 0.2083551287651062, 0.5665428042411804, 0.2029547393321991, -0.30967676639556885], "std": [0.03434855490922928, 0.03653835132718086, 0.00499004265293479, 0.43151915073394775, 0.17891475558280945, 0.4107619822025299, 0.034625161439180374, 0.0229873638600111, 0.007040237542241812, 0.8485494256019592, 0.42535147070884705, 0.6400995254516602], "count": [229]}, "action": {"min": [-0.1729646474123001, -0.10368206351995468, 0.12604424357414246, 0.14029085636138916, 0.38185814023017883, 0.020984843373298645, 0.6935076117515564, 0.09617789834737778, -0.15381082892417908, 0.08567880839109421, -0.5353655815124512, -0.3545253872871399, -0.6010915637016296, -0.5882424712181091], "max": [-0.1496683657169342, -0.07813403010368347, 0.14043636620044708, 0.5746723413467407, 0.6845184564590454, 0.39051103591918945, 0.7926601767539978, 0.1114986464381218, -0.1401539146900177, 0.11661849915981293, 0.5206595659255981, 0.4450986981391907, 0.7486293911933899, 0.9704887270927429], "mean": [-0.15399599075317383, -0.08718747645616531, 0.13312119245529175, 0.3024817109107971, 0.5936607122421265, 0.10676318407058716, 0.7174260020256042, 0.10348374396562576, -0.14526155591011047, 0.0994790643453598, -0.09317809343338013, 0.07437923550605774, 0.3095339834690094, 0.26870137453079224], "std": [0.0058736312203109264, 0.005896355491131544, 0.004514483269304037, 0.1163274273276329, 0.09456714987754822, 0.08410482853651047, 0.020606130361557007, 0.0045226882211863995, 0.0038610876072198153, 0.007916797883808613, 0.3845902383327484, 0.25928986072540283, 0.42868077754974365, 0.6471983194351196], "count": [229]}, "timestamp": {"min": [0.0], "max": [7.6], "mean": [3.8000000000000003], "std": [2.2035325174717877], "count": [229]}, "frame_index": {"min": [0], "max": [228], "mean": [114.0], "std": [66.10597552415364], "count": [229]}, "episode_index": {"min": [263], "max": [263], "mean": [263.0], "std": [0.0], "count": [229]}, "index": {"min": [121642], "max": [121870], "mean": [121756.0], "std": [66.10597552415364], "count": [229]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [229]}}} +{"episode_index": 264, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4772362064270152]], [[0.43905278322440083]], [[0.3935202096949891]]], "std": [[[0.27135808110572995]], [[0.2505249755462717]], [[0.24765070252226346]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48848461056644876]], [[0.4651076307189543]], [[0.4230815767973856]]], "std": [[[0.27723898075680814]], [[0.23958272658122132]], [[0.247692741249526]]], "count": [100]}, "observation.state": {"min": [0.16204610466957092, -0.15270932018756866, 0.11950498074293137, 1.066063642501831, -1.204314112663269, -1.038036584854126, -0.608914315700531, -0.431044340133667, 0.18986760079860687, -0.5101756453514099, -0.4350506067276001, -1.2448190450668335], "max": [0.28340113162994385, -0.031964391469955444, 0.13111324608325958, 2.642302989959717, 0.07378371059894562, 0.4488705098628998, -0.5027267336845398, -0.35251185297966003, 0.223481684923172, 1.608741283416748, 0.7580593228340149, 0.44044098258018494], "mean": [0.24436838924884796, -0.07807546108961105, 0.12675735354423523, 1.7042585611343384, -0.9014562368392944, -0.26138949394226074, -0.562956690788269, -0.394710510969162, 0.20593838393688202, 0.7256232500076294, 0.11382763087749481, -0.20756879448890686], "std": [0.021930117160081863, 0.03227222338318825, 0.003827496897429228, 0.4098890721797943, 0.3672108054161072, 0.45003175735473633, 0.03266516700387001, 0.0208539180457592, 0.008045163005590439, 0.8773550391197205, 0.4650159478187561, 0.6571716070175171], "count": [188]}, "action": {"min": [-0.1704036295413971, -0.10408862680196762, 0.12563227117061615, 0.14984825253486633, 0.14850641787052155, 0.09669260680675507, 0.5662465691566467, 0.10000334680080414, -0.15317626297473907, 0.08570685982704163, -0.4863026440143585, -0.3754449784755707, -0.5628448724746704, -0.5460949540138245], "max": [-0.15003570914268494, -0.08275484293699265, 0.14028093218803406, 0.747664749622345, 0.6695680618286133, 0.4334263801574707, 0.7646105885505676, 0.11461390554904938, -0.13560454547405243, 0.11943861842155457, 0.44230279326438904, 0.4504931569099426, 0.7699666619300842, 0.9661021828651428], "mean": [-0.15347108244895935, -0.09140222519636154, 0.13203807175159454, 0.3504619598388672, 0.5336875319480896, 0.17810025811195374, 0.7074703574180603, 0.10358773916959763, -0.14267395436763763, 0.0984334722161293, -0.02204803191125393, 0.05300615355372429, 0.2709585428237915, 0.4031546115875244], "std": [0.003960737027227879, 0.005819757003337145, 0.0036478678230196238, 0.17326773703098297, 0.14227032661437988, 0.08329050987958908, 0.05404125899076462, 0.0029268390499055386, 0.005448478274047375, 0.00828212033957243, 0.36166781187057495, 0.2581768035888672, 0.3978783190250397, 0.6363849639892578], "count": [188]}, "timestamp": {"min": [0.0], "max": [6.233333333333333], "mean": [3.116666666666667], "std": [1.8090052515125543], "count": [188]}, "frame_index": {"min": [0], "max": [187], "mean": [93.5], "std": [54.270157545376634], "count": [188]}, "episode_index": {"min": [264], "max": [264], "mean": [264.0], "std": [0.0], "count": [188]}, "index": {"min": [121871], "max": [122058], "mean": [121964.5], "std": [54.270157545376634], "count": [188]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [188]}}} +{"episode_index": 265, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.483998167211329]], [[0.4388493191721133]], [[0.3937787227668845]]], "std": [[[0.26786140857699414]], [[0.24686938309088985]], [[0.24336237311911452]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4986705119825708]], [[0.4671660348583878]], [[0.4267396241830065]]], "std": [[[0.2703681878697975]], [[0.2323240731109097]], [[0.23979303171801078]]], "count": [100]}, "observation.state": {"min": [0.18719904124736786, -0.14733430743217468, 0.11569517850875854, 0.5904868841171265, -1.228908658027649, -1.137400507926941, -0.5844873189926147, -0.44859811663627625, 0.17698118090629578, -0.5126919150352478, -0.30510929226875305, -1.0744632482528687], "max": [0.28591102361679077, 0.01720624975860119, 0.1336202770471573, 2.5156502723693848, -0.6085789799690247, 0.8383896350860596, -0.46012040972709656, -0.3343557119369507, 0.21246711909770966, 2.074672222137451, 0.5271435976028442, 0.4441981017589569], "mean": [0.25836804509162903, -0.06905997544527054, 0.1257997751235962, 1.8076950311660767, -0.9510852098464966, -0.5404205918312073, -0.5366790890693665, -0.3938109278678894, 0.19594049453735352, 0.4963555932044983, 0.1685105264186859, -0.2827851176261902], "std": [0.017334556207060814, 0.04187764227390289, 0.0050261192955076694, 0.49547165632247925, 0.19417907297611237, 0.5140709280967712, 0.03386243060231209, 0.031510014086961746, 0.008586897514760494, 0.8605431914329529, 0.21613569557666779, 0.43775853514671326], "count": [400]}, "action": {"min": [-0.16215801239013672, -0.10160192847251892, 0.12524135410785675, 0.04765395075082779, 0.43750640749931335, -0.07656694948673248, 0.5855721235275269, 0.10513219982385635, -0.14801639318466187, 0.07667087018489838, -0.6244800686836243, -0.36458706855773926, -0.6067031025886536, -0.612653374671936], "max": [-0.14613749086856842, -0.07713973522186279, 0.14089785516262054, 0.6257858276367188, 0.7126454710960388, 0.24190275371074677, 0.7285166382789612, 0.11551035195589066, -0.12132593244314194, 0.11745978146791458, 0.5806966423988342, 0.28613102436065674, 0.8260437846183777, 0.938266932964325], "mean": [-0.15164358913898468, -0.08812299370765686, 0.13239198923110962, 0.40385761857032776, 0.5759783387184143, 0.12959511578083038, 0.6731335520744324, 0.1110525131225586, -0.1367608606815338, 0.09520293027162552, -0.16670644283294678, -0.005783825647085905, 0.4035843312740326, 0.0996447503566742], "std": [0.002829767530784011, 0.0076567865908145905, 0.0030141815077513456, 0.14688923954963684, 0.08344618231058121, 0.07593628764152527, 0.03062313050031662, 0.002524713287129998, 0.006601198110729456, 0.010498443618416786, 0.4188930094242096, 0.2038871794939041, 0.4072267413139343, 0.6453612446784973], "count": [400]}, "timestamp": {"min": [0.0], "max": [13.3], "mean": [6.65], "std": [3.848989766448103], "count": [400]}, "frame_index": {"min": [0], "max": [399], "mean": [199.5], "std": [115.46969299344309], "count": [400]}, "episode_index": {"min": [265], "max": [265], "mean": [265.0], "std": [0.0], "count": [400]}, "index": {"min": [122059], "max": [122458], "mean": [122258.5], "std": [115.46969299344309], "count": [400]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [400]}}} +{"episode_index": 266, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.486779305983183]], [[0.44842041178271125]], [[0.4057806541349322]]], "std": [[[0.27061143754161404]], [[0.24815791337410242]], [[0.24580863443835269]]], "count": [121]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5026176628135184]], [[0.47782654305983185]], [[0.4408986477970435]]], "std": [[[0.275338901508868]], [[0.23514203869330294]], [[0.24274037185591638]]], "count": [121]}, "observation.state": {"min": [0.2139814794063568, -0.17214743793010712, 0.11636406183242798, 1.0935330390930176, -1.1578576564788818, -0.947671115398407, -0.6396276354789734, -0.4846632778644562, 0.1789580136537552, -3.9251861572265625, -0.5912261009216309, -0.7805783152580261], "max": [0.28637439012527466, -0.014240720309317112, 0.13533397018909454, 2.0490901470184326, -0.2246304154396057, 0.18002736568450928, -0.3535544276237488, -0.3516855239868164, 0.2154291421175003, -0.843163251876831, 0.6170504093170166, 1.2198011875152588], "mean": [0.2673802971839905, -0.08415385335683823, 0.12424499541521072, 1.7710447311401367, -0.7867895364761353, -0.543006420135498, -0.514756977558136, -0.4199954867362976, 0.19756314158439636, -3.026273012161255, -0.061024971306324005, 0.33253422379493713], "std": [0.011103937402367592, 0.048921793699264526, 0.006711208261549473, 0.2802353799343109, 0.2851329445838928, 0.3190074861049652, 0.053912002593278885, 0.024002987891435623, 0.00899367593228817, 0.8487015962600708, 0.33981090784072876, 0.639690101146698], "count": [602]}, "action": {"min": [-0.15856608748435974, -0.10806865990161896, 0.125645250082016, 0.2223772555589676, 0.26556283235549927, 0.0020275700371712446, 0.6417797207832336, 0.09994174540042877, -0.15411873161792755, 0.07739126682281494, -0.44414758682250977, -0.6066213250160217, 0.1705741435289383, -0.3436594307422638], "max": [-0.14456886053085327, -0.07959102839231491, 0.13818322122097015, 0.6974548101425171, 0.6689944267272949, 0.18240661919116974, 0.7577560544013977, 0.144350066781044, -0.13249382376670837, 0.11557897180318832, 0.45670175552368164, -0.08436337113380432, 0.9789866805076599, 0.8418142199516296], "mean": [-0.15077674388885498, -0.09030843526124954, 0.12968212366104126, 0.4557282626628876, 0.49942177534103394, 0.11872146278619766, 0.7000541090965271, 0.11520489305257797, -0.1425952911376953, 0.09312205761671066, -0.07599791139364243, -0.4325554370880127, 0.5195512175559998, 0.534015417098999], "std": [0.0021306993439793587, 0.010747868567705154, 0.0031324501615017653, 0.14189590513706207, 0.1217835396528244, 0.05413684993982315, 0.028681179508566856, 0.010025298222899437, 0.005503670312464237, 0.008080730214715004, 0.22979585826396942, 0.10856029391288757, 0.2796922028064728, 0.33044618368148804], "count": [602]}, "timestamp": {"min": [0.0], "max": [20.033333333333335], "mean": [10.016666666666667], "std": [5.792739708750371], "count": [602]}, "frame_index": {"min": [0], "max": [601], "mean": [300.5], "std": [173.78219126251113], "count": [602]}, "episode_index": {"min": [266], "max": [266], "mean": [266.0], "std": [0.0], "count": [602]}, "index": {"min": [122459], "max": [123060], "mean": [122759.5], "std": [173.78219126251113], "count": [602]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [602]}}} +{"episode_index": 267, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4812122140522876]], [[0.43791913126361653]], [[0.3955534640522876]]], "std": [[[0.26936716915433967]], [[0.24827529887355804]], [[0.24488860134030402]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49535499183006537]], [[0.4658369526143791]], [[0.4270732325708061]]], "std": [[[0.27368441848838]], [[0.23499267827019682]], [[0.2419581120497177]]], "count": [100]}, "observation.state": {"min": [0.21173417568206787, -0.12761816382408142, 0.11982905119657516, 1.2432516813278198, -1.0392571687698364, -0.6608386635780334, -0.5895379781723022, -0.4045630693435669, 0.18757057189941406, -3.947413206100464, -0.5006361603736877, -0.20262643694877625], "max": [0.29749512672424316, 0.00032435476896353066, 0.12941381335258484, 2.053913116455078, -0.35375189781188965, 0.48850908875465393, -0.4762532114982605, -0.33231690526008606, 0.2154109925031662, -1.5999342203140259, 0.5186721682548523, 1.147904396057129], "mean": [0.2631477117538452, -0.06154447793960571, 0.12555591762065887, 1.6962344646453857, -0.7613283395767212, -0.1801954209804535, -0.5338096618652344, -0.37196576595306396, 0.20096783339977264, -2.9966485500335693, -0.03624366596341133, 0.4556218683719635], "std": [0.030261686071753502, 0.03846989944577217, 0.002706363797187805, 0.22354070842266083, 0.18077658116817474, 0.33664533495903015, 0.031173180788755417, 0.020990867167711258, 0.007123954594135284, 0.8282204866409302, 0.2935331463813782, 0.443380743265152], "count": [258]}, "action": {"min": [-0.15876556932926178, -0.09796859323978424, 0.12828709185123444, 0.07827892154455185, 0.3122958540916443, 0.1193050891160965, 0.7385863065719604, 0.10337263345718384, -0.1522701233625412, 0.08960416167974472, -0.307118684053421, -0.6408491134643555, -0.616523802280426, -0.6399760246276855], "max": [-0.14626464247703552, -0.07952094078063965, 0.1398705095052719, 0.5641841292381287, 0.5861358642578125, 0.22403962910175323, 0.8290923833847046, 0.11576865613460541, -0.13004009425640106, 0.11422436684370041, 0.25901105999946594, 0.6661813259124756, 0.8920720219612122, 0.8961226940155029], "mean": [-0.1508118212223053, -0.08827389031648636, 0.13318830728530884, 0.31968510150909424, 0.4715738892555237, 0.1620296984910965, 0.7894859313964844, 0.10921244323253632, -0.1388281136751175, 0.10056491941213608, -0.10064016282558441, -0.41058751940727234, 0.4685716927051544, 0.4910748302936554], "std": [0.004516679793596268, 0.006060421001166105, 0.003433225443586707, 0.13853204250335693, 0.07525892555713654, 0.024925535544753075, 0.020051471889019012, 0.0034300608094781637, 0.006347093265503645, 0.00630445359274745, 0.09936287999153137, 0.2423802614212036, 0.36208513379096985, 0.40105965733528137], "count": [258]}, "timestamp": {"min": [0.0], "max": [8.566666666666666], "mean": [4.283333333333333], "std": [2.482587509180843], "count": [258]}, "frame_index": {"min": [0], "max": [257], "mean": [128.5], "std": [74.47762527542528], "count": [258]}, "episode_index": {"min": [267], "max": [267], "mean": [267.0], "std": [0.0], "count": [258]}, "index": {"min": [123061], "max": [123318], "mean": [123189.5], "std": [74.47762527542528], "count": [258]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [258]}}} +{"episode_index": 268, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4862711628540305]], [[0.4434107352941177]], [[0.40084450435729846]]], "std": [[[0.26817162572904785]], [[0.247304793713864]], [[0.24492224091809459]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5018496105664488]], [[0.47262028322440086]], [[0.43439915305010895]]], "std": [[[0.2716674713680924]], [[0.2338905924680335]], [[0.24192457564436312]]], "count": [100]}, "observation.state": {"min": [0.19562454521656036, -0.14090125262737274, 0.11481241136789322, 0.7722880840301514, -0.8919630646705627, -0.8116189241409302, -0.5824407935142517, -0.4095442593097687, 0.18801648914813995, -3.8541011810302734, -0.46073827147483826, -0.16257640719413757], "max": [0.30913326144218445, -0.029130149632692337, 0.13289953768253326, 1.9872316122055054, -0.37684348225593567, 0.6195158958435059, -0.4875129461288452, -0.34424081444740295, 0.2108674943447113, -1.8259800672531128, 0.23105232417583466, 1.021444320678711], "mean": [0.2723086178302765, -0.061543192714452744, 0.1238703727722168, 1.2011910676956177, -0.7201984524726868, 0.06675277650356293, -0.5313698053359985, -0.37163886427879333, 0.19918577373027802, -2.8265950679779053, -0.10119391232728958, 0.39038899540901184], "std": [0.02934170700609684, 0.034099891781806946, 0.0059853303246200085, 0.45353665947914124, 0.13328830897808075, 0.48938941955566406, 0.024918725714087486, 0.01869724504649639, 0.00644505163654685, 0.8148202300071716, 0.2495459020137787, 0.48119908571243286], "count": [229]}, "action": {"min": [-0.16100896894931793, -0.10349442064762115, 0.12300867587327957, 0.05306978523731232, 0.30951783061027527, -0.09757127612829208, 0.7022029161453247, 0.10340465605258942, -0.14783290028572083, 0.09238085895776749, -0.2958916425704956, -0.5604314208030701, 0.1334587186574936, 0.1101338118314743], "max": [-0.14570939540863037, -0.08178623765707016, 0.14198097586631775, 0.628301739692688, 0.6037064790725708, 0.17416401207447052, 0.8128997683525085, 0.11727632582187653, -0.12882865965366364, 0.11282745003700256, -0.05023391917347908, -0.38154613971710205, 0.8862520456314087, 0.8457967042922974], "mean": [-0.15089696645736694, -0.0898943692445755, 0.13041958212852478, 0.2674477696418762, 0.5199934244155884, -0.005033581051975489, 0.7789109349250793, 0.10993655771017075, -0.13733994960784912, 0.10003837943077087, -0.15472520887851715, -0.4552767872810364, 0.5780547261238098, 0.4967961311340332], "std": [0.003737873397767544, 0.006549503188580275, 0.004846906755119562, 0.18022188544273376, 0.09195726364850998, 0.09638426452875137, 0.03353625163435936, 0.0035889099817723036, 0.004696481395512819, 0.005643267650157213, 0.06936664879322052, 0.03961801528930664, 0.2979131042957306, 0.3044596314430237], "count": [229]}, "timestamp": {"min": [0.0], "max": [7.6], "mean": [3.8000000000000003], "std": [2.2035325174717877], "count": [229]}, "frame_index": {"min": [0], "max": [228], "mean": [114.0], "std": [66.10597552415364], "count": [229]}, "episode_index": {"min": [268], "max": [268], "mean": [268.0], "std": [0.0], "count": [229]}, "index": {"min": [123319], "max": [123547], "mean": [123433.0], "std": [66.10597552415364], "count": [229]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [229]}}} +{"episode_index": 269, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47491937363834424]], [[0.43351223583877996]], [[0.39150040032679734]]], "std": [[[0.26400475727352596]], [[0.24381106828572738]], [[0.2426470514563937]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4879963616557734]], [[0.46051038671023964]], [[0.42447976579520696]]], "std": [[[0.2680619850390292]], [[0.23102273771007853]], [[0.23994279096836185]]], "count": [100]}, "observation.state": {"min": [0.19378654658794403, -0.18146105110645294, 0.11667647212743759, 1.014270305633545, -0.949487030506134, -1.1541471481323242, -0.5924957990646362, -0.4119846224784851, 0.18073004484176636, -3.988722085952759, -0.765437662601471, -0.47448402643203735], "max": [0.30880120396614075, -0.04340948164463043, 0.13583433628082275, 2.5873641967773438, 0.04099094867706299, 0.352552592754364, -0.4637192189693451, -0.3444802165031433, 0.20730918645858765, -1.563238501548767, 0.7105097770690918, 0.9674394726753235], "mean": [0.2837754786014557, -0.09500987082719803, 0.12789379060268402, 1.6063458919525146, -0.6870564222335815, -0.3430549204349518, -0.550351083278656, -0.3781246840953827, 0.19695882499217987, -2.590557098388672, 0.10520585626363754, 0.1817363053560257], "std": [0.029231401160359383, 0.03916000947356224, 0.0059085022658109665, 0.42062780261039734, 0.23377111554145813, 0.46264776587486267, 0.03490179404616356, 0.02196701243519783, 0.007445860654115677, 0.9027466177940369, 0.5125340819358826, 0.5121268033981323], "count": [224]}, "action": {"min": [-0.16332583129405975, -0.10896039009094238, 0.12354868650436401, 0.15864863991737366, 0.19317258894443512, -0.037604544311761856, 0.4767158329486847, 0.10399113595485687, -0.1449650526046753, 0.08571430295705795, -0.29872503876686096, -0.5699865818023682, 0.058164164423942566, -0.11041305959224701], "max": [-0.141888827085495, -0.0838301032781601, 0.13551679253578186, 0.7421651482582092, 0.58207106590271, 0.4287010431289673, 0.806917130947113, 0.11953023821115494, -0.12582731246948242, 0.11487434059381485, 0.08530982583761215, -0.2476557195186615, 0.9523023366928101, 0.8727173805236816], "mean": [-0.1474941223859787, -0.09482698887586594, 0.13077996671199799, 0.41153454780578613, 0.4778197705745697, 0.08910800516605377, 0.7314778566360474, 0.11043388396501541, -0.13566944003105164, 0.09675014764070511, -0.08054245263338089, -0.3822900950908661, 0.6740344762802124, 0.35017362236976624], "std": [0.005742661189287901, 0.007253625895828009, 0.003504929132759571, 0.17525221407413483, 0.0983530655503273, 0.1116059422492981, 0.08052872866392136, 0.00448723416775465, 0.004763495642691851, 0.007136621978133917, 0.12196913361549377, 0.08548875898122787, 0.30204638838768005, 0.3962404429912567], "count": [224]}, "timestamp": {"min": [0.0], "max": [7.433333333333334], "mean": [3.7166666666666663], "std": [2.155419526062927], "count": [224]}, "frame_index": {"min": [0], "max": [223], "mean": [111.5], "std": [64.66258578188781], "count": [224]}, "episode_index": {"min": [269], "max": [269], "mean": [269.0], "std": [0.0], "count": [224]}, "index": {"min": [123548], "max": [123771], "mean": [123659.5], "std": [64.66258578188781], "count": [224]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [224]}}} +{"episode_index": 270, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7375873447712419]], [[0.7214191176470588]], [[0.6774966149237472]]], "std": [[[0.2427728587985895]], [[0.22479044553359984]], [[0.2482393587989858]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7375873447712419]], [[0.7214191176470588]], [[0.6774966149237472]]], "std": [[[0.2427728587985895]], [[0.22479044553359984]], [[0.2482393587989858]]], "count": [100]}, "observation.state": {"min": [0.5152298212051392, 0.07490278780460358, 0.12972751259803772, 0.052632179111242294, -1.1068922281265259, -0.8026372790336609, -0.027423420920968056, -0.13630624115467072, 0.15109555423259735, -1.783832311630249, -0.9952602386474609, 0.33172762393951416], "max": [0.5989442467689514, 0.1305605173110962, 0.14222635328769684, 2.9633383750915527, 0.48970523476600647, 0.9294524788856506, -0.027400260791182518, -0.1362985074520111, 0.15109814703464508, -1.7832032442092896, -0.9949870109558105, 0.33195045590400696], "mean": [0.5544557571411133, 0.10386525094509125, 0.13581791520118713, 1.5327666997909546, -0.4391481578350067, -0.04519296810030937, -0.027417127043008804, -0.13629935681819916, 0.15109753608703613, -1.7835148572921753, -0.9952324628829956, 0.3319273889064789], "std": [0.021926864981651306, 0.018202096223831177, 0.0036307508125901222, 1.1396470069885254, 0.4546070694923401, 0.718373715877533, 6.671039045613725e-06, 1.9836711544485297e-06, 6.985893605815363e-07, 0.0001813491398934275, 8.159540448104963e-05, 6.654915341641754e-05], "count": [305]}, "action": {"min": [-0.10892186313867569, -0.06677363067865372, 0.13048399984836578, -0.1590859740972519, 0.100196972489357, -0.308681458234787, 0.4642104506492615, 0.18871942162513733, -0.08470355719327927, 0.11172603815793991, -0.46499621868133545, -0.37014538049697876, 0.7859646677970886, 0.17039042711257935], "max": [-0.10166998952627182, -0.05579336732625961, 0.14395491778850555, 0.6865665316581726, 0.7555052638053894, 0.5718593001365662, 0.7397505640983582, 0.18872350454330444, -0.08469679951667786, 0.11173144727945328, -0.4648118317127228, -0.3700006306171417, 0.7860915660858154, 0.17066125571727753], "mean": [-0.10486632585525513, -0.060737717896699905, 0.1382005363702774, 0.23877038061618805, 0.5344387292861938, 0.1362374722957611, 0.6199694871902466, 0.18872110545635223, -0.08470025658607483, 0.11172930896282196, -0.46494996547698975, -0.37006792426109314, 0.7859971523284912, 0.17052827775478363], "std": [0.0018354703206568956, 0.0030913888476788998, 0.0037583662196993828, 0.31158897280693054, 0.21819639205932617, 0.32438787817955017, 0.06720149517059326, 1.0084781933983322e-06, 1.1825715091617894e-06, 1.0830375458681374e-06, 4.5340573706198484e-05, 4.387730950838886e-05, 3.136535451631062e-05, 7.973413448780775e-05], "count": [305]}, "timestamp": {"min": [0.0], "max": [10.133333333333333], "mean": [5.066666666666666], "std": [2.934848093740685], "count": [305]}, "frame_index": {"min": [0], "max": [304], "mean": [152.0], "std": [88.04544281222056], "count": [305]}, "episode_index": {"min": [270], "max": [270], "mean": [270.0], "std": [0.0], "count": [305]}, "index": {"min": [123772], "max": [124076], "mean": [123924.0], "std": [88.04544281222056], "count": [305]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [305]}}} +{"episode_index": 271, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7386867211328976]], [[0.7227339760348583]], [[0.6788701062091503]]], "std": [[[0.24463322728084758]], [[0.22525256937398755]], [[0.24736210975355577]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7386867211328976]], [[0.7227339760348583]], [[0.6788701062091503]]], "std": [[[0.24463322728084758]], [[0.22525256937398755]], [[0.24736210975355577]]], "count": [100]}, "observation.state": {"min": [0.5321194529533386, 0.05314011871814728, 0.1276301145553589, 0.16859070956707, -1.1302571296691895, -0.8645943403244019, -0.021415140479803085, -0.12499243021011353, 0.1496359407901764, -1.8014463186264038, -1.0829808712005615, 0.40216633677482605], "max": [0.6165984272956848, 0.14627628028392792, 0.14091190695762634, 2.817603826522827, 0.6166405081748962, 0.8237555623054504, -0.021399689838290215, -0.12496925890445709, 0.14963853359222412, -1.8010269403457642, -1.082571029663086, 0.40274563431739807], "mean": [0.5707518458366394, 0.09269462525844574, 0.1348758190870285, 1.5874847173690796, -0.39136993885040283, -0.09233950823545456, -0.02140359953045845, -0.12498175352811813, 0.1496364325284958, -1.8012601137161255, -1.0829405784606934, 0.40271514654159546], "std": [0.02097035013139248, 0.02434903383255005, 0.004251743666827679, 1.0965481996536255, 0.4762776792049408, 0.6996451020240784, 5.364227490645135e-06, 6.3230017985915765e-06, 9.24513017253048e-07, 0.00019818090368062258, 9.545191278448328e-05, 8.246292418334633e-05], "count": [250]}, "action": {"min": [-0.1091444343328476, -0.07153578847646713, 0.12690164148807526, -0.12508463859558105, 0.06496287137269974, -0.2483605593442917, 0.46347910165786743, 0.18923251330852509, -0.08198562264442444, 0.11115307360887527, -0.5051588416099548, -0.37475961446762085, 0.7605440616607666, 0.16106660664081573], "max": [-0.10021106153726578, -0.05265800654888153, 0.14220817387104034, 0.7415423393249512, 0.7586168646812439, 0.5150927901268005, 0.7114708423614502, 0.18923643231391907, -0.08197732269763947, 0.11115952581167221, -0.5049341320991516, -0.3746127784252167, 0.7607354521751404, 0.16129934787750244], "mean": [-0.10302332043647766, -0.06185043230652809, 0.1352529674768448, 0.27637770771980286, 0.5109117031097412, 0.15248829126358032, 0.6218814253807068, 0.18923483788967133, -0.08197954297065735, 0.11115508526563644, -0.5051159262657166, -0.3746963441371918, 0.7605798244476318, 0.16117438673973083], "std": [0.0026897385250777006, 0.004380395635962486, 0.0034122790675610304, 0.31496182084083557, 0.2296329289674759, 0.31197357177734375, 0.057752467691898346, 6.83698658576759e-07, 1.8597910411699559e-06, 1.503797989244049e-06, 4.9517544539412484e-05, 4.995377457817085e-05, 3.7585363315884024e-05, 8.633448305772617e-05], "count": [250]}, "timestamp": {"min": [0.0], "max": [8.3], "mean": [4.15], "std": [2.405606876537487], "count": [250]}, "frame_index": {"min": [0], "max": [249], "mean": [124.5], "std": [72.16820629612461], "count": [250]}, "episode_index": {"min": [271], "max": [271], "mean": [271.0], "std": [0.0], "count": [250]}, "index": {"min": [124077], "max": [124326], "mean": [124201.5], "std": [72.16820629612461], "count": [250]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [250]}}} +{"episode_index": 272, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7388375871459696]], [[0.7190657216775599]], [[0.673648869825708]]], "std": [[[0.24340013904026117]], [[0.22271994474607026]], [[0.24420827414746624]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7388375871459696]], [[0.7190657216775599]], [[0.673648869825708]]], "std": [[[0.24340013904026117]], [[0.22271994474607026]], [[0.24420827414746624]]], "count": [100]}, "observation.state": {"min": [0.5275939106941223, 0.05010509118437767, 0.12530198693275452, 0.2732259929180145, -0.8931928277015686, -1.1185531616210938, -0.046745698899030685, -0.1175631582736969, 0.14551374316215515, -2.140514850616455, -0.9248924851417542, 0.8024599552154541], "max": [0.596774160861969, 0.14769726991653442, 0.14049838483333588, 2.6286730766296387, 0.5905429720878601, 0.6882708072662354, -0.04671480879187584, -0.11754772067070007, 0.14551502466201782, -2.1400954723358154, -0.9248924851417542, 0.8024599552154541], "mean": [0.5673725605010986, 0.09905663877725601, 0.13397477567195892, 1.3893795013427734, -0.49467596411705017, -0.14902468025684357, -0.04672938585281372, -0.11755353957414627, 0.1455141007900238, -2.1402997970581055, -0.9248953461647034, 0.8024597764015198], "std": [0.021381471306085587, 0.026663796976208687, 0.004714521579444408, 0.8712297081947327, 0.3625842332839966, 0.6517611145973206, 6.1039472711854614e-06, 7.3955056905106176e-06, 5.6456360653101e-07, 0.00020592717919498682, 2.86102294921875e-06, 1.7881393432617188e-07], "count": [308]}, "action": {"min": [-0.11215726286172867, -0.06935182958841324, 0.12943153083324432, -0.10933681577444077, 0.1334259808063507, -0.3394058048725128, 0.41156965494155884, 0.18758198618888855, -0.07762579619884491, 0.11047005653381348, -0.4671764075756073, -0.47252559661865234, 0.7157486081123352, 0.21486975252628326], "max": [-0.09848387539386749, -0.04738374054431915, 0.14024774730205536, 0.8096117377281189, 0.6997154355049133, 0.4160749018192291, 0.7482336759567261, 0.187587708234787, -0.07762201130390167, 0.11047422885894775, -0.4671523869037628, -0.4724213182926178, 0.7157779932022095, 0.2150571346282959], "mean": [-0.10303334891796112, -0.059709906578063965, 0.1350136250257492, 0.24054905772209167, 0.5577414631843567, 0.035311415791511536, 0.6717343330383301, 0.18758457899093628, -0.07762405276298523, 0.11047203838825226, -0.46716421842575073, -0.4724730849266052, 0.7157646417617798, 0.21496230363845825], "std": [0.004074857570230961, 0.005189563147723675, 0.003117317333817482, 0.2942231595516205, 0.14802223443984985, 0.25286149978637695, 0.07854725420475006, 1.1906239478776115e-06, 1.222512651111174e-06, 1.1796822718679323e-06, 6.624048637604574e-06, 4.8314526793546975e-05, 9.076002243091352e-06, 9.03313048183918e-05], "count": [308]}, "timestamp": {"min": [0.0], "max": [10.233333333333333], "mean": [5.116666666666667], "std": [2.9637157608500706], "count": [308]}, "frame_index": {"min": [0], "max": [307], "mean": [153.5], "std": [88.9114728255021], "count": [308]}, "episode_index": {"min": [272], "max": [272], "mean": [272.0], "std": [0.0], "count": [308]}, "index": {"min": [124327], "max": [124634], "mean": [124480.5], "std": [88.9114728255021], "count": [308]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [308]}}} +{"episode_index": 273, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7324568736383442]], [[0.7108695424836602]], [[0.6646475190631809]]], "std": [[[0.24505877429599554]], [[0.2215087502198425]], [[0.2412904427429527]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7324568736383442]], [[0.7108695424836602]], [[0.6646475190631809]]], "std": [[[0.24505877429599554]], [[0.2215087502198425]], [[0.2412904427429527]]], "count": [100]}, "observation.state": {"min": [0.5228908061981201, 0.0295085608959198, 0.12096460163593292, -0.017194580286741257, -1.4061262607574463, -1.0159282684326172, -0.07905761897563934, -0.07746672630310059, 0.14703169465065002, -1.613564133644104, -0.9220231175422668, 0.1990462988615036], "max": [0.6087366938591003, 0.13740286231040955, 0.14405152201652527, 3.015131711959839, 0.2236739546060562, 0.9906759858131409, -0.07903444766998291, -0.07745128870010376, 0.14703428745269775, -1.6131447553634644, -0.9220231175422668, 0.1990462988615036], "mean": [0.5623559355735779, 0.08539579063653946, 0.13554908335208893, 1.3662029504776, -0.6376922130584717, 0.08918949216604233, -0.07904063910245895, -0.07746249437332153, 0.14703260362148285, -1.6131657361984253, -0.9220247268676758, 0.19904683530330658], "std": [0.025249073281884193, 0.03421207144856453, 0.006430542562156916, 1.242409348487854, 0.39934659004211426, 0.7853496670722961, 7.03102250554366e-06, 4.950197762809694e-06, 1.2968871487828437e-06, 7.380699389614165e-05, 1.6093254089355469e-06, 5.364418029785156e-07], "count": [288]}, "action": {"min": [-0.11496733129024506, -0.07244689017534256, 0.12643878161907196, -0.14933280646800995, 0.21777331829071045, -0.3093563914299011, 0.4281415045261383, 0.1819947510957718, -0.0766855999827385, 0.11223939806222916, -0.4667455852031708, -0.33493170142173767, 0.8108161091804504, 0.11202281713485718], "max": [-0.10052409768104553, -0.05579807981848717, 0.1426352858543396, 0.6425251364707947, 0.8283010125160217, 0.5910351872444153, 0.6995376348495483, 0.18199822306632996, -0.07668251544237137, 0.11224409192800522, -0.466695100069046, -0.3348470628261566, 0.8108518123626709, 0.11221295595169067], "mean": [-0.10400892049074173, -0.06291835755109787, 0.1354239135980606, 0.16898351907730103, 0.6196685433387756, 0.11104557663202286, 0.5822792053222656, 0.18199686706066132, -0.07668488472700119, 0.11224087327718735, -0.46673646569252014, -0.3349270224571228, 0.8108223080635071, 0.112031951546669], "std": [0.004176652058959007, 0.003970755264163017, 0.0047297244891524315, 0.2768332064151764, 0.19207863509655, 0.34348005056381226, 0.06757081300020218, 1.0897094853135059e-06, 6.10327219874307e-07, 1.3103482388032717e-06, 7.805737368471455e-06, 1.419447289663367e-05, 5.73623538002721e-06, 3.287345316493884e-05], "count": [288]}, "timestamp": {"min": [0.0], "max": [9.566666666666666], "mean": [4.783333333333333], "std": [2.7712645863228955], "count": [288]}, "frame_index": {"min": [0], "max": [287], "mean": [143.5], "std": [83.13793758968686], "count": [288]}, "episode_index": {"min": [273], "max": [273], "mean": [273.0], "std": [0.0], "count": [288]}, "index": {"min": [124635], "max": [124922], "mean": [124778.5], "std": [83.13793758968686], "count": [288]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [288]}}} +{"episode_index": 274, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.739577529956427]], [[0.7253660076252724]], [[0.6830413997821351]]], "std": [[[0.2428759620594247]], [[0.2218524795012919]], [[0.24445054409513686]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.739577529956427]], [[0.7253660076252724]], [[0.6830413997821351]]], "std": [[[0.2428759620594247]], [[0.2218524795012919]], [[0.24445054409513686]]], "count": [100]}, "observation.state": {"min": [0.4967493414878845, 0.02461235038936138, 0.12283773720264435, 0.2958725094795227, -1.1077121496200562, -0.8800390362739563, -0.04517025873064995, -0.0992371216416359, 0.14767205715179443, -1.362565279006958, -1.0145260095596313, 0.18172739446163177], "max": [0.5807186365127563, 0.13944938778877258, 0.1394406259059906, 2.8700263500213623, 0.28352072834968567, 0.8292766213417053, -0.04157919064164162, -0.09037914127111435, 0.14948557317256927, -1.3191593885421753, -0.9601446986198425, 0.22342701256275177], "mean": [0.5441715717315674, 0.07875774055719376, 0.13280777633190155, 1.5522667169570923, -0.6623574495315552, 0.0005580635042861104, -0.04399752989411354, -0.09423793107271194, 0.1481519192457199, -1.3409589529037476, -0.9841164350509644, 0.19984526932239532], "std": [0.022151051089167595, 0.032571565359830856, 0.005721733905375004, 0.9310475587844849, 0.3230834901332855, 0.6411054134368896, 0.0006683790124952793, 0.003985486924648285, 0.0005461054970510304, 0.015812424942851067, 0.023789789527654648, 0.018788287416100502], "count": [246]}, "action": {"min": [-0.11434801667928696, -0.07304606586694717, 0.12850183248519897, -0.11508943140506744, 0.2093784064054489, -0.1907045841217041, 0.4649125933647156, 0.18651075661182404, -0.08162856101989746, 0.11002730578184128, -0.5105735659599304, -0.39816492795944214, 0.7620635032653809, -0.010003617033362389], "max": [-0.10103223472833633, -0.05498937889933586, 0.1383984088897705, 0.6899812817573547, 0.7334181070327759, 0.5329835414886475, 0.7576292753219604, 0.18700352311134338, -0.08035196363925934, 0.11220216006040573, -0.4895161986351013, -0.3874712586402893, 0.7795920968055725, 0.007932022213935852], "mean": [-0.1066284328699112, -0.06258724629878998, 0.1339089274406433, 0.19222921133041382, 0.591829240322113, 0.16254764795303345, 0.6617227792739868, 0.18661382794380188, -0.08087683469057083, 0.11075837910175323, -0.4992573857307434, -0.3921931982040405, 0.772479772567749, -0.0005663465708494186], "std": [0.004560807719826698, 0.003947849851101637, 0.0031850580126047134, 0.2426784783601761, 0.1494918018579483, 0.24793145060539246, 0.07600347697734833, 0.00010300036228727549, 0.00034602038795128465, 0.0007115058833733201, 0.008834658190608025, 0.004765912424772978, 0.008131017908453941, 0.005869814194738865], "count": [246]}, "timestamp": {"min": [0.0], "max": [8.166666666666666], "mean": [4.083333333333333], "std": [2.3671165456607204], "count": [246]}, "frame_index": {"min": [0], "max": [245], "mean": [122.5], "std": [71.01349636982161], "count": [246]}, "episode_index": {"min": [274], "max": [274], "mean": [274.0], "std": [0.0], "count": [246]}, "index": {"min": [124923], "max": [125168], "mean": [125045.5], "std": [71.01349636982161], "count": [246]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [246]}}} +{"episode_index": 275, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7343134368191722]], [[0.7176879656862746]], [[0.6737558088235294]]], "std": [[[0.24458298049499896]], [[0.22273291842200263]], [[0.2437712166858453]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7343134368191722]], [[0.7176879656862746]], [[0.6737558088235294]]], "std": [[[0.24458298049499896]], [[0.22273291842200263]], [[0.2437712166858453]]], "count": [100]}, "observation.state": {"min": [0.5114302635192871, 0.0458112508058548, 0.12143255770206451, 0.13105620443820953, -1.4089956283569336, -0.950383722782135, -0.08451759070158005, -0.10026423633098602, 0.1473233550786972, -1.5401725769042969, -0.9274885654449463, 0.363972008228302], "max": [0.5802861452102661, 0.13660742342472076, 0.14396856725215912, 2.9153192043304443, 0.6002441644668579, 1.019633412361145, -0.0844867005944252, -0.1002487987279892, 0.14732594788074493, -1.539543628692627, -0.9273518919944763, 0.3644101321697235], "mean": [0.5505131483078003, 0.08936939388513565, 0.13483166694641113, 1.7792911529541016, -0.6254469752311707, -0.1392604112625122, -0.08449961990118027, -0.10025545954704285, 0.14732471108436584, -1.539844036102295, -0.9273520112037659, 0.3640948235988617], "std": [0.019908897578716278, 0.03153430297970772, 0.006675277836620808, 1.0225573778152466, 0.544075071811676, 0.7086882591247559, 8.361344953300431e-06, 7.5169982665102e-06, 1.1548909242264926e-06, 0.0001666391472099349, 7.89803198131267e-06, 0.0001571939792484045], "count": [299]}, "action": {"min": [-0.1138777807354927, -0.06945841759443283, 0.12795189023017883, -0.043993834406137466, 0.04992527514696121, -0.14264817535877228, 0.4570753574371338, 0.18122892081737518, -0.0797736719250679, 0.11025474220514297, -0.4826256036758423, -0.4220341145992279, 0.7661387324333191, 0.0448765829205513], "max": [-0.10199698060750961, -0.054131366312503815, 0.14168451726436615, 0.7116854190826416, 0.833993673324585, 0.5293128490447998, 0.7494730353355408, 0.181233212351799, -0.07976864278316498, 0.1102609932422638, -0.4825531840324402, -0.421832799911499, 0.7662625312805176, 0.045161545276641846], "mean": [-0.10574536770582199, -0.0616149827837944, 0.1357189267873764, 0.280520498752594, 0.5614945888519287, 0.24039731919765472, 0.6042401194572449, 0.1812315583229065, -0.07977154105901718, 0.11025803536176682, -0.4825803339481354, -0.4219425916671753, 0.7661961913108826, 0.044979922473430634], "std": [0.0037011727690696716, 0.004070860333740711, 0.00401700846850872, 0.24688047170639038, 0.23841094970703125, 0.24444106221199036, 0.07478728145360947, 1.101591692531656e-06, 1.1761386531361495e-06, 1.7873459228212596e-06, 9.938939001585823e-06, 6.1025155446259305e-05, 3.318834205856547e-05, 7.873832510085776e-05], "count": [299]}, "timestamp": {"min": [0.0], "max": [9.933333333333334], "mean": [4.966666666666667], "std": [2.8771127502720115], "count": [299]}, "frame_index": {"min": [0], "max": [298], "mean": [149.0], "std": [86.31338250816034], "count": [299]}, "episode_index": {"min": [275], "max": [275], "mean": [275.0], "std": [0.0], "count": [299]}, "index": {"min": [125169], "max": [125467], "mean": [125318.0], "std": [86.31338250816034], "count": [299]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [299]}}} +{"episode_index": 276, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7446395152505447]], [[0.7260526034858388]], [[0.6819070479302832]]], "std": [[[0.2370611816840945]], [[0.21698228371901418]], [[0.2386351523278421]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7446395152505447]], [[0.7260526034858388]], [[0.6819070479302832]]], "std": [[[0.2370611816840945]], [[0.21698228371901418]], [[0.2386351523278421]]], "count": [100]}, "observation.state": {"min": [0.5085728764533997, 0.06291709840297699, 0.12283644080162048, 0.10400620847940445, -1.2208471298217773, -0.8683791756629944, -0.03050478920340538, -0.08608529716730118, 0.1443263441324234, -1.4621679782867432, -1.0818878412246704, 0.26122570037841797], "max": [0.5867964029312134, 0.14130283892154694, 0.14256727695465088, 3.0038084983825684, 0.5638988018035889, 0.8330879211425781, -0.030450740829110146, -0.08605440706014633, 0.1443263441324234, -1.4615389108657837, -1.0816144943237305, 0.2616638243198395], "mean": [0.5486137866973877, 0.10074744373559952, 0.13374239206314087, 1.6347298622131348, -0.603168785572052, -0.15154549479484558, -0.03046441078186035, -0.08607099950313568, 0.14432619512081146, -1.461876630783081, -1.0817714929580688, 0.2614831030368805], "std": [0.025343019515275955, 0.024095941334962845, 0.005865305662155151, 0.9891377091407776, 0.47484713792800903, 0.6544548869132996, 8.620288099336904e-06, 8.887299372872803e-06, 1.4901161193847656e-07, 0.00018252540030516684, 7.492573786294088e-05, 0.00011826512491097674], "count": [347]}, "action": {"min": [-0.11512365192174911, -0.06588097661733627, 0.13082726299762726, -0.072038434445858, 0.10413265973329544, -0.24981269240379333, 0.39258575439453125, 0.18797935545444489, -0.07672389596700668, 0.10827264189720154, -0.5274658799171448, -0.3833012282848358, 0.7569677233695984, 0.043647363781929016], "max": [-0.10231171548366547, -0.0528675876557827, 0.14384764432907104, 0.721014678478241, 0.7821771502494812, 0.5626457333564758, 0.7628761529922485, 0.18798601627349854, -0.07671582698822021, 0.10827771574258804, -0.527317464351654, -0.38303589820861816, 0.7571548819541931, 0.0439985990524292], "mean": [-0.10613051801919937, -0.05985135957598686, 0.1358078569173813, 0.2742408812046051, 0.5736017823219299, 0.1655629277229309, 0.6219293475151062, 0.1879843920469284, -0.07672017812728882, 0.1082751676440239, -0.5274097919464111, -0.38318321108818054, 0.7570272088050842, 0.043815817683935165], "std": [0.004218778107315302, 0.003769894829019904, 0.0038007115945219994, 0.2564389705657959, 0.19892387092113495, 0.2634219527244568, 0.08271928876638412, 1.1365351610947982e-06, 1.796411424948019e-06, 1.2332617416177527e-06, 3.253689283155836e-05, 6.831405335105956e-05, 3.816591197391972e-05, 8.936128142522648e-05], "count": [347]}, "timestamp": {"min": [0.0], "max": [11.533333333333333], "mean": [5.766666666666667], "std": [3.3389951915043077], "count": [347]}, "frame_index": {"min": [0], "max": [346], "mean": [173.0], "std": [100.16985574512923], "count": [347]}, "episode_index": {"min": [276], "max": [276], "mean": [276.0], "std": [0.0], "count": [347]}, "index": {"min": [125468], "max": [125814], "mean": [125641.0], "std": [100.16985574512923], "count": [347]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [347]}}} +{"episode_index": 277, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7313975326797386]], [[0.7142472875816994]], [[0.6696527096949891]]], "std": [[[0.24564687091222137]], [[0.22596777495604495]], [[0.24910565532553638]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7313975326797386]], [[0.7142472875816994]], [[0.6696527096949891]]], "std": [[[0.24564687091222137]], [[0.22596777495604495]], [[0.24910565532553638]]], "count": [100]}, "observation.state": {"min": [0.5175544023513794, 0.04826708137989044, 0.12531495094299316, -0.10044147819280624, -1.2301384210586548, -0.9082620143890381, -0.06153474003076553, -0.1149374321103096, 0.14980575442314148, -1.7431524991989136, -0.7770517468452454, 0.6031674742698669], "max": [0.606636106967926, 0.15802255272865295, 0.1453283727169037, 2.902737855911255, 0.4698929190635681, 0.9358530044555664, -0.06149611994624138, -0.11492198705673218, 0.1498122364282608, -1.742733120918274, -0.7770517468452454, 0.6033307909965515], "mean": [0.5688621401786804, 0.09743437170982361, 0.13496693968772888, 1.0618391036987305, -0.4988117218017578, 0.2267700880765915, -0.06152023375034332, -0.11492910236120224, 0.14980922639369965, -1.7430120706558228, -0.7770503759384155, 0.6031792163848877], "std": [0.028642579913139343, 0.021979479119181633, 0.005695652682334185, 1.1981605291366577, 0.36429330706596375, 0.7348545789718628, 9.017834599944763e-06, 6.577516614925116e-06, 1.548092654957145e-06, 0.00018982445180881768, 1.3709068298339844e-06, 4.0290637116413563e-05], "count": [406]}, "action": {"min": [-0.11528394371271133, -0.06830049306154251, 0.12698335945606232, -0.23191069066524506, 0.14447413384914398, -0.46724608540534973, 0.4379104971885681, 0.18512293696403503, -0.08265706896781921, 0.1130591481924057, -0.40411773324012756, -0.5062590837478638, 0.7571565508842468, 0.08429311215877533], "max": [-0.09910659492015839, -0.05045556649565697, 0.14354442059993744, 0.7143045663833618, 0.7858666777610779, 0.5486370921134949, 0.7338186502456665, 0.18512850999832153, -0.08265237510204315, 0.11306697130203247, -0.4040834605693817, -0.5061219930648804, 0.7572392225265503, 0.0845232680439949], "mean": [-0.10339823365211487, -0.060779061168432236, 0.13611502945423126, 0.07428954541683197, 0.6046780347824097, -0.008999432437121868, 0.6123144626617432, 0.18512487411499023, -0.08265455067157745, 0.11306396126747131, -0.40409788489341736, -0.506153404712677, 0.7572183012962341, 0.08445116877555847], "std": [0.004678651224821806, 0.004096025601029396, 0.0038569518364965916, 0.3052455484867096, 0.16313305497169495, 0.3608676493167877, 0.061832576990127563, 1.257105395779945e-06, 1.1889098914252827e-06, 1.9248807348049013e-06, 7.3094597610179335e-06, 3.9878337702248245e-05, 2.044326174654998e-05, 9.194343147100881e-05], "count": [406]}, "timestamp": {"min": [0.0], "max": [13.5], "mean": [6.75], "std": [3.9067249711235115], "count": [406]}, "frame_index": {"min": [0], "max": [405], "mean": [202.5], "std": [117.20174913370533], "count": [406]}, "episode_index": {"min": [277], "max": [277], "mean": [277.0], "std": [0.0], "count": [406]}, "index": {"min": [125815], "max": [126220], "mean": [126017.5], "std": [117.20174913370533], "count": [406]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [406]}}} +{"episode_index": 278, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.739360522875817]], [[0.7178143899782135]], [[0.6708180746187363]]], "std": [[[0.2483473991076416]], [[0.22515168367929056]], [[0.24655513662105574]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.739360522875817]], [[0.7178143899782135]], [[0.6708180746187363]]], "std": [[[0.2483473991076416]], [[0.22515168367929056]], [[0.24655513662105574]]], "count": [100]}, "observation.state": {"min": [0.5355715155601501, 0.05021321028470993, 0.12007533758878708, 0.04466395825147629, -1.2565093040466309, -0.9537922143936157, -0.06327234953641891, -0.07914257049560547, 0.1482696533203125, -1.889096736907959, -0.9757212400436401, 0.5570219159126282], "max": [0.6113315224647522, 0.1358892172574997, 0.14771613478660583, 2.9245455265045166, 0.6148642301559448, 0.9197681546211243, -0.06324145942926407, -0.07912711799144745, 0.1482735425233841, -1.8886773586273193, -0.9749014377593994, 0.5576975345611572], "mean": [0.5705679655075073, 0.0970359593629837, 0.13752201199531555, 1.608668327331543, -0.584113597869873, -0.06693379580974579, -0.06325901299715042, -0.07913348078727722, 0.14827166497707367, -1.8889113664627075, -0.9752135276794434, 0.5574182271957397], "std": [0.022919632494449615, 0.02679458260536194, 0.008096195757389069, 1.1134060621261597, 0.5210574865341187, 0.72153639793396, 6.6208654061483685e-06, 5.073509328212822e-06, 1.1278654028501478e-06, 0.00019837170839309692, 0.00020143386791460216, 0.00017548314644955099], "count": [286]}, "action": {"min": [-0.11491777002811432, -0.06873583048582077, 0.12974289059638977, -0.11098922044038773, 0.0977436751127243, -0.29339221119880676, 0.39432966709136963, 0.18416140973567963, -0.07580512017011642, 0.1141989603638649, -0.48695576190948486, -0.4128929674625397, 0.7548800706863403, 0.150922030210495], "max": [-0.09517300873994827, -0.05058150738477707, 0.14336033165454865, 0.7575331330299377, 0.8042280077934265, 0.5399410128593445, 0.7130061388015747, 0.18416827917099, -0.07579561322927475, 0.11420861631631851, -0.48660311102867126, -0.4124193489551544, 0.7550342082977295, 0.1512565314769745], "mean": [-0.1014215424656868, -0.06115617975592613, 0.13668864965438843, 0.24572807550430298, 0.578097403049469, 0.1837460696697235, 0.5887438058853149, 0.18416546285152435, -0.07580068707466125, 0.1142043024301529, -0.4867536723613739, -0.4126781225204468, 0.7549445033073425, 0.1510857790708542], "std": [0.0060180132277309895, 0.005160413682460785, 0.0039849295280873775, 0.28161007165908813, 0.2238662987947464, 0.2993248999118805, 0.07761141657829285, 1.2962824484930024e-06, 1.9699045878951438e-06, 1.969785216715536e-06, 7.847366941859946e-05, 0.00010644226131262258, 3.060831659240648e-05, 9.675608453107998e-05], "count": [286]}, "timestamp": {"min": [0.0], "max": [9.5], "mean": [4.75], "std": [2.7520194605255086], "count": [286]}, "frame_index": {"min": [0], "max": [285], "mean": [142.5], "std": [82.56058381576526], "count": [286]}, "episode_index": {"min": [278], "max": [278], "mean": [278.0], "std": [0.0], "count": [286]}, "index": {"min": [126221], "max": [126506], "mean": [126363.5], "std": [82.56058381576526], "count": [286]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [286]}}} +{"episode_index": 279, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7486848665577343]], [[0.7314122331154684]], [[0.6882974863834422]]], "std": [[[0.2434590564676799]], [[0.22308831293126927]], [[0.24646621295548637]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7486848665577343]], [[0.7314122331154684]], [[0.6882974863834422]]], "std": [[[0.2434590564676799]], [[0.22308831293126927]], [[0.24646621295548637]]], "count": [100]}, "observation.state": {"min": [0.5203268527984619, 0.05439893156290054, 0.1276884526014328, 0.11386164277791977, -1.2084132432937622, -1.0412023067474365, -0.029307769611477852, -0.09224031865596771, 0.14680354297161102, -1.8958067893981934, -0.8711943030357361, 0.6776695847511292], "max": [0.5938627123832703, 0.1341284215450287, 0.14395949244499207, 2.7712624073028564, 0.6421915292739868, 0.8814644813537598, -0.029284600168466568, -0.09222488105297089, 0.1468048393726349, -1.8953874111175537, -0.8709210753440857, 0.6779962778091431], "mean": [0.5558160543441772, 0.09743555635213852, 0.13599875569343567, 1.4899276494979858, -0.5491769909858704, -0.04245802387595177, -0.029294349253177643, -0.09223971515893936, 0.1468047946691513, -1.8957388401031494, -0.8709400296211243, 0.6778833866119385], "std": [0.02352778986096382, 0.02542995475232601, 0.004924495238810778, 1.0909764766693115, 0.5024609565734863, 0.7733158469200134, 3.8864868656673934e-06, 1.5393429748655763e-06, 1.3590231162652344e-07, 0.00015316621284000576, 6.648332055192441e-05, 0.00011854197509819642], "count": [285]}, "action": {"min": [-0.11367928981781006, -0.06977823376655579, 0.1308402568101883, -0.10990144312381744, 0.06566067785024643, -0.25257524847984314, 0.4479072391986847, 0.18940001726150513, -0.07723791897296906, 0.11294735968112946, -0.4338323473930359, -0.48347121477127075, 0.7486500144004822, 0.1328638195991516], "max": [-0.10074495524168015, -0.05678193271160126, 0.14305244386196136, 0.7589298486709595, 0.7900777459144592, 0.48196375370025635, 0.6983954906463623, 0.18940463662147522, -0.07723318040370941, 0.11295238882303238, -0.43368765711784363, -0.48326319456100464, 0.7487654089927673, 0.13312412798404694], "mean": [-0.10456065088510513, -0.06181909516453743, 0.13690727949142456, 0.24117793142795563, 0.578059196472168, 0.13748733699321747, 0.6027001738548279, 0.18940308690071106, -0.07723592966794968, 0.11295092105865479, -0.43371179699897766, -0.4833543598651886, 0.7487069368362427, 0.1330440640449524], "std": [0.004067952279001474, 0.003841956378892064, 0.003762280335649848, 0.3060329258441925, 0.22039848566055298, 0.28197675943374634, 0.06154628470540047, 7.422020189551404e-07, 9.265414178116771e-07, 7.215384130176972e-07, 3.0993414839031175e-05, 5.419230728875846e-05, 3.1161787774180993e-05, 7.258741243276745e-05], "count": [285]}, "timestamp": {"min": [0.0], "max": [9.466666666666667], "mean": [4.733333333333333], "std": [2.7423968970119446], "count": [285]}, "frame_index": {"min": [0], "max": [284], "mean": [142.0], "std": [82.27190691035833], "count": [285]}, "episode_index": {"min": [279], "max": [279], "mean": [279.0], "std": [0.0], "count": [285]}, "index": {"min": [126507], "max": [126791], "mean": [126649.0], "std": [82.27190691035833], "count": [285]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [285]}}} +{"episode_index": 280, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7349542047930284]], [[0.7170953540305011]], [[0.6734346568627452]]], "std": [[[0.24797148099980332]], [[0.22776298658019017]], [[0.250752082769458]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7349542047930284]], [[0.7170953540305011]], [[0.6734346568627452]]], "std": [[[0.24797148099980332]], [[0.22776298658019017]], [[0.250752082769458]]], "count": [100]}, "observation.state": {"min": [0.5307834148406982, 0.048436980694532394, 0.1276223361492157, 0.14447636902332306, -1.1247916221618652, -1.0013363361358643, -0.05142568051815033, -0.14648480713367462, 0.13882876932621002, -1.8339482545852661, -0.8983849883079529, 0.5162057280540466], "max": [0.6029369235038757, 0.16177581250667572, 0.14464393258094788, 2.7834243774414062, 0.34104469418525696, 0.7699632048606873, -0.051402509212493896, -0.14647707343101501, 0.13883136212825775, -1.8339482545852661, -0.8983849883079529, 0.5166141390800476], "mean": [0.5610576868057251, 0.09639770537614822, 0.13573846220970154, 1.4055551290512085, -0.504802405834198, -0.06157466024160385, -0.051406603306531906, -0.14648227393627167, 0.13882970809936523, -1.8339481353759766, -0.8983864784240723, 0.5163824558258057], "std": [0.022271351888775826, 0.03071626089513302, 0.005460481159389019, 1.040481686592102, 0.36832523345947266, 0.69052654504776, 7.264458872668911e-06, 3.5048274185101036e-06, 9.886115321933175e-07, 1.1920928955078125e-07, 1.4901161193847656e-06, 0.0001236816606251523], "count": [327]}, "action": {"min": [-0.1117982566356659, -0.06960051506757736, 0.13078759610652924, -0.15291589498519897, 0.2148800939321518, -0.36065420508384705, 0.44879916310310364, 0.18656685948371887, -0.07834119349718094, 0.10172313451766968, -0.4430149495601654, -0.44989487528800964, 0.7606827616691589, 0.15064750611782074], "max": [-0.09784095734357834, -0.04955409839749336, 0.14222660660743713, 0.7246333360671997, 0.7514268755912781, 0.49433645606040955, 0.7465953230857849, 0.18656980991363525, -0.0783386379480362, 0.10172595083713531, -0.4429835081100464, -0.4497395157814026, 0.7607746124267578, 0.1507379710674286], "mean": [-0.10344662517309189, -0.06119255721569061, 0.13690920174121857, 0.20559288561344147, 0.5690833330154419, 0.07104278355836868, 0.6426293849945068, 0.18656890094280243, -0.07834029942750931, 0.10172458738088608, -0.4429994225502014, -0.4498060643672943, 0.7607327103614807, 0.1506982445716858], "std": [0.004115130752325058, 0.004993615671992302, 0.003331361338496208, 0.30225494503974915, 0.15416936576366425, 0.3096729516983032, 0.06951279938220978, 9.49212335399352e-07, 8.064045005085063e-07, 7.026649768704374e-07, 8.594249266025145e-06, 4.779638038598932e-05, 2.762793519650586e-05, 2.7075897378381342e-05], "count": [327]}, "timestamp": {"min": [0.0], "max": [10.866666666666667], "mean": [5.433333333333333], "std": [3.146544253739448], "count": [327]}, "frame_index": {"min": [0], "max": [326], "mean": [163.0], "std": [94.39632761218344], "count": [327]}, "episode_index": {"min": [280], "max": [280], "mean": [280.0], "std": [0.0], "count": [327]}, "index": {"min": [126792], "max": [127118], "mean": [126955.0], "std": [94.39632761218344], "count": [327]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [327]}}} +{"episode_index": 281, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7327555446623093]], [[0.7124193790849673]], [[0.6669739270152505]]], "std": [[[0.2489817476447425]], [[0.22851967628263922]], [[0.25149801024167023]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7327555446623093]], [[0.7124193790849673]], [[0.6669739270152505]]], "std": [[[0.2489817476447425]], [[0.22851967628263922]], [[0.25149801024167023]]], "count": [100]}, "observation.state": {"min": [0.529431939125061, 0.0588163286447525, 0.12627549469470978, 0.3239709734916687, -0.963150680065155, -0.8253412842750549, -0.0896763727068901, -0.1386462152004242, 0.14377151429653168, -2.0268630981445312, -0.8904600739479065, 0.5754948854446411], "max": [0.5866187810897827, 0.15201427042484283, 0.14294318854808807, 2.7517611980438232, 0.4973568618297577, 0.553674042224884, -0.0896686464548111, -0.13863849639892578, 0.1437741219997406, -2.0264437198638916, -0.8904600739479065, 0.575821578502655], "mean": [0.5619901418685913, 0.10495314002037048, 0.1355000138282776, 1.5270884037017822, -0.42239823937416077, -0.09891259670257568, -0.08967047184705734, -0.1386449635028839, 0.1437719166278839, -2.026484251022339, -0.8904580473899841, 0.5758024454116821], "std": [0.0201721228659153, 0.028266403824090958, 0.004819721449166536, 0.9613703489303589, 0.4212360978126526, 0.5459339022636414, 3.436508677623351e-06, 2.933364839918795e-06, 5.711995640922396e-07, 0.00011319907935103402, 2.0265579223632812e-06, 7.391384860966355e-05], "count": [286]}, "action": {"min": [-0.11288757622241974, -0.06725361198186874, 0.12866908311843872, -0.08297338336706161, 0.11455486714839935, -0.3017052412033081, 0.4991602301597595, 0.1817588061094284, -0.0793265849351883, 0.10655034333467484, -0.4495719373226166, -0.4299077093601227, 0.7508135437965393, 0.22213436663150787], "max": [-0.09920508414506912, -0.052013296633958817, 0.1420217752456665, 0.7157433032989502, 0.6941003799438477, 0.4820109009742737, 0.7331523299217224, 0.18176133930683136, -0.07932205498218536, 0.10655336827039719, -0.44950243830680847, -0.4296933710575104, 0.7509005665779114, 0.22239503264427185], "mean": [-0.10348181426525116, -0.06011224538087845, 0.13727295398712158, 0.2519889175891876, 0.5066035389900208, 0.10760390758514404, 0.6766948103904724, 0.18175970017910004, -0.07932459563016891, 0.10655062645673752, -0.4495643079280853, -0.42989277839660645, 0.7508186101913452, 0.22215667366981506], "std": [0.0038580724503844976, 0.004141408018767834, 0.0035776810254901648, 0.27464303374290466, 0.19294461607933044, 0.3063332736492157, 0.06215839087963104, 6.077815442040446e-07, 7.174463689807453e-07, 6.641965342168987e-07, 1.1696447472786531e-05, 3.736790313269012e-05, 1.6535854229005054e-05, 5.366180994315073e-05], "count": [286]}, "timestamp": {"min": [0.0], "max": [9.5], "mean": [4.75], "std": [2.7520194605255086], "count": [286]}, "frame_index": {"min": [0], "max": [285], "mean": [142.5], "std": [82.56058381576526], "count": [286]}, "episode_index": {"min": [281], "max": [281], "mean": [281.0], "std": [0.0], "count": [286]}, "index": {"min": [127119], "max": [127404], "mean": [127261.5], "std": [82.56058381576526], "count": [286]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [286]}}} +{"episode_index": 282, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7369664215686275]], [[0.7160413888888889]], [[0.6700821350762527]]], "std": [[[0.24724065211996826]], [[0.22522891881643964]], [[0.24642587104975777]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7369664215686275]], [[0.7160413888888889]], [[0.6700821350762527]]], "std": [[[0.24724065211996826]], [[0.22522891881643964]], [[0.24642587104975777]]], "count": [100]}, "observation.state": {"min": [0.5275630354881287, 0.04144791141152382, 0.12556123733520508, 0.23296552896499634, -1.058659553527832, -0.8758760094642639, -0.07860197871923447, -0.12071403861045837, 0.1442161500453949, -2.0734140872955322, -1.0072842836380005, 0.6798235177993774], "max": [0.5891364216804504, 0.15618455410003662, 0.1412593126296997, 3.1751251220703125, 0.7408431172370911, 0.7046164274215698, -0.07858653366565704, -0.12069859355688095, 0.1442161500453949, -2.0727851390838623, -1.0072842836380005, 0.6801502108573914], "mean": [0.5576235055923462, 0.10052993893623352, 0.13506866991519928, 1.7139812707901, -0.40957656502723694, -0.08989844471216202, -0.07859361171722412, -0.12070591747760773, 0.14421620965003967, -2.073002576828003, -1.0072821378707886, 0.6799668073654175], "std": [0.019641447812318802, 0.03232442960143089, 0.004616512916982174, 1.1174569129943848, 0.5107114911079407, 0.625608503818512, 6.65504148855689e-06, 7.173881385824643e-06, 5.960464477539063e-08, 4.566755524137989e-05, 2.1457672119140625e-06, 0.00013617295189760625], "count": [251]}, "action": {"min": [-0.11477135866880417, -0.07058725506067276, 0.13049355149269104, -0.10581673681735992, -0.008235475048422813, -0.2799501419067383, 0.3577139377593994, 0.18283866345882416, -0.0767427608370781, 0.10812650620937347, -0.5046088099479675, -0.4246160387992859, 0.7220523953437805, 0.20903168618679047], "max": [-0.09985528886318207, -0.047902386635541916, 0.1407042294740677, 0.7267218232154846, 0.7304137945175171, 0.5932576656341553, 0.7411836385726929, 0.1828422248363495, -0.0767388790845871, 0.10812972486019135, -0.5045667290687561, -0.42446812987327576, 0.722129225730896, 0.2093067467212677], "mean": [-0.10447090864181519, -0.06100878864526749, 0.13660036027431488, 0.2610434293746948, 0.5005788803100586, 0.19454443454742432, 0.6147984862327576, 0.18283991515636444, -0.07674182206392288, 0.10812723636627197, -0.5045855641365051, -0.4245312213897705, 0.7220956683158875, 0.20915190875530243], "std": [0.004431930370628834, 0.005042624194175005, 0.002701345831155777, 0.29582151770591736, 0.23549728095531464, 0.3361586332321167, 0.09736815094947815, 9.129785212280694e-07, 8.14647819424863e-07, 6.284097366915375e-07, 1.402651469106786e-05, 4.968486973666586e-05, 2.8648608349612914e-05, 3.800579361268319e-05], "count": [251]}, "timestamp": {"min": [0.0], "max": [8.333333333333334], "mean": [4.166666666666667], "std": [2.41522945769824], "count": [251]}, "frame_index": {"min": [0], "max": [250], "mean": [125.0], "std": [72.4568837309472], "count": [251]}, "episode_index": {"min": [282], "max": [282], "mean": [282.0], "std": [0.0], "count": [251]}, "index": {"min": [127405], "max": [127655], "mean": [127530.0], "std": [72.4568837309472], "count": [251]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [251]}}} +{"episode_index": 283, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.739357704248366]], [[0.7170679520697169]], [[0.6700530473856209]]], "std": [[[0.24172937988439916]], [[0.21907449916585858]], [[0.2391426168182284]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.739357704248366]], [[0.7170679520697169]], [[0.6700530473856209]]], "std": [[[0.24172937988439916]], [[0.21907449916585858]], [[0.2391426168182284]]], "count": [100]}, "observation.state": {"min": [0.5131678581237793, 0.05042171850800514, 0.11732979863882065, 0.40176594257354736, -1.0470454692840576, -0.9160101413726807, -0.10218720138072968, -0.1103578507900238, 0.1398567259311676, -1.7746059894561768, -0.781834065914154, 0.4219013750553131], "max": [0.5743241906166077, 0.13971967995166779, 0.13903488218784332, 2.970048427581787, 0.4428389072418213, 0.758657693862915, -0.10217175632715225, -0.11033467948436737, 0.1398567259311676, -1.774186611175537, -0.781834065914154, 0.4219830632209778], "mean": [0.5469698905944824, 0.09504849463701248, 0.13137391209602356, 1.7313441038131714, -0.46818044781684875, -0.1005612313747406, -0.10217896848917007, -0.11034207791090012, 0.1398564577102661, -1.774202823638916, -0.7818341255187988, 0.4219816029071808], "std": [0.0189954936504364, 0.026309853419661522, 0.0062187062576413155, 1.0103702545166016, 0.4089345335960388, 0.6541627049446106, 5.895649792364566e-06, 6.909085186634911e-06, 2.682209014892578e-07, 6.984693754930049e-05, 5.960464477539063e-08, 7.803456355759408e-06], "count": [219]}, "action": {"min": [-0.11817780137062073, -0.06780323386192322, 0.12818647921085358, -0.1098078042268753, 0.13745006918907166, -0.1800389587879181, 0.4253924787044525, 0.18048611283302307, -0.0757245197892189, 0.10493992269039154, -0.4135161340236664, -0.42592278122901917, 0.7933250665664673, 0.13502930104732513], "max": [-0.10310840606689453, -0.05353914201259613, 0.13959459960460663, 0.7003050446510315, 0.7056324481964111, 0.5690102577209473, 0.747472882270813, 0.18048863112926483, -0.07571989297866821, 0.10494329780340195, -0.4134792685508728, -0.4258434772491455, 0.7933495044708252, 0.13522662222385406], "mean": [-0.10766162723302841, -0.060371965169906616, 0.13458147644996643, 0.24706779420375824, 0.5196084380149841, 0.2095356434583664, 0.6459041833877563, 0.18048740923404694, -0.07572265714406967, 0.10494128614664078, -0.4135115444660187, -0.4259129464626312, 0.7933303117752075, 0.13503628969192505], "std": [0.0047352490946650505, 0.0039048653561621904, 0.0035924974363297224, 0.28271040320396423, 0.18861529231071472, 0.29070356488227844, 0.08864430338144302, 7.974570621627208e-07, 8.286048682748515e-07, 5.995887590870552e-07, 5.63547382625984e-06, 1.2286242963455152e-05, 4.186198111710837e-06, 3.2404954254161566e-05], "count": [219]}, "timestamp": {"min": [0.0], "max": [7.266666666666667], "mean": [3.6333333333333337], "std": [2.1073065132392914], "count": [219]}, "frame_index": {"min": [0], "max": [218], "mean": [109.0], "std": [63.219195397178744], "count": [219]}, "episode_index": {"min": [283], "max": [283], "mean": [283.0], "std": [0.0], "count": [219]}, "index": {"min": [127656], "max": [127874], "mean": [127765.0], "std": [63.219195397178744], "count": [219]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [219]}}} +{"episode_index": 284, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7406949863834422]], [[0.7183005637254901]], [[0.6711777750544663]]], "std": [[[0.24100387889066205]], [[0.21880869969698952]], [[0.23912615130242645]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7406949863834422]], [[0.7183005637254901]], [[0.6711777750544663]]], "std": [[[0.24100387889066205]], [[0.21880869969698952]], [[0.23912615130242645]]], "count": [100]}, "observation.state": {"min": [0.5091906785964966, 0.04137067869305611, 0.11859238892793655, 0.42965468764305115, -0.9660200476646423, -0.9340570569038391, -0.09682761877775192, -0.09245655685663223, 0.14007191359996796, -1.5238168239593506, -0.8765231370925903, 0.4718332886695862], "max": [0.5781469345092773, 0.1498441845178604, 0.1377982199192047, 2.76769757270813, 0.31686004996299744, 0.6913497447967529, -0.0968121811747551, -0.0924333930015564, 0.14007191359996796, -1.5231877565383911, -0.8765231370925903, 0.4720783233642578], "mean": [0.5491929650306702, 0.09919887781143188, 0.1306149810552597, 1.6803674697875977, -0.4921812415122986, -0.14949624240398407, -0.09682580828666687, -0.0924413725733757, 0.14007188379764557, -1.5236331224441528, -0.876524806022644, 0.47202181816101074], "std": [0.020400848239660263, 0.0302522461861372, 0.0058602700009942055, 0.9123995900154114, 0.3636057674884796, 0.6159531474113464, 4.141686531511368e-06, 6.582419700862374e-06, 2.9802322387695312e-08, 0.00020335779117885977, 1.6689300537109375e-06, 5.139251152286306e-05], "count": [213]}, "action": {"min": [-0.1203656867146492, -0.06877756863832474, 0.12912213802337646, -0.09293578565120697, 0.21184277534484863, -0.1860533505678177, 0.48373129963874817, 0.18050768971443176, -0.07491736859083176, 0.1050381064414978, -0.46798527240753174, -0.4667220711708069, 0.7504011392593384, 0.007642807438969612], "max": [-0.10212407261133194, -0.05028031766414642, 0.13743528723716736, 0.7117046117782593, 0.6961052417755127, 0.4900519847869873, 0.7648928165435791, 0.18050986528396606, -0.07491123676300049, 0.10504250973463058, -0.4679650366306305, -0.46661385893821716, 0.7504753470420837, 0.00793178379535675], "mean": [-0.10747992247343063, -0.059107471257448196, 0.13405407965183258, 0.2596415877342224, 0.530112624168396, 0.17567001283168793, 0.6682823300361633, 0.18050800263881683, -0.07491318881511688, 0.10504093766212463, -0.467976450920105, -0.46665534377098083, 0.7504473328590393, 0.007840007543563843], "std": [0.005517621990293264, 0.004694893956184387, 0.002592523582279682, 0.2694513499736786, 0.16363127529621124, 0.26361557841300964, 0.07234107702970505, 5.599673613687628e-07, 1.4949296200938988e-06, 1.0365148455093731e-06, 5.515072643902386e-06, 3.408639531699009e-05, 2.327105903532356e-05, 9.226856491295621e-05], "count": [213]}, "timestamp": {"min": [0.0], "max": [7.066666666666666], "mean": [3.5333333333333337], "std": [2.0495708674600013], "count": [213]}, "frame_index": {"min": [0], "max": [212], "mean": [106.0], "std": [61.48712602380003], "count": [213]}, "episode_index": {"min": [284], "max": [284], "mean": [284.0], "std": [0.0], "count": [213]}, "index": {"min": [127875], "max": [128087], "mean": [127981.0], "std": [61.48712602380003], "count": [213]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [213]}}} +{"episode_index": 285, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7396708142701525]], [[0.7168699482570806]], [[0.6690769689542484]]], "std": [[[0.24381131986855886]], [[0.22066693125753536]], [[0.24033903245249866]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7396708142701525]], [[0.7168699482570806]], [[0.6690769689542484]]], "std": [[[0.24381131986855886]], [[0.22066693125753536]], [[0.24033903245249866]]], "count": [100]}, "observation.state": {"min": [0.5307757258415222, 0.035825759172439575, 0.11885683238506317, 0.19270506501197815, -1.1821789741516113, -0.9435900449752808, -0.10448858141899109, -0.10302125662565231, 0.13901284337043762, -1.954729676246643, -0.7359241843223572, 0.5772267580032349], "max": [0.5883949995040894, 0.15687187016010284, 0.14051653444766998, 2.9006409645080566, 0.3743840157985687, 0.9365209341049194, -0.10445767641067505, -0.10300581157207489, 0.13901543617248535, -1.9541006088256836, -0.7359241843223572, 0.5773901343345642], "mean": [0.558234453201294, 0.09465094655752182, 0.13159677386283875, 1.6699163913726807, -0.5383907556533813, -0.03001444973051548, -0.10447005182504654, -0.10302043706178665, 0.13901488482952118, -1.9543776512145996, -0.735925018787384, 0.5772544145584106], "std": [0.01839134283363819, 0.03392956033349037, 0.006877950858324766, 1.0987937450408936, 0.4708329141139984, 0.7287108302116394, 8.668961527291685e-06, 3.3858427741506603e-06, 9.105631875172548e-07, 0.00019951610011048615, 8.344650268554688e-07, 6.144096550997347e-05], "count": [206]}, "action": {"min": [-0.11650297045707703, -0.06840846687555313, 0.12604272365570068, -0.11283880472183228, 0.17067736387252808, -0.18802575767040253, 0.4391711950302124, 0.18083897233009338, -0.07382848113775253, 0.10564642399549484, -0.3961184024810791, -0.4608733654022217, 0.7720459699630737, 0.18596704304218292], "max": [-0.10122814029455185, -0.04999586194753647, 0.1378546506166458, 0.698983907699585, 0.7786402702331543, 0.5373376607894897, 0.6989809274673462, 0.18084287643432617, -0.07382315397262573, 0.10564889758825302, -0.39608725905418396, -0.46080005168914795, 0.7720886468887329, 0.18622884154319763], "mean": [-0.10633185505867004, -0.060269203037023544, 0.13335783779621124, 0.24344269931316376, 0.5489926934242249, 0.21706870198249817, 0.6114293932914734, 0.18084105849266052, -0.07382690161466599, 0.10564791411161423, -0.39610233902931213, -0.4608359932899475, 0.7720769643783569, 0.18609099090099335], "std": [0.005007841624319553, 0.004631136544048786, 0.0035671947989612818, 0.28237539529800415, 0.22530530393123627, 0.28822916746139526, 0.06930501013994217, 1.126854954236478e-06, 1.3968440271128202e-06, 7.900368359514687e-07, 1.0852291779883672e-05, 3.4315333323320374e-05, 1.381140828016214e-05, 8.945354784373194e-05], "count": [206]}, "timestamp": {"min": [0.0], "max": [6.833333333333333], "mean": [3.416666666666667], "std": [1.9822125684867067], "count": [206]}, "frame_index": {"min": [0], "max": [205], "mean": [102.5], "std": [59.466377054601196], "count": [206]}, "episode_index": {"min": [285], "max": [285], "mean": [285.0], "std": [0.0], "count": [206]}, "index": {"min": [128088], "max": [128293], "mean": [128190.5], "std": [59.466377054601196], "count": [206]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [206]}}} +{"episode_index": 286, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.736961857298475]], [[0.7164207897603486]], [[0.6701585784313725]]], "std": [[[0.246172281424672]], [[0.22504683988490118]], [[0.24679311074184596]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.736961857298475]], [[0.7164207897603486]], [[0.6701585784313725]]], "std": [[[0.246172281424672]], [[0.22504683988490118]], [[0.24679311074184596]]], "count": [100]}, "observation.state": {"min": [0.5371546745300293, 0.05643773078918457, 0.12409383803606033, 0.1922856867313385, -0.9483939409255981, -0.7866728901863098, -0.09009339660406113, -0.14561213552951813, 0.1325663924217224, -1.9406803846359253, -0.5808417797088623, 0.5663650631904602], "max": [0.6041957139968872, 0.1484309285879135, 0.14320245385169983, 3.1602370738983154, 0.6751209497451782, 0.6500964760780334, -0.0900779590010643, -0.14556579291820526, 0.1325663924217224, -1.9402610063552856, -0.5805684924125671, 0.5670779943466187], "mean": [0.5700536370277405, 0.10433012992143631, 0.13517744839191437, 1.4072445631027222, -0.3926981985569, 0.07924506813287735, -0.09007932990789413, -0.14558881521224976, 0.13256609439849854, -1.9403408765792847, -0.5806354284286499, 0.5668237209320068], "std": [0.019826944917440414, 0.02265034057199955, 0.005252582021057606, 1.1279715299606323, 0.4324612319469452, 0.5681965947151184, 3.0819992389297113e-06, 1.121805325965397e-05, 2.980232238769531e-07, 0.00016004886128939688, 0.00011793506564572453, 0.00015720503870397806], "count": [295]}, "action": {"min": [-0.11445781588554382, -0.06688982248306274, 0.1291101574897766, -0.14921951293945312, 0.0005006320425309241, -0.3501131236553192, 0.4101946949958801, 0.18424974381923676, -0.0754094272851944, 0.09802678227424622, -0.31430572271347046, -0.5037066340446472, 0.7823293805122375, 0.18828734755516052], "max": [-0.09850678592920303, -0.05242099240422249, 0.14107438921928406, 0.6887282133102417, 0.7086140513420105, 0.6137105822563171, 0.7409165501594543, 0.1842542439699173, -0.07540182769298553, 0.09803156554698944, -0.31409701704978943, -0.5034849643707275, 0.7825263738632202, 0.1885562688112259], "mean": [-0.10256730765104294, -0.06025361642241478, 0.13623352348804474, 0.17310868203639984, 0.5139164924621582, 0.08484778553247452, 0.6537601351737976, 0.18425288796424866, -0.07540639489889145, 0.09802942723035812, -0.31417325139045715, -0.5036312937736511, 0.7824109196662903, 0.18837091326713562], "std": [0.004500826820731163, 0.003990388475358486, 0.0031137613113969564, 0.29312506318092346, 0.2149534523487091, 0.36287790536880493, 0.08668392151594162, 9.672278338257456e-07, 1.614637199054414e-06, 9.004272101265087e-07, 6.79291770211421e-05, 5.0251259381184354e-05, 4.5049848267808557e-05, 8.006187272258103e-05], "count": [295]}, "timestamp": {"min": [0.0], "max": [9.8], "mean": [4.9], "std": [2.838622514139169], "count": [295]}, "frame_index": {"min": [0], "max": [294], "mean": [147.0], "std": [85.15867542417507], "count": [295]}, "episode_index": {"min": [286], "max": [286], "mean": [286.0], "std": [0.0], "count": [295]}, "index": {"min": [128294], "max": [128588], "mean": [128441.0], "std": [85.15867542417507], "count": [295]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [295]}}} +{"episode_index": 287, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7466341476034859]], [[0.7286224183006537]], [[0.6844239133986928]]], "std": [[[0.23622487258236619]], [[0.2157929126467772]], [[0.23780277455792445]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7466341476034859]], [[0.7286224183006537]], [[0.6844239133986928]]], "std": [[[0.23622487258236619]], [[0.2157929126467772]], [[0.23780277455792445]]], "count": [100]}, "observation.state": {"min": [0.5108047127723694, 0.041787710040807724, 0.11713016778230667, 0.40071746706962585, -0.9244825839996338, -0.9031879901885986, -0.06728816777467728, -0.10465847700834274, 0.14640429615974426, -1.8599498271942139, -0.9365065693855286, 0.6372196078300476], "max": [0.5711424350738525, 0.1564393937587738, 0.13665877282619476, 2.854928493499756, 0.31849968433380127, 0.6851169466972351, -0.06727273017168045, -0.10464303195476532, 0.14640559256076813, -1.8593207597732544, -0.9365065693855286, 0.6374646425247192], "mean": [0.5461685657501221, 0.10125742107629776, 0.12927843630313873, 1.6796319484710693, -0.3842231333255768, -0.08942878991365433, -0.06728681176900864, -0.104655422270298, 0.14640437066555023, -1.8598754405975342, -0.9365078806877136, 0.6373826861381531], "std": [0.018108850345015526, 0.02948911301791668, 0.005845599342137575, 0.9560135006904602, 0.36775895953178406, 0.5786851048469543, 3.1531756121694343e-06, 5.431746103568003e-06, 3.409502369322581e-07, 0.00016179797239601612, 1.3113021850585938e-06, 1.2450889698811807e-05], "count": [215]}, "action": {"min": [-0.1187267079949379, -0.06758783757686615, 0.12756873667240143, -0.12715031206607819, 0.1915227174758911, -0.23189473152160645, 0.47902005910873413, 0.1838676482439041, -0.07797105610370636, 0.1107419803738594, -0.4767302870750427, -0.4658442735671997, 0.7348877191543579, 0.12510842084884644], "max": [-0.10443468391895294, -0.05004496872425079, 0.13849478960037231, 0.6736810803413391, 0.6751287579536438, 0.5315546989440918, 0.780980110168457, 0.18387067317962646, -0.07796584069728851, 0.11074507981538773, -0.47670289874076843, -0.465658038854599, 0.7349720597267151, 0.1254313588142395], "mean": [-0.10896151512861252, -0.05886950343847275, 0.13396261632442474, 0.24343320727348328, 0.4787023067474365, 0.1740824282169342, 0.6880487203598022, 0.18386857211589813, -0.0779678076505661, 0.11074373126029968, -0.4767150580883026, -0.46573325991630554, 0.7349296808242798, 0.12535734474658966], "std": [0.0043880753219127655, 0.00414884602651, 0.0036225549411028624, 0.2789422273635864, 0.18216848373413086, 0.29855960607528687, 0.08795661479234695, 4.864349989475159e-07, 1.1690541441566893e-06, 6.978215765229834e-07, 5.185226200410398e-06, 3.379356348887086e-05, 1.2353267266007606e-05, 7.306741463253275e-05], "count": [215]}, "timestamp": {"min": [0.0], "max": [7.133333333333334], "mean": [3.566666666666667], "std": [2.06881608655772], "count": [215]}, "frame_index": {"min": [0], "max": [214], "mean": [107.0], "std": [62.0644825967316], "count": [215]}, "episode_index": {"min": [287], "max": [287], "mean": [287.0], "std": [0.0], "count": [215]}, "index": {"min": [128589], "max": [128803], "mean": [128696.0], "std": [62.0644825967316], "count": [215]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [215]}}} +{"episode_index": 288, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7367261574074074]], [[0.7183352750544663]], [[0.6741367047930283]]], "std": [[[0.24259722485355453]], [[0.22147163736711126]], [[0.243261307291177]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7367261574074074]], [[0.7183352750544663]], [[0.6741367047930283]]], "std": [[[0.24259722485355453]], [[0.22147163736711126]], [[0.243261307291177]]], "count": [100]}, "observation.state": {"min": [0.518118143081665, 0.04319323971867561, 0.12117200344800949, 0.5556783676147461, -0.8001433610916138, -0.8460341095924377, -0.061727799475193024, -0.11081349104642868, 0.14442096650600433, -2.1033997535705566, -0.7908520698547363, 0.9008679986000061], "max": [0.586966335773468, 0.1277340054512024, 0.1406669169664383, 2.5728955268859863, 0.3007369339466095, 0.41306567192077637, -0.0617123581469059, -0.11079805344343185, 0.14442096650600433, -2.102980375289917, -0.7908520698547363, 0.9009496569633484], "mean": [0.5568875074386597, 0.08984354138374329, 0.13195081055164337, 1.685370922088623, -0.39292117953300476, -0.27808502316474915, -0.06172647327184677, -0.11080244183540344, 0.14442071318626404, -2.103334426879883, -0.7908514142036438, 0.9009392261505127], "std": [0.020149536430835724, 0.023997053503990173, 0.005702506750822067, 0.7975564002990723, 0.35814833641052246, 0.4766088128089905, 3.074027290494996e-06, 4.629423983715242e-06, 2.5331974029541016e-07, 0.00013685967132914811, 6.556510925292969e-07, 2.9463271857821383e-05], "count": [255]}, "action": {"min": [-0.11760074645280838, -0.0687301829457283, 0.1291956752538681, 0.0070635005831718445, 0.19131657481193542, -0.22063809633255005, 0.571601152420044, 0.18612337112426758, -0.07720187306404114, 0.11033466458320618, -0.42782318592071533, -0.5441039204597473, 0.6969850063323975, 0.18743765354156494], "max": [-0.10021664947271347, -0.05354692414402962, 0.13955967128276825, 0.6902748346328735, 0.6554343700408936, 0.4432813227176666, 0.7949047684669495, 0.18612681329250336, -0.07719825953245163, 0.1103375107049942, -0.4278072416782379, -0.5439860224723816, 0.6970255970954895, 0.1876494288444519], "mean": [-0.10566242784261703, -0.06100185215473175, 0.1341584175825119, 0.3294104337692261, 0.48200762271881104, 0.13685795664787292, 0.6984306573867798, 0.18612432479858398, -0.0771990641951561, 0.11033663153648376, -0.42782139778137207, -0.5440235137939453, 0.6970030069351196, 0.18760402500629425], "std": [0.005253559909760952, 0.004355900455266237, 0.0035194505471736193, 0.237339586019516, 0.16137687861919403, 0.25781548023223877, 0.06148718670010567, 7.07689025603031e-07, 8.057273817030364e-07, 6.189195005390502e-07, 3.6776825709239347e-06, 2.9567836463684216e-05, 9.232650882040616e-06, 6.21635772404261e-05], "count": [255]}, "timestamp": {"min": [0.0], "max": [8.466666666666667], "mean": [4.233333333333333], "std": [2.4537197763275134], "count": [255]}, "frame_index": {"min": [0], "max": [254], "mean": [127.0], "std": [73.6115932898254], "count": [255]}, "episode_index": {"min": [288], "max": [288], "mean": [288.0], "std": [0.0], "count": [255]}, "index": {"min": [128804], "max": [129058], "mean": [128931.0], "std": [73.6115932898254], "count": [255]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [255]}}} +{"episode_index": 289, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7220421269063181]], [[0.6982031481481481]], [[0.6493197086056646]]], "std": [[[0.2444636004789754]], [[0.2188163382293833]], [[0.23846889842139007]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7220421269063181]], [[0.6982031481481481]], [[0.6493197086056646]]], "std": [[[0.2444636004789754]], [[0.2188163382293833]], [[0.23846889842139007]]], "count": [100]}, "observation.state": {"min": [0.4835280179977417, 0.032234691083431244, 0.1227106973528862, 0.17886552214622498, -1.3205918073654175, -0.9028183221817017, -0.11927761137485504, -0.10868202149868011, 0.1443263441324234, -2.0379765033721924, -0.7103731632232666, 0.6661678552627563], "max": [0.5730962753295898, 0.14153453707695007, 0.1444365233182907, 2.645029067993164, 0.046456411480903625, 0.9757707715034485, -0.11925444006919861, -0.1086743026971817, 0.1443263441324234, -2.0375571250915527, -0.7103731632232666, 0.6663312315940857], "mean": [0.5415909290313721, 0.08974107354879379, 0.1335008591413498, 1.5014845132827759, -0.6940369606018066, -0.019764786586165428, -0.11926300823688507, -0.10867816209793091, 0.14432671666145325, -2.0377347469329834, -0.7103729844093323, 0.6663260459899902], "std": [0.02570328116416931, 0.032749734818935394, 0.006173876579850912, 0.9856116771697998, 0.33372175693511963, 0.7349268794059753, 8.62369779497385e-06, 3.859400749206543e-06, 3.725290298461914e-07, 0.0001964218245120719, 1.7881393432617188e-07, 2.0697281797765754e-05], "count": [222]}, "action": {"min": [-0.12024972587823868, -0.06783188134431839, 0.12780804932117462, -0.13400478661060333, 0.2988816499710083, -0.22319573163986206, 0.548984944820404, 0.17866067588329315, -0.07720383256673813, 0.1096067950129509, -0.3959120512008667, -0.48729971051216125, 0.7498512864112854, 0.20860515534877777], "max": [-0.10035927593708038, -0.051574598997831345, 0.14024174213409424, 0.6287200450897217, 0.7996953129768372, 0.4435481131076813, 0.7446450591087341, 0.17866486310958862, -0.0772009938955307, 0.10960925370454788, -0.3958835005760193, -0.4871922433376312, 0.7498946785926819, 0.20881833136081696], "mean": [-0.10715842992067337, -0.06123330444097519, 0.13552942872047424, 0.19866140186786652, 0.6170570850372314, 0.14208725094795227, 0.6401954889297485, 0.17866316437721252, -0.07720248401165009, 0.1096079871058464, -0.3958979547023773, -0.48726505041122437, 0.7498577237129211, 0.20868977904319763], "std": [0.005481204483658075, 0.004177308175712824, 0.0029948947485536337, 0.25485536456108093, 0.15492892265319824, 0.24033348262310028, 0.054960548877716064, 1.2688481092482107e-06, 9.14030692911183e-07, 7.049076771181717e-07, 8.537177563994192e-06, 3.5430271964287385e-05, 5.003247224522056e-06, 9.187552495859563e-05], "count": [222]}, "timestamp": {"min": [0.0], "max": [7.366666666666666], "mean": [3.6833333333333336], "std": [2.1361743235842763], "count": [222]}, "frame_index": {"min": [0], "max": [221], "mean": [110.5], "std": [64.0852297075283], "count": [222]}, "episode_index": {"min": [289], "max": [289], "mean": [289.0], "std": [0.0], "count": [222]}, "index": {"min": [129059], "max": [129280], "mean": [129169.5], "std": [64.0852297075283], "count": [222]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [222]}}} +{"episode_index": 290, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7229175762527232]], [[0.7034253867102397]], [[0.6573214651416123]]], "std": [[[0.24861249727473983]], [[0.22565017530278184]], [[0.24671482004523376]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7229175762527232]], [[0.7034253867102397]], [[0.6573214651416123]]], "std": [[[0.24861249727473983]], [[0.22565017530278184]], [[0.24671482004523376]]], "count": [100]}, "observation.state": {"min": [0.5185815095901489, 0.03093726933002472, 0.12183830142021179, 0.14992831647396088, -1.2708560228347778, -1.1088119745254517, -0.07924295961856842, -0.09583911299705505, 0.1482916921377182, -1.763702154159546, -0.9061732888221741, 0.551166296005249], "max": [0.6010371446609497, 0.14751963317394257, 0.14627596735954285, 2.8844947814941406, 0.4058103859424591, 0.864241898059845, -0.07920435070991516, -0.09582366794347763, 0.14829428493976593, -1.7632827758789062, -0.9059000015258789, 0.5517975687980652], "mean": [0.5636693239212036, 0.0907120406627655, 0.13684578239917755, 1.6274412870407104, -0.6067501902580261, -0.13464146852493286, -0.07922271639108658, -0.09582797437906265, 0.14829254150390625, -1.7636727094650269, -0.9061516523361206, 0.5516340136528015], "std": [0.026391804218292236, 0.03343068063259125, 0.007024840917438269, 1.0487701892852783, 0.43724966049194336, 0.7431991696357727, 5.365935521695064e-06, 4.400712441565702e-06, 8.137320151035965e-07, 0.00010353580000810325, 5.8639838243834674e-05, 0.0001864978257799521], "count": [243]}, "action": {"min": [-0.11680687218904495, -0.07203755527734756, 0.1296350657939911, -0.08167579770088196, 0.20036250352859497, -0.21794410049915314, 0.38883644342422485, 0.18208400905132294, -0.07868899405002594, 0.11254814267158508, -0.4676852226257324, -0.4541286528110504, 0.7516279220581055, 0.10046780854463577], "max": [-0.09746642410755157, -0.0517660528421402, 0.14146533608436584, 0.7750774621963501, 0.7941216826438904, 0.5896615386009216, 0.7518171668052673, 0.18208976089954376, -0.07868243753910065, 0.11255340278148651, -0.46751099824905396, -0.45385247468948364, 0.7518558502197266, 0.10081026703119278], "mean": [-0.10259377211332321, -0.061867617070674896, 0.13653868436813354, 0.25891682505607605, 0.5867161750793457, 0.17323780059814453, 0.6051619052886963, 0.18208681046962738, -0.07868393510580063, 0.11255065351724625, -0.46765080094337463, -0.4539949297904968, 0.7517012357711792, 0.10068457573652267], "std": [0.005723290145397186, 0.005431956145912409, 0.003595941001549363, 0.27259960770606995, 0.19202008843421936, 0.2717435657978058, 0.08641117066144943, 7.4960041729355e-07, 1.2193870588816935e-06, 8.316432626997994e-07, 3.31700975948479e-05, 6.447843043133616e-05, 5.03372102684807e-05, 6.107487570261583e-05], "count": [243]}, "timestamp": {"min": [0.0], "max": [8.066666666666666], "mean": [4.033333333333333], "std": [2.33824879074221], "count": [243]}, "frame_index": {"min": [0], "max": [242], "mean": [121.0], "std": [70.14746372226631], "count": [243]}, "episode_index": {"min": [290], "max": [290], "mean": [290.0], "std": [0.0], "count": [243]}, "index": {"min": [129281], "max": [129523], "mean": [129402.0], "std": [70.14746372226631], "count": [243]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [243]}}} +{"episode_index": 291, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7262651116557735]], [[0.7019379765795207]], [[0.6533726116557734]]], "std": [[[0.2456841151322439]], [[0.22214965352710195]], [[0.24183649596068582]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7262651116557735]], [[0.7019379765795207]], [[0.6533726116557734]]], "std": [[[0.2456841151322439]], [[0.22214965352710195]], [[0.24183649596068582]]], "count": [100]}, "observation.state": {"min": [0.5140174031257629, 0.031022220849990845, 0.11616961658000946, 0.37366747856140137, -0.9611011147499084, -0.9402826428413391, -0.11123824119567871, -0.13051418960094452, 0.1377878487110138, -1.8725311756134033, -0.7077770829200745, 0.23476965725421906], "max": [0.5977008938789368, 0.12944844365119934, 0.13987098634243011, 2.668304443359375, 0.1742115467786789, 0.7264932990074158, -0.11122280359268188, -0.1304987370967865, 0.1377878487110138, -1.8725311756134033, -0.7075037956237793, 0.23523752391338348], "mean": [0.5565919280052185, 0.08658884465694427, 0.13046206533908844, 1.7762144804000854, -0.5152223706245422, -0.19950203597545624, -0.11123576760292053, -0.13050396740436554, 0.13778826594352722, -1.8725286722183228, -0.7076579332351685, 0.23509617149829865], "std": [0.02558942511677742, 0.027752546593546867, 0.007613223046064377, 0.8311181664466858, 0.2870805561542511, 0.5841997265815735, 3.95793449570192e-06, 7.224083674373105e-06, 4.172325134277344e-07, 2.5033950805664062e-06, 0.00013567385030910373, 0.00016146143025252968], "count": [218]}, "action": {"min": [-0.11931717395782471, -0.06829722970724106, 0.12579625844955444, -0.08861575275659561, 0.27931973338127136, -0.1920670121908188, 0.5120031833648682, 0.18015128374099731, -0.07644985616207123, 0.10229457169771194, -0.3565056622028351, -0.352925568819046, 0.8377318978309631, 0.2157597839832306], "max": [-0.10021718591451645, -0.05073326453566551, 0.1391826719045639, 0.6936013102531433, 0.7079229950904846, 0.5051417946815491, 0.7683714628219604, 0.18015488982200623, -0.07644657790660858, 0.10229641199111938, -0.3563275635242462, -0.35277295112609863, 0.8378552198410034, 0.21582576632499695], "mean": [-0.10623937100172043, -0.059681110084056854, 0.1328638345003128, 0.2761130630970001, 0.5229788422584534, 0.20504651963710785, 0.6836070418357849, 0.1801525205373764, -0.07644776999950409, 0.10229512304067612, -0.35643482208251953, -0.3528822064399719, 0.8377766013145447, 0.21577711403369904], "std": [0.00651923194527626, 0.004601169377565384, 0.004469659179449081, 0.24090822041034698, 0.14792461693286896, 0.23830825090408325, 0.06467332690954208, 1.0091057447425555e-06, 1.4245983948057983e-06, 4.098446879652329e-07, 7.877124153310433e-05, 4.596157305059023e-05, 4.749999425257556e-05, 1.976063140318729e-05], "count": [218]}, "timestamp": {"min": [0.0], "max": [7.233333333333333], "mean": [3.616666666666667], "std": [2.0976839079751217], "count": [218]}, "frame_index": {"min": [0], "max": [217], "mean": [108.5], "std": [62.930517239253646], "count": [218]}, "episode_index": {"min": [291], "max": [291], "mean": [291.0], "std": [0.0], "count": [218]}, "index": {"min": [129524], "max": [129741], "mean": [129632.5], "std": [62.930517239253646], "count": [218]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [218]}}} +{"episode_index": 292, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.72144526416122]], [[0.705037265795207]], [[0.6604387037037037]]], "std": [[[0.2452086524692075]], [[0.2243090071548679]], [[0.24701845317898566]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.72144526416122]], [[0.705037265795207]], [[0.6604387037037037]]], "std": [[[0.2452086524692075]], [[0.2243090071548679]], [[0.24701845317898566]]], "count": [100]}, "observation.state": {"min": [0.513407289981842, 0.028767179697752, 0.12812140583992004, 0.2774198055267334, -1.3412238359451294, -1.1490124464035034, -0.06505630165338516, -0.14123333990573883, 0.14928853511810303, -1.6972304582595825, -0.9710755944252014, 0.3437277376651764], "max": [0.5716521143913269, 0.14590558409690857, 0.14403985440731049, 2.7395992279052734, 0.25742316246032715, 0.7064900398254395, -0.06504085659980774, -0.14120244979858398, 0.14929112792015076, -1.6968109607696533, -0.9709389805793762, 0.3441658616065979], "mean": [0.5449647903442383, 0.09193204343318939, 0.1370108425617218, 1.666387915611267, -0.8270142674446106, -0.32172441482543945, -0.06504396349191666, -0.14121650159358978, 0.1492891162633896, -1.6970292329788208, -0.9709938168525696, 0.3440551459789276], "std": [0.01826653815805912, 0.042614828795194626, 0.0052290563471615314, 0.9297000169754028, 0.44076135754585266, 0.7254253029823303, 5.2953573685954325e-06, 8.475891263515223e-06, 1.0908968306466704e-06, 0.00019515230087563396, 6.752587069058791e-05, 8.976123353932053e-05], "count": [256]}, "action": {"min": [-0.11365474760532379, -0.0712503120303154, 0.1307324767112732, 0.02769523300230503, 0.2593170404434204, -0.18650668859481812, 0.44855785369873047, 0.18361979722976685, -0.08451516181230545, 0.10916920006275177, -0.4793398082256317, -0.39702364802360535, 0.7716931104660034, 0.1307612955570221], "max": [-0.10064928978681564, -0.05334397405385971, 0.14152513444423676, 0.7369866967201233, 0.8087716698646545, 0.4439074993133545, 0.7028671503067017, 0.18362310528755188, -0.08451007306575775, 0.10917523503303528, -0.4792076051235199, -0.3967943489551544, 0.7718418836593628, 0.1310500055551529], "mean": [-0.1049070730805397, -0.061215758323669434, 0.13712310791015625, 0.29007935523986816, 0.6576766967773438, 0.13308966159820557, 0.581918478012085, 0.18362197279930115, -0.08451219648122787, 0.10917206853628159, -0.4792732894420624, -0.39694708585739136, 0.7717507481575012, 0.1308823972940445], "std": [0.004147428087890148, 0.005217366386204958, 0.0025237032677978277, 0.21920694410800934, 0.16725166141986847, 0.212986558675766, 0.07473354041576385, 8.596742873123731e-07, 1.3607193523057504e-06, 1.4456514918492758e-06, 3.705901690409519e-05, 4.987647116649896e-05, 3.098611341556534e-05, 8.906286529963836e-05], "count": [256]}, "timestamp": {"min": [0.0], "max": [8.5], "mean": [4.25], "std": [2.4633423545166346], "count": [256]}, "frame_index": {"min": [0], "max": [255], "mean": [127.5], "std": [73.90027063549903], "count": [256]}, "episode_index": {"min": [292], "max": [292], "mean": [292.0], "std": [0.0], "count": [256]}, "index": {"min": [129742], "max": [129997], "mean": [129869.5], "std": [73.90027063549903], "count": [256]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [256]}}} +{"episode_index": 293, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7242231427015251]], [[0.7043180637254901]], [[0.6587092374727669]]], "std": [[[0.24597501547342634]], [[0.22533245220424833]], [[0.24736842764236075]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7242231427015251]], [[0.7043180637254901]], [[0.6587092374727669]]], "std": [[[0.24597501547342634]], [[0.22533245220424833]], [[0.24736842764236075]]], "count": [100]}, "observation.state": {"min": [0.5260648131370544, 0.048969849944114685, 0.12371143698692322, 0.022227130830287933, -1.1940664052963257, -1.0320860147476196, -0.0528852716088295, -0.14159631729125977, 0.1413072794675827, -2.0637683868408203, -0.8665486574172974, 0.6855392456054688], "max": [0.5947508215904236, 0.13707850873470306, 0.14288616180419922, 2.8868014812469482, 0.40430739521980286, 0.8901098966598511, -0.052869830280542374, -0.14158086478710175, 0.1413072794675827, -2.0633490085601807, -0.8657288551330566, 0.6866973638534546], "mean": [0.564379096031189, 0.0962824672460556, 0.13482004404067993, 1.4374489784240723, -0.571440577507019, 0.01873144507408142, -0.052883271127939224, -0.14158634841442108, 0.1413075476884842, -2.0635547637939453, -0.8658294081687927, 0.6864627003669739], "std": [0.022509098052978516, 0.02478855289518833, 0.005287633277475834, 1.0796433687210083, 0.3961557149887085, 0.7342474460601807, 3.963022209063638e-06, 4.7906914915074594e-06, 2.682209014892578e-07, 0.00020095771469641477, 0.00022479167091660202, 0.0002559506392572075], "count": [299]}, "action": {"min": [-0.11478133499622345, -0.06686688959598541, 0.12997731566429138, -0.1801314353942871, 0.18440181016921997, -0.3280895948410034, 0.4026199281215668, 0.1869870275259018, -0.07839659601449966, 0.10512755811214447, -0.43270304799079895, -0.47037366032600403, 0.7382684946060181, 0.2159777730703354], "max": [-0.10020505636930466, -0.05141336843371391, 0.14258283376693726, 0.7314527034759521, 0.7539899945259094, 0.5126544833183289, 0.783369779586792, 0.18699435889720917, -0.07838991284370422, 0.10513375699520111, -0.43236449360847473, -0.469710111618042, 0.7384846806526184, 0.21638283133506775], "mean": [-0.10355725139379501, -0.060584958642721176, 0.1355990469455719, 0.18466511368751526, 0.5915704965591431, 0.11622592806816101, 0.62733393907547, 0.18699169158935547, -0.0783945620059967, 0.10513199865818024, -0.4324553608894348, -0.4702540934085846, 0.738335371017456, 0.21612071990966797], "std": [0.004097884055227041, 0.004177479539066553, 0.0031645819544792175, 0.286611407995224, 0.179017573595047, 0.2968405485153198, 0.08111578971147537, 1.3252670214569662e-06, 1.7056762544598314e-06, 1.295064862461004e-06, 7.205890869954601e-05, 0.00014987013128120452, 4.08082123612985e-05, 0.0001015824091155082], "count": [299]}, "timestamp": {"min": [0.0], "max": [9.933333333333334], "mean": [4.966666666666667], "std": [2.8771127502720115], "count": [299]}, "frame_index": {"min": [0], "max": [298], "mean": [149.0], "std": [86.31338250816034], "count": [299]}, "episode_index": {"min": [293], "max": [293], "mean": [293.0], "std": [0.0], "count": [299]}, "index": {"min": [129998], "max": [130296], "mean": [130147.0], "std": [86.31338250816034], "count": [299]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [299]}}} +{"episode_index": 294, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7196167293028323]], [[0.7008210920479303]], [[0.6557140413943355]]], "std": [[[0.2501480902025364]], [[0.2283088974629956]], [[0.24981107290390428]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7196167293028323]], [[0.7008210920479303]], [[0.6557140413943355]]], "std": [[[0.2501480902025364]], [[0.2283088974629956]], [[0.24981107290390428]]], "count": [100]}, "observation.state": {"min": [0.5224428772926331, 0.05417497083544731, 0.12681864202022552, 0.005871320143342018, -1.24257230758667, -0.8613913059234619, -0.07258597016334534, -0.14051511883735657, 0.14322838187217712, -2.186856508255005, -0.810117781162262, 0.7503319382667542], "max": [0.5981874465942383, 0.149288147687912, 0.1430676430463791, 2.6416738033294678, 0.35060927271842957, 1.0244669914245605, -0.07255508005619049, -0.14050740003585815, 0.14322838187217712, -2.1864371299743652, -0.8099811673164368, 0.750770092010498], "mean": [0.564226508140564, 0.09235136210918427, 0.13561853766441345, 1.4522639513015747, -0.5140223503112793, 0.072165846824646, -0.07257627695798874, -0.14051048457622528, 0.14322824776172638, -2.1866745948791504, -0.8099916577339172, 0.750647783279419], "std": [0.02118108980357647, 0.025989970192313194, 0.005003300495445728, 1.0796990394592285, 0.48863229155540466, 0.8008816838264465, 8.789964340394363e-06, 3.853087036986835e-06, 1.341104507446289e-07, 0.00020486106222961098, 3.4816232073353603e-05, 7.359995652223006e-05], "count": [258]}, "action": {"min": [-0.10908398032188416, -0.06773523986339569, 0.12866787612438202, -0.18817918002605438, 0.16640067100524902, -0.26535969972610474, 0.5545287728309631, 0.18497991561889648, -0.07916564494371414, 0.10714758187532425, -0.41903409361839294, -0.47937068343162537, 0.7258803844451904, 0.26021504402160645], "max": [-0.0992337092757225, -0.052452702075242996, 0.13984228670597076, 0.6992758512496948, 0.7961615920066833, 0.5134384036064148, 0.7509377002716064, 0.18498456478118896, -0.07916206866502762, 0.10715022683143616, -0.418904185295105, -0.4791496694087982, 0.725998044013977, 0.26050278544425964], "mean": [-0.10356336832046509, -0.062146030366420746, 0.13587021827697754, 0.2079038769006729, 0.5652477145195007, 0.15590228140354156, 0.6185339689254761, 0.184982031583786, -0.07916399091482162, 0.10714901238679886, -0.418956458568573, -0.47930359840393066, 0.7259203195571899, 0.2603554427623749], "std": [0.0033002181444317102, 0.003979272674769163, 0.003475392935797572, 0.327840119600296, 0.22634831070899963, 0.2646788954734802, 0.040169667452573776, 1.3714977740164613e-06, 9.498496638116194e-07, 7.727439879090525e-07, 2.1515066691790707e-05, 4.981601523468271e-05, 1.843422433012165e-05, 9.200782369589433e-05], "count": [258]}, "timestamp": {"min": [0.0], "max": [8.566666666666666], "mean": [4.283333333333333], "std": [2.482587509180843], "count": [258]}, "frame_index": {"min": [0], "max": [257], "mean": [128.5], "std": [74.47762527542528], "count": [258]}, "episode_index": {"min": [294], "max": [294], "mean": [294.0], "std": [0.0], "count": [258]}, "index": {"min": [130297], "max": [130554], "mean": [130425.5], "std": [74.47762527542528], "count": [258]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [258]}}} +{"episode_index": 295, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7194152750544662]], [[0.6987272903050109]], [[0.6520062173202614]]], "std": [[[0.25061640617140735]], [[0.2287282824394273]], [[0.24988313506332896]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7194152750544662]], [[0.6987272903050109]], [[0.6520062173202614]]], "std": [[[0.25061640617140735]], [[0.2287282824394273]], [[0.24988313506332896]]], "count": [100]}, "observation.state": {"min": [0.5448310971260071, 0.046761151403188705, 0.12254347652196884, 0.005032559856772423, -1.2578755617141724, -0.9049124121665955, -0.04649857059121132, -0.15146596729755402, 0.13800303637981415, -2.1111583709716797, -0.9416987895965576, 0.7381611466407776], "max": [0.6073929667472839, 0.1398741453886032, 0.1458326280117035, 2.8826076984405518, 0.5681345462799072, 0.9510645270347595, -0.046483129262924194, -0.151450514793396, 0.13800692558288574, -2.1111583709716797, -0.9416987895965576, 0.7384061813354492], "mean": [0.575716495513916, 0.09106996655464172, 0.13461406528949738, 1.6400318145751953, -0.3856285810470581, -0.061002105474472046, -0.046486858278512955, -0.15146006643772125, 0.13800501823425293, -2.1111514568328857, -0.941697359085083, 0.7382700443267822], "std": [0.020038366317749023, 0.024198072031140327, 0.007120414637029171, 1.1239852905273438, 0.4891732633113861, 0.7223021388053894, 5.613675511995098e-06, 7.545603239123011e-06, 1.0839506785487174e-06, 6.9141387939453125e-06, 1.430511474609375e-06, 0.00011379078205209225], "count": [280]}, "action": {"min": [-0.11337503790855408, -0.06784217804670334, 0.12754066288471222, -0.16551217436790466, 0.06301891803741455, -0.3371482193470001, 0.5365183353424072, 0.1878005713224411, -0.07667452841997147, 0.1017286628484726, -0.46452459692955017, -0.4648297429084778, 0.7200247049331665, 0.22296836972236633], "max": [-0.09647534042596817, -0.05289663001894951, 0.14023803174495697, 0.6953928470611572, 0.7952800989151001, 0.6103396415710449, 0.7418971657752991, 0.18780270218849182, -0.07667126506567001, 0.10173304378986359, -0.4644889235496521, -0.4647442400455475, 0.7200838327407837, 0.22302888333797455], "mean": [-0.1025882288813591, -0.0613507404923439, 0.13478732109069824, 0.25805336236953735, 0.5066601037979126, 0.1867939680814743, 0.6194189190864563, 0.18780192732810974, -0.07667267322540283, 0.10173097252845764, -0.4645031988620758, -0.4647839665412903, 0.7200587391853333, 0.22300206124782562], "std": [0.005572217050939798, 0.00475575914606452, 0.003468095324933529, 0.3175247311592102, 0.24043674767017365, 0.3124270439147949, 0.04346972331404686, 7.44692897569621e-07, 7.055978130665608e-07, 1.2215105016366579e-06, 1.3835176105203573e-05, 3.8291145756375045e-05, 2.4952962121460587e-05, 2.796983790176455e-05], "count": [280]}, "timestamp": {"min": [0.0], "max": [9.3], "mean": [4.65], "std": [2.6942840731197344], "count": [280]}, "frame_index": {"min": [0], "max": [279], "mean": [139.5], "std": [80.82852219359204], "count": [280]}, "episode_index": {"min": [295], "max": [295], "mean": [295.0], "std": [0.0], "count": [280]}, "index": {"min": [130555], "max": [130834], "mean": [130694.5], "std": [80.82852219359204], "count": [280]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [280]}}} +{"episode_index": 296, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7244206427015251]], [[0.7037849673202615]], [[0.6573611220043573]]], "std": [[[0.24386107781386884]], [[0.22187028125663846]], [[0.24336359823333897]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7244206427015251]], [[0.7037849673202615]], [[0.6573611220043573]]], "std": [[[0.24386107781386884]], [[0.22187028125663846]], [[0.24336359823333897]]], "count": [100]}, "observation.state": {"min": [0.5198403000831604, 0.03938594087958336, 0.12262514978647232, 0.07318179309368134, -1.1831355094909668, -1.0350782871246338, -0.08498868346214294, -0.12562569975852966, 0.1447204053401947, -1.9174048900604248, -0.8640891909599304, 0.5285074710845947], "max": [0.5852364301681519, 0.1531340628862381, 0.140821173787117, 2.7559549808502197, 0.38299211859703064, 0.872723400592804, -0.08497323095798492, -0.12561024725437164, 0.14472170174121857, -1.9169855117797852, -0.8640891909599304, 0.5286708474159241], "mean": [0.5556766390800476, 0.10001754760742188, 0.1332835704088211, 1.5804914236068726, -0.5081475973129272, -0.09320949018001556, -0.08498555421829224, -0.1256171017885208, 0.14472027122974396, -1.9172884225845337, -0.8640897870063782, 0.5286211371421814], "std": [0.02014266513288021, 0.03337927535176277, 0.005003709811717272, 1.0829929113388062, 0.44280222058296204, 0.7653337717056274, 5.187353508517845e-06, 7.46676641938393e-06, 3.215446895410423e-07, 0.00017380292410962284, 5.960464477539062e-07, 6.735881470376626e-05], "count": [190]}, "action": {"min": [-0.11526560038328171, -0.06942060589790344, 0.12773501873016357, -0.16354970633983612, 0.20431716740131378, -0.31555411219596863, 0.43412458896636963, 0.18211714923381805, -0.07924596220254898, 0.1080792024731636, -0.4400581419467926, -0.43465492129325867, 0.7645427584648132, 0.1813795417547226], "max": [-0.1032150387763977, -0.05134214833378792, 0.1404053121805191, 0.7562478184700012, 0.765691339969635, 0.4779912233352661, 0.7437513470649719, 0.1821201741695404, -0.07924200594425201, 0.10808341950178146, -0.44000759720802307, -0.434509813785553, 0.764599621295929, 0.18160824477672577], "mean": [-0.10586372017860413, -0.06003114953637123, 0.1355968415737152, 0.24205763638019562, 0.5611628293991089, 0.1566743701696396, 0.6119921803474426, 0.18211816251277924, -0.07924336194992065, 0.10808113217353821, -0.4400317072868347, -0.434573233127594, 0.7645686864852905, 0.1815277636051178], "std": [0.0035527015570551157, 0.00482848659157753, 0.0034529967233538628, 0.313216894865036, 0.18879999220371246, 0.2957198917865753, 0.07888156175613403, 8.364261816495855e-07, 1.1660495147225447e-06, 9.972944781111437e-07, 1.3451429367705714e-05, 4.111013186047785e-05, 1.513044389866991e-05, 8.011934551177546e-05], "count": [190]}, "timestamp": {"min": [0.0], "max": [6.3], "mean": [3.15], "std": [1.8282505298782221], "count": [190]}, "frame_index": {"min": [0], "max": [189], "mean": [94.5], "std": [54.847515896346664], "count": [190]}, "episode_index": {"min": [296], "max": [296], "mean": [296.0], "std": [0.0], "count": [190]}, "index": {"min": [130835], "max": [131024], "mean": [130929.5], "std": [54.847515896346664], "count": [190]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [190]}}} +{"episode_index": 297, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7202734994553377]], [[0.7030403131808278]], [[0.658250174291939]]], "std": [[[0.25054885119733983]], [[0.229364733025072]], [[0.25162408100498485]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7202734994553377]], [[0.7030403131808278]], [[0.658250174291939]]], "std": [[[0.25054885119733983]], [[0.229364733025072]], [[0.25162408100498485]]], "count": [100]}, "observation.state": {"min": [0.5393247604370117, 0.0336865596473217, 0.1258995682001114, 0.2140934318304062, -1.2532299757003784, -0.9980447888374329, -0.08055582642555237, -0.15328851342201233, 0.14288875460624695, -2.0283308029174805, -0.743302583694458, 0.5455894470214844], "max": [0.5993304252624512, 0.14456184208393097, 0.14428745210170746, 2.8127808570861816, 0.3775266408920288, 0.7293550372123718, -0.08054038137197495, -0.15325762331485748, 0.14288875460624695, -2.027911424636841, -0.743302583694458, 0.5457528233528137], "mean": [0.5648108720779419, 0.09728427976369858, 0.13566139340400696, 1.5677322149276733, -0.49822691082954407, -0.13891775906085968, -0.08054562658071518, -0.15327446162700653, 0.1428886204957962, -2.0280418395996094, -0.7433016896247864, 0.5457332134246826], "std": [0.01914278417825699, 0.03529167175292969, 0.005063390824943781, 1.04413902759552, 0.45548954606056213, 0.7028574347496033, 3.6207241009833524e-06, 1.4673833902634215e-05, 1.341104507446289e-07, 0.00018258369527757168, 8.940696716308594e-07, 3.536521035130136e-05], "count": [268]}, "action": {"min": [-0.11206993460655212, -0.07163508236408234, 0.12968303263187408, -0.10392054170370102, 0.20432013273239136, -0.2924423813819885, 0.4423964321613312, 0.18380358815193176, -0.08137040585279465, 0.105391725897789, -0.37553662061691284, -0.45443660020828247, 0.7731951475143433, 0.23373204469680786], "max": [-0.09870988875627518, -0.053639449179172516, 0.14067645370960236, 0.7472362518310547, 0.7743252515792847, 0.5051653385162354, 0.7697250843048096, 0.18380676209926605, -0.08136530220508575, 0.10539589077234268, -0.37548714876174927, -0.4543260633945465, 0.7732322812080383, 0.23394380509853363], "mean": [-0.10312089323997498, -0.061138998717069626, 0.13624323904514313, 0.26568636298179626, 0.5546652674674988, 0.13420680165290833, 0.6172384023666382, 0.1838054060935974, -0.08136836439371109, 0.1053934097290039, -0.37551987171173096, -0.45439812541007996, 0.7732057571411133, 0.23379792273044586], "std": [0.004018992651253939, 0.005183579865843058, 0.003208303591236472, 0.30097246170043945, 0.19387802481651306, 0.2981303930282593, 0.07555067539215088, 6.96335632710543e-07, 1.7336653854727047e-06, 1.3617719787362148e-06, 1.478772537666373e-05, 3.6398345400812104e-05, 7.2577872742840555e-06, 8.422567771049216e-05], "count": [268]}, "timestamp": {"min": [0.0], "max": [8.9], "mean": [4.449999999999999], "std": [2.578813249884097], "count": [268]}, "frame_index": {"min": [0], "max": [267], "mean": [133.5], "std": [77.36439749652291], "count": [268]}, "episode_index": {"min": [297], "max": [297], "mean": [297.0], "std": [0.0], "count": [268]}, "index": {"min": [131025], "max": [131292], "mean": [131158.5], "std": [77.36439749652291], "count": [268]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [268]}}} +{"episode_index": 298, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.718594651416122]], [[0.700288287037037]], [[0.6548854057734205]]], "std": [[[0.251968778330527]], [[0.23038513163086846]], [[0.25214599432375484]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.718594651416122]], [[0.700288287037037]], [[0.6548854057734205]]], "std": [[[0.251968778330527]], [[0.23038513163086846]], [[0.25214599432375484]]], "count": [100]}, "observation.state": {"min": [0.5403828024864197, 0.024287989363074303, 0.12604087591171265, 0.1939631998538971, -1.134629487991333, -0.9001768827438354, -0.0598280094563961, -0.14367371797561646, 0.1405567228794098, -2.0547518730163574, -0.7348310947418213, 0.5283603072166443], "max": [0.6063040494918823, 0.14439193904399872, 0.14384929835796356, 2.924126148223877, 0.19443373382091522, 0.7668730020523071, -0.05981257185339928, -0.14365828037261963, 0.1405567228794098, -2.0543324947357178, -0.7346944808959961, 0.5286350250244141], "mean": [0.5731700658798218, 0.08375044912099838, 0.13608908653259277, 1.5708290338516235, -0.5922802686691284, -0.08416938036680222, -0.059825796633958817, -0.14366446435451508, 0.1405564546585083, -2.0543835163116455, -0.734733521938324, 0.5285428166389465], "std": [0.020040417090058327, 0.031446028500795364, 0.0054750870913267136, 0.9518163800239563, 0.36293184757232666, 0.6414653062820435, 3.5019418191950535e-06, 4.763413926411886e-06, 2.682209014892578e-07, 0.00013370707165449858, 6.12454823567532e-05, 6.40005964669399e-05], "count": [237]}, "action": {"min": [-0.11134348809719086, -0.07071381062269211, 0.1282491683959961, -0.07557885348796844, 0.25654172897338867, -0.24261343479156494, 0.5579991340637207, 0.1867900788784027, -0.07900192588567734, 0.10473183542490005, -0.35951289534568787, -0.4402492344379425, 0.784649133682251, 0.2475011944770813], "max": [-0.09646381437778473, -0.05199194326996803, 0.13934078812599182, 0.6928966641426086, 0.7766913175582886, 0.628243088722229, 0.7386384606361389, 0.1867930293083191, -0.07899843901395798, 0.10473460704088211, -0.3593907058238983, -0.44012200832366943, 0.7847239375114441, 0.24772867560386658], "mean": [-0.1011776477098465, -0.06210733577609062, 0.13481999933719635, 0.24506638944149017, 0.5737112164497375, 0.1564006358385086, 0.650322437286377, 0.18679100275039673, -0.07900065183639526, 0.10473279654979706, -0.35945194959640503, -0.4402201771736145, 0.7846798300743103, 0.2475433349609375], "std": [0.004714729730039835, 0.005055146757513285, 0.0026266698259860277, 0.25339481234550476, 0.17458544671535492, 0.25753962993621826, 0.049009162932634354, 6.732990982527554e-07, 8.267116413662734e-07, 6.684155096081668e-07, 3.648053825600073e-05, 3.020119220309425e-05, 1.9318733393447474e-05, 6.218007911229506e-05], "count": [237]}, "timestamp": {"min": [0.0], "max": [7.866666666666666], "mean": [3.9333333333333336], "std": [2.280513262566289], "count": [237]}, "frame_index": {"min": [0], "max": [236], "mean": [118.0], "std": [68.41539787698868], "count": [237]}, "episode_index": {"min": [298], "max": [298], "mean": [298.0], "std": [0.0], "count": [237]}, "index": {"min": [131293], "max": [131529], "mean": [131411.0], "std": [68.41539787698868], "count": [237]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [237]}}} +{"episode_index": 299, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.741477211328976]], [[0.7205240631808278]], [[0.6755855909586057]]], "std": [[[0.2333828641771252]], [[0.21171973939599834]], [[0.2333685183005523]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.741477211328976]], [[0.7205240631808278]], [[0.6755855909586057]]], "std": [[[0.2333828641771252]], [[0.21171973939599834]], [[0.2333685183005523]]], "count": [100]}, "observation.state": {"min": [0.5058389902114868, 0.031593699008226395, 0.12338476628065109, 0.21493218839168549, -1.0956881046295166, -0.9132747054100037, -0.05628328025341034, -0.1428937315940857, 0.14174671471118927, -2.2485053539276123, -0.8702378869056702, 0.7902078032493591], "max": [0.5876922607421875, 0.13608227670192719, 0.13829469680786133, 2.7255499362945557, 0.28365737199783325, 0.8160967826843262, -0.05626783147454262, -0.14287827908992767, 0.14174802601337433, -2.2480859756469727, -0.8701012134552002, 0.7907276153564453], "mean": [0.5436042547225952, 0.08850351721048355, 0.13062234222888947, 1.6825933456420898, -0.5039236545562744, -0.16334114968776703, -0.05627226456999779, -0.14288951456546783, 0.14174784719944, -2.248143434524536, -0.8702302575111389, 0.790496826171875], "std": [0.024954646825790405, 0.02893901616334915, 0.004978696350008249, 0.9763858914375305, 0.342450350522995, 0.6708166003227234, 6.239524282136699e-06, 6.644990662607597e-06, 6.592360932700103e-07, 0.00013707000471185893, 3.3324467949569225e-05, 0.00014811678556725383], "count": [205]}, "action": {"min": [-0.11700427532196045, -0.0697629302740097, 0.12679067254066467, -0.12891227006912231, 0.2174726277589798, -0.246714249253273, 0.4937231242656708, 0.18720228970050812, -0.0779329314827919, 0.10601244121789932, -0.4397122263908386, -0.4657154381275177, 0.7170941233634949, 0.2748423218727112], "max": [-0.1027732715010643, -0.0508418045938015, 0.13857996463775635, 0.7051195502281189, 0.7304076552391052, 0.4727097451686859, 0.785549521446228, 0.1872066855430603, -0.07792945206165314, 0.10601679980754852, -0.4395597577095032, -0.46545812487602234, 0.7172367572784424, 0.27514976263046265], "mean": [-0.10847349464893341, -0.06060059741139412, 0.13409733772277832, 0.2607250213623047, 0.5388107895851135, 0.17631517350673676, 0.6536692380905151, 0.18720397353172302, -0.07793217897415161, 0.10601375997066498, -0.43966975808143616, -0.46561941504478455, 0.7171523571014404, 0.27491888403892517], "std": [0.00499097490683198, 0.004153621848672628, 0.002978480886667967, 0.2779671549797058, 0.1611187756061554, 0.2747015655040741, 0.06818267703056335, 1.0270238135490217e-06, 8.132831226248527e-07, 1.1109041224699467e-06, 3.159192419843748e-05, 6.8024339270778e-05, 3.722363544511609e-05, 7.633782661287114e-05], "count": [205]}, "timestamp": {"min": [0.0], "max": [6.8], "mean": [3.4], "std": [1.9725899500684654], "count": [205]}, "frame_index": {"min": [0], "max": [204], "mean": [102.0], "std": [59.177698502053964], "count": [205]}, "episode_index": {"min": [299], "max": [299], "mean": [299.0], "std": [0.0], "count": [205]}, "index": {"min": [131530], "max": [131734], "mean": [131632.0], "std": [59.177698502053964], "count": [205]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [205]}}} +{"episode_index": 300, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7265917483660131]], [[0.7048806590413944]], [[0.6585081100217864]]], "std": [[[0.24518314649706932]], [[0.2215450572736892]], [[0.24175230842772746]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7265917483660131]], [[0.7048806590413944]], [[0.6585081100217864]]], "std": [[[0.24518314649706932]], [[0.2215450572736892]], [[0.24175230842772746]]], "count": [100]}, "observation.state": {"min": [0.5292543172836304, 0.03246637061238289, 0.1245034709572792, 0.43825197219848633, -1.0544239282608032, -0.8237693905830383, -0.0859694629907608, -0.12151719629764557, 0.14176616072654724, -1.86456298828125, -0.7311419248580933, 0.4498288929462433], "max": [0.5921868681907654, 0.12434372305870056, 0.14172987639904022, 2.5127146244049072, 0.24936160445213318, 0.705750048160553, -0.08594629168510437, -0.12147858738899231, 0.14176875352859497, -1.8641436100006104, -0.7310052514076233, 0.45020756125450134], "mean": [0.5573862791061401, 0.08474351465702057, 0.1322477012872696, 1.5382660627365112, -0.5265427231788635, -0.07102226465940475, -0.08596162497997284, -0.12149767577648163, 0.14176757633686066, -1.8644672632217407, -0.7311290502548218, 0.44999876618385315], "std": [0.01924569346010685, 0.024644335731863976, 0.004892837721854448, 0.7815935611724854, 0.3330352306365967, 0.6002435088157654, 6.7871419560106006e-06, 1.0272486179019324e-05, 8.747259130359453e-07, 0.00017064218991436064, 3.787023888435215e-05, 4.9660546210361645e-05], "count": [251]}, "action": {"min": [-0.11198543757200241, -0.069923996925354, 0.12779748439788818, -0.11137901246547699, 0.2059308886528015, -0.19722048938274384, 0.5987386107444763, 0.18285617232322693, -0.07803941518068314, 0.10642483085393906, -0.37810397148132324, -0.4351364076137543, 0.7989741563796997, 0.17138293385505676], "max": [-0.10022184252738953, -0.05386483669281006, 0.13847698271274567, 0.6783877015113831, 0.7115827202796936, 0.40377962589263916, 0.7966322302818298, 0.18286001682281494, -0.07803333550691605, 0.10643050074577332, -0.3779924809932709, -0.43487706780433655, 0.7990612983703613, 0.17164644598960876], "mean": [-0.10500983148813248, -0.061171870678663254, 0.13348090648651123, 0.22384558618068695, 0.5456593632698059, 0.1282564401626587, 0.7038856148719788, 0.1828576624393463, -0.0780361220240593, 0.10642832517623901, -0.37806686758995056, -0.43497127294540405, 0.7990185022354126, 0.17157287895679474], "std": [0.0035332883708178997, 0.004252011887729168, 0.0032274185214191675, 0.26948657631874084, 0.15029652416706085, 0.20765838027000427, 0.04370534047484398, 9.419791240361519e-07, 1.5354703464254271e-06, 1.0265665650877054e-06, 1.893022272270173e-05, 3.728400042746216e-05, 1.0750905858003534e-05, 7.918855408206582e-05], "count": [251]}, "timestamp": {"min": [0.0], "max": [8.333333333333334], "mean": [4.166666666666667], "std": [2.41522945769824], "count": [251]}, "frame_index": {"min": [0], "max": [250], "mean": [125.0], "std": [72.4568837309472], "count": [251]}, "episode_index": {"min": [300], "max": [300], "mean": [300.0], "std": [0.0], "count": [251]}, "index": {"min": [131735], "max": [131985], "mean": [131860.0], "std": [72.4568837309472], "count": [251]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [251]}}} +{"episode_index": 301, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7285423366013072]], [[0.702057794117647]], [[0.6522805827886711]]], "std": [[[0.24487105319570399]], [[0.21907916046715376]], [[0.2383249944264622]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7285423366013072]], [[0.702057794117647]], [[0.6522805827886711]]], "std": [[[0.24487105319570399]], [[0.21907916046715376]], [[0.2383249944264622]]], "count": [100]}, "observation.state": {"min": [0.522373378276825, 0.050607070326805115, 0.12342625111341476, 0.06479419022798538, -1.1858681440353394, -0.8499226570129395, -0.12411203980445862, -0.0887342020869255, 0.14128394424915314, -1.8886773586273193, -0.5632156729698181, 0.5371044278144836], "max": [0.5905960202217102, 0.1305605173110962, 0.14172987639904022, 2.7175817489624023, 0.2862534821033478, 0.9762523174285889, -0.1240965873003006, -0.08871875703334808, 0.14128394424915314, -1.8882579803466797, -0.562942385673523, 0.537676215171814], "mean": [0.5572963953018188, 0.09349615126848221, 0.13369545340538025, 1.4103357791900635, -0.5703049898147583, 0.11818043142557144, -0.12409862875938416, -0.08872569352388382, 0.14128351211547852, -1.8886384963989258, -0.5631911158561707, 0.5373661518096924], "std": [0.021928803995251656, 0.02565101534128189, 0.005546069238334894, 1.0105969905853271, 0.37093159556388855, 0.7231478095054626, 3.7635943499481073e-06, 6.574585313501302e-06, 4.3213367462158203e-07, 0.00010427726374473423, 7.950465806061402e-05, 0.00014397814811673015], "count": [225]}, "action": {"min": [-0.11504466831684113, -0.0671764686703682, 0.12918943166732788, -0.17586268484592438, 0.20933932065963745, -0.2565457224845886, 0.5239176154136658, 0.17895770072937012, -0.0746258795261383, 0.1086358055472374, -0.32690224051475525, -0.4783860743045807, 0.7988677620887756, 0.16138705611228943], "max": [-0.10113400220870972, -0.050613317638635635, 0.139548659324646, 0.6816614270210266, 0.7623242139816284, 0.4786379933357239, 0.791631281375885, 0.17896156013011932, -0.07462190836668015, 0.10863906145095825, -0.32674822211265564, -0.47815370559692383, 0.7990047335624695, 0.16165636479854584], "mean": [-0.10498018562793732, -0.06091606616973877, 0.1350911557674408, 0.16123905777931213, 0.5807637572288513, 0.13635917007923126, 0.6545606255531311, 0.17895939946174622, -0.07462318241596222, 0.10863746702671051, -0.32685980200767517, -0.47826364636421204, 0.7989452481269836, 0.16159588098526], "std": [0.004406848922371864, 0.004238717723637819, 0.0028247120790183544, 0.2888967990875244, 0.18121066689491272, 0.26165953278541565, 0.07005056738853455, 7.468348144357151e-07, 9.131398428507964e-07, 6.289527618719148e-07, 3.693801772897132e-05, 6.106493674451485e-05, 3.3374755730619654e-05, 5.46022602065932e-05], "count": [225]}, "timestamp": {"min": [0.0], "max": [7.466666666666667], "mean": [3.7333333333333334], "std": [2.1650421260121955], "count": [225]}, "frame_index": {"min": [0], "max": [224], "mean": [112.0], "std": [64.95126378036586], "count": [225]}, "episode_index": {"min": [301], "max": [301], "mean": [301.0], "std": [0.0], "count": [225]}, "index": {"min": [131986], "max": [132210], "mean": [132098.0], "std": [64.95126378036586], "count": [225]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [225]}}} +{"episode_index": 302, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7243372712418301]], [[0.6977462418300654]], [[0.6479983741830065]]], "std": [[[0.2475076853191112]], [[0.22158178221879965]], [[0.23962576509536784]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7243372712418301]], [[0.6977462418300654]], [[0.6479983741830065]]], "std": [[[0.2475076853191112]], [[0.22158178221879965]], [[0.23962576509536784]]], "count": [100]}, "observation.state": {"min": [0.5251226425170898, 0.03722357004880905, 0.12289995700120926, 0.28140389919281006, -0.9265320897102356, -1.0075774192810059, -0.11422693729400635, -0.07112637162208557, 0.1435900330543518, -1.4078582525253296, -0.8784360885620117, 0.27993306517601013], "max": [0.6048598885536194, 0.13775810599327087, 0.13725247979164124, 2.7326793670654297, 0.38968729972839355, 0.595815122127533, -0.11421921849250793, -0.07111091911792755, 0.14359134435653687, -1.40743887424469, -0.877479612827301, 0.2803565263748169], "mean": [0.5729556083679199, 0.08836217224597931, 0.13214686512947083, 1.624176025390625, -0.4262314438819885, -0.22547215223312378, -0.11422615498304367, -0.07112321257591248, 0.1435907632112503, -1.4076955318450928, -0.8776524662971497, 0.28015264868736267], "std": [0.025601230561733246, 0.026232369244098663, 0.004521951545029879, 0.9764949679374695, 0.3385411500930786, 0.6394104957580566, 2.6018778953584842e-06, 6.076345925976057e-06, 6.151731781756098e-07, 0.00012708049325738102, 0.00024386470613535494, 5.7891484175343066e-05], "count": [216]}, "action": {"min": [-0.11528115719556808, -0.06813174486160278, 0.12477869540452957, -0.06878665089607239, 0.20311345160007477, -0.29108667373657227, 0.4483790099620819, 0.17793208360671997, -0.07508473843336105, 0.10875358432531357, -0.480905145406723, -0.4003593325614929, 0.7800561785697937, -0.004166319966316223], "max": [-0.09915315359830856, -0.05320066213607788, 0.14188119769096375, 0.7501226663589478, 0.6902458667755127, 0.4617619216442108, 0.7369588613510132, 0.17793720960617065, -0.07507950812578201, 0.10876316577196121, -0.48048266768455505, -0.40020981431007385, 0.7803340554237366, -0.003966320771723986], "mean": [-0.1035408079624176, -0.06044552102684975, 0.13305146992206573, 0.2876212000846863, 0.5271056890487671, 0.12927065789699554, 0.6511944532394409, 0.17793554067611694, -0.07508206367492676, 0.10876007378101349, -0.4805668592453003, -0.4002979099750519, 0.7802584767341614, -0.004025529138743877], "std": [0.004927007481455803, 0.0041246842592954636, 0.003695292863994837, 0.2871739864349365, 0.15186934173107147, 0.29387167096138, 0.08230915665626526, 1.1565936119950493e-06, 1.2373759545880603e-06, 2.402887957941857e-06, 0.00010669371113181114, 3.530568938003853e-05, 5.564982711803168e-05, 5.916137888561934e-05], "count": [216]}, "timestamp": {"min": [0.0], "max": [7.166666666666667], "mean": [3.5833333333333335], "std": [2.0784386946473563], "count": [216]}, "frame_index": {"min": [0], "max": [215], "mean": [107.5], "std": [62.353160839420696], "count": [216]}, "episode_index": {"min": [302], "max": [302], "mean": [302.0], "std": [0.0], "count": [216]}, "index": {"min": [132211], "max": [132426], "mean": [132318.5], "std": [62.353160839420696], "count": [216]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [216]}}} +{"episode_index": 303, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.719066941721133]], [[0.7024584123093682]], [[0.6579644362745098]]], "std": [[[0.2501778632641751]], [[0.22789876794282546]], [[0.24934299395877932]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.719066941721133]], [[0.7024584123093682]], [[0.6579644362745098]]], "std": [[[0.2501778632641751]], [[0.22789876794282546]], [[0.24934299395877932]]], "count": [100]}, "observation.state": {"min": [0.5387069582939148, 0.023199090734124184, 0.12479253858327866, 0.15852560102939606, -1.1019734144210815, -0.9303165078163147, -0.0879233106970787, -0.12607361376285553, 0.14651447534561157, -1.8477877378463745, -0.8020562529563904, 0.6800191402435303], "max": [0.6110535264015198, 0.13961929082870483, 0.14125801622867584, 2.8022964000701904, 0.23569795489311218, 0.618376612663269, -0.08790014684200287, -0.1260504573583603, 0.1465170681476593, -1.8473683595657349, -0.8017829656600952, 0.6808953881263733], "mean": [0.5717797875404358, 0.08803440630435944, 0.1343865692615509, 1.479504942893982, -0.5690945982933044, -0.13336391746997833, -0.08791186660528183, -0.12606291472911835, 0.14651508629322052, -1.8475526571273804, -0.8019205331802368, 0.6806508898735046], "std": [0.020348424091935158, 0.03562155365943909, 0.0047010271809995174, 0.9962936043739319, 0.39316052198410034, 0.5732116103172302, 4.317787897889502e-06, 8.742269528738689e-06, 9.81270318334282e-07, 0.00017411590670235455, 0.00012732714822050184, 0.0002653731789905578], "count": [220]}, "action": {"min": [-0.1095215231180191, -0.07120362669229507, 0.12770721316337585, -0.05567541718482971, 0.23312386870384216, -0.33603084087371826, 0.46904176473617554, 0.18175797164440155, -0.08106083422899246, 0.10942880809307098, -0.4282015860080719, -0.5161039233207703, 0.7324572205543518, 0.11742094904184341], "max": [-0.09705699980258942, -0.05543067306280136, 0.13755616545677185, 0.6875685453414917, 0.7588467001914978, 0.5059715509414673, 0.7266526222229004, 0.1817617565393448, -0.08105539530515671, 0.1094333752989769, -0.42802196741104126, -0.5157975554466248, 0.7327291965484619, 0.1177181676030159], "mean": [-0.1024617999792099, -0.06165783107280731, 0.13375632464885712, 0.26532188057899475, 0.5677047371864319, 0.08994315564632416, 0.6408466100692749, 0.18175984919071198, -0.08105845004320145, 0.10943104326725006, -0.42811915278434753, -0.5160053372383118, 0.7325507402420044, 0.11756494641304016], "std": [0.0035930913873016834, 0.004732851404696703, 0.0026877950876951218, 0.2425604611635208, 0.1781628131866455, 0.30652889609336853, 0.06327538192272186, 1.1477451380415005e-06, 1.6346498341590632e-06, 1.0915340453721e-06, 7.177503721322864e-05, 7.896219904068857e-05, 8.20853456389159e-05, 9.610805136617273e-05], "count": [220]}, "timestamp": {"min": [0.0], "max": [7.3], "mean": [3.65], "std": [2.116929117587287], "count": [220]}, "frame_index": {"min": [0], "max": [219], "mean": [109.5], "std": [63.50787352761861], "count": [220]}, "episode_index": {"min": [303], "max": [303], "mean": [303.0], "std": [0.0], "count": [220]}, "index": {"min": [132427], "max": [132646], "mean": [132536.5], "std": [63.50787352761861], "count": [220]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [220]}}} +{"episode_index": 304, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7333334940087146]], [[0.7129618164488017]], [[0.667384855664488]]], "std": [[[0.24164595298939964]], [[0.2182471847239933]], [[0.23896181245220227]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7333334940087146]], [[0.7129618164488017]], [[0.667384855664488]]], "std": [[[0.24164595298939964]], [[0.2182471847239933]], [[0.23896181245220227]]], "count": [100]}, "observation.state": {"min": [0.5315016508102417, 0.012001129798591137, 0.1230127364397049, 0.36129575967788696, -1.1652361154556274, -0.9178016781806946, -0.08687301725149155, -0.11296813935041428, 0.14520910382270813, -1.974021077156067, -0.7337380051612854, 0.694776713848114], "max": [0.5841706991195679, 0.1373642534017563, 0.13897524774074554, 2.6836118698120117, 0.3034696578979492, 0.6505135893821716, -0.08685757964849472, -0.11296813935041428, 0.14521169662475586, -1.9736016988754272, -0.7337380051612854, 0.694776713848114], "mean": [0.5551429986953735, 0.08786971867084503, 0.13106496632099152, 1.6327929496765137, -0.5924364924430847, -0.1891416758298874, -0.0868702232837677, -0.1129683330655098, 0.1452094167470932, -1.9738132953643799, -0.7337384223937988, 0.6947780251502991], "std": [0.018219267949461937, 0.03253363445401192, 0.005102240946143866, 0.865047037601471, 0.37880608439445496, 0.6042355298995972, 3.8010300613677828e-06, 1.9371509552001953e-07, 6.525015123770572e-07, 2.3890759621281177e-05, 4.172325134277344e-07, 1.3113021850585938e-06], "count": [234]}, "action": {"min": [-0.11332089453935623, -0.07307958602905273, 0.12593261897563934, -0.04606473818421364, 0.20124168694019318, -0.225914865732193, 0.5060114860534668, 0.18263570964336395, -0.07864317297935486, 0.11021453887224197, -0.39614734053611755, -0.5068119764328003, 0.7456741333007812, 0.17372150719165802], "max": [-0.10212687402963638, -0.0521884486079216, 0.13786397874355316, 0.7138667702674866, 0.7618416547775269, 0.4606020450592041, 0.783169686794281, 0.18263837695121765, -0.07864125818014145, 0.11021672934293747, -0.3961350619792938, -0.5067371726036072, 0.7456849813461304, 0.17391686141490936], "mean": [-0.10613352060317993, -0.06024086847901344, 0.13258524239063263, 0.27264049649238586, 0.568808376789093, 0.14851517975330353, 0.656857430934906, 0.18263660371303558, -0.07864171266555786, 0.11021497845649719, -0.39614051580429077, -0.5067750215530396, 0.7456810474395752, 0.17381888628005981], "std": [0.0038407600950449705, 0.005022726021707058, 0.0029636449180543423, 0.2498411387205124, 0.1615067720413208, 0.23696160316467285, 0.06284567713737488, 5.145905106473947e-07, 3.982504495070316e-07, 5.185648888073047e-07, 1.8179928247263888e-06, 4.238941073708702e-06, 1.3743192539550364e-06, 1.1046327927033417e-05], "count": [234]}, "timestamp": {"min": [0.0], "max": [7.766666666666667], "mean": [3.8833333333333337], "std": [2.251645488838642], "count": [234]}, "frame_index": {"min": [0], "max": [233], "mean": [116.5], "std": [67.54936466515926], "count": [234]}, "episode_index": {"min": [304], "max": [304], "mean": [304.0], "std": [0.0], "count": [234]}, "index": {"min": [132647], "max": [132880], "mean": [132763.5], "std": [67.54936466515926], "count": [234]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [234]}}} +{"episode_index": 305, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7183388262527234]], [[0.6991820424836601]], [[0.6535124537037037]]], "std": [[[0.2539762110565796]], [[0.23146984311051744]], [[0.2526881190341362]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7183388262527234]], [[0.6991820424836601]], [[0.6535124537037037]]], "std": [[[0.2539762110565796]], [[0.23146984311051744]], [[0.2526881190341362]]], "count": [100]}, "observation.state": {"min": [0.5474876761436462, 0.02878263033926487, 0.12739160656929016, -0.010065119713544846, -1.1998051404953003, -0.9736295342445374, -0.0474330298602581, -0.12940211594104767, 0.1445324569940567, -1.9480196237564087, -0.8117574453353882, 0.7458178400993347], "max": [0.6206297278404236, 0.13203555345535278, 0.1413111686706543, 2.7150654792785645, 0.3247849643230438, 0.972156822681427, -0.04741758108139038, -0.12938666343688965, 0.1445363461971283, -1.947600245475769, -0.8117574453353882, 0.7458178400993347], "mean": [0.5827343463897705, 0.08239196985960007, 0.13494935631752014, 1.3841091394424438, -0.5835370421409607, 0.012382075190544128, -0.04742192476987839, -0.12940029799938202, 0.14453402161598206, -1.947993278503418, -0.811756432056427, 0.7458187937736511], "std": [0.022793656215071678, 0.026172712445259094, 0.004256302025169134, 1.1170847415924072, 0.4161830544471741, 0.8338510990142822, 4.148343577980995e-06, 4.310556505515706e-06, 9.716450222185813e-07, 0.00010205813305219635, 1.0132789611816406e-06, 9.5367431640625e-07], "count": [235]}, "action": {"min": [-0.10794008523225784, -0.06992299854755402, 0.12549030780792236, -0.13931666314601898, 0.21836070716381073, -0.2663496732711792, 0.4824780523777008, 0.1874977946281433, -0.07999248057603836, 0.10847415775060654, -0.41666921973228455, -0.5227365493774414, 0.7280656695365906, 0.15183554589748383], "max": [-0.09770914912223816, -0.05416597053408623, 0.1403176188468933, 0.7285094857215881, 0.7985092997550964, 0.456490695476532, 0.6751033663749695, 0.1874999850988388, -0.07998794317245483, 0.10847955197095871, -0.416657954454422, -0.5226490497589111, 0.7280939817428589, 0.1520290970802307], "mean": [-0.1011161282658577, -0.06251920759677887, 0.13294458389282227, 0.22369122505187988, 0.6142846941947937, 0.11413180083036423, 0.5916898250579834, 0.18749937415122986, -0.07998976111412048, 0.10847681760787964, -0.4166605770587921, -0.5226588249206543, 0.7280871272087097, 0.1520155817270279], "std": [0.002932153642177582, 0.004009790252894163, 0.0038138595409691334, 0.31354811787605286, 0.19123691320419312, 0.26934993267059326, 0.04538923501968384, 6.244960673029709e-07, 6.935773058103223e-07, 1.107492835217272e-06, 2.6006514417531434e-06, 1.9969509594375268e-05, 5.78992467126227e-06, 4.6631375880679116e-05], "count": [235]}, "timestamp": {"min": [0.0], "max": [7.8], "mean": [3.9], "std": [2.261268080819551], "count": [235]}, "frame_index": {"min": [0], "max": [234], "mean": [117.0], "std": [67.83804242458652], "count": [235]}, "episode_index": {"min": [305], "max": [305], "mean": [305.0], "std": [0.0], "count": [235]}, "index": {"min": [132881], "max": [133115], "mean": [132998.0], "std": [67.83804242458652], "count": [235]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [235]}}} +{"episode_index": 306, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7201653758169935]], [[0.6928960729847494]], [[0.6435636492374728]]], "std": [[[0.2502125888791841]], [[0.22648025949400438]], [[0.24596458289236617]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7201653758169935]], [[0.6928960729847494]], [[0.6435636492374728]]], "std": [[[0.2502125888791841]], [[0.22648025949400438]], [[0.24596458289236617]]], "count": [100]}, "observation.state": {"min": [0.5237711668014526, 0.04791183024644852, 0.12433105707168579, 0.24701474606990814, -1.162913203239441, -0.8550187945365906, -0.09986265748739243, -0.11916176974773407, 0.13970635831356049, -2.036928176879883, -0.6999887824058533, 0.6800800561904907], "max": [0.6116713285446167, 0.1257183700799942, 0.1439659744501114, 2.6286730766296387, 0.3743840157985687, 0.8711273670196533, -0.099847212433815, -0.11915405094623566, 0.13970635831356049, -2.036508798599243, -0.6999887824058533, 0.6803250908851624], "mean": [0.5694532990455627, 0.09798182547092438, 0.13515472412109375, 1.3033077716827393, -0.5165755748748779, 0.1397629976272583, -0.09984833747148514, -0.11915548890829086, 0.13970598578453064, -2.036839008331299, -0.6999868154525757, 0.6803109049797058], "std": [0.02236679196357727, 0.02090618759393692, 0.005580380093306303, 1.0120738744735718, 0.3881717622280121, 0.7198631763458252, 2.900373829106684e-06, 3.075754420933663e-06, 3.725290298461914e-07, 0.0001685028400970623, 1.9669532775878906e-06, 3.755237048608251e-05], "count": [268]}, "action": {"min": [-0.11055111885070801, -0.06758419424295425, 0.1254996657371521, -0.11753436923027039, 0.1684718281030655, -0.203851118683815, 0.5436869859695435, 0.18178313970565796, -0.07586950808763504, 0.10547402501106262, -0.3829580843448639, -0.4991307556629181, 0.7490085363388062, 0.20784012973308563], "max": [-0.09833016246557236, -0.05234348773956299, 0.14287149906158447, 0.6992285251617432, 0.7531145811080933, 0.4414016604423523, 0.6981660723686218, 0.1817862093448639, -0.07586691528558731, 0.1054762676358223, -0.382911741733551, -0.49896153807640076, 0.7490777969360352, 0.20808273553848267], "mean": [-0.10278277844190598, -0.06117163971066475, 0.13555574417114258, 0.1670643836259842, 0.5761751532554626, 0.0927780345082283, 0.6536900997161865, 0.1817856878042221, -0.0758674293756485, 0.10547596961259842, -0.3829381763935089, -0.4990634024143219, 0.7490197420120239, 0.20799846947193146], "std": [0.0038114627823233604, 0.0031956324819475412, 0.004256128333508968, 0.3066848814487457, 0.1911611109972, 0.2691553235054016, 0.033915452659130096, 5.984609288134379e-07, 7.835100745978707e-07, 6.483703032245103e-07, 7.259643552970374e-06, 3.348145037307404e-05, 9.626539394957945e-06, 7.895640010247007e-05], "count": [268]}, "timestamp": {"min": [0.0], "max": [8.9], "mean": [4.449999999999999], "std": [2.578813249884097], "count": [268]}, "frame_index": {"min": [0], "max": [267], "mean": [133.5], "std": [77.36439749652291], "count": [268]}, "episode_index": {"min": [306], "max": [306], "mean": [306.0], "std": [0.0], "count": [268]}, "index": {"min": [133116], "max": [133383], "mean": [133249.5], "std": [77.36439749652291], "count": [268]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [268]}}} +{"episode_index": 307, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7323661138344226]], [[0.7092031726579521]], [[0.6618982325708062]]], "std": [[[0.2424642713134469]], [[0.21963286791936332]], [[0.24047754463746807]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7323661138344226]], [[0.7092031726579521]], [[0.6618982325708062]]], "std": [[[0.2424642713134469]], [[0.21963286791936332]], [[0.24047754463746807]]], "count": [100]}, "observation.state": {"min": [0.5255010724067688, 0.04181088134646416, 0.11569517850875854, 0.21535156667232513, -1.1716580390930176, -1.0491751432418823, -0.11482931673526764, -0.09225577116012573, 0.1438220739364624, -1.623209834098816, -0.5931390523910522, 0.4868505895137787], "max": [0.5895225405693054, 0.1366923749446869, 0.14112968742847443, 2.788456916809082, 0.42753562331199646, 0.8413028717041016, -0.11481387168169022, -0.09224031865596771, 0.14382855594158173, -1.6225807666778564, -0.5931390523910522, 0.4868505895137787], "mean": [0.5608586072921753, 0.1003289520740509, 0.13179175555706024, 1.6831283569335938, -0.5355755686759949, -0.16232268512248993, -0.11482330411672592, -0.09224571287631989, 0.1438266634941101, -1.6231247186660767, -0.5931395292282104, 0.4868493676185608], "std": [0.017643379047513008, 0.03201773390173912, 0.007470391690731049, 0.9812477231025696, 0.4412722587585449, 0.7225326299667358, 6.494945864687907e-06, 6.146943633211777e-06, 1.532081228106108e-06, 0.00019087904365733266, 4.76837158203125e-07, 1.2218952178955078e-06], "count": [204]}, "action": {"min": [-0.11293617635965347, -0.0680796205997467, 0.12419630587100983, -0.08434006571769714, 0.19763849675655365, -0.20458368957042694, 0.4052284359931946, 0.1794610172510147, -0.07747946679592133, 0.10970310866832733, -0.34431248903274536, -0.4873899519443512, 0.8013145327568054, 0.042379479855298996], "max": [-0.10094334930181503, -0.04947084188461304, 0.14093132317066193, 0.756497859954834, 0.7568703293800354, 0.495766282081604, 0.7427913546562195, 0.17946384847164154, -0.07747209817171097, 0.10970943421125412, -0.34428319334983826, -0.4873157739639282, 0.801354706287384, 0.04268435388803482], "mean": [-0.10568927228450775, -0.05897563695907593, 0.13387234508991241, 0.2810320258140564, 0.5562981367111206, 0.1872052699327469, 0.6273360848426819, 0.1794620156288147, -0.07747548073530197, 0.10970712453126907, -0.34429121017456055, -0.4873273968696594, 0.8013469576835632, 0.042642250657081604], "std": [0.003594862762838602, 0.005558418575674295, 0.004863661713898182, 0.2762918472290039, 0.19631479680538177, 0.2495591938495636, 0.07616274803876877, 9.204224511449866e-07, 1.6864968301888439e-06, 1.3927323152529425e-06, 6.840748028480448e-06, 2.2024038116796874e-05, 1.1168007404194213e-05, 9.199578926200047e-05], "count": [204]}, "timestamp": {"min": [0.0], "max": [6.766666666666667], "mean": [3.3833333333333337], "std": [1.9629673305332263], "count": [204]}, "frame_index": {"min": [0], "max": [203], "mean": [101.5], "std": [58.88901991599679], "count": [204]}, "episode_index": {"min": [307], "max": [307], "mean": [307.0], "std": [0.0], "count": [204]}, "index": {"min": [133384], "max": [133587], "mean": [133485.5], "std": [58.88901991599679], "count": [204]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [204]}}} +{"episode_index": 308, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7372146895424837]], [[0.7132885457516339]], [[0.6662913779956426]]], "std": [[[0.23882870111191914]], [[0.215297805370519]], [[0.2354020941462907]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7372146895424837]], [[0.7132885457516339]], [[0.6662913779956426]]], "std": [[[0.23882870111191914]], [[0.215297805370519]], [[0.2354020941462907]]], "count": [100]}, "observation.state": {"min": [0.5268911719322205, 0.037509310990571976, 0.1191575676202774, 0.3615054488182068, -1.0798382759094238, -1.0212565660476685, -0.09682761877775192, -0.10346917808055878, 0.14191393554210663, -2.1218526363372803, -0.5749663710594177, 0.7983532547950745], "max": [0.5923876762390137, 0.14530321955680847, 0.1426035761833191, 2.5850577354431152, 0.3213690519332886, 0.6134840846061707, -0.09680446237325668, -0.10346145182847977, 0.14191782474517822, -2.1214332580566406, -0.5737366676330566, 0.7987096905708313], "mean": [0.5662757754325867, 0.09879865497350693, 0.13233502209186554, 1.5668449401855469, -0.5661509037017822, -0.14394164085388184, -0.09681620448827744, -0.10346832871437073, 0.14191484451293945, -2.121650457382202, -0.5738862752914429, 0.798498272895813], "std": [0.01710863970220089, 0.02993830107152462, 0.007170149125158787, 0.8755985498428345, 0.36574694514274597, 0.6174260377883911, 4.30472073276178e-06, 2.6729921955848113e-06, 1.1313379673083546e-06, 0.00019542187510523945, 0.0002599337894935161, 5.2091283578192815e-05], "count": [261]}, "action": {"min": [-0.11302754282951355, -0.06890442967414856, 0.126438170671463, -0.03445658087730408, 0.21934667229652405, -0.23045170307159424, 0.5029462575912476, 0.1828971952199936, -0.07599472254514694, 0.10909327864646912, -0.3384050726890564, -0.5475617051124573, 0.7296072840690613, 0.23135384917259216], "max": [-0.0983244776725769, -0.04936644807457924, 0.13952983915805817, 0.7473578453063965, 0.739004909992218, 0.4658181071281433, 0.7682166695594788, 0.18290811777114868, -0.07598608732223511, 0.10909690707921982, -0.33782684803009033, -0.5472647547721863, 0.7297248244285583, 0.23166994750499725], "mean": [-0.10411415994167328, -0.058872587978839874, 0.13361212611198425, 0.25677159428596497, 0.5643742680549622, 0.13204549252986908, 0.6655275225639343, 0.18290504813194275, -0.07599256187677383, 0.10909518599510193, -0.3379054367542267, -0.5475016236305237, 0.7296895384788513, 0.23154784739017487], "std": [0.00463835708796978, 0.0055210646241903305, 0.004512743558734655, 0.256095826625824, 0.16142073273658752, 0.2437109500169754, 0.06442127376794815, 1.780770389814279e-06, 1.5999924016796285e-06, 8.899617114366265e-07, 0.00012096489808754995, 5.66005110158585e-05, 2.107803629769478e-05, 9.427816985407844e-05], "count": [261]}, "timestamp": {"min": [0.0], "max": [8.666666666666666], "mean": [4.333333333333333], "std": [2.5114552369905794], "count": [261]}, "frame_index": {"min": [0], "max": [260], "mean": [130.0], "std": [75.34365710971738], "count": [261]}, "episode_index": {"min": [308], "max": [308], "mean": [308.0], "std": [0.0], "count": [261]}, "index": {"min": [133588], "max": [133848], "mean": [133718.0], "std": [75.34365710971738], "count": [261]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [261]}}} +{"episode_index": 309, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7385476633986928]], [[0.7184708877995643]], [[0.673508401416122]]], "std": [[[0.24010234150915266]], [[0.2189884440127565]], [[0.24132589044806005]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7385476633986928]], [[0.7184708877995643]], [[0.673508401416122]]], "std": [[[0.24010234150915266]], [[0.2189884440127565]], [[0.24132589044806005]]], "count": [100]}, "observation.state": {"min": [0.5366681218147278, 0.049502719193696976, 0.1172027587890625, 0.5292574167251587, -0.8923729658126831, -0.713817298412323, -0.061472948640584946, -0.12852944433689117, 0.1424117237329483, -2.1124165058135986, -0.5831645727157593, 0.8485584259033203], "max": [0.5941330194473267, 0.1400749236345291, 0.14030654728412628, 2.718001127243042, 0.377799928188324, 0.720374345779419, -0.06145751103758812, -0.12852172553539276, 0.14241300523281097, -2.1122066974639893, -0.5831645727157593, 0.8485584259033203], "mean": [0.5640066862106323, 0.09736371040344238, 0.1316554844379425, 1.6862019300460815, -0.353508859872818, -0.04083816334605217, -0.06146608665585518, -0.12852908670902252, 0.14241205155849457, -2.112212896347046, -0.5831660032272339, 0.8485568761825562], "std": [0.014564293436706066, 0.025711841881275177, 0.007467655465006828, 0.8910250663757324, 0.40306350588798523, 0.5740172266960144, 7.144745723053347e-06, 8.095074690572801e-07, 3.725159558598534e-07, 2.103587394230999e-05, 1.430511474609375e-06, 1.5497207641601562e-06], "count": [205]}, "action": {"min": [-0.11360855400562286, -0.06603296846151352, 0.1250815987586975, -0.12939536571502686, 0.132954403758049, -0.157001793384552, 0.5690340399742126, 0.1875046342611313, -0.07925990968942642, 0.10794633626937866, -0.32880473136901855, -0.5742622017860413, 0.7156366109848022, 0.2235458940267563], "max": [-0.09956130385398865, -0.049225881695747375, 0.13886775076389313, 0.6549732089042664, 0.6678324341773987, 0.48638948798179626, 0.7522205710411072, 0.187506765127182, -0.07925818860530853, 0.10794753581285477, -0.3287968337535858, -0.5742250680923462, 0.7156410813331604, 0.22364558279514313], "mean": [-0.10513175278902054, -0.05963706970214844, 0.13404327630996704, 0.2412731945514679, 0.4686170220375061, 0.19224190711975098, 0.700989305973053, 0.1875058263540268, -0.07925896346569061, 0.10794647783041, -0.32880067825317383, -0.5742624998092651, 0.715639591217041, 0.22354866564273834], "std": [0.004067552741616964, 0.004441854543983936, 0.0049467263743281364, 0.2907668352127075, 0.19376829266548157, 0.2619542181491852, 0.05595722049474716, 9.694747404864756e-07, 2.3440279051101243e-07, 2.3438430218902795e-07, 3.2561363241256913e-06, 3.7278800846252125e-06, 1.458863721381931e-06, 9.639966265240218e-06], "count": [205]}, "timestamp": {"min": [0.0], "max": [6.8], "mean": [3.4], "std": [1.9725899500684654], "count": [205]}, "frame_index": {"min": [0], "max": [204], "mean": [102.0], "std": [59.177698502053964], "count": [205]}, "episode_index": {"min": [309], "max": [309], "mean": [309.0], "std": [0.0], "count": [205]}, "index": {"min": [133849], "max": [134053], "mean": [133951.0], "std": [59.177698502053964], "count": [205]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [205]}}} +{"episode_index": 310, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7442276933551198]], [[0.7196714079520697]], [[0.6733809504357299]]], "std": [[[0.22613255883622244]], [[0.20582932665163806]], [[0.2284545657036174]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7442276933551198]], [[0.7196714079520697]], [[0.6733809504357299]]], "std": [[[0.22613255883622244]], [[0.20582932665163806]], [[0.2284545657036174]]], "count": [100]}, "observation.state": {"min": [0.49340540170669556, 0.059426430612802505, 0.12338866293430328, 0.012162020429968834, -1.1835453510284424, -1.0088870525360107, -0.08970727026462555, -0.13073042035102844, 0.13918395340442657, -2.011136293411255, -0.728272557258606, 0.6897482872009277], "max": [0.5517892837524414, 0.15194477140903473, 0.13740414381027222, 2.607494354248047, 0.21083012223243713, 0.9702273011207581, -0.0896763727068901, -0.13072270154953003, 0.1391865462064743, -2.0109264850616455, -0.728272557258606, 0.6897482872009277], "mean": [0.5251284241676331, 0.1139327883720398, 0.13060259819030762, 1.5690089464187622, -0.562288761138916, -0.2344229519367218, -0.08969312906265259, -0.13072723150253296, 0.13918544352054596, -2.0109262466430664, -0.7282717823982239, 0.6897475719451904], "std": [0.017731064930558205, 0.02939440682530403, 0.0044405292719602585, 1.0742177963256836, 0.38611674308776855, 0.8295002579689026, 7.88249326433288e-06, 3.742225544556277e-06, 6.336297815323633e-07, 1.3260169907880481e-05, 7.748603820800781e-07, 7.152557373046875e-07], "count": [251]}, "action": {"min": [-0.11773678660392761, -0.06603448837995529, 0.13141505420207977, -0.10195249319076538, 0.2629299759864807, -0.29917046427726746, 0.5111686587333679, 0.18293249607086182, -0.0767979621887207, 0.10414179414510727, -0.3917120099067688, -0.5061913132667542, 0.743177056312561, 0.19499492645263672], "max": [-0.10872361809015274, -0.05024523288011551, 0.1435103416442871, 0.7064529657363892, 0.7864448428153992, 0.42014026641845703, 0.6560035347938538, 0.182936891913414, -0.07679610699415207, 0.10414406657218933, -0.3916902244091034, -0.5061533451080322, 0.7431861758232117, 0.1950945407152176], "mean": [-0.11196844279766083, -0.05798322707414627, 0.13711224496364594, 0.3029467463493347, 0.5832828879356384, 0.12575533986091614, 0.6066386699676514, 0.18293435871601105, -0.0767974928021431, 0.10414309054613113, -0.3917057514190674, -0.5061888098716736, 0.7431795001029968, 0.1949961632490158], "std": [0.0030093942768871784, 0.003949951846152544, 0.0029547715093940496, 0.2912323772907257, 0.16904783248901367, 0.2632419764995575, 0.03859782591462135, 1.0329210908821551e-06, 4.31730200034508e-07, 7.485560331588204e-07, 3.7009538118581986e-06, 2.914048764068866e-06, 1.9908359263354214e-06, 6.2428553064819425e-06], "count": [251]}, "timestamp": {"min": [0.0], "max": [8.333333333333334], "mean": [4.166666666666667], "std": [2.41522945769824], "count": [251]}, "frame_index": {"min": [0], "max": [250], "mean": [125.0], "std": [72.4568837309472], "count": [251]}, "episode_index": {"min": [310], "max": [310], "mean": [310.0], "std": [0.0], "count": [251]}, "index": {"min": [134054], "max": [134304], "mean": [134179.0], "std": [72.4568837309472], "count": [251]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [251]}}} +{"episode_index": 311, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7223093600217866]], [[0.6956917919389978]], [[0.6455066122004358]]], "std": [[[0.2388431442829627]], [[0.21521356677415243]], [[0.23660481732776392]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7223093600217866]], [[0.6956917919389978]], [[0.6455066122004358]]], "std": [[[0.2388431442829627]], [[0.21521356677415243]], [[0.23660481732776392]]], "count": [100]}, "observation.state": {"min": [0.5170215368270874, 0.06915707141160965, 0.12368421256542206, 0.025372479110956192, -0.9963533878326416, -0.9930922985076904, -0.11288318783044815, -0.10217948257923126, 0.14576132595539093, -1.7454590797424316, -0.796454131603241, 0.5440077185630798], "max": [0.5902870893478394, 0.19306060671806335, 0.13912692666053772, 2.6861281394958496, 0.418244332075119, 0.5386928915977478, -0.11286001652479172, -0.10216403007507324, 0.14576132595539093, -1.7454590797424316, -0.796454131603241, 0.5440077185630798], "mean": [0.5534223914146423, 0.1191079244017601, 0.13206283748149872, 1.3077311515808105, -0.4251611530780792, -0.17485257983207703, -0.11287785321474075, -0.1021641343832016, 0.14576095342636108, -1.7454555034637451, -0.7964515686035156, 0.5440066456794739], "std": [0.02187139168381691, 0.03153638541698456, 0.00412423862144351, 1.0052486658096313, 0.3500800132751465, 0.6005000472068787, 4.88241448692861e-06, 2.1633611595461844e-06, 3.725290298461914e-07, 3.5762786865234375e-06, 2.562999725341797e-06, 1.0728836059570312e-06], "count": [302]}, "action": {"min": [-0.11203167587518692, -0.06625981628894806, 0.12892676889896393, -0.13558615744113922, 0.17622853815555573, -0.5031709671020508, 0.4843156337738037, 0.1783234030008316, -0.07825718075037003, 0.10994184762239456, -0.4339078664779663, -0.47190749645233154, 0.7616174817085266, 0.09469535946846008], "max": [-0.1043936088681221, -0.04407607764005661, 0.14582961797714233, 0.7357057929039001, 0.6860353350639343, 0.4562344253063202, 0.7655190229415894, 0.17832651734352112, -0.078255295753479, 0.10994350165128708, -0.4338974952697754, -0.47190025448799133, 0.761626124382019, 0.09469813108444214], "mean": [-0.10669218003749847, -0.05656391382217407, 0.13680565357208252, 0.21793726086616516, 0.5332762598991394, -0.02223682589828968, 0.6692101955413818, 0.17832420766353607, -0.07825525850057602, 0.10994331538677216, -0.43390563130378723, -0.4719002842903137, 0.7616236805915833, 0.09469569474458694], "std": [0.0020778742618858814, 0.005745909176766872, 0.004275523591786623, 0.2922743856906891, 0.1285383105278015, 0.3357711136341095, 0.07137464731931686, 6.651218882325338e-07, 2.792133102502703e-07, 2.616436063362926e-07, 2.1903240394749446e-06, 1.0321376748834155e-06, 1.8425765802021488e-06, 4.1443024656473426e-07], "count": [302]}, "timestamp": {"min": [0.0], "max": [10.033333333333333], "mean": [5.016666666666667], "std": [2.9059804235786277], "count": [302]}, "frame_index": {"min": [0], "max": [301], "mean": [150.5], "std": [87.17941270735884], "count": [302]}, "episode_index": {"min": [311], "max": [311], "mean": [311.0], "std": [0.0], "count": [302]}, "index": {"min": [134305], "max": [134606], "mean": [134455.5], "std": [87.17941270735884], "count": [302]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [302]}}} +{"episode_index": 312, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7377252995642701]], [[0.7131839460784314]], [[0.6660549564270153]]], "std": [[[0.22811365814258242]], [[0.2059595008057178]], [[0.22711408724446158]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7377252995642701]], [[0.7131839460784314]], [[0.6660549564270153]]], "std": [[[0.22811365814258242]], [[0.2059595008057178]], [[0.22711408724446158]]], "count": [100]}, "observation.state": {"min": [0.49008461833000183, 0.050715189427137375, 0.12357532978057861, 0.2220616489648819, -1.2155183553695679, -0.9643890857696533, -0.1280815154314041, -0.13995909690856934, 0.14130857586860657, -2.212857961654663, -0.4824634790420532, 0.8254154920578003], "max": [0.5621222853660583, 0.16471044719219208, 0.13951969146728516, 2.7358245849609375, 0.33311977982521057, 0.7913100123405457, -0.12805835902690887, -0.13994364440441132, 0.14130987226963043, -2.2124385833740234, -0.4824634790420532, 0.8254154920578003], "mean": [0.5352591276168823, 0.11193684488534927, 0.13152356445789337, 1.5977150201797485, -0.5805876851081848, -0.17372098565101624, -0.1280725747346878, -0.13995777070522308, 0.1413094848394394, -2.2127413749694824, -0.48246243596076965, 0.8254144191741943], "std": [0.022011086344718933, 0.03438834100961685, 0.004858129192143679, 0.9830185174942017, 0.3894551992416382, 0.7384777069091797, 7.1049239522835705e-06, 4.6094946810626425e-06, 5.523733648260531e-07, 0.00018327181169297546, 1.043081283569336e-06, 1.0728836059570312e-06], "count": [205]}, "action": {"min": [-0.11946702003479004, -0.06731872260570526, 0.12847864627838135, -0.08911871165037155, 0.20791296660900116, -0.2407219111919403, 0.47570618987083435, 0.17968106269836426, -0.07964272797107697, 0.10562453418970108, -0.30880364775657654, -0.5757077932357788, 0.7041602730751038, 0.2780815660953522], "max": [-0.10469034314155579, -0.04926024004817009, 0.1410292088985443, 0.7196122407913208, 0.7662490606307983, 0.47434520721435547, 0.7201810479164124, 0.17968513071537018, -0.07963994145393372, 0.10562818497419357, -0.30878978967666626, -0.5756334066390991, 0.7041904926300049, 0.2782805860042572], "mean": [-0.1094517931342125, -0.05791701376438141, 0.13648995757102966, 0.2640603184700012, 0.5781574845314026, 0.14298149943351746, 0.634101152420044, 0.17968295514583588, -0.07964138686656952, 0.10562649369239807, -0.3087969124317169, -0.575657308101654, 0.7041682600975037, 0.27822446823120117], "std": [0.004493243061006069, 0.004604471381753683, 0.0028125427197664976, 0.2803938686847687, 0.16446493566036224, 0.2521604597568512, 0.06498988717794418, 1.0036753792519448e-06, 7.035829412416206e-07, 8.408113671976025e-07, 3.187881702615414e-06, 2.9614531740662642e-05, 9.611932910047472e-06, 8.621946471976116e-05], "count": [205]}, "timestamp": {"min": [0.0], "max": [6.8], "mean": [3.4], "std": [1.9725899500684654], "count": [205]}, "frame_index": {"min": [0], "max": [204], "mean": [102.0], "std": [59.177698502053964], "count": [205]}, "episode_index": {"min": [312], "max": [312], "mean": [312.0], "std": [0.0], "count": [205]}, "index": {"min": [134607], "max": [134811], "mean": [134709.0], "std": [59.177698502053964], "count": [205]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [205]}}} +{"episode_index": 313, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7279279057734205]], [[0.7037770125272331]], [[0.656839596949891]]], "std": [[[0.24220088831268471]], [[0.21930232939135863]], [[0.23945753818968551]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7279279057734205]], [[0.7037770125272331]], [[0.656839596949891]]], "std": [[[0.24220088831268471]], [[0.21930232939135863]], [[0.23945753818968551]]], "count": [100]}, "observation.state": {"min": [0.5118627548217773, 0.0545070506632328, 0.12779085338115692, 0.24470816552639008, -1.1040228605270386, -1.0706281661987305, -0.06645411998033524, -0.12937894463539124, 0.13858376443386078, -2.2791199684143066, -0.718298077583313, 0.9505011439323425], "max": [0.5944805145263672, 0.1494966596364975, 0.14228078722953796, 2.831233501434326, 0.6031135320663452, 0.8019883036613464, -0.06642322987318039, -0.12934033572673798, 0.1385863572359085, -2.278700590133667, -0.718298077583313, 0.9506645202636719], "mean": [0.5578944087028503, 0.1010364443063736, 0.13665582239627838, 1.6469874382019043, -0.4567118287086487, -0.15969756245613098, -0.06643816828727722, -0.12935864925384521, 0.13858498632907867, -2.278855085372925, -0.7182983160018921, 0.9505200982093811], "std": [0.025313301011919975, 0.03059624880552292, 0.004454897250980139, 1.0401194095611572, 0.4899860620498657, 0.7749852538108826, 3.806676204476389e-06, 1.2694743418251164e-05, 1.2828605804315885e-06, 0.00019957488984800875, 2.384185791015625e-07, 5.2143972425255924e-05], "count": [210]}, "action": {"min": [-0.11575436592102051, -0.06948604434728622, 0.12967482209205627, -0.11218629032373428, 0.11739945411682129, -0.2257263958454132, 0.3887186050415039, 0.18687745928764343, -0.07549736648797989, 0.10498429089784622, -0.40311944484710693, -0.5476479530334473, 0.6825628280639648, 0.26773837208747864], "max": [-0.0994965061545372, -0.052341245114803314, 0.14647094905376434, 0.7798739671707153, 0.7537931203842163, 0.4916924834251404, 0.6830441355705261, 0.18688321113586426, -0.07549025863409042, 0.1049870178103447, -0.40308743715286255, -0.5474977493286133, 0.6826142072677612, 0.2679665684700012], "mean": [-0.10373233258724213, -0.06121854484081268, 0.13790825009346008, 0.27796921133995056, 0.5457844138145447, 0.17394812405109406, 0.6054782867431641, 0.18688029050827026, -0.07549378275871277, 0.10498540848493576, -0.40309759974479675, -0.5475673079490662, 0.6826009750366211, 0.26784247159957886], "std": [0.005069201346486807, 0.004651706200093031, 0.003978847526013851, 0.32512757182121277, 0.20296138525009155, 0.2717324495315552, 0.08515089005231857, 9.362445325677982e-07, 2.1156367893127026e-06, 8.192994869204995e-07, 8.18468561192276e-06, 4.544301191344857e-05, 1.311373125645332e-05, 9.001146827358752e-05], "count": [210]}, "timestamp": {"min": [0.0], "max": [6.966666666666667], "mean": [3.4833333333333334], "std": [2.0207030313088414], "count": [210]}, "frame_index": {"min": [0], "max": [209], "mean": [104.5], "std": [60.621090939265244], "count": [210]}, "episode_index": {"min": [313], "max": [313], "mean": [313.0], "std": [0.0], "count": [210]}, "index": {"min": [134812], "max": [135021], "mean": [134916.5], "std": [60.621090939265244], "count": [210]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [210]}}} +{"episode_index": 314, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7505131263616558]], [[0.7267270098039216]], [[0.6805157952069716]]], "std": [[[0.22919751344283726]], [[0.20958114809914424]], [[0.2314922381756796]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7505131263616558]], [[0.7267270098039216]], [[0.6805157952069716]]], "std": [[[0.22919751344283726]], [[0.20958114809914424]], [[0.2314922381756796]]], "count": [100]}, "observation.state": {"min": [0.5378342866897583, 0.05612881854176521, 0.12309829145669937, 0.2948240637779236, -1.0154824256896973, -0.8362569808959961, -0.059410981833934784, -0.14816835522651672, 0.13735747337341309, -2.1260464191436768, -0.5253673195838928, 0.656240701675415], "max": [0.5961641073226929, 0.12346333265304565, 0.13983339071273804, 2.8857529163360596, 0.472898930311203, 0.6972537040710449, -0.05939554050564766, -0.14813746511936188, 0.13736006617546082, -2.125627040863037, -0.5244109034538269, 0.6568275690078735], "mean": [0.5657227635383606, 0.09366630017757416, 0.1325848549604416, 1.6552327871322632, -0.4398807883262634, -0.11004246771335602, -0.05940670147538185, -0.14814849197864532, 0.1373586356639862, -2.125898838043213, -0.5246120095252991, 0.656506359577179], "std": [0.016800107434391975, 0.020456161350011826, 0.00497099757194519, 1.002150058746338, 0.4142449200153351, 0.6426838040351868, 3.9538640521641355e-06, 9.801779015106149e-06, 1.0731897646110156e-06, 0.00019527463882695884, 0.0002591689699329436, 7.782161264913157e-05], "count": [246]}, "action": {"min": [-0.11136042326688766, -0.06696921586990356, 0.12764737010002136, -0.0881679579615593, 0.12836740911006927, -0.2454749494791031, 0.4476838707923889, 0.18849417567253113, -0.07857237756252289, 0.10256599634885788, -0.275254487991333, -0.5195983052253723, 0.7644407153129578, 0.2644476294517517], "max": [-0.10049833357334137, -0.053090665489435196, 0.14009732007980347, 0.7116996049880981, 0.7124530673027039, 0.5288097262382507, 0.7623059749603271, 0.1885024607181549, -0.07856754213571548, 0.10257061570882797, -0.27472421526908875, -0.5194203853607178, 0.7646321058273315, 0.26474159955978394], "mean": [-0.10437490791082382, -0.06045679748058319, 0.13393379747867584, 0.2617209851741791, 0.5212993621826172, 0.17578761279582977, 0.6476248502731323, 0.18850073218345642, -0.07857034355401993, 0.10256873816251755, -0.27485892176628113, -0.5195109844207764, 0.7645472884178162, 0.2646307945251465], "std": [0.0035317938309162855, 0.003837443655356765, 0.0035987875889986753, 0.28956425189971924, 0.18767976760864258, 0.2906273603439331, 0.07677537947893143, 1.8814010900314315e-06, 1.0220080639555817e-06, 1.05425624497002e-06, 0.00012662734661716968, 4.397645898279734e-05, 2.8873728297185153e-05, 9.229140414390713e-05], "count": [246]}, "timestamp": {"min": [0.0], "max": [8.166666666666666], "mean": [4.083333333333333], "std": [2.3671165456607204], "count": [246]}, "frame_index": {"min": [0], "max": [245], "mean": [122.5], "std": [71.01349636982161], "count": [246]}, "episode_index": {"min": [314], "max": [314], "mean": [314.0], "std": [0.0], "count": [246]}, "index": {"min": [135022], "max": [135267], "mean": [135144.5], "std": [71.01349636982161], "count": [246]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [246]}}} +{"episode_index": 315, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7464226851851852]], [[0.7248871732026143]], [[0.6791082543572985]]], "std": [[[0.23146486679114994]], [[0.21177124678544104]], [[0.23346278955556346]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7464226851851852]], [[0.7248871732026143]], [[0.6791082543572985]]], "std": [[[0.23146486679114994]], [[0.21177124678544104]], [[0.23346278955556346]]], "count": [100]}, "observation.state": {"min": [0.5301424264907837, 0.05522526055574417, 0.11885812878608704, 0.4231543242931366, -1.0590695142745972, -0.863273561000824, -0.07756713032722473, -0.1418125331401825, 0.14145635068416595, -2.1059160232543945, -0.7359241843223572, 0.7508460283279419], "max": [0.5999482274055481, 0.14360421895980835, 0.13982562720775604, 2.719468832015991, 0.4595085382461548, 0.78994220495224, -0.07755167782306671, -0.14179709553718567, 0.14145764708518982, -2.105496644973755, -0.735787570476532, 0.7509574890136719], "mean": [0.5629076361656189, 0.09690862149000168, 0.13119210302829742, 1.7481286525726318, -0.4258614480495453, -0.12777410447597504, -0.0775599554181099, -0.14181075990200043, 0.1414579302072525, -2.1055259704589844, -0.7358934879302979, 0.7509337067604065], "std": [0.018422039225697517, 0.022321585565805435, 0.006244678515940905, 0.9170685410499573, 0.4624411165714264, 0.6628989577293396, 7.635037945874501e-06, 5.16762656843639e-06, 5.429560019365454e-07, 9.613839938538149e-05, 5.7990619097836316e-05, 4.736241317004897e-05], "count": [225]}, "action": {"min": [-0.11692248284816742, -0.06600397825241089, 0.12648962438106537, -0.10449846088886261, 0.1453888863325119, -0.14493419229984283, 0.5010165572166443, 0.1845540702342987, -0.07901762425899506, 0.10553885996341705, -0.3918655514717102, -0.5136370658874512, 0.7282968163490295, 0.22847600281238556], "max": [-0.1011090874671936, -0.04976802319288254, 0.13859716057777405, 0.7244331240653992, 0.7238531112670898, 0.4864489734172821, 0.734406054019928, 0.18455737829208374, -0.0790133848786354, 0.10554233938455582, -0.3917856514453888, -0.5135489106178284, 0.7283398509025574, 0.2286708652973175], "mean": [-0.1055343747138977, -0.05951520800590515, 0.13318733870983124, 0.28137874603271484, 0.5052338242530823, 0.22185690701007843, 0.6520020365715027, 0.1845550388097763, -0.07901652902364731, 0.10553975403308868, -0.3918444514274597, -0.5136278867721558, 0.728307843208313, 0.22849714756011963], "std": [0.004760370589792728, 0.004365229979157448, 0.003677175147458911, 0.29718998074531555, 0.20337411761283875, 0.24014092981815338, 0.06234559416770935, 1.0556923371041194e-06, 7.84682413268456e-07, 6.094054469940602e-07, 3.0316879929159768e-05, 1.87305522558745e-05, 1.5492867532884702e-05, 4.397605880512856e-05], "count": [225]}, "timestamp": {"min": [0.0], "max": [7.466666666666667], "mean": [3.7333333333333334], "std": [2.1650421260121955], "count": [225]}, "frame_index": {"min": [0], "max": [224], "mean": [112.0], "std": [64.95126378036586], "count": [225]}, "episode_index": {"min": [315], "max": [315], "mean": [315.0], "std": [0.0], "count": [225]}, "index": {"min": [135268], "max": [135492], "mean": [135380.0], "std": [64.95126378036586], "count": [225]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [225]}}} +{"episode_index": 316, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7492669553376907]], [[0.7261809558823529]], [[0.6803814733115469]]], "std": [[[0.22835861879367]], [[0.20919848124842463]], [[0.23062276706184687]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7492669553376907]], [[0.7261809558823529]], [[0.6803814733115469]]], "std": [[[0.22835861879367]], [[0.20919848124842463]], [[0.23062276706184687]]], "count": [100]}, "observation.state": {"min": [0.49332043528556824, 0.06567411869764328, 0.12198477983474731, 0.46215665340423584, -1.0030485391616821, -0.8288348317146301, -0.05006647855043411, -0.1393180936574936, 0.13751822710037231, -2.227116823196411, -0.7588791251182556, 0.8424514532089233], "max": [0.5907504558563232, 0.14019076526165009, 0.1422976404428482, 2.6821441650390625, 0.24457933008670807, 0.6159918904304504, -0.05005102977156639, -0.13929493725299835, 0.13751822710037231, -2.2266974449157715, -0.7588791251182556, 0.8430231809616089], "mean": [0.5520736575126648, 0.10578527301549911, 0.13343362510204315, 1.679662823677063, -0.4055536389350891, -0.13707785308361053, -0.05005306750535965, -0.1393032968044281, 0.1375180184841156, -2.226828098297119, -0.7588802576065063, 0.8429167866706848], "std": [0.02676759473979473, 0.02415216900408268, 0.00609619403257966, 0.9128347635269165, 0.3637343943119049, 0.5905968546867371, 3.926558292732807e-06, 7.16675458534155e-06, 2.086162567138672e-07, 0.0001912403095047921, 1.1324882507324219e-06, 0.00015179702313616872], "count": [229]}, "action": {"min": [-0.12050848454236984, -0.06388974189758301, 0.12913531064987183, -0.10287195444107056, 0.2139870971441269, -0.23436209559440613, 0.5667771697044373, 0.18864805996418, -0.0758805200457573, 0.10329671204090118, -0.39814314246177673, -0.5151688456535339, 0.7115132212638855, 0.2642625868320465], "max": [-0.09948836266994476, -0.05256146192550659, 0.143281951546669, 0.6509383916854858, 0.6867365837097168, 0.4908754527568817, 0.7762166261672974, 0.18865162134170532, -0.07587642967700958, 0.10329997539520264, -0.39805877208709717, -0.5149310231208801, 0.7116623520851135, 0.2645352780818939], "mean": [-0.10584534704685211, -0.059075240045785904, 0.13694337010383606, 0.2529643177986145, 0.4971837103366852, 0.17337945103645325, 0.684944748878479, 0.18865008652210236, -0.07587839663028717, 0.1032983809709549, -0.3981193006038666, -0.5150977969169617, 0.7115442156791687, 0.2643461525440216], "std": [0.006869573146104813, 0.003560085315257311, 0.003535832976922393, 0.28180232644081116, 0.1633736938238144, 0.28140610456466675, 0.06568607687950134, 9.362133255308436e-07, 1.061084731190931e-06, 8.389736763092515e-07, 2.133593625330832e-05, 6.746479630237445e-05, 3.8095506170066074e-05, 9.120259346673265e-05], "count": [229]}, "timestamp": {"min": [0.0], "max": [7.6], "mean": [3.8000000000000003], "std": [2.2035325174717877], "count": [229]}, "frame_index": {"min": [0], "max": [228], "mean": [114.0], "std": [66.10597552415364], "count": [229]}, "episode_index": {"min": [316], "max": [316], "mean": [316.0], "std": [0.0], "count": [229]}, "index": {"min": [135493], "max": [135721], "mean": [135607.0], "std": [66.10597552415364], "count": [229]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [229]}}} +{"episode_index": 317, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7466567293028322]], [[0.7200709095860567]], [[0.6734786029411765]]], "std": [[[0.23789090407897126]], [[0.21674677748820678]], [[0.23726618778805966]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7466567293028322]], [[0.7200709095860567]], [[0.6734786029411765]]], "std": [[[0.23789090407897126]], [[0.21674677748820678]], [[0.23726618778805966]]], "count": [100]}, "observation.state": {"min": [0.5468698740005493, 0.013954980298876762, 0.12686790525913239, 0.2176581621170044, -0.9997692704200745, -0.975386381149292, -0.07030776143074036, -0.119926318526268, 0.13474935293197632, -2.2732486724853516, -0.5193553566932678, 0.741148054599762], "max": [0.6090764999389648, 0.12453678995370865, 0.14567188918590546, 2.663691282272339, 0.5559739470481873, 0.7798380255699158, -0.07028459012508392, -0.11991087347269058, 0.13475194573402405, -2.2732486724853516, -0.5193553566932678, 0.7413114309310913], "mean": [0.5837202072143555, 0.0809653028845787, 0.13704967498779297, 1.6099021434783936, -0.3675176501274109, -0.15722204744815826, -0.070298932492733, -0.11992421001195908, 0.1347505748271942, -2.2732527256011963, -0.5193555355072021, 0.7411738038063049], "std": [0.017265230417251587, 0.03453841805458069, 0.005748892202973366, 0.9605501890182495, 0.4804774522781372, 0.705429196357727, 3.3018095564329997e-06, 5.27383099324652e-06, 5.555413622460037e-07, 4.0531158447265625e-06, 1.7881393432617188e-07, 5.78435865463689e-05], "count": [253]}, "action": {"min": [-0.10962193459272385, -0.07534947246313095, 0.12704506516456604, -0.13665875792503357, 0.110425665974617, -0.27388253808021545, 0.45983654260635376, 0.1876758635044098, -0.07362235337495804, 0.10290905088186264, -0.28886207938194275, -0.5162488222122192, 0.7409639954566956, 0.3178369402885437], "max": [-0.09453076869249344, -0.05333583429455757, 0.14068762958049774, 0.7758064866065979, 0.726630687713623, 0.42983314394950867, 0.7725756764411926, 0.1876789629459381, -0.07361915707588196, 0.10291147977113724, -0.2888232171535492, -0.5161818861961365, 0.7410116791725159, 0.3178631663322449], "mean": [-0.0995330736041069, -0.06357510387897491, 0.1347561925649643, 0.2965499460697174, 0.5075992941856384, 0.149068683385849, 0.634918212890625, 0.1876767873764038, -0.07362154126167297, 0.10290937125682831, -0.2888340353965759, -0.516197144985199, 0.7410021424293518, 0.3178595304489136], "std": [0.0041551669128239155, 0.0065254769288003445, 0.0037349823396652937, 0.33307144045829773, 0.21329225599765778, 0.25818201899528503, 0.07726916670799255, 4.993908078176901e-07, 5.54914777239901e-07, 6.645368557656184e-07, 9.596180461812764e-06, 1.959666406037286e-05, 1.3643640158989001e-05, 8.865684321790468e-06], "count": [253]}, "timestamp": {"min": [0.0], "max": [8.4], "mean": [4.199999999999999], "std": [2.434474618201362], "count": [253]}, "frame_index": {"min": [0], "max": [252], "mean": [126.0], "std": [73.03423854604085], "count": [253]}, "episode_index": {"min": [317], "max": [317], "mean": [317.0], "std": [0.0], "count": [253]}, "index": {"min": [135722], "max": [135974], "mean": [135848.0], "std": [73.03423854604085], "count": [253]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [253]}}} +{"episode_index": 318, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7389632434640523]], [[0.7182967647058823]], [[0.6719675871459695]]], "std": [[[0.23521139710652295]], [[0.21872472084600333]], [[0.2425523029057154]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7389632434640523]], [[0.7182967647058823]], [[0.6719675871459695]]], "std": [[[0.23521139710652295]], [[0.21872472084600333]], [[0.2425523029057154]]], "count": [100]}, "observation.state": {"min": [0.5064182281494141, 0.03123844973742962, 0.12703382968902588, 0.17047792673110962, -1.1574478149414062, -1.1388059854507446, -0.033601611852645874, -0.1548253446817398, 0.15245667099952698, -2.050557851791382, -1.0568833351135254, 0.7439550757408142], "max": [0.5799077153205872, 0.14783628284931183, 0.1446646749973297, 2.6588685512542725, 0.25537362694740295, 0.7203266024589539, -0.033562999218702316, -0.15480217337608337, 0.1524592638015747, -2.049928903579712, -1.0568833351135254, 0.7439550757408142], "mean": [0.5542277097702026, 0.09334637224674225, 0.1360531449317932, 1.5274770259857178, -0.5519284009933472, -0.2539028525352478, -0.033576834946870804, -0.15481172502040863, 0.15245842933654785, -2.0502452850341797, -1.056884527206421, 0.7439565062522888], "std": [0.018648503348231316, 0.03346268832683563, 0.0046621463261544704, 0.9875879883766174, 0.376897931098938, 0.740031898021698, 1.0831755389517639e-05, 7.774736332066823e-06, 7.81186656695354e-07, 0.00017571233911439776, 1.1920928955078125e-06, 1.430511474609375e-06], "count": [261]}, "action": {"min": [-0.11206761002540588, -0.0725724846124649, 0.1326887607574463, -0.10050180554389954, 0.2745145559310913, -0.3614351451396942, 0.44596028327941895, 0.18826211988925934, -0.08569313585758209, 0.11205360293388367, -0.5103899836540222, -0.4554789662361145, 0.7047458291053772, 0.1880805641412735], "max": [-0.09888377785682678, -0.05274537205696106, 0.14323587715625763, 0.7601418495178223, 0.7437546849250793, 0.40549835562705994, 0.7310543060302734, 0.1882697492837906, -0.0856882631778717, 0.11206084489822388, -0.510344922542572, -0.4553169906139374, 0.7048113942146301, 0.18834854662418365], "mean": [-0.10414022207260132, -0.06166157126426697, 0.13729916512966156, 0.2818605303764343, 0.5854024887084961, 0.08223363012075424, 0.619356632232666, 0.18826644122600555, -0.08569074422121048, 0.11205767095088959, -0.5103661417961121, -0.4553973972797394, 0.7047797441482544, 0.1882118284702301], "std": [0.003935359418392181, 0.004783928859978914, 0.0029344719368964434, 0.29480406641960144, 0.14545519649982452, 0.2708542048931122, 0.07787933945655823, 1.7406939605280058e-06, 1.4429755310629844e-06, 1.4187759234118857e-06, 9.712417522678152e-06, 4.3847197957802564e-05, 1.538861579319928e-05, 7.437979365931824e-05], "count": [261]}, "timestamp": {"min": [0.0], "max": [8.666666666666666], "mean": [4.333333333333333], "std": [2.5114552369905794], "count": [261]}, "frame_index": {"min": [0], "max": [260], "mean": [130.0], "std": [75.34365710971738], "count": [261]}, "episode_index": {"min": [318], "max": [318], "mean": [318.0], "std": [0.0], "count": [261]}, "index": {"min": [135975], "max": [136235], "mean": [136105.0], "std": [75.34365710971738], "count": [261]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [261]}}} +{"episode_index": 319, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7366883986928104]], [[0.7140790359477125]], [[0.6681282216775599]]], "std": [[[0.23627147088006498]], [[0.22104926197255245]], [[0.24457183983948055]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7366883986928104]], [[0.7140790359477125]], [[0.6681282216775599]]], "std": [[[0.23627147088006498]], [[0.22104926197255245]], [[0.24457183983948055]]], "count": [100]}, "observation.state": {"min": [0.5127971768379211, 0.04296929016709328, 0.13143861293792725, -0.005032559856772423, -1.2898485660552979, -0.9638277292251587, -0.02195573039352894, -0.14919547736644745, 0.14793521165847778, -1.953681230545044, -0.9885650873184204, 0.5582952499389648], "max": [0.6062808632850647, 0.12543262541294098, 0.14771872758865356, 2.7913925647735596, 0.3649560809135437, 1.0401666164398193, -0.021932559087872505, -0.14918002486228943, 0.14793521165847778, -1.9532618522644043, -0.9885650873184204, 0.5587853193283081], "mean": [0.5672314763069153, 0.09619508683681488, 0.1384114772081375, 1.2581790685653687, -0.57001131772995, 0.0965428352355957, -0.02194255404174328, -0.14918912947177887, 0.14793504774570465, -1.9534997940063477, -0.988565981388092, 0.558722198009491], "std": [0.027825359255075455, 0.025951184332370758, 0.004720046650618315, 1.1805267333984375, 0.37393632531166077, 0.8280819058418274, 4.065158009325387e-06, 7.272359198395861e-06, 1.6391277313232422e-07, 0.00019864898058585823, 8.940696716308594e-07, 0.00013093891902826726], "count": [300]}, "action": {"min": [-0.11131032556295395, -0.07019062340259552, 0.13082855939865112, -0.15734326839447021, 0.20860080420970917, -0.35467034578323364, 0.441255122423172, 0.1899597942829132, -0.08327434957027435, 0.10901562869548798, -0.4649730920791626, -0.4249087870121002, 0.7521560788154602, 0.1936822086572647], "max": [-0.09693119674921036, -0.05519358441233635, 0.14495573937892914, 0.7313990592956543, 0.7928483486175537, 0.48958420753479004, 0.724292516708374, 0.18996411561965942, -0.08327032625675201, 0.10901891440153122, -0.4648860692977905, -0.42462289333343506, 0.7522929906845093, 0.19398058950901031], "mean": [-0.1017417386174202, -0.062283847481012344, 0.1383182257413864, 0.16485349833965302, 0.618711531162262, 0.06782710552215576, 0.595195472240448, 0.18996217846870422, -0.08327237516641617, 0.10901719331741333, -0.4649437367916107, -0.4248253405094147, 0.7521917819976807, 0.1938045173883438], "std": [0.004657617304474115, 0.0031164076644927263, 0.003678148379549384, 0.3157044053077698, 0.17072777450084686, 0.3157911002635956, 0.05118744447827339, 8.165405915860902e-07, 1.3526405382435769e-06, 1.0918823818428791e-06, 1.9466029698378406e-05, 7.056679896777496e-05, 3.128149182884954e-05, 9.349487663712353e-05], "count": [300]}, "timestamp": {"min": [0.0], "max": [9.966666666666667], "mean": [4.983333333333333], "std": [2.8867353083961027], "count": [300]}, "frame_index": {"min": [0], "max": [299], "mean": [149.5], "std": [86.60205925188308], "count": [300]}, "episode_index": {"min": [319], "max": [319], "mean": [319.0], "std": [0.0], "count": [300]}, "index": {"min": [136236], "max": [136535], "mean": [136385.5], "std": [86.60205925188308], "count": [300]}, "task_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [300]}}} +{"episode_index": 320, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42913968085732795]], [[0.3998949876346935]], [[0.3584178266501796]]], "std": [[[0.22882363481605753]], [[0.21177095954822311]], [[0.21543403395669197]]], "count": [185]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4384358829417653]], [[0.4247515279985868]], [[0.3871770947418006]]], "std": [[[0.22933581863586297]], [[0.19747572422324222]], [[0.21157221495418796]]], "count": [185]}, "observation.state": {"min": [0.5111290812492371, -0.22020600736141205, 0.10167580097913742, 0.40784692764282227, -1.4021637439727783, -1.4019831418991089, -0.7606351375579834, -0.6062886118888855, 0.15531499683856964, -0.4416070282459259, -0.5925924777984619, -1.4072991609573364], "max": [0.700243353843689, -0.04286117106676102, 0.12370236217975616, 2.7660200595855713, -0.05110204964876175, 0.7008721828460693, -0.5505227446556091, -0.505676805973053, 0.17068250477313995, 1.7746059894561768, 0.9749014377593994, 1.401552438735962], "mean": [0.6128629446029663, -0.13391990959644318, 0.10970968753099442, 1.7026997804641724, -0.8253069519996643, -0.07595790177583694, -0.6382124423980713, -0.549445390701294, 0.16304539144039154, 0.9039605259895325, 0.40904340147972107, 0.2460183948278427], "std": [0.046985477209091187, 0.043021298944950104, 0.004139635246247053, 0.49293914437294006, 0.3936805725097656, 0.5604087114334106, 0.04571448639035225, 0.02625253237783909, 0.005372554995119572, 0.6368220448493958, 0.43532341718673706, 0.7973223924636841], "count": [1061]}, "action": {"min": [-0.12395615130662918, -0.0830211415886879, 0.08416623622179031, 0.0014758313773199916, 0.14013274013996124, -0.20643934607505798, 0.36325380206108093, 0.10610739886760712, -0.12901484966278076, 0.046986088156700134, -0.6629420518875122, -0.5217441916465759, -0.6380389332771301, -0.5816745758056641], "max": [-0.09576669335365295, -0.0674416646361351, 0.11154889315366745, 0.3931175470352173, 0.8460259437561035, 0.39372897148132324, 0.9181874990463257, 0.12878218293190002, -0.11629762500524521, 0.058869846165180206, 0.6416383981704712, 0.46512606739997864, 0.7019099593162537, 0.9942417144775391], "mean": [-0.10978704690933228, -0.0761001706123352, 0.09340931475162506, 0.22749172151088715, 0.6097747683525085, 0.1763056218624115, 0.670725405216217, 0.1188310831785202, -0.12154386192560196, 0.051559723913669586, 0.09412015229463577, -0.19274987280368805, -0.15811993181705475, 0.6297838091850281], "std": [0.006232929416000843, 0.002626969013363123, 0.006985061336308718, 0.10081271827220917, 0.19812031090259552, 0.12872865796089172, 0.17169572412967682, 0.005642705596983433, 0.003726288676261902, 0.0030475312378257513, 0.3499435484409332, 0.3064733147621155, 0.3994063436985016, 0.395534873008728], "count": [1061]}, "timestamp": {"min": [0.0], "max": [35.333333333333336], "mean": [17.666666666666668], "std": [10.209472725529626], "count": [1061]}, "frame_index": {"min": [0], "max": [1060], "mean": [530.0], "std": [306.2841817658888], "count": [1061]}, "episode_index": {"min": [320], "max": [320], "mean": [320.0], "std": [0.0], "count": [1061]}, "index": {"min": [136536], "max": [137596], "mean": [137066.0], "std": [306.2841817658888], "count": [1061]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1061]}}} +{"episode_index": 321, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4334636399551996]], [[0.40354947413237596]], [[0.36090462464328454]]], "std": [[[0.22700584165982116]], [[0.20960585177745078]], [[0.21363094279101513]]], "count": [142]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44518783178373067]], [[0.4294039188836724]], [[0.39120410069348555]]], "std": [[[0.2268308107479749]], [[0.19475321508449644]], [[0.2095937729514716]]], "count": [142]}, "observation.state": {"min": [0.5120326280593872, -0.24474884569644928, 0.10225912928581238, 0.34892407059669495, -1.2122390270233154, -0.8414915204048157, -0.6368165612220764, -0.5840007662773132, 0.15474462509155273, 0.26987096667289734, 0.34090808033943176, -0.9537561535835266], "max": [0.7514450550079346, -0.05817535147070885, 0.11619295179843903, 2.1109485626220703, 0.11245183646678925, 0.77517169713974, -0.5239565372467041, -0.5195545554161072, 0.16802380979061127, 1.7058277130126953, 0.9220231175422668, 0.7894923090934753], "mean": [0.6062511205673218, -0.145901158452034, 0.1100289598107338, 1.2341817617416382, -0.5948658585548401, 0.15624502301216125, -0.5660377740859985, -0.5544979572296143, 0.16218407452106476, 0.7884426116943359, 0.7094767689704895, -0.011745941825211048], "std": [0.07460924983024597, 0.058183472603559494, 0.003333157394081354, 0.6812577247619629, 0.4099837839603424, 0.5562743544578552, 0.026895027607679367, 0.015270710922777653, 0.002954701194539666, 0.4919579029083252, 0.15954336524009705, 0.4067452847957611], "count": [747]}, "action": {"min": [-0.1252812147140503, -0.0891231819987297, 0.07834666967391968, -0.09340545535087585, 0.4015839993953705, -0.30899742245674133, 0.4555686116218567, 0.12085014581680298, -0.12761084735393524, 0.0493117980659008, -0.4986897110939026, -0.5638386011123657, -0.6088331341743469, -0.5874872207641602], "max": [-0.09486114978790283, -0.07281536608934402, 0.11077218502759933, 0.41578373312950134, 0.7869856953620911, 0.3868787884712219, 0.8928543925285339, 0.12914925813674927, -0.11660699546337128, 0.05928947776556015, 0.6188598871231079, 0.30626463890075684, 0.5881111025810242, 0.8793862462043762], "mean": [-0.11148655414581299, -0.07970701158046722, 0.09387021511793137, 0.1315942108631134, 0.6128186583518982, 0.0168575718998909, 0.7001525163650513, 0.12605108320713043, -0.12200508266687393, 0.0565403513610363, 0.36786600947380066, -0.33810603618621826, -0.4588913023471832, 0.6442690491676331], "std": [0.008482762612402439, 0.003705799812451005, 0.010228489525616169, 0.19426749646663666, 0.11795343458652496, 0.2182997614145279, 0.13164548575878143, 0.0027218558825552464, 0.0024206710513681173, 0.0028217912185937166, 0.16382159292697906, 0.1351824700832367, 0.20467567443847656, 0.1941426694393158], "count": [747]}, "timestamp": {"min": [0.0], "max": [24.866666666666667], "mean": [12.433333333333334], "std": [7.188004410641899], "count": [747]}, "frame_index": {"min": [0], "max": [746], "mean": [373.0], "std": [215.640132319257], "count": [747]}, "episode_index": {"min": [321], "max": [321], "mean": [321.0], "std": [0.0], "count": [747]}, "index": {"min": [137597], "max": [138343], "mean": [137970.0], "std": [215.640132319257], "count": [747]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [747]}}} +{"episode_index": 322, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.431955977755575]], [[0.40350058282336293]], [[0.36128132328656865]]], "std": [[[0.22905569596029488]], [[0.2121279283293296]], [[0.21658718162511445]]], "count": [157]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4430134326908399]], [[0.42893232137157766]], [[0.391368476194441]]], "std": [[[0.22833111046720095]], [[0.19689760595117747]], [[0.21184066748465616]]], "count": [157]}, "observation.state": {"min": [0.4473007023334503, -0.2372809648513794, 0.09786341339349747, 0.46907639503479004, -1.0720499753952026, -0.0844290629029274, -0.6395503878593445, -0.5894684791564941, 0.15310999751091003, 0.4617372453212738, 0.09099990874528885, -0.9147254228591919], "max": [0.6928526759147644, -0.06239968165755272, 0.12880845367908478, 1.9222277402877808, -0.328747421503067, 0.5386443734169006, -0.5658677816390991, -0.48633909225463867, 0.1692967712879181, 1.8394001722335815, 0.7907153964042664, 0.7667513489723206], "mean": [0.6151376366615295, -0.14531385898590088, 0.10821618139743805, 1.0587034225463867, -0.7398796081542969, 0.34903255105018616, -0.6004148125648499, -0.5330373048782349, 0.16326409578323364, 1.1334314346313477, 0.4094198942184448, -0.15178295969963074], "std": [0.0643729716539383, 0.05349290743470192, 0.01012142188847065, 0.36829933524131775, 0.207766592502594, 0.14287930727005005, 0.01826532930135727, 0.028897574171423912, 0.003755341051146388, 0.41171032190322876, 0.16723491251468658, 0.5060380101203918], "count": [852]}, "action": {"min": [-0.13125358521938324, -0.08531336486339569, 0.07347665727138519, 0.04426124691963196, 0.2758532166481018, -0.20936702191829681, 0.5932182669639587, 0.11492063105106354, -0.12953901290893555, 0.0502094067633152, 0.14829011261463165, -0.5477162003517151, -0.4113267958164215, 0.39662379026412964], "max": [-0.09120897948741913, -0.0733877569437027, 0.11066920310258865, 0.31175363063812256, 0.7420235872268677, 0.33974674344062805, 0.9019607305526733, 0.12669339776039124, -0.11061938852071762, 0.06112196668982506, 0.7947522401809692, -0.23591162264347076, -0.05025918409228325, 0.875326931476593], "mean": [-0.11070593446493149, -0.07966896891593933, 0.08985443413257599, 0.14073699712753296, 0.6548198461532593, 0.03343190252780914, 0.7115880846977234, 0.12122371792793274, -0.12243828177452087, 0.0556514635682106, 0.5138636827468872, -0.38543254137039185, -0.2719445526599884, 0.663758397102356], "std": [0.010484511032700539, 0.0030813785269856453, 0.011304215528070927, 0.06602165102958679, 0.11281567811965942, 0.14439228177070618, 0.07741153240203857, 0.0032273458782583475, 0.004072509240359068, 0.003497471334412694, 0.1873633712530136, 0.08145738393068314, 0.08651883155107498, 0.15372473001480103], "count": [852]}, "timestamp": {"min": [0.0], "max": [28.366666666666667], "mean": [14.183333333333334], "std": [8.198368175481066], "count": [852]}, "frame_index": {"min": [0], "max": [851], "mean": [425.5], "std": [245.95104526443197], "count": [852]}, "episode_index": {"min": [322], "max": [322], "mean": [322.0], "std": [0.0], "count": [852]}, "index": {"min": [138344], "max": [139195], "mean": [138769.5], "std": [245.95104526443197], "count": [852]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [852]}}} +{"episode_index": 323, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42614894821707716]], [[0.39412304136971804]], [[0.3492662444764472]]], "std": [[[0.2252382984423808]], [[0.20552777634360686]], [[0.20944316428450307]]], "count": [177]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43880931895671016]], [[0.4215229650554509]], [[0.3813913983358566]]], "std": [[[0.2238274054267103]], [[0.1901131323187227]], [[0.20467044122761582]]], "count": [177]}, "observation.state": {"min": [0.5431629419326782, -0.2232796549797058, 0.10659781843423843, 0.13818566501140594, -1.0572932958602905, -0.453046977519989, -0.6375192999839783, -0.581730306148529, 0.1458767056465149, 0.40155625343322754, -0.044816769659519196, -0.16684867441654205], "max": [0.7327560782432556, -0.07464020699262619, 0.13311342895030975, 2.609381675720215, -0.2910357415676117, 0.8003210425376892, -0.5141100287437439, -0.47843101620674133, 0.16132070124149323, 1.6032893657684326, 0.8370351791381836, 0.8213961124420166], "mean": [0.6748266816139221, -0.15215614438056946, 0.11874200403690338, 1.543932318687439, -0.6353854537010193, 0.29410332441329956, -0.5780092477798462, -0.5459158420562744, 0.15580901503562927, 1.0390965938568115, 0.48981979489326477, 0.3684457242488861], "std": [0.03018338605761528, 0.04526891931891441, 0.009489192627370358, 0.6774634718894958, 0.1723766326904297, 0.27529823780059814, 0.03232359513640404, 0.03063908778131008, 0.0034838751889765263, 0.3623410165309906, 0.29542678594589233, 0.3118169605731964], "count": [994]}, "action": {"min": [-0.11745788902044296, -0.09028524160385132, 0.080806665122509, 0.01941496878862381, 0.3325918912887573, -0.21836085617542267, 0.4784262776374817, 0.12435734272003174, -0.12336678802967072, 0.04938408359885216, 0.1629093587398529, -0.47782784700393677, -0.5874879956245422, 0.6221581101417542], "max": [-0.08533356338739395, -0.07458136230707169, 0.11132965236902237, 0.44196152687072754, 0.8636401891708374, 0.5148887038230896, 0.8614227771759033, 0.13739286363124847, -0.11054465919733047, 0.060252152383327484, 0.4608042538166046, -0.13086314499378204, -0.19702135026454926, 0.9560279846191406], "mean": [-0.09738615155220032, -0.0820564478635788, 0.09321893751621246, 0.17642401158809662, 0.5427857041358948, 0.22609713673591614, 0.7253459692001343, 0.12770292162895203, -0.11739262193441391, 0.05353549122810364, 0.3038273751735687, -0.28113749623298645, -0.38532590866088867, 0.7926761507987976], "std": [0.0066282059997320175, 0.002725586062297225, 0.00930001586675644, 0.09930247068405151, 0.15476995706558228, 0.23348800837993622, 0.09316890686750412, 0.0029439611826092005, 0.0034928671084344387, 0.0030399244278669357, 0.09448922425508499, 0.10081037878990173, 0.14603827893733978, 0.10686754435300827], "count": [994]}, "timestamp": {"min": [0.0], "max": [33.1], "mean": [16.55], "std": [9.564764619279568], "count": [994]}, "frame_index": {"min": [0], "max": [993], "mean": [496.5], "std": [286.94293857838704], "count": [994]}, "episode_index": {"min": [323], "max": [323], "mean": [323.0], "std": [0.0], "count": [994]}, "index": {"min": [139196], "max": [140189], "mean": [139692.5], "std": [286.94293857838704], "count": [994]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [994]}}} +{"episode_index": 324, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43645876597289823]], [[0.40666751842581]], [[0.3655633507934301]]], "std": [[[0.22901674589328694]], [[0.21199732710563662]], [[0.2155272073476926]]], "count": [141]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4469108221696874]], [[0.43197453993417695]], [[0.3950851739829107]]], "std": [[[0.22861411848092203]], [[0.19625333486991559]], [[0.21041265610638796]]], "count": [141]}, "observation.state": {"min": [0.44065141677856445, -0.2363465130329132, 0.09469916671514511, 0.34452056884765625, -1.2149717807769775, -0.048339858651161194, -0.679901659488678, -0.5915999412536621, 0.15102815628051758, 0.4900453984737396, 0.305655837059021, -0.056663740426301956], "max": [0.6671205759048462, -0.05337952822446823, 0.12588660418987274, 2.21600341796875, -0.03716513141989708, 1.1315292119979858, -0.6036551594734192, -0.5161951780319214, 0.1643514186143875, 1.4665714502334595, 0.6236090064048767, 0.7588371634483337], "mean": [0.5743370056152344, -0.1355842649936676, 0.10625065863132477, 1.158827543258667, -0.5350819826126099, 0.620012640953064, -0.6287360191345215, -0.5683316588401794, 0.15893791615962982, 1.0072368383407593, 0.4921850264072418, 0.3502162992954254], "std": [0.0634465292096138, 0.056781183928251266, 0.0072679175063967705, 0.5701610445976257, 0.29138386249542236, 0.2582088112831116, 0.02344140224158764, 0.024580810219049454, 0.003376950742676854, 0.28418534994125366, 0.09136293083429337, 0.23691976070404053], "count": [736]}, "action": {"min": [-0.1330181509256363, -0.08296125382184982, 0.07679074257612228, -0.18248029053211212, 0.3632497191429138, -0.29297223687171936, 0.6000580787658691, 0.11200381070375443, -0.12265203148126602, 0.046890486031770706, 0.15609529614448547, -0.3280803859233856, -0.5538220405578613, 0.6466181874275208], "max": [-0.1053706482052803, -0.0729944184422493, 0.11467243731021881, 0.2851220965385437, 0.701407790184021, 0.44473743438720703, 0.8747548460960388, 0.12648047506809235, -0.11225242167711258, 0.05271734669804573, 0.471592515707016, -0.2310054451227188, -0.25718092918395996, 0.8967830538749695], "mean": [-0.1173727810382843, -0.07885343581438065, 0.09483398497104645, 0.016118628904223442, 0.5336652994155884, 0.11492638289928436, 0.776014506816864, 0.12150391191244125, -0.11988518387079239, 0.04866179823875427, 0.3423705995082855, -0.28672659397125244, -0.4048879146575928, 0.7841207385063171], "std": [0.007485709153115749, 0.0018131252145394683, 0.012985083274543285, 0.11245288699865341, 0.08632852137088776, 0.27412277460098267, 0.06552612036466599, 0.003823940409347415, 0.0028942017816007137, 0.0017142078140750527, 0.08944645524024963, 0.02980145253241062, 0.0863049179315567, 0.07384146004915237], "count": [736]}, "timestamp": {"min": [0.0], "max": [24.5], "mean": [12.25], "std": [7.082156765028888], "count": [736]}, "frame_index": {"min": [0], "max": [735], "mean": [367.5], "std": [212.46470295086664], "count": [736]}, "episode_index": {"min": [324], "max": [324], "mean": [324.0], "std": [0.0], "count": [736]}, "index": {"min": [140190], "max": [140925], "mean": [140557.5], "std": [212.46470295086664], "count": [736]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [736]}}} +{"episode_index": 325, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4336299159778291]], [[0.3983612572888633]], [[0.35135541218121236]]], "std": [[[0.22808145327919097]], [[0.2072832648608548]], [[0.20905455658210748]]], "count": [136]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44535958125080094]], [[0.4249028799019608]], [[0.3815446983531975]]], "std": [[[0.22677989397822107]], [[0.19199217357849982]], [[0.20545925920731578]]], "count": [136]}, "observation.state": {"min": [0.531022846698761, -0.20869913697242737, 0.10045728832483292, 0.41728299856185913, -1.0814778804779053, -0.18620875477790833, -0.606721043586731, -0.5937700271606445, 0.15512442588806152, 0.5995035767555237, 0.422480046749115, -0.2630513906478882], "max": [0.7249947190284729, -0.0894678607583046, 0.13227343559265137, 1.8779830932617188, 0.08526118099689484, 1.017950415611267, -0.46819067001342773, -0.48081734776496887, 0.1784783899784088, 1.75887930393219, 0.948257327079773, 0.5983793139457703], "mean": [0.6622027158737183, -0.11920376867055893, 0.11679279804229736, 0.8921045064926147, -0.5098172426223755, 0.46051138639450073, -0.5480627417564392, -0.5208066701889038, 0.1671573668718338, 1.092032551765442, 0.6874578595161438, 0.022378070279955864], "std": [0.03676897659897804, 0.02344018965959549, 0.009245531633496284, 0.4180920422077179, 0.29278501868247986, 0.3712591826915741, 0.04404596984386444, 0.03227917104959488, 0.005283660721033812, 0.3502975106239319, 0.14306117594242096, 0.26235222816467285], "count": [703]}, "action": {"min": [-0.11944268643856049, -0.08747934550046921, 0.08078784495592117, -0.14667707681655884, 0.35329359769821167, -0.3329468071460724, 0.6352383494377136, 0.1106731966137886, -0.13714972138404846, 0.0570836216211319, 0.19987252354621887, -0.46809595823287964, -0.5480919480323792, 0.5851114988327026], "max": [-0.0900212898850441, -0.06985138356685638, 0.10968828201293945, 0.25608229637145996, 0.7505500912666321, 0.30708929896354675, 0.9208415150642395, 0.13452289998531342, -0.11498342454433441, 0.06579556316137314, 0.551048994064331, -0.35660770535469055, -0.15934255719184875, 0.8554670214653015], "mean": [-0.10029365122318268, -0.0797666534781456, 0.09572143107652664, 0.05407136306166649, 0.6073047518730164, -0.02462826296687126, 0.7416433691978455, 0.12370530515909195, -0.12418044358491898, 0.06209208816289902, 0.404499351978302, -0.4139125645160675, -0.36638006567955017, 0.7053380012512207], "std": [0.00734241446480155, 0.0047980304807424545, 0.005990380886942148, 0.11471723765134811, 0.1119842678308487, 0.21710890531539917, 0.06912631541490555, 0.006634339224547148, 0.006557204760611057, 0.002341862302273512, 0.09884681552648544, 0.034479301422834396, 0.13084223866462708, 0.0723976418375969], "count": [703]}, "timestamp": {"min": [0.0], "max": [23.4], "mean": [11.700000000000001], "std": [6.764613810115105], "count": [703]}, "frame_index": {"min": [0], "max": [702], "mean": [351.0], "std": [202.93841430345316], "count": [703]}, "episode_index": {"min": [325], "max": [325], "mean": [325.0], "std": [0.0], "count": [703]}, "index": {"min": [140926], "max": [141628], "mean": [141277.0], "std": [202.93841430345316], "count": [703]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [703]}}} +{"episode_index": 326, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4264773562834225]], [[0.39606794352842145]], [[0.35458560327540106]]], "std": [[[0.23066067005483196]], [[0.21267781641206937]], [[0.21591534820593092]]], "count": [176]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4365340104476134]], [[0.42094363982966926]], [[0.3826695292384631]]], "std": [[[0.23077952043487615]], [[0.19800653376882582]], [[0.2126293800267409]]], "count": [176]}, "observation.state": {"min": [0.45943310856819153, -0.20108452439308167, 0.09796840697526932, 0.4925616681575775, -1.0780619382858276, -0.8042916655540466, -0.6135634183883667, -0.5488160252571106, 0.1592375636100769, 0.23715932667255402, 0.4524034559726715, -1.0593388080596924], "max": [0.6568493247032166, -0.09112053364515305, 0.12574012577533722, 2.0543324947357178, -0.43436741828918457, 0.7600292563438416, -0.5042944550514221, -0.45762598514556885, 0.17828525602817535, 1.555060625076294, 1.0025019645690918, 0.6699971556663513], "mean": [0.5900516510009766, -0.1518486887216568, 0.11228182166814804, 1.4022444486618042, -0.6664862036705017, 0.15968146920204163, -0.5688491463661194, -0.4963056445121765, 0.1676395833492279, 0.9207013845443726, 0.728015661239624, -0.2841030955314636], "std": [0.0468805730342865, 0.03361693397164345, 0.005379491951316595, 0.40690380334854126, 0.16376088559627533, 0.4745137691497803, 0.026590878143906593, 0.02605312131345272, 0.0051984903402626514, 0.4380306601524353, 0.1539151817560196, 0.5128284692764282], "count": [991]}, "action": {"min": [-0.1336555778980255, -0.08867143839597702, 0.08567357063293457, 0.0011771712452173233, 0.3019728362560272, -0.19131436944007874, 0.5477612018585205, 0.1121421605348587, -0.13345538079738617, 0.05931445583701134, -0.4210785925388336, -0.533152163028717, -0.55152827501297, -0.5539377331733704], "max": [-0.09693825244903564, -0.07369459420442581, 0.11057333648204803, 0.53569096326828, 0.7447553277015686, 0.4371340870857239, 0.8656691908836365, 0.12883096933364868, -0.11137586086988449, 0.06705182790756226, 0.6891915202140808, 0.4919673502445221, 0.5699000954627991, 0.7949677109718323], "mean": [-0.1108444407582283, -0.08270817250013351, 0.09516912698745728, 0.20140805840492249, 0.5657745599746704, 0.10830789804458618, 0.7350975871086121, 0.12023550271987915, -0.12134405970573425, 0.06423303484916687, 0.4160880446434021, -0.40124812722206116, -0.3191455900669098, 0.5242218375205994], "std": [0.007671270053833723, 0.0036146536003798246, 0.0055625722743570805, 0.17442992329597473, 0.1222916767001152, 0.1808851659297943, 0.09556955844163895, 0.0038424914237111807, 0.00620571942999959, 0.002268293872475624, 0.27017539739608765, 0.24100054800510406, 0.24522815644741058, 0.31304290890693665], "count": [991]}, "timestamp": {"min": [0.0], "max": [33.0], "mean": [16.5], "std": [9.53589709116732], "count": [991]}, "frame_index": {"min": [0], "max": [990], "mean": [495.0], "std": [286.07691273501956], "count": [991]}, "episode_index": {"min": [326], "max": [326], "mean": [326.0], "std": [0.0], "count": [991]}, "index": {"min": [141629], "max": [142619], "mean": [142124.0], "std": [286.07691273501956], "count": [991]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [991]}}} +{"episode_index": 327, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4304640394935006]], [[0.39847359118889913]], [[0.3554848225643725]]], "std": [[[0.23344128556128238]], [[0.21459074680727147]], [[0.2173811060990253]]], "count": [149]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4392274897281806]], [[0.42243684658800135]], [[0.38305776527613283]]], "std": [[[0.23363026416662797]], [[0.19962287295911477]], [[0.21363521844503447]]], "count": [149]}, "observation.state": {"min": [0.4663526713848114, -0.20443618297576904, 0.10020711272954941, 0.5321930646896362, -0.9198369383811951, -0.09262716770172119, -0.6758472323417664, -0.5765020251274109, 0.1601916253566742, 0.4346872568130493, -0.272726446390152, -0.5946339964866638], "max": [0.6494895815849304, -0.06603708863258362, 0.12111496925354004, 2.190211534500122, -0.1546725183725357, 0.9443441033363342, -0.48364385962486267, -0.4876210689544678, 0.1747450828552246, 1.4711846113204956, 0.8179060816764832, 0.7201403975486755], "mean": [0.5777508616447449, -0.12290497869253159, 0.11210466921329498, 1.4627028703689575, -0.615580141544342, 0.428378164768219, -0.603145182132721, -0.5207317471504211, 0.16773493587970734, 1.19138765335083, 0.3749007284641266, 0.20597995817661285], "std": [0.042677607387304306, 0.023813877254724503, 0.004827863536775112, 0.49301576614379883, 0.21274599432945251, 0.2554260492324829, 0.05479951202869415, 0.0323144793510437, 0.0034957905299961567, 0.25476768612861633, 0.42552587389945984, 0.3907180726528168], "count": [792]}, "action": {"min": [-0.13148604333400726, -0.0857960432767868, 0.08978365361690521, -0.11123212426900864, 0.41321030259132385, -0.273664653301239, 0.7317628264427185, 0.1071900948882103, -0.13153181970119476, 0.05345052853226662, 0.18867723643779755, -0.49323248863220215, -0.5282014012336731, 0.5121750831604004], "max": [-0.10289810597896576, -0.07180287688970566, 0.11439397186040878, 0.25379231572151184, 0.6478729844093323, 0.47330155968666077, 0.8275160789489746, 0.1322738528251648, -0.11854623258113861, 0.06505027413368225, 0.5411849617958069, -0.11293604969978333, -0.0699084997177124, 0.9695912599563599], "mean": [-0.11221008002758026, -0.07907240092754364, 0.09956783801317215, 0.07040790468454361, 0.5102155804634094, 0.20917613804340363, 0.7860188484191895, 0.11883929371833801, -0.12442178279161453, 0.05876855552196503, 0.36442166566848755, -0.33814308047294617, -0.26279234886169434, 0.7806536555290222], "std": [0.006103093735873699, 0.0033199950121343136, 0.005249077454209328, 0.09833646565675735, 0.06011389568448067, 0.2433115392923355, 0.02565421164035797, 0.005147472955286503, 0.004279487766325474, 0.0037773854564875364, 0.13589663803577423, 0.13867071270942688, 0.13273771107196808, 0.1380521059036255], "count": [792]}, "timestamp": {"min": [0.0], "max": [26.366666666666667], "mean": [13.183333333333334], "std": [7.6210174784872], "count": [792]}, "frame_index": {"min": [0], "max": [791], "mean": [395.5], "std": [228.630524354616], "count": [792]}, "episode_index": {"min": [327], "max": [327], "mean": [327.0], "std": [0.0], "count": [792]}, "index": {"min": [142620], "max": [143411], "mean": [143015.5], "std": [228.630524354616], "count": [792]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [792]}}} +{"episode_index": 328, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4343777668845316]], [[0.4035942919389978]], [[0.3594301107480029]]], "std": [[[0.2318930165041483]], [[0.21275989848366073]], [[0.21592307225069896]]], "count": [150]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44379740377632537]], [[0.4274077705156137]], [[0.38741556644880176]]], "std": [[[0.23111000783818242]], [[0.19757795131634598]], [[0.2117149644614137]]], "count": [150]}, "observation.state": {"min": [0.44953256845474243, -0.20055164396762848, 0.10059340298175812, 0.39107173681259155, -1.065354824066162, -0.20058399438858032, -0.6570269465446472, -0.5369075536727905, 0.14142653346061707, 0.985123336315155, 0.03415912017226219, 0.23914313316345215], "max": [0.6736076474189758, -0.07645505666732788, 0.12694048881530762, 2.40346622467041, -0.22135113179683685, 1.1428382396697998, -0.5053988099098206, -0.383070707321167, 0.17541655898094177, 1.7913812398910522, 0.9203834533691406, 0.6459202766418457], "mean": [0.5681925415992737, -0.11971987038850784, 0.11281774193048477, 1.3957631587982178, -0.6379568576812744, 0.43525004386901855, -0.5894434452056885, -0.4795745611190796, 0.16347289085388184, 1.3735042810440063, 0.38545113801956177, 0.5094789862632751], "std": [0.06267789751291275, 0.019151918590068817, 0.008344558998942375, 0.6211693286895752, 0.2409331500530243, 0.40132978558540344, 0.0580364465713501, 0.054266512393951416, 0.012458879500627518, 0.2615140676498413, 0.24373601377010345, 0.11878109723329544], "count": [804]}, "action": {"min": [-0.12988774478435516, -0.08655198663473129, 0.08898523449897766, -0.12937387824058533, 0.3341304063796997, -0.2885798513889313, 0.6871227025985718, 0.10719695687294006, -0.1301218569278717, 0.052152857184410095, 0.15927651524543762, -0.5191869139671326, -0.3810387849807739, 0.7084652185440063], "max": [-0.09608316421508789, -0.07327533513307571, 0.11477554589509964, 0.34472155570983887, 0.6547123193740845, 0.5110483169555664, 0.8784739375114441, 0.1389429122209549, -0.1001707911491394, 0.07006752490997314, 0.3402818441390991, -0.1460675299167633, -0.11843156814575195, 0.9246196150779724], "mean": [-0.11316125839948654, -0.07970935106277466, 0.1005651205778122, 0.07271083444356918, 0.5269290208816528, 0.19588568806648254, 0.7576355934143066, 0.12022958695888519, -0.118697889149189, 0.06164228916168213, 0.24956972897052765, -0.33607667684555054, -0.2626655697822571, 0.8494546413421631], "std": [0.010920197702944279, 0.003727128729224205, 0.006556479725986719, 0.14252789318561554, 0.09096194803714752, 0.2720448970794678, 0.0456090047955513, 0.010863282717764378, 0.011491267941892147, 0.0047539882361888885, 0.054250966757535934, 0.13158182799816132, 0.0953974574804306, 0.06958536058664322], "count": [804]}, "timestamp": {"min": [0.0], "max": [26.766666666666666], "mean": [13.383333333333333], "std": [7.73648762299409], "count": [804]}, "frame_index": {"min": [0], "max": [803], "mean": [401.5], "std": [232.09462868982268], "count": [804]}, "episode_index": {"min": [328], "max": [328], "mean": [328.0], "std": [0.0], "count": [804]}, "index": {"min": [143412], "max": [144215], "mean": [143813.5], "std": [232.09462868982268], "count": [804]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [804]}}} +{"episode_index": 329, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4333894026870007]], [[0.4021327814088599]], [[0.35799588053740017]]], "std": [[[0.23146006564696223]], [[0.21274512506231594]], [[0.21641217190907155]]], "count": [150]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4445046604938272]], [[0.4273197912127814]], [[0.3874347984749455]]], "std": [[[0.23015936520816974]], [[0.19705554313022489]], [[0.21177856831193137]]], "count": [150]}, "observation.state": {"min": [0.46435248851776123, -0.23326514661312103, 0.10150598734617233, 0.3405364751815796, -1.1491129398345947, -0.11456190794706345, -0.6082810759544373, -0.5277870297431946, 0.14674131572246552, 0.35227909684181213, 0.44242897629737854, -0.821374237537384], "max": [0.6869679689407349, -0.07294120639562607, 0.12935808300971985, 2.0398638248443604, -0.1119052916765213, 0.8329442143440247, -0.49286481738090515, -0.4332144260406494, 0.1754632145166397, 1.7314099073410034, 0.8206388354301453, 0.6243844628334045], "mean": [0.6104258894920349, -0.13520556688308716, 0.11351625621318817, 1.0231183767318726, -0.5825582146644592, 0.503981351852417, -0.5566790699958801, -0.47639304399490356, 0.16224586963653564, 1.1661853790283203, 0.5736486911773682, 0.03738713636994362], "std": [0.059315212070941925, 0.0422426275908947, 0.009189345873892307, 0.5072985887527466, 0.3043452203273773, 0.21928918361663818, 0.04200785234570503, 0.03391518071293831, 0.011089998297393322, 0.5873591303825378, 0.08679685741662979, 0.533795177936554], "count": [802]}, "action": {"min": [-0.12664127349853516, -0.08592836558818817, 0.08089575916528702, -0.07748577743768692, 0.35681143403053284, -0.2795874774456024, 0.5940463542938232, 0.11347499489784241, -0.130655437707901, 0.06117701530456543, 0.17509327828884125, -0.5444032549858093, -0.5366162061691284, 0.44351276755332947], "max": [-0.09331782162189484, -0.07418536394834518, 0.11368776112794876, 0.27650386095046997, 0.752443253993988, 0.40073758363723755, 0.8977342247962952, 0.13620352745056152, -0.1050449088215828, 0.06625169515609741, 0.6580766439437866, -0.2858003079891205, -0.19317953288555145, 0.8410763740539551], "mean": [-0.1084837093949318, -0.08156214654445648, 0.09608350694179535, 0.04274366796016693, 0.6080177426338196, 0.03398055583238602, 0.7444533109664917, 0.12375018745660782, -0.11767067015171051, 0.06425613164901733, 0.3903998136520386, -0.4243297874927521, -0.33183255791664124, 0.6918991804122925], "std": [0.009511169046163559, 0.0033433849457651377, 0.009517082944512367, 0.10482341051101685, 0.11584539711475372, 0.20188996195793152, 0.08918797224760056, 0.008415699005126953, 0.00914610642939806, 0.0011428529396653175, 0.18410485982894897, 0.08426756411790848, 0.13267232477664948, 0.1417645364999771], "count": [802]}, "timestamp": {"min": [0.0], "max": [26.7], "mean": [13.349999999999998], "std": [7.717242599098031], "count": [802]}, "frame_index": {"min": [0], "max": [801], "mean": [400.5], "std": [231.51727797294092], "count": [802]}, "episode_index": {"min": [329], "max": [329], "mean": [329.0], "std": [0.0], "count": [802]}, "index": {"min": [144216], "max": [145017], "mean": [144616.5], "std": [231.51727797294092], "count": [802]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [802]}}} +{"episode_index": 330, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4741653796498023]], [[0.4420495037521181]], [[0.4008627087872186]]], "std": [[[0.2254421976495193]], [[0.20718497481119186]], [[0.21022506762531698]]], "count": [135]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4859399701444364]], [[0.4666010429274591]], [[0.43045406479464215]]], "std": [[[0.2235304964285039]], [[0.19006643665813408]], [[0.2039748103128132]]], "count": [135]}, "observation.state": {"min": [0.5329380631446838, -0.14540360867977142, 0.10277505964040756, 0.5472907423973083, -1.0381641387939453, -0.26794978976249695, -0.6032458543777466, -0.4557725191116333, 0.15926608443260193, 0.8129678964614868, 0.3783464729785919, -0.14273162186145782], "max": [0.654308557510376, -0.0404902882874012, 0.12062107771635056, 1.867079257965088, -0.25824299454689026, 0.6931903958320618, -0.5482677221298218, -0.4197382628917694, 0.174104705452919, 1.6580183506011963, 0.6784002184867859, 0.3198466897010803], "mean": [0.598504364490509, -0.08729252964258194, 0.1129804402589798, 1.3543438911437988, -0.5646617412567139, 0.19045428931713104, -0.5756652355194092, -0.443844735622406, 0.16681040823459625, 1.1748958826065063, 0.5173075795173645, 0.049862246960401535], "std": [0.03163069486618042, 0.026307199150323868, 0.004204008728265762, 0.422047883272171, 0.25294461846351624, 0.230973482131958, 0.015721237286925316, 0.009437496773898602, 0.004414746537804604, 0.30527544021606445, 0.07902968674898148, 0.16497819125652313], "count": [699]}, "action": {"min": [-0.11812923848628998, -0.08026878535747528, 0.09139986336231232, -0.003336898284032941, 0.4043002724647522, -0.2672477662563324, 0.6301595568656921, 0.11338900774717331, -0.12375767529010773, 0.06560976058244705, 0.2974923849105835, -0.5096904635429382, -0.41645389795303345, 0.7055203318595886], "max": [-0.10309480875730515, -0.06748548150062561, 0.11641531437635422, 0.3068242073059082, 0.7038431763648987, 0.3869836628437042, 0.8792030215263367, 0.12430088222026825, -0.11250865459442139, 0.07360696792602539, 0.48699235916137695, -0.307584673166275, -0.17652124166488647, 0.8394375443458557], "mean": [-0.1091751977801323, -0.07481331378221512, 0.1018068715929985, 0.15389707684516907, 0.5389474630355835, 0.09050223231315613, 0.7831057906150818, 0.11806546151638031, -0.11738529801368713, 0.06952057778835297, 0.40732336044311523, -0.39226391911506653, -0.31003251671791077, 0.751270055770874], "std": [0.003039504401385784, 0.002863203873857856, 0.006003369577229023, 0.09686310589313507, 0.05854425206780434, 0.21982555091381073, 0.05721782520413399, 0.003208146896213293, 0.003415490733459592, 0.0022029404062777758, 0.06632113456726074, 0.07090837508440018, 0.09171810001134872, 0.043028779327869415], "count": [699]}, "timestamp": {"min": [0.0], "max": [23.266666666666666], "mean": [11.633333333333331], "std": [6.726123753005199], "count": [699]}, "frame_index": {"min": [0], "max": [698], "mean": [349.0], "std": [201.78371259015597], "count": [699]}, "episode_index": {"min": [330], "max": [330], "mean": [330.0], "std": [0.0], "count": [699]}, "index": {"min": [145018], "max": [145716], "mean": [145367.0], "std": [201.78371259015597], "count": [699]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [699]}}} +{"episode_index": 331, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48029973832528183]], [[0.447433185327271]], [[0.4047208285971393]]], "std": [[[0.22619646687763253]], [[0.20627217346268556]], [[0.20735458526400882]]], "count": [230]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4925117895709008]], [[0.47177418063843896]], [[0.43435743700861984]]], "std": [[[0.22530517265931932]], [[0.18935452122867144]], [[0.201012938749198]]], "count": [230]}, "observation.state": {"min": [0.5182262659072876, -0.18680518865585327, 0.10175228118896484, 0.2845492362976074, -0.8112108707427979, -0.2616264522075653, -0.6881341338157654, -0.5057772397994995, 0.1511603742837906, 0.5219182968139648, 0.2891228199005127, -0.1693035215139389], "max": [0.6501073837280273, 0.013761909678578377, 0.12344309687614441, 2.5007622241973877, -0.050145599991083145, 0.788416862487793, -0.5234931707382202, -0.32753655314445496, 0.17628636956214905, 1.7043598890304565, 0.5999708771705627, 0.7766005992889404], "mean": [0.588789165019989, -0.08042283356189728, 0.10848364233970642, 1.2637900114059448, -0.530329704284668, 0.3660808801651001, -0.6164636015892029, -0.43579521775245667, 0.16498588025569916, 1.2458847761154175, 0.4360312819480896, 0.24798409640789032], "std": [0.03313028812408447, 0.053683459758758545, 0.005335245747119188, 0.6544932126998901, 0.15556982159614563, 0.2275875210762024, 0.0475732646882534, 0.04494228959083557, 0.005541255697607994, 0.36525410413742065, 0.07397666573524475, 0.22299359738826752], "count": [1413]}, "action": {"min": [-0.12241756170988083, -0.08305009454488754, 0.0894520953297615, -0.03818919509649277, 0.31608203053474426, -0.3387349843978882, 0.6424552202224731, 0.09840647131204605, -0.12211201339960098, 0.06234822794795036, 0.05001401528716087, -0.46397340297698975, -0.5398635864257812, 0.6677120923995972], "max": [-0.10551721602678299, -0.06631365418434143, 0.11830465495586395, 0.34058865904808044, 0.7515790462493896, 0.5130531191825867, 0.9376665949821472, 0.13017316162586212, -0.09543494880199432, 0.07409825921058655, 0.50358647108078, -0.22607700526714325, -0.08922586590051651, 0.876632034778595], "mean": [-0.1135466992855072, -0.07328610867261887, 0.10021333396434784, 0.09959407150745392, 0.5332266092300415, 0.08923656493425369, 0.7788993716239929, 0.11426283419132233, -0.11394915729761124, 0.06664851307868958, 0.32803887128829956, -0.3718273341655731, -0.3000622093677521, 0.7936775088310242], "std": [0.004199366085231304, 0.004689163528382778, 0.007543011102825403, 0.1051168292760849, 0.11587442457675934, 0.2507425844669342, 0.06127171218395233, 0.00873732753098011, 0.00491909496486187, 0.0033003271091729403, 0.10141373425722122, 0.07370789349079132, 0.11910513043403625, 0.06532315909862518], "count": [1413]}, "timestamp": {"min": [0.0], "max": [47.06666666666667], "mean": [23.53333333333333], "std": [13.596595434424287], "count": [1413]}, "frame_index": {"min": [0], "max": [1412], "mean": [706.0], "std": [407.89786303272865], "count": [1413]}, "episode_index": {"min": [331], "max": [331], "mean": [331.0], "std": [0.0], "count": [1413]}, "index": {"min": [145717], "max": [147129], "mean": [146423.0], "std": [407.89786303272865], "count": [1413]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1413]}}} +{"episode_index": 332, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4696950846365306]], [[0.4415464203424243]], [[0.401710472059679]]], "std": [[[0.22444787394501478]], [[0.20640754540706813]], [[0.2088356126352559]]], "count": [191]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48371436168999304]], [[0.4686128477569038]], [[0.433608258050166]]], "std": [[[0.22307628297723447]], [[0.18900904279971156]], [[0.20285412796754565]]], "count": [191]}, "observation.state": {"min": [0.5532951951026917, -0.22846932709217072, 0.10439412295818329, -0.019081780686974525, -1.1310769319534302, -0.36363187432289124, -0.6449486017227173, -0.5403673648834229, 0.1495840847492218, 0.03438914939761162, -0.048232678323984146, -0.7906973958015442], "max": [0.6832147240638733, -0.0734354704618454, 0.1327621340751648, 2.482728958129883, -0.4010281264781952, 0.8307985663414001, -0.4988885521888733, -0.4435937702655792, 0.16567623615264893, 1.7750253677368164, 0.8576673269271851, 0.46755465865135193], "mean": [0.6333688497543335, -0.15632975101470947, 0.11669866740703583, 1.541625738143921, -0.6544579267501831, 0.033567335456609726, -0.5678492784500122, -0.4866938292980194, 0.15739382803440094, 0.6743334531784058, 0.38543978333473206, -0.19067683815956116], "std": [0.0243542417883873, 0.037672482430934906, 0.008499236777424812, 0.680441677570343, 0.2169920802116394, 0.3530079126358032, 0.041908811777830124, 0.0250613484531641, 0.004869052208960056, 0.5173828601837158, 0.2366548478603363, 0.4203919768333435], "count": [1101]}, "action": {"min": [-0.11802500486373901, -0.09114215523004532, 0.08110843598842621, 0.07147339731454849, 0.3820038437843323, -0.20702825486660004, 0.4625144600868225, 0.11704761534929276, -0.12616220116615295, 0.05311421677470207, -0.47865259647369385, -0.47496479749679565, -0.6162080764770508, -0.6133915781974792], "max": [-0.09310050308704376, -0.07614539563655853, 0.10826297849416733, 0.4417436122894287, 0.8593513369560242, 0.46661341190338135, 0.8414714336395264, 0.1362956315279007, -0.10691894590854645, 0.06694048643112183, 0.7478464841842651, 0.20386075973510742, 0.6242156028747559, 0.8580984473228455], "mean": [-0.10383591055870056, -0.08376581221818924, 0.09487546980381012, 0.2919751703739166, 0.5622456073760986, 0.1610160619020462, 0.6951688528060913, 0.12641365826129913, -0.11480847001075745, 0.062242209911346436, 0.42454883456230164, -0.23195132613182068, -0.36402180790901184, 0.5391417741775513], "std": [0.005176369566470385, 0.0029740023892372847, 0.007908917032182217, 0.11029272526502609, 0.14833512902259827, 0.2128540277481079, 0.09984998404979706, 0.005051142070442438, 0.005486924666911364, 0.0036767874844372272, 0.3026413023471832, 0.15857544541358948, 0.31031572818756104, 0.3601903021335602], "count": [1101]}, "timestamp": {"min": [0.0], "max": [36.666666666666664], "mean": [18.333333333333332], "std": [10.594373069735685], "count": [1101]}, "frame_index": {"min": [0], "max": [1100], "mean": [550.0], "std": [317.8311920920706], "count": [1101]}, "episode_index": {"min": [332], "max": [332], "mean": [332.0], "std": [0.0], "count": [1101]}, "index": {"min": [147130], "max": [148230], "mean": [147680.0], "std": [317.8311920920706], "count": [1101]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1101]}}} +{"episode_index": 333, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4692886536411255]], [[0.4418037520859408]], [[0.40212127572660267]]], "std": [[[0.2254620468326102]], [[0.20734570457150642]], [[0.210268441770789]]], "count": [188]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4822820800305938]], [[0.467826998736847]], [[0.4333690767973856]]], "std": [[[0.22368207486885638]], [[0.19020752608683264]], [[0.204458067945295]]], "count": [188]}, "observation.state": {"min": [0.5138937830924988, -0.18383966386318207, 0.10727188736200333, 0.2484825849533081, -1.2944941520690918, -0.5841613411903381, -0.6282984018325806, -0.5317255854606628, 0.14540095627307892, -0.10190930962562561, -0.039078038185834885, -0.7162269353866577], "max": [0.7031934261322021, -0.06483233720064163, 0.13383935391902924, 2.5529751777648926, -0.449807345867157, 0.6425106525421143, -0.47216787934303284, -0.47979795932769775, 0.16532105207443237, 1.6202741861343384, 0.6103552579879761, 0.7727776765823364], "mean": [0.6223325133323669, -0.14306780695915222, 0.11953732371330261, 1.54035484790802, -0.8519054055213928, 0.051273543387651443, -0.5534915924072266, -0.5041853189468384, 0.15950456261634827, 0.8114662766456604, 0.3722836375236511, 0.13283084332942963], "std": [0.037736233323812485, 0.03308752179145813, 0.006537574343383312, 0.5969439744949341, 0.21453045308589935, 0.4041762053966522, 0.04238331317901611, 0.014428258873522282, 0.004974352661520243, 0.5706180930137634, 0.1841907650232315, 0.42937251925468445], "count": [1081]}, "action": {"min": [-0.12245741486549377, -0.09067464619874954, 0.08721062541007996, 0.030139384791254997, 0.3563748300075531, -0.20659200847148895, 0.48149314522743225, 0.11780005693435669, -0.12528648972511292, 0.05871693044900894, -0.6112470626831055, -0.45331043004989624, -0.6053785085678101, -0.5714552998542786], "max": [-0.09054307639598846, -0.07462234050035477, 0.1175779402256012, 0.4253232777118683, 0.8301553130149841, 0.5074328184127808, 0.8471064567565918, 0.13868291676044464, -0.10759955644607544, 0.06408730149269104, 0.624798595905304, 0.22058196365833282, 0.6841904520988464, 0.9421877264976501], "mean": [-0.10284170508384705, -0.08288013935089111, 0.09730440378189087, 0.24162091314792633, 0.6177262663841248, 0.17503109574317932, 0.6519536375999451, 0.12752343714237213, -0.11881105601787567, 0.06158806383609772, 0.1171993687748909, -0.20235872268676758, -0.08286186307668686, 0.4546423554420471], "std": [0.006749605759978294, 0.003566163359209895, 0.0064938124269247055, 0.12475857883691788, 0.1599130928516388, 0.22774092853069305, 0.10654009133577347, 0.006365617271512747, 0.0036415166687220335, 0.0012462224112823606, 0.3933480381965637, 0.18279872834682465, 0.44136425852775574, 0.590600311756134], "count": [1081]}, "timestamp": {"min": [0.0], "max": [36.0], "mean": [18.0], "std": [10.401922899156675], "count": [1081]}, "frame_index": {"min": [0], "max": [1080], "mean": [540.0], "std": [312.05768697470023], "count": [1081]}, "episode_index": {"min": [333], "max": [333], "mean": [333.0], "std": [0.0], "count": [1081]}, "index": {"min": [148231], "max": [149311], "mean": [148771.0], "std": [312.05768697470023], "count": [1081]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1081]}}} +{"episode_index": 334, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4602858901578959]], [[0.4372787533971206]], [[0.39823562540709295]]], "std": [[[0.22479957253013821]], [[0.20682827269731985]], [[0.20928918139025504]]], "count": [194]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4737806962131932]], [[0.4638935002695236]], [[0.4298226253846327]]], "std": [[[0.2241612195681761]], [[0.19039185096648226]], [[0.20463188882466374]]], "count": [194]}, "observation.state": {"min": [0.5083411931991577, -0.27161625027656555, 0.10652521997690201, 0.17572017014026642, -1.3104807138442993, -0.7760579586029053, -0.5802629590034485, -0.5576817393302917, 0.16042496263980865, 0.03396977111697197, 0.04604649916291237, -0.8639718294143677], "max": [0.7030389904975891, -0.06185908988118172, 0.13661730289459229, 2.1168200969696045, -0.06012006103992462, 0.6117083430290222, -0.49454838037490845, -0.49332043528556824, 0.1661415994167328, 1.3726303577423096, 0.8476928472518921, 0.19850224256515503], "mean": [0.6422780752182007, -0.17390847206115723, 0.1188882514834404, 1.3433421850204468, -0.7244178652763367, 0.0728389248251915, -0.5378121733665466, -0.5337042808532715, 0.16339874267578125, 0.4063691794872284, 0.43018653988838196, -0.49389392137527466], "std": [0.03770774230360985, 0.06027185916900635, 0.006271797232329845, 0.5342900156974792, 0.329935759305954, 0.40605688095092773, 0.0208001509308815, 0.014237020164728165, 0.0011041032848879695, 0.4279601573944092, 0.21693865954875946, 0.32775869965553284], "count": [1125]}, "action": {"min": [-0.12363448739051819, -0.09792851656675339, 0.07926870137453079, 0.013914710842072964, 0.44660264253616333, -0.2904842495918274, 0.46796101331710815, 0.12382623553276062, -0.1279333382844925, 0.05687880143523216, -0.6218416094779968, -0.4572824239730835, -0.6262604594230652, -0.5590174198150635], "max": [-0.08565524220466614, -0.07652253657579422, 0.10873785614967346, 0.4668569564819336, 0.8223394751548767, 0.3098134994506836, 0.8800233602523804, 0.13220761716365814, -0.11919259279966354, 0.06547784805297852, 0.7156597375869751, 0.21850721538066864, 0.6431794762611389, 0.7876501679420471], "mean": [-0.10155289620161057, -0.08625292778015137, 0.0925833135843277, 0.2330792397260666, 0.6381652355194092, 0.07357272505760193, 0.6788079738616943, 0.12908446788787842, -0.12432198226451874, 0.061790831387043, 0.31625229120254517, -0.21883238852024078, -0.23170006275177002, 0.29607439041137695], "std": [0.006968430709093809, 0.005498525686562061, 0.008357497863471508, 0.1356646716594696, 0.11655695736408234, 0.16212962567806244, 0.11811128258705139, 0.002164881443604827, 0.0021590786054730415, 0.001788281835615635, 0.4899581968784332, 0.18560577929019928, 0.4785518944263458, 0.4552266299724579], "count": [1125]}, "timestamp": {"min": [0.0], "max": [37.46666666666667], "mean": [18.733333333333334], "std": [10.825313270635977], "count": [1125]}, "frame_index": {"min": [0], "max": [1124], "mean": [562.0], "std": [324.7593981190793], "count": [1125]}, "episode_index": {"min": [334], "max": [334], "mean": [334.0], "std": [0.0], "count": [1125]}, "index": {"min": [149312], "max": [150436], "mean": [149874.0], "std": [324.7593981190793], "count": [1125]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1125]}}} +{"episode_index": 335, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4693738321799308]], [[0.44199548250672815]], [[0.4025037886069461]]], "std": [[[0.22860322283791545]], [[0.2099222577834302]], [[0.21149508039851989]]], "count": [170]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48163861495578625]], [[0.46746470107650906]], [[0.43296359252851463]]], "std": [[[0.22677644090918248]], [[0.19232648995627877]], [[0.20597573025427418]]], "count": [170]}, "observation.state": {"min": [0.5156700611114502, -0.23494869470596313, 0.10463523119688034, 0.3038407266139984, -1.2178411483764648, -0.7864556312561035, -0.5836146473884583, -0.5247983336448669, 0.16100181639194489, -0.10568372905254364, -0.5904062986373901, -1.2903459072113037], "max": [0.6370018720626831, -0.01615596003830433, 0.12452810257673264, 2.3254613876342773, -0.4272623360157013, 0.6007571816444397, -0.522527813911438, -0.48564407229423523, 0.1733243465423584, 1.4906858205795288, 0.7980937957763672, 0.2992834150791168], "mean": [0.5802603363990784, -0.11869732290506363, 0.11459729820489883, 1.5881863832473755, -0.7971678376197815, -0.08219939470291138, -0.5538250803947449, -0.5090619921684265, 0.1681835651397705, 0.3409787118434906, 0.1133308932185173, -0.7691938877105713], "std": [0.03342169150710106, 0.07558705657720566, 0.004853069316595793, 0.7305026650428772, 0.2107865810394287, 0.47160452604293823, 0.01592978648841381, 0.012391125783324242, 0.004255393054336309, 0.5780391693115234, 0.44839969277381897, 0.5544643402099609], "count": [942]}, "action": {"min": [-0.1232878565788269, -0.08817870169878006, 0.08662731945514679, 0.001751726376824081, 0.33308103680610657, -0.27150529623031616, 0.5368329286575317, 0.11801999062299728, -0.13337518274784088, 0.060901571065187454, -0.5877108573913574, -0.48001110553741455, -0.5923756957054138, -0.5299152731895447], "max": [-0.10138560086488724, -0.06949051469564438, 0.12194161862134933, 0.5141263604164124, 0.7689078450202942, 0.41081663966178894, 0.8259090781211853, 0.13025888800621033, -0.118758924305439, 0.06582535803318024, 0.8467466235160828, 0.4048716127872467, 0.602410614490509, 0.7917920351028442], "mean": [-0.11118888109922409, -0.07857850193977356, 0.10099845379590988, 0.25385135412216187, 0.6193733215332031, 0.15175782144069672, 0.6537149548530579, 0.1249546930193901, -0.12721474468708038, 0.06344396620988846, 0.5332264304161072, -0.14793993532657623, -0.3654669225215912, 0.23762865364551544], "std": [0.003901843447238207, 0.004072085022926331, 0.01083364337682724, 0.1666335016489029, 0.10823199898004532, 0.23368051648139954, 0.08646339178085327, 0.00288773444481194, 0.005114721599966288, 0.001249925815500319, 0.43270865082740784, 0.23536087572574615, 0.36306723952293396, 0.35958415269851685], "count": [942]}, "timestamp": {"min": [0.0], "max": [31.366666666666667], "mean": [15.683333333333334], "std": [9.064394118789227], "count": [942]}, "frame_index": {"min": [0], "max": [941], "mean": [470.5], "std": [271.93182356367686], "count": [942]}, "episode_index": {"min": [335], "max": [335], "mean": [335.0], "std": [0.0], "count": [942]}, "index": {"min": [150437], "max": [151378], "mean": [150907.5], "std": [271.93182356367686], "count": [942]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [942]}}} +{"episode_index": 336, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4646632392196118]], [[0.44084361444778114]], [[0.4015036813774559]]], "std": [[[0.22760501686367987]], [[0.20953069395756566]], [[0.21170732511024656]]], "count": [222]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4777551779720897]], [[0.4672163033131171]], [[0.4330608917741271]]], "std": [[[0.22677849045024398]], [[0.1927863824482064]], [[0.2065785539993853]]], "count": [222]}, "observation.state": {"min": [0.5102486610412598, -0.23571324348449707, 0.10805484652519226, 0.279097318649292, -1.1204192638397217, -0.9114171266555786, -0.5751196146011353, -0.5567626953125, 0.16027329862117767, -0.1895597130060196, 0.13158094882965088, -0.9176243543624878], "max": [0.6884584426879883, -0.010232619941234589, 0.1357513815164566, 2.5548622608184814, -0.14633768796920776, 0.49455875158309937, -0.4745696485042572, -0.5175235271453857, 0.17222638428211212, 1.3355152606964111, 0.8963354229927063, 0.2346649467945099], "mean": [0.6305893063545227, -0.14933589100837708, 0.11608385294675827, 1.401942491531372, -0.6279742121696472, -0.027797795832157135, -0.5377245545387268, -0.5391114354133606, 0.16607090830802917, 0.41592392325401306, 0.5982880592346191, -0.4429025948047638], "std": [0.03946509212255478, 0.054676737636327744, 0.0060025956481695175, 0.6693696975708008, 0.27508947253227234, 0.4142042100429535, 0.030097998678684235, 0.008513734675943851, 0.00215437775477767, 0.39695248007774353, 0.20918326079845428, 0.29119768738746643], "count": [1346]}, "action": {"min": [-0.12281621247529984, -0.09438017010688782, 0.08439783751964569, 0.05417532101273537, 0.3167448043823242, -0.392934113740921, 0.48814499378204346, 0.12432075291872025, -0.13165797293186188, 0.059853024780750275, -0.6684426665306091, -0.43351322412490845, -0.6671672463417053, -0.5846146941184998], "max": [-0.09126915037631989, -0.07223250716924667, 0.11753494292497635, 0.5532152652740479, 0.8043533563613892, 0.42673343420028687, 0.9092637896537781, 0.1342640370130539, -0.11826027929782867, 0.06894273310899734, 0.6747008562088013, 0.435976505279541, 0.6768515706062317, 0.7578641772270203], "mean": [-0.10465766489505768, -0.08303509652614594, 0.09509824961423874, 0.2710297703742981, 0.5856208801269531, 0.06070312485098839, 0.6888640522956848, 0.12765048444271088, -0.1255960762500763, 0.0625678151845932, 0.21870236098766327, -0.16834698617458344, -0.21925562620162964, 0.2876397669315338], "std": [0.006144801154732704, 0.004926680587232113, 0.007912986911833286, 0.1417369842529297, 0.12740342319011688, 0.23417501151561737, 0.11921903491020203, 0.0030314677860587835, 0.0026778168976306915, 0.0019289507763460279, 0.4812387228012085, 0.26945701241493225, 0.510899543762207, 0.4772866368293762], "count": [1346]}, "timestamp": {"min": [0.0], "max": [44.833333333333336], "mean": [22.416666666666668], "std": [12.951887464338503], "count": [1346]}, "frame_index": {"min": [0], "max": [1345], "mean": [672.5], "std": [388.5566239301551], "count": [1346]}, "episode_index": {"min": [336], "max": [336], "mean": [336.0], "std": [0.0], "count": [1346]}, "index": {"min": [151379], "max": [152724], "mean": [152051.5], "std": [388.5566239301551], "count": [1346]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1346]}}} +{"episode_index": 337, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4684960283516837]], [[0.44112369043441385]], [[0.4011631117398488]]], "std": [[[0.22669859574162488]], [[0.20845402522092002]], [[0.21092980655637714]]], "count": [298]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4814291034273515]], [[0.46717265703820676]], [[0.43208271464812625]]], "std": [[[0.22509019491129284]], [[0.1910640996509885]], [[0.2050306021655043]]], "count": [298]}, "observation.state": {"min": [0.5282735228538513, -0.21873095631599426, 0.10104192048311234, 0.004822869785130024, -1.3414971828460693, -0.7124853730201721, -0.645435094833374, -0.5793671607971191, 0.14482800662517548, 0.10589341819286346, -0.3559380769729614, -0.9044026136398315], "max": [0.7102211117744446, -0.006108679808676243, 0.13299675285816193, 2.716113805770874, 0.13745631277561188, 1.2136881351470947, -0.4422268569469452, -0.43611815571784973, 0.1739504486322403, 1.6806648969650269, 0.8776162266731262, 0.8426560163497925], "mean": [0.6296041011810303, -0.1313028782606125, 0.11438214778900146, 1.2803161144256592, -0.6777676939964294, 0.13032321631908417, -0.562445342540741, -0.4901677966117859, 0.1636657565832138, 0.7495035529136658, 0.37678301334381104, -0.31922081112861633], "std": [0.03275115042924881, 0.058383308351039886, 0.007404257543385029, 0.719474196434021, 0.33509644865989685, 0.4140551686286926, 0.042562905699014664, 0.033176489174366, 0.006779959425330162, 0.4912050664424896, 0.34185901284217834, 0.556404173374176], "count": [1997]}, "action": {"min": [-0.12318353354930878, -0.09157612919807434, 0.07924696058034897, -0.05457093194127083, 0.40905654430389404, -0.3947611451148987, 0.46680617332458496, 0.10923521220684052, -0.13131096959114075, 0.048579487949609756, -0.5716739296913147, -0.5040198564529419, -0.570945680141449, -0.5363888144493103], "max": [-0.09567234665155411, -0.0709487795829773, 0.11560507118701935, 0.5515653491020203, 0.8839892745018005, 0.49515920877456665, 0.8649791479110718, 0.14518441259860992, -0.10992174595594406, 0.07047989219427109, 0.8248019218444824, 0.4273182153701782, 0.636414647102356, 0.8227207660675049], "mean": [-0.10584705322980881, -0.07985763996839523, 0.09560611844062805, 0.20677228271961212, 0.6195446848869324, 0.06883751600980759, 0.6856481432914734, 0.12397235631942749, -0.12022719532251358, 0.0639057531952858, 0.4719671308994293, -0.2472294718027115, -0.32761111855506897, 0.5089908838272095], "std": [0.004960317630320787, 0.004698395729064941, 0.009043978527188301, 0.13616111874580383, 0.12535637617111206, 0.22594819962978363, 0.11510904133319855, 0.0068000853061676025, 0.006097865756601095, 0.004223778378218412, 0.35930269956588745, 0.21790802478790283, 0.2707761824131012, 0.31594613194465637], "count": [1997]}, "timestamp": {"min": [0.0], "max": [66.53333333333333], "mean": [33.266666666666666], "std": [19.21613905028791], "count": [1997]}, "frame_index": {"min": [0], "max": [1996], "mean": [998.0], "std": [576.4841715086374], "count": [1997]}, "episode_index": {"min": [337], "max": [337], "mean": [337.0], "std": [0.0], "count": [1997]}, "index": {"min": [152725], "max": [154721], "mean": [153723.0], "std": [576.4841715086374], "count": [1997]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1997]}}} +{"episode_index": 338, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4733731783444523]], [[0.44606731941481254]], [[0.4061004535089799]]], "std": [[[0.22557482903636059]], [[0.20718249033749722]], [[0.20971734060881156]]], "count": [193]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4861756394843487]], [[0.4716550989422827]], [[0.43731758045762925]]], "std": [[[0.2236777759321016]], [[0.1900628109331174]], [[0.2038297399803811]]], "count": [193]}, "observation.state": {"min": [0.524867832660675, -0.2244921177625656, 0.10398449003696442, 0.18033334612846375, -1.1439207792282104, -0.36511915922164917, -0.6107214689254761, -0.5522217154502869, 0.15740719437599182, -0.04088953882455826, 0.4241197109222412, -1.0291988849639893], "max": [0.6841182708740234, 0.008626289665699005, 0.12733975052833557, 1.9369059801101685, 0.11614102125167847, 0.7171568274497986, -0.5121870636940002, -0.47453877329826355, 0.16938750445842743, 1.3338377475738525, 0.8695546984672546, 0.2553572654724121], "mean": [0.6063268780708313, -0.12517079710960388, 0.11207497864961624, 1.1783452033996582, -0.6166330575942993, 0.2596101462841034, -0.5574941635131836, -0.5081796050071716, 0.16443587839603424, 0.46076086163520813, 0.6525000929832458, -0.38094833493232727], "std": [0.03905994072556496, 0.06508507579565048, 0.005073068663477898, 0.5954843759536743, 0.3297857642173767, 0.2787086069583893, 0.024813055992126465, 0.013807523064315319, 0.00360296294093132, 0.38593819737434387, 0.10919608920812607, 0.35638388991355896], "count": [1121]}, "action": {"min": [-0.12092025578022003, -0.08867895603179932, 0.08571479469537735, -0.03498861566185951, 0.39423972368240356, -0.399711936712265, 0.5384281277656555, 0.1197323426604271, -0.12561944127082825, 0.05549131706357002, -0.6052321791648865, -0.44664642214775085, -0.6182833313941956, -0.6249975562095642], "max": [-0.09862630814313889, -0.07023267447948456, 0.11685334891080856, 0.36334699392318726, 0.8193570971488953, 0.3461697995662689, 0.8934486508369446, 0.13016512989997864, -0.11414742469787598, 0.06699465960264206, 0.6514561176300049, 0.43536847829818726, 0.6689033508300781, 0.7515561580657959], "mean": [-0.10982882976531982, -0.07930369675159454, 0.09656444936990738, 0.1604541689157486, 0.580894410610199, 0.040417008101940155, 0.737282395362854, 0.12467790395021439, -0.12048807740211487, 0.06461945176124573, 0.16666081547737122, -0.1587117314338684, -0.13872458040714264, 0.21839550137519836], "std": [0.005335257388651371, 0.0036857093218714, 0.00898723118007183, 0.10702508687973022, 0.13020075857639313, 0.22635123133659363, 0.10935021191835403, 0.002654708456248045, 0.003478259313851595, 0.002024882473051548, 0.4635733962059021, 0.29917722940444946, 0.5360726714134216, 0.5369472503662109], "count": [1121]}, "timestamp": {"min": [0.0], "max": [37.333333333333336], "mean": [18.666666666666664], "std": [10.786823237429802], "count": [1121]}, "frame_index": {"min": [0], "max": [1120], "mean": [560.0], "std": [323.60469712289404], "count": [1121]}, "episode_index": {"min": [338], "max": [338], "mean": [338.0], "std": [0.0], "count": [1121]}, "index": {"min": [154722], "max": [155842], "mean": [155282.0], "std": [323.60469712289404], "count": [1121]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1121]}}} +{"episode_index": 339, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43397777209174265]], [[0.40649257074624723]], [[0.3658404947449065]]], "std": [[[0.23300758574071237]], [[0.21684264847237364]], [[0.2190778186421961]]], "count": [182]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.446679882209294]], [[0.4348297122267711]], [[0.3987909648902296]]], "std": [[[0.22989640299763817]], [[0.20037534220254652]], [[0.21401992510056217]]], "count": [182]}, "observation.state": {"min": [0.4673566222190857, -0.23436950147151947, 0.08893197774887085, 0.7771109342575073, -0.618826687335968, -0.2183574140071869, -0.7329028248786926, -0.5342354774475098, 0.14911353588104248, 0.3732481002807617, -0.5610294938087463, -0.0721445083618164], "max": [0.6417514085769653, -0.06395967304706573, 0.11165463924407959, 2.3745288848876953, 0.07378371059894562, 0.5702400207519531, -0.6125208139419556, -0.3718341290950775, 0.17103120684623718, 1.621951699256897, 0.33038705587387085, 0.6870339512825012], "mean": [0.5761223435401917, -0.15653330087661743, 0.10213597118854523, 1.7348264455795288, -0.30739495158195496, 0.20578384399414062, -0.6741802096366882, -0.4779393970966339, 0.1599673181772232, 1.1820003986358643, 0.06090313568711281, 0.3513778746128082], "std": [0.054327525198459625, 0.040842585265636444, 0.004818362649530172, 0.5366767048835754, 0.18850046396255493, 0.2015257328748703, 0.04138697683811188, 0.05996992066502571, 0.004130478948354721, 0.4346579611301422, 0.23864318430423737, 0.20479588210582733], "count": [1038]}, "action": {"min": [-0.13004468381404877, -0.08500277251005173, 0.08159788697957993, -0.07380736619234085, 0.14341001212596893, -0.2287605106830597, 0.7562754154205322, 0.0996088907122612, -0.12032242864370346, 0.0500045008957386, 0.180599644780159, -0.4334426522254944, -0.5142483115196228, 0.6510775089263916], "max": [-0.10863888263702393, -0.07018454372882843, 0.11162145435810089, 0.38048169016838074, 0.5424092411994934, 0.4520266354084015, 0.9033857583999634, 0.12649427354335785, -0.10203839093446732, 0.06573019921779633, 0.5515768527984619, -0.03204793855547905, 0.09522396326065063, 0.9745638370513916], "mean": [-0.11969709396362305, -0.07856077700853348, 0.09250236302614212, 0.20786046981811523, 0.36987975239753723, 0.21251748502254486, 0.8340787887573242, 0.11472588032484055, -0.11346771568059921, 0.05674867704510689, 0.3282538950443268, -0.22816868126392365, -0.22112742066383362, 0.8497517108917236], "std": [0.006351005751639605, 0.0038509510923177004, 0.008781456388533115, 0.13617004454135895, 0.09712039679288864, 0.22304803133010864, 0.03750968351960182, 0.007713354658335447, 0.005970196332782507, 0.005383651703596115, 0.11442249268293381, 0.13498665392398834, 0.17312096059322357, 0.08904379606246948], "count": [1038]}, "timestamp": {"min": [0.0], "max": [34.56666666666667], "mean": [17.28333333333333], "std": [9.988155021861683], "count": [1038]}, "frame_index": {"min": [0], "max": [1037], "mean": [518.5], "std": [299.64465065585046], "count": [1038]}, "episode_index": {"min": [339], "max": [339], "mean": [339.0], "std": [0.0], "count": [1038]}, "index": {"min": [155843], "max": [156880], "mean": [156361.5], "std": [299.64465065585046], "count": [1038]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1038]}}} +{"episode_index": 340, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4286595832491072]], [[0.4008251591873863]], [[0.35884348258203624]]], "std": [[[0.2314740024951575]], [[0.21551015742551646]], [[0.21693564586347103]]], "count": [194]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4398498964018597]], [[0.42837694000853493]], [[0.39019626794016576]]], "std": [[[0.22808290873307702]], [[0.19878576496651468]], [[0.2119776968068665]]], "count": [194]}, "observation.state": {"min": [0.4045630693435669, -0.23518037796020508, 0.0909438207745552, 0.447897732257843, -1.2883455753326416, -0.95602947473526, -0.7150941491127014, -0.5592108368873596, 0.151697039604187, -0.3852004408836365, -0.46757009625434875, -1.199721097946167], "max": [0.6278581619262695, -0.0466221384704113, 0.11937794089317322, 2.278700590133667, -0.2630252540111542, 0.6028009057044983, -0.5558591485023499, -0.42009350657463074, 0.1665538251399994, 1.8454811573028564, 0.5684078335762024, 0.32225361466407776], "mean": [0.5632420778274536, -0.12091147154569626, 0.10679757595062256, 1.623023509979248, -0.8524768948554993, -0.06856311857700348, -0.6285854578018188, -0.5117220282554626, 0.15966325998306274, 0.6115545034408569, 0.20321498811244965, -0.3283902406692505], "std": [0.06294892728328705, 0.045754142105579376, 0.005780641920864582, 0.5098763108253479, 0.3016756474971771, 0.42967134714126587, 0.03828538954257965, 0.03624432161450386, 0.005113943014293909, 0.7645063400268555, 0.25432002544403076, 0.5235716700553894], "count": [1126]}, "action": {"min": [-0.1373213231563568, -0.08749015629291534, 0.0850025862455368, -0.08932746201753616, 0.3107790946960449, -0.2567988932132721, 0.494767427444458, 0.11381679773330688, -0.12619048357009888, 0.046376120299100876, -0.6573153734207153, -0.4116192162036896, -0.6502026319503784, -0.46247774362564087], "max": [-0.10622058063745499, -0.0688275620341301, 0.11742305010557175, 0.4644489884376526, 0.7638422250747681, 0.39922645688056946, 0.8654680848121643, 0.127094104886055, -0.10523476451635361, 0.06602833420038223, 0.7667853236198425, 0.21778973937034607, 0.6779674887657166, 0.8747454285621643], "mean": [-0.11677619069814682, -0.07479869574308395, 0.09595128893852234, 0.23315155506134033, 0.6268705725669861, 0.17188619077205658, 0.6674729585647583, 0.12055618315935135, -0.11760622262954712, 0.05594310536980629, 0.290561318397522, -0.1842668354511261, -0.17118854820728302, 0.39228811860084534], "std": [0.009333617053925991, 0.002662230283021927, 0.008933222852647305, 0.15138216316699982, 0.12578381597995758, 0.16581249237060547, 0.10665854066610336, 0.0040537454187870026, 0.005801494233310223, 0.005164555739611387, 0.4735553562641144, 0.21180430054664612, 0.45282840728759766, 0.47355595231056213], "count": [1126]}, "timestamp": {"min": [0.0], "max": [37.5], "mean": [18.75], "std": [10.83493577892058], "count": [1126]}, "frame_index": {"min": [0], "max": [1125], "mean": [562.5], "std": [325.0480733676174], "count": [1126]}, "episode_index": {"min": [340], "max": [340], "mean": [340.0], "std": [0.0], "count": [1126]}, "index": {"min": [156881], "max": [158006], "mean": [157443.5], "std": [325.0480733676174], "count": [1126]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1126]}}} +{"episode_index": 341, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4410221908268402]], [[0.4132867968147958]], [[0.37075442270552084]]], "std": [[[0.232089645528661]], [[0.2160035460435282]], [[0.21839103645023053]]], "count": [229]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4530751134514941]], [[0.4404147318073275]], [[0.40277239775094903]]], "std": [[[0.22803259037603624]], [[0.19935617391193647]], [[0.21331223289708884]]], "count": [229]}, "observation.state": {"min": [0.44360148906707764, -0.21086150407791138, 0.09533175826072693, 0.3258581757545471, -1.125884771347046, -0.6927844882011414, -0.6901729106903076, -0.5429081320762634, 0.1487078070640564, -0.3292132019996643, -0.27108681201934814, -1.1323151588439941], "max": [0.5999482274055481, -0.003560180077329278, 0.11384277790784836, 2.8779945373535156, -0.15357942879199982, 0.5274163484573364, -0.5805564522743225, -0.4536256194114685, 0.16992157697677612, 1.621951699256897, 0.6479302644729614, 0.4982447624206543], "mean": [0.5416336059570312, -0.10540471225976944, 0.10287356376647949, 1.457306981086731, -0.5119099020957947, 0.047544583678245544, -0.6345003843307495, -0.5057184100151062, 0.15824000537395477, 0.6845575571060181, 0.400716096162796, -0.056989315897226334], "std": [0.039342593401670456, 0.04728786274790764, 0.004056882578879595, 0.7061891555786133, 0.2333105504512787, 0.2991144061088562, 0.024537084624171257, 0.019020581617951393, 0.00535588338971138, 0.5292624831199646, 0.21761156618595123, 0.4471570551395416], "count": [1404]}, "action": {"min": [-0.132668599486351, -0.08232177048921585, 0.08521702885627747, 0.008775134570896626, 0.2819826900959015, -0.3550373613834381, 0.5821054577827454, 0.11035837978124619, -0.12388046085834503, 0.05044982582330704, -0.6547533869743347, -0.4303227663040161, -0.665962815284729, -0.5291300415992737], "max": [-0.11489526927471161, -0.0641818717122078, 0.12006252259016037, 0.5365484356880188, 0.7645984888076782, 0.6354708075523376, 0.8831576704978943, 0.12690401077270508, -0.10587504506111145, 0.06416518986225128, 0.7498810887336731, 0.2599588632583618, 0.6580265760421753, 0.8482833504676819], "mean": [-0.12245245277881622, -0.07455176115036011, 0.09817048162221909, 0.22080600261688232, 0.5023741126060486, 0.08577857911586761, 0.7589942812919617, 0.11933091282844543, -0.1143692284822464, 0.05616437643766403, 0.3926014304161072, -0.23043744266033173, -0.39594337344169617, 0.6019445657730103], "std": [0.004462259355932474, 0.004299491178244352, 0.0070409467443823814, 0.13881775736808777, 0.10980608314275742, 0.2731795310974121, 0.09736093133687973, 0.003966670949012041, 0.00487577123567462, 0.003490227973088622, 0.26918861269950867, 0.15061427652835846, 0.2902481257915497, 0.3070250153541565], "count": [1404]}, "timestamp": {"min": [0.0], "max": [46.766666666666666], "mean": [23.383333333333333], "std": [13.509992872218971], "count": [1404]}, "frame_index": {"min": [0], "max": [1403], "mean": [701.5], "std": [405.2997861665691], "count": [1404]}, "episode_index": {"min": [341], "max": [341], "mean": [341.0], "std": [0.0], "count": [1404]}, "index": {"min": [158007], "max": [159410], "mean": [158708.5], "std": [405.2997861665691], "count": [1404]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1404]}}} +{"episode_index": 342, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4290391490317961]], [[0.3999303384523973]], [[0.35682592325974677]]], "std": [[[0.22972611161974518]], [[0.21073671960959212]], [[0.21108738832113738]]], "count": [143]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43966289021436084]], [[0.42544484437131497]], [[0.38624062266709325]]], "std": [[[0.2271837108968233]], [[0.1946919341539008]], [[0.20610585600808543]]], "count": [143]}, "observation.state": {"min": [0.4741140305995941, -0.27580195665359497, 0.09524490684270859, 0.3063569962978363, -0.6633701920509338, -0.350101113319397, -0.649983823299408, -0.5833057165145874, 0.1520729660987854, 0.5235958099365234, 0.19047127664089203, -0.07750514149665833], "max": [0.654161810874939, -0.0647473931312561, 0.11951275169849396, 2.504956007003784, -0.1333572268486023, 0.47485917806625366, -0.5546621084213257, -0.5291925668716431, 0.16035106778144836, 1.428407907485962, 0.4641541838645935, 0.315586119890213], "mean": [0.5813830494880676, -0.1674569845199585, 0.10524206608533859, 1.621275544166565, -0.4397720992565155, 0.16466666758060455, -0.6198603510856628, -0.5499869585037231, 0.1585637927055359, 1.0040340423583984, 0.383762925863266, 0.1548124998807907], "std": [0.052768953144550323, 0.0646960437297821, 0.00712805287912488, 0.7724515795707703, 0.14740897715091705, 0.22234900295734406, 0.021031463518738747, 0.013634353876113892, 0.002265342976897955, 0.24973958730697632, 0.06927967816591263, 0.1118842288851738], "count": [752]}, "action": {"min": [-0.13342401385307312, -0.08906365931034088, 0.08158844709396362, -0.0768171101808548, 0.2638128697872162, -0.37484410405158997, 0.7151635885238647, 0.11950485408306122, -0.12098489701747894, 0.04837450757622719, 0.36112844944000244, -0.3405214250087738, -0.5069528222084045, 0.6629289388656616], "max": [-0.10376756638288498, -0.07226358354091644, 0.10825228691101074, 0.44558072090148926, 0.6020475625991821, 0.5750718116760254, 0.8425315618515015, 0.1332586109638214, -0.1160678043961525, 0.05415711924433708, 0.5154947638511658, -0.1925497055053711, -0.16017484664916992, 0.8553087711334229], "mean": [-0.11695461720228195, -0.08052384853363037, 0.09276410192251205, 0.19794048368930817, 0.4320238530635834, 0.18321114778518677, 0.7759118676185608, 0.12222599238157272, -0.11926044523715973, 0.05145911127328873, 0.43327638506889343, -0.2798291742801666, -0.3483254909515381, 0.7730880379676819], "std": [0.008435999974608421, 0.004371935036033392, 0.00866384245455265, 0.16096703708171844, 0.1063629686832428, 0.316565603017807, 0.03365600109100342, 0.003069342114031315, 0.0014190870570018888, 0.0013662773417308927, 0.04315108805894852, 0.04589734226465225, 0.09073308855295181, 0.05264445021748543], "count": [752]}, "timestamp": {"min": [0.0], "max": [25.033333333333335], "mean": [12.516666666666666], "std": [7.2361169758986685], "count": [752]}, "frame_index": {"min": [0], "max": [751], "mean": [375.5], "std": [217.08350927696006], "count": [752]}, "episode_index": {"min": [342], "max": [342], "mean": [342.0], "std": [0.0], "count": [752]}, "index": {"min": [159411], "max": [160162], "mean": [159786.5], "std": [217.08350927696006], "count": [752]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [752]}}} +{"episode_index": 343, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4289430190233275]], [[0.4018900393219618]], [[0.36096520272065463]]], "std": [[[0.2316462999494379]], [[0.21468710660907991]], [[0.21572581137845878]]], "count": [205]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43828826850523406]], [[0.42653707024815346]], [[0.38958746346777196]]], "std": [[[0.22920225878108708]], [[0.1985991951833435]], [[0.21049148748077365]]], "count": [205]}, "observation.state": {"min": [0.42024022340774536, -0.2526569366455078, 0.09084399789571762, 0.992043137550354, -0.9541326761245728, -1.0172500610351562, -0.6800329685211182, -0.5670416355133057, 0.15318000316619873, 0.1614612638950348, 0.2627519965171814, -0.5403370261192322], "max": [0.6249004006385803, -0.08404649794101715, 0.10972186923027039, 2.8519928455352783, 0.1839127242565155, 0.6947243809700012, -0.5871825218200684, -0.5082793831825256, 0.1650332659482956, 1.4607001543045044, 0.5424469113349915, 0.30793583393096924], "mean": [0.5670120716094971, -0.18745125830173492, 0.09753890335559845, 1.983580231666565, -0.5360682010650635, 0.030391598120331764, -0.6472994685173035, -0.5416705012321472, 0.16133476793766022, 0.8412498831748962, 0.34969308972358704, 0.029910795390605927], "std": [0.05188794806599617, 0.049480512738227844, 0.0041236840188503265, 0.4877575635910034, 0.2500472664833069, 0.39740896224975586, 0.02029864490032196, 0.012654595077037811, 0.0027707081753760576, 0.4173515737056732, 0.06767948716878891, 0.3012474477291107], "count": [1209]}, "action": {"min": [-0.1356450468301773, -0.08820214122533798, 0.07626452296972275, -0.03339676931500435, 0.2809179127216339, -0.18011189997196198, 0.4651288092136383, 0.11392063647508621, -0.1233510822057724, 0.04856732487678528, 0.3568399250507355, -0.3857714533805847, -0.59392911195755, 0.4818896949291229], "max": [-0.11588488519191742, -0.07267547398805618, 0.11027040332555771, 0.4772632420063019, 0.6477870345115662, 0.6538399457931519, 0.9463948607444763, 0.1286633312702179, -0.11469078809022903, 0.05457065626978874, 0.6216774582862854, -0.1668229103088379, -0.1666654348373413, 0.833374559879303], "mean": [-0.12308312207460403, -0.0777815505862236, 0.08746196329593658, 0.24818305671215057, 0.4223169684410095, 0.3120601177215576, 0.7640725374221802, 0.1180412694811821, -0.11991989612579346, 0.05197908356785774, 0.4683123528957367, -0.26351308822631836, -0.38586246967315674, 0.7187607288360596], "std": [0.005018546245992184, 0.002402384765446186, 0.009267850778996944, 0.12126144021749496, 0.08997291326522827, 0.20091652870178223, 0.12528960406780243, 0.002884918125346303, 0.0024268184788525105, 0.0012508881045505404, 0.08672028034925461, 0.07185585051774979, 0.13183294236660004, 0.12519457936286926], "count": [1209]}, "timestamp": {"min": [0.0], "max": [40.266666666666666], "mean": [20.133333333333333], "std": [11.633603944639887], "count": [1209]}, "frame_index": {"min": [0], "max": [1208], "mean": [604.0], "std": [349.00811833919664], "count": [1209]}, "episode_index": {"min": [343], "max": [343], "mean": [343.0], "std": [0.0], "count": [1209]}, "index": {"min": [160163], "max": [161371], "mean": [160767.0], "std": [349.00811833919664], "count": [1209]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1209]}}} +{"episode_index": 344, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.41769429218657156]], [[0.390098827738166]], [[0.34610415057437116]]], "std": [[[0.2310710644218452]], [[0.2129414621573349]], [[0.21356161059476986]]], "count": [220]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4299504617250941]], [[0.41741796271538917]], [[0.3773007786195286]]], "std": [[[0.2290189111610921]], [[0.19731341650034476]], [[0.2089276436469006]]], "count": [220]}, "observation.state": {"min": [0.48033854365348816, -0.2684190273284912, 0.09165289252996445, 0.8507121205329895, -0.9994959831237793, -0.45270106196403503, -0.6318894624710083, -0.5565310120582581, 0.15699368715286255, -0.020759299397468567, 0.0467296801507473, -0.7071582674980164], "max": [0.7057341933250427, -0.07793010026216507, 0.12318384647369385, 2.126885175704956, 0.02131528966128826, 0.5387862920761108, -0.5709879994392395, -0.5144807696342468, 0.16375772655010223, 1.3692753314971924, 0.4207037687301636, 0.4910166561603546], "mean": [0.6102588772773743, -0.16977015137672424, 0.10970952361822128, 1.6859697103500366, -0.4174501895904541, -0.0599636435508728, -0.5928270220756531, -0.5452313423156738, 0.1606861799955368, 0.7955400943756104, 0.2338416874408722, -0.14203022420406342], "std": [0.05307493358850479, 0.04011271893978119, 0.007272189017385244, 0.38039857149124146, 0.27714329957962036, 0.30492016673088074, 0.017450591549277306, 0.009939620271325111, 0.001765588647685945, 0.5044158101081848, 0.09095578640699387, 0.4065002202987671], "count": [1331]}, "action": {"min": [-0.12784937024116516, -0.09396897256374359, 0.08103923499584198, -0.006820254493504763, 0.3099585175514221, -0.21836400032043457, 0.5839799046516418, 0.1203307956457138, -0.12479224056005478, 0.04977186396718025, -0.6188816428184509, -0.3229033946990967, -0.6174327731132507, -0.4945126175880432], "max": [-0.09949329495429993, -0.06486891955137253, 0.11091168224811554, 0.47337451577186584, 0.6933726668357849, 0.34296518564224243, 0.9210577011108398, 0.12902915477752686, -0.11746889352798462, 0.057885900139808655, 0.6979371905326843, 0.15278305113315582, 0.6508520841598511, 0.8794786334037781], "mean": [-0.11098907142877579, -0.08242736756801605, 0.09260028600692749, 0.31192323565483093, 0.46458905935287476, 0.1507066935300827, 0.7732045650482178, 0.12508869171142578, -0.12260598689317703, 0.05511343851685524, 0.4847821295261383, -0.2201557159423828, -0.30980902910232544, 0.643814742565155], "std": [0.008303731679916382, 0.00499027268961072, 0.008721687830984592, 0.15242142975330353, 0.10938377678394318, 0.1498212367296219, 0.09305603057146072, 0.0021303072571754456, 0.001895398017950356, 0.0020217725541442633, 0.2399815171957016, 0.09773160517215729, 0.2491457760334015, 0.2771698236465454], "count": [1331]}, "timestamp": {"min": [0.0], "max": [44.333333333333336], "mean": [22.166666666666664], "std": [12.807549856757666], "count": [1331]}, "frame_index": {"min": [0], "max": [1330], "mean": [665.0], "std": [384.22649570273], "count": [1331]}, "episode_index": {"min": [344], "max": [344], "mean": [344.0], "std": [0.0], "count": [1331]}, "index": {"min": [161372], "max": [162702], "mean": [162037.0], "std": [384.22649570273], "count": [1331]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1331]}}} +{"episode_index": 345, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4216742629087732]], [[0.3952835492629088]], [[0.35473020829877355]]], "std": [[[0.2312366126494975]], [[0.21555092511076915]], [[0.21759124320238185]]], "count": [197]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43347574317375004]], [[0.42323032994923854]], [[0.38687454381075614]]], "std": [[[0.22854881039729033]], [[0.1995897008368896]], [[0.21298467100345023]]], "count": [197]}, "observation.state": {"min": [0.4993519186973572, -0.2994180917739868, 0.09379176795482635, 0.7322372794151306, -0.9359599947929382, -0.3386111855506897, -0.7366020083427429, -0.5786643624305725, 0.15048500895500183, 0.4135085642337799, -0.44721126556396484, -0.5424017906188965], "max": [0.7200058102607727, -0.11902275681495667, 0.11570943892002106, 2.249553680419922, 0.05301496013998985, 0.6470372676849365, -0.5671034455299377, -0.3965700566768646, 0.16905435919761658, 1.3288052082061768, 0.4970836043357849, 0.6558815240859985], "mean": [0.604607343673706, -0.17107713222503662, 0.10344997048377991, 1.5589890480041504, -0.4027821123600006, 0.17401188611984253, -0.6389734745025635, -0.5061901807785034, 0.1589948683977127, 0.995498538017273, 0.296260803937912, 0.1775149405002594], "std": [0.056747548282146454, 0.030618390068411827, 0.00519549148157239, 0.5116237998008728, 0.2927612066268921, 0.31794896721839905, 0.04051833599805832, 0.057813920080661774, 0.005897420458495617, 0.31042513251304626, 0.23965880274772644, 0.2975735366344452], "count": [1152]}, "action": {"min": [-0.131622314453125, -0.09165612608194351, 0.077643021941185, -0.07220759242773056, 0.26196640729904175, -0.25612133741378784, 0.6526850461959839, 0.10917480289936066, -0.12432905286550522, 0.04785887151956558, 0.2328462451696396, -0.3844579756259918, -0.5427230596542358, 0.5259910225868225], "max": [-0.1028323546051979, -0.07186216861009598, 0.10690931975841522, 0.47768813371658325, 0.6740370392799377, 0.46236634254455566, 0.9114912152290344, 0.1309821456670761, -0.09953494369983673, 0.06501130759716034, 0.6489906311035156, -0.09353379905223846, -0.03586030751466751, 0.9665604829788208], "mean": [-0.1155129000544548, -0.07954323291778564, 0.08928093314170837, 0.19711139798164368, 0.4619902968406677, 0.14788022637367249, 0.7972972989082336, 0.11882444471120834, -0.1154484897851944, 0.05533141270279884, 0.4034062623977661, -0.2641937732696533, -0.3331795632839203, 0.7791075110435486], "std": [0.005702026188373566, 0.0038721831515431404, 0.00878925807774067, 0.16562040150165558, 0.11114364117383957, 0.21075676381587982, 0.07719322293996811, 0.005902176722884178, 0.008084418252110481, 0.004852870479226112, 0.11678313463926315, 0.08540409803390503, 0.1301785111427307, 0.10755927115678787], "count": [1152]}, "timestamp": {"min": [0.0], "max": [38.36666666666667], "mean": [19.183333333333334], "std": [11.08512099200579], "count": [1152]}, "frame_index": {"min": [0], "max": [1151], "mean": [575.5], "std": [332.5536297601737], "count": [1152]}, "episode_index": {"min": [345], "max": [345], "mean": [345.0], "std": [0.0], "count": [1152]}, "index": {"min": [162703], "max": [163854], "mean": [163278.5], "std": [332.5536297601737], "count": [1152]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1152]}}} +{"episode_index": 346, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4314568974054268]], [[0.4035759347864611]], [[0.3613213546715869]]], "std": [[[0.23267949886489156]], [[0.2147410947406635]], [[0.21579369760657366]]], "count": [209]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4425049710208379]], [[0.4299202786377709]], [[0.3921278067048191]]], "std": [[[0.22913391326325708]], [[0.19808111431996153]], [[0.21049492334481446]]], "count": [209]}, "observation.state": {"min": [0.4821920096874237, -0.24228529632091522, 0.0908997431397438, 0.5508554577827454, -0.6979392170906067, -0.21125182509422302, -0.7015407681465149, -0.5483835339546204, 0.15088427066802979, -0.32774537801742554, -0.44994398951530457, -1.0171167850494385], "max": [0.6356118321418762, -0.026118280366063118, 0.11756443232297897, 2.0948026180267334, -0.011067559942603111, 0.5378667712211609, -0.5933144092559814, -0.4896675944328308, 0.1645730882883072, 1.5483505725860596, 0.39064374566078186, 0.6922433972358704], "mean": [0.5652870535850525, -0.12683555483818054, 0.10547925531864166, 1.5713894367218018, -0.3501877784729004, 0.14312796294689178, -0.6392414569854736, -0.5113593935966492, 0.1561375856399536, 0.8465418219566345, -0.015574658289551735, -0.07057301700115204], "std": [0.043133385479450226, 0.07690909504890442, 0.007009599823504686, 0.43600180745124817, 0.19611522555351257, 0.1746378391981125, 0.026079358533024788, 0.01932458207011223, 0.005494813434779644, 0.8071673512458801, 0.20081250369548798, 0.6477805972099304], "count": [1243]}, "action": {"min": [-0.12637963891029358, -0.08617256581783295, 0.07549723982810974, -0.02840365469455719, 0.3019697666168213, -0.31821581721305847, 0.6980530619621277, 0.11522968858480453, -0.12646383047103882, 0.04972868040204048, -0.6004115343093872, -0.3473207354545593, -0.6327348351478577, -0.5857009291648865], "max": [-0.11325467377901077, -0.06815265864133835, 0.11972013860940933, 0.3905499577522278, 0.5605965852737427, 0.34292834997177124, 0.9290795922279358, 0.12504686415195465, -0.1093909814953804, 0.055277083069086075, 0.785400390625, 0.1356423795223236, 0.6040431261062622, 0.9568856358528137], "mean": [-0.11886725574731827, -0.07705874741077423, 0.09764512628316879, 0.210948184132576, 0.41689711809158325, 0.13829846680164337, 0.8390030860900879, 0.12197183817625046, -0.11577955633401871, 0.053137872368097305, 0.4533359110355377, -0.20750978589057922, -0.2998068630695343, 0.6187805533409119], "std": [0.0030304240062832832, 0.005114392377436161, 0.014057880267500877, 0.10876528918743134, 0.08204874396324158, 0.19072401523590088, 0.060882214456796646, 0.002201070776209235, 0.00674934359267354, 0.001204709056764841, 0.23919759690761566, 0.14634335041046143, 0.2570510506629944, 0.3659855127334595], "count": [1243]}, "timestamp": {"min": [0.0], "max": [41.4], "mean": [20.7], "std": [11.960769206033532], "count": [1243]}, "frame_index": {"min": [0], "max": [1242], "mean": [621.0], "std": [358.82307618100594], "count": [1243]}, "episode_index": {"min": [346], "max": [346], "mean": [346.0], "std": [0.0], "count": [1243]}, "index": {"min": [163855], "max": [165097], "mean": [164476.0], "std": [358.82307618100594], "count": [1243]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1243]}}} +{"episode_index": 347, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42729158790422483]], [[0.40020573417275407]], [[0.36008801102140203]]], "std": [[[0.2313956500605251]], [[0.2141098389102078]], [[0.21402334927977823]]], "count": [204]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4391519541095305]], [[0.42776195053184674]], [[0.3911511811696356]]], "std": [[[0.22822639571416917]], [[0.19682393182390948]], [[0.20787862039400642]]], "count": [204]}, "observation.state": {"min": [0.4605451822280884, -0.27297544479370117, 0.08895141631364822, 0.6557004451751709, -0.8851312398910522, -0.4232827425003052, -0.771678626537323, -0.5658523440361023, 0.15208463370800018, 0.09750582277774811, -0.03839486092329025, -0.7302894592285156], "max": [0.6235103011131287, -0.12852944433689117, 0.11048150062561035, 2.5814929008483887, 0.017489470541477203, 1.1600289344787598, -0.5647711753845215, -0.37899312376976013, 0.1810450553894043, 1.3535486459732056, 0.5655384659767151, 0.23619242012500763], "mean": [0.5627533793449402, -0.19216281175613403, 0.09777946025133133, 1.536904215812683, -0.4310700595378876, 0.3082020878791809, -0.6638838052749634, -0.49579817056655884, 0.16666007041931152, 0.9621431827545166, 0.27332550287246704, -0.12279289960861206], "std": [0.04526441916823387, 0.0358426570892334, 0.005838518030941486, 0.49455177783966064, 0.2014678418636322, 0.3578643798828125, 0.06017491593956947, 0.059271279722452164, 0.007251422852277756, 0.4141010642051697, 0.15921275317668915, 0.3455447852611542], "count": [1201]}, "action": {"min": [-0.1316325068473816, -0.08998803794384003, 0.07591049373149872, -0.16703973710536957, 0.16440027952194214, -0.3024541735649109, 0.6265554428100586, 0.08897127211093903, -0.12775184214115143, 0.04945487901568413, 0.36138638854026794, -0.4137538969516754, -0.5525395274162292, 0.37596118450164795], "max": [-0.11499356478452682, -0.07475974410772324, 0.10565682500600815, 0.39859288930892944, 0.604522168636322, 0.5256944894790649, 0.8993913531303406, 0.1307373344898224, -0.10910176485776901, 0.06824053823947906, 0.7560274600982666, -0.08516690880060196, -0.18079714477062225, 0.8293737769126892], "mean": [-0.1235228180885315, -0.0806354358792305, 0.0865580141544342, 0.16050279140472412, 0.44388261437416077, 0.17086276412010193, 0.8172958493232727, 0.1112632006406784, -0.11920547485351562, 0.05728001892566681, 0.5158899426460266, -0.3125807046890259, -0.31516095995903015, 0.6888822317123413], "std": [0.004080369137227535, 0.004378498997539282, 0.008861025795340538, 0.1516951620578766, 0.09531617909669876, 0.20952077209949493, 0.06359788030385971, 0.01223668921738863, 0.005271619651466608, 0.005474905949085951, 0.13149802386760712, 0.09696365892887115, 0.11270131170749664, 0.15123310685157776], "count": [1201]}, "timestamp": {"min": [0.0], "max": [40.0], "mean": [20.0], "std": [11.556623882239812], "count": [1201]}, "frame_index": {"min": [0], "max": [1200], "mean": [600.0], "std": [346.69871646719434], "count": [1201]}, "episode_index": {"min": [347], "max": [347], "mean": [347.0], "std": [0.0], "count": [1201]}, "index": {"min": [165098], "max": [166298], "mean": [165698.0], "std": [346.69871646719434], "count": [1201]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1201]}}} +{"episode_index": 348, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.42898138283091014]], [[0.3977462707305144]], [[0.3550172874705438]]], "std": [[[0.2311580838111609]], [[0.21374185065494147]], [[0.21537244182200066]]], "count": [196]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4414343890333911]], [[0.4258059140322796]], [[0.3875035194633409]]], "std": [[[0.22765715603818373]], [[0.19699011083099227]], [[0.20946496503526343]]], "count": [196]}, "observation.state": {"min": [0.49265629053115845, -0.22096283733844757, 0.0942649096250534, 0.6213113069534302, -0.920930027961731, -0.17393115162849426, -0.7015562057495117, -0.5597822666168213, 0.14898261427879333, 0.44454267621040344, -0.02705403044819832, 0.09178478270769119], "max": [0.6595214009284973, -0.05921018868684769, 0.12668772041797638, 1.965633511543274, 0.24252979457378387, 0.5831847786903381, -0.6053773164749146, -0.4812498092651367, 0.16423216462135315, 1.8385614156723022, 0.480960488319397, 0.5681249499320984], "mean": [0.6000390648841858, -0.1499907523393631, 0.10411473363637924, 1.383758544921875, -0.41357049345970154, 0.17005403339862823, -0.6395223736763, -0.5265752077102661, 0.15807798504829407, 1.1507949829101562, 0.1844206154346466, 0.3415241241455078], "std": [0.0418965145945549, 0.03168417140841484, 0.007811462506651878, 0.39799249172210693, 0.26752859354019165, 0.19235928356647491, 0.021232981234788895, 0.023660533130168915, 0.004797791130840778, 0.4846602976322174, 0.17670099437236786, 0.1351815164089203], "count": [1144]}, "action": {"min": [-0.12890978157520294, -0.08865956962108612, 0.07694799453020096, 0.040163423866033554, 0.28566473722457886, -0.33435022830963135, 0.6267766356468201, 0.11038807034492493, -0.12280754745006561, 0.04954541102051735, 0.23510581254959106, -0.387124240398407, -0.5590357184410095, 0.6977548599243164], "max": [-0.10421934723854065, -0.07118930667638779, 0.11267304420471191, 0.35066813230514526, 0.7701481580734253, 0.31422650814056396, 0.9364652633666992, 0.13078264892101288, -0.10876629501581192, 0.056332942098379135, 0.44365161657333374, -0.10907097160816193, 0.03604118898510933, 0.9008512496948242], "mean": [-0.11518920958042145, -0.07821859419345856, 0.0913563072681427, 0.20106977224349976, 0.47941893339157104, 0.07507734000682831, 0.8139458894729614, 0.12076754122972488, -0.11737261712551117, 0.05312901735305786, 0.3409166932106018, -0.2363603711128235, -0.25818973779678345, 0.8357323408126831], "std": [0.0056679220870137215, 0.0041100820526480675, 0.009401503950357437, 0.08094622194766998, 0.10029420256614685, 0.20401442050933838, 0.05788954719901085, 0.004334735218435526, 0.0039596157148480415, 0.0018475019605830312, 0.06624183803796768, 0.09765402972698212, 0.20762686431407928, 0.07594679296016693], "count": [1144]}, "timestamp": {"min": [0.0], "max": [38.1], "mean": [19.049999999999997], "std": [11.00814092690799], "count": [1144]}, "frame_index": {"min": [0], "max": [1143], "mean": [571.5], "std": [330.24422780723967], "count": [1144]}, "episode_index": {"min": [348], "max": [348], "mean": [348.0], "std": [0.0], "count": [1144]}, "index": {"min": [166299], "max": [167442], "mean": [166870.5], "std": [330.24422780723967], "count": [1144]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1144]}}} +{"episode_index": 349, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39292127857059983]], [[0.35742932120251125]], [[0.31694116035631875]]], "std": [[[0.22412087796132782]], [[0.2052048161993383]], [[0.20457316678091506]]], "count": [169]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4008976067086927]], [[0.38178119078005956]], [[0.3446554398551005]]], "std": [[[0.22555197928676504]], [[0.19365596421902503]], [[0.20443906307958803]]], "count": [169]}, "observation.state": {"min": [0.516218364238739, -0.2866832911968231, 0.09056012332439423, 0.6030682921409607, -0.6494332551956177, -0.7543039917945862, -0.6940729022026062, -0.5919783711433411, 0.1523192673921585, -0.023275580257177353, 0.2557835280895233, -0.6389286518096924], "max": [0.6305920481681824, -0.036343179643154144, 0.13038213551044464, 2.727856397628784, -0.21533912420272827, 0.5229358673095703, -0.47022175788879395, -0.37334778904914856, 0.17595452070236206, 1.6410335302352905, 0.9474374651908875, 0.6410196423530579], "mean": [0.5900242924690247, -0.19692830741405487, 0.10237710177898407, 1.3731807470321655, -0.4389004111289978, -0.03715786337852478, -0.5833243131637573, -0.5328266024589539, 0.16013921797275543, 1.0049189329147339, 0.5778512358665466, 0.07844127714633942], "std": [0.027557872235774994, 0.07808378338813782, 0.009728161618113518, 0.6733343601226807, 0.1352076530456543, 0.3501192629337311, 0.0600300207734108, 0.06803206354379654, 0.005147357936948538, 0.4946776032447815, 0.19108571112155914, 0.41374847292900085], "count": [937]}, "action": {"min": [-0.12586632370948792, -0.1078023761510849, 0.0765572041273117, 0.030678696930408478, 0.34804052114486694, -0.34325605630874634, 0.5146167874336243, 0.09845447540283203, -0.12810857594013214, 0.04428129643201828, 0.14043661952018738, -0.5056796669960022, -0.6335910558700562, 0.40564990043640137], "max": [-0.10023409873247147, -0.06718374788761139, 0.10358773916959763, 0.5860567688941956, 0.6526030898094177, 0.48661985993385315, 0.8137508630752563, 0.13985246419906616, -0.10197358578443527, 0.06958195567131042, 0.6490341424942017, -0.13799425959587097, -0.1546456664800644, 0.8718221187591553], "mean": [-0.11833443492650986, -0.08393796533346176, 0.08621259778738022, 0.307410329580307, 0.5098980665206909, 0.026450468227267265, 0.7354637384414673, 0.12399516254663467, -0.1188468262553215, 0.05550751835107803, 0.40121421217918396, -0.36303210258483887, -0.3977382779121399, 0.6928799152374268], "std": [0.005965053103864193, 0.011404531076550484, 0.0065964893437922, 0.172420471906662, 0.0930023044347763, 0.2469453066587448, 0.06734520941972733, 0.009423512034118176, 0.007319900207221508, 0.006576198153197765, 0.15150107443332672, 0.09879148751497269, 0.12661683559417725, 0.1421659290790558], "count": [937]}, "timestamp": {"min": [0.0], "max": [31.2], "mean": [15.600000000000001], "std": [9.016281569102272], "count": [937]}, "frame_index": {"min": [0], "max": [936], "mean": [468.0], "std": [270.4884470730682], "count": [937]}, "episode_index": {"min": [349], "max": [349], "mean": [349.0], "std": [0.0], "count": [937]}, "index": {"min": [167443], "max": [168379], "mean": [167911.0], "std": [270.4884470730682], "count": [937]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [937]}}} +{"episode_index": 350, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3975720694589473]], [[0.36450369822485207]], [[0.3236223363112503]]], "std": [[[0.22476818454378505]], [[0.20708704923090912]], [[0.20656930467075088]]], "count": [169]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4032903533537017]], [[0.3868314141238349]], [[0.3493317235178095]]], "std": [[[0.22591962460655984]], [[0.19536054269385267]], [[0.2061432808644454]]], "count": [169]}, "observation.state": {"min": [0.48982977867126465, -0.24432410299777985, 0.09215325862169266, 0.8668582439422607, -0.9054901003837585, -0.8487855195999146, -0.745413601398468, -0.5668871998786926, 0.155766099691391, 0.10589341819286346, -0.08143535256385803, -0.81109219789505], "max": [0.6138877868652344, -0.04705461114645004, 0.11779645830392838, 2.453791618347168, -0.28666338324546814, 0.48439016938209534, -0.5250145792961121, -0.4552319347858429, 0.17052046954631805, 2.301976203918457, 0.6221059560775757, 0.5404284000396729], "mean": [0.5488823056221008, -0.17545145750045776, 0.10563276708126068, 1.714121699333191, -0.6563839912414551, -0.21963070333003998, -0.6153937578201294, -0.516866147518158, 0.16389648616313934, 1.2693182229995728, 0.274171382188797, -0.019520051777362823], "std": [0.03340543061494827, 0.060751669108867645, 0.006708962842822075, 0.45057034492492676, 0.19117256999015808, 0.38918325304985046, 0.06181811913847923, 0.026774918660521507, 0.004604296758770943, 0.6968708634376526, 0.25381234288215637, 0.46060463786125183], "count": [938]}, "action": {"min": [-0.13061711192131042, -0.09290599822998047, 0.08030269294977188, 0.09199865907430649, 0.35963964462280273, -0.04800255596637726, 0.5485664010047913, 0.10588373988866806, -0.1290934979915619, 0.05025231093168259, 0.2515051066875458, -0.4816672205924988, -0.5355937480926514, 0.3408640921115875], "max": [-0.10684962570667267, -0.0703502744436264, 0.10582129657268524, 0.6612519025802612, 0.7251541018486023, 0.34995561838150024, 0.8056873083114624, 0.12896806001663208, -0.11207469552755356, 0.06464318186044693, 0.7782620787620544, -0.0983344316482544, 0.3408893346786499, 0.8577346205711365], "mean": [-0.11991821974515915, -0.08270835131406784, 0.09263285994529724, 0.37749505043029785, 0.5442671179771423, 0.16974900662899017, 0.6918360590934753, 0.11941184848546982, -0.12179307639598846, 0.05656222999095917, 0.4456499516963959, -0.35246989130973816, -0.21247757971286774, 0.6944144368171692], "std": [0.005458624102175236, 0.005973292049020529, 0.007129636127501726, 0.16089406609535217, 0.10814870148897171, 0.10760083794593811, 0.06825768202543259, 0.00644558435305953, 0.005378187168389559, 0.004005183465778828, 0.18564806878566742, 0.13421630859375, 0.2582537531852722, 0.17500993609428406], "count": [938]}, "timestamp": {"min": [0.0], "max": [31.233333333333334], "mean": [15.616666666666667], "std": [9.025904079062908], "count": [938]}, "frame_index": {"min": [0], "max": [937], "mean": [468.5], "std": [270.77712237188723], "count": [938]}, "episode_index": {"min": [350], "max": [350], "mean": [350.0], "std": [0.0], "count": [938]}, "index": {"min": [168380], "max": [169317], "mean": [168848.5], "std": [270.77712237188723], "count": [938]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [938]}}} +{"episode_index": 351, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3971280160995019]], [[0.36031097916474886]], [[0.316980870334571]]], "std": [[[0.22746798980758579]], [[0.20813301499052203]], [[0.20722425207669898]]], "count": [213]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40456855073797904]], [[0.38396697633148197]], [[0.34453301088301774]]], "std": [[[0.22761015960256029]], [[0.19603223847516626]], [[0.2066619362065482]]], "count": [213]}, "observation.state": {"min": [0.5159094333648682, -0.22166560590267181, 0.09526824206113815, 1.0083988904953003, -1.1414613723754883, -0.5576848387718201, -0.6189075112342834, -0.5470088720321655, 0.15733590722084045, -0.0012581399641931057, -0.019812289625406265, -0.8216406106948853], "max": [0.6373494267463684, -0.03817347064614296, 0.12583087384700775, 2.554442882537842, 0.3232819736003876, 0.38730186223983765, -0.5222111940383911, -0.5123261213302612, 0.17160417139530182, 1.8077369928359985, 0.8655922412872314, 0.49274322390556335], "mean": [0.5914115905761719, -0.13429729640483856, 0.11069297790527344, 1.6379410028457642, -0.4228432774543762, -0.04253239184617996, -0.562087893486023, -0.5303900241851807, 0.16374272108078003, 1.0413365364074707, 0.40981370210647583, -0.07576732337474823], "std": [0.02702532336115837, 0.051901910454034805, 0.006454909220337868, 0.39748749136924744, 0.3718067407608032, 0.21903538703918457, 0.034072428941726685, 0.007275154814124107, 0.005998631007969379, 0.7549293637275696, 0.19633084535598755, 0.5624150633811951], "count": [1274]}, "action": {"min": [-0.12909133732318878, -0.08847326040267944, 0.08301931619644165, 0.10009676218032837, 0.02950502559542656, -0.041968297213315964, 0.5889347791671753, 0.11685575544834137, -0.13154299557209015, 0.05625224858522415, 0.26980575919151306, -0.4801620543003082, -0.6066802144050598, 0.367096483707428], "max": [-0.10364877432584763, -0.06765126436948776, 0.1159467026591301, 0.4712858498096466, 0.7464091777801514, 0.4821443557739258, 0.8746424913406372, 0.1322784721851349, -0.11979987472295761, 0.06276950985193253, 0.7132582068443298, -0.050559524446725845, -0.12797081470489502, 0.8252002596855164], "mean": [-0.11247342079877853, -0.08003399521112442, 0.09742173552513123, 0.3114902675151825, 0.4580601751804352, 0.13780784606933594, 0.7802997827529907, 0.12546613812446594, -0.12431541085243225, 0.0585554875433445, 0.4617430865764618, -0.36166006326675415, -0.3324054777622223, 0.6433978080749512], "std": [0.004284430295228958, 0.005019309930503368, 0.008852464146912098, 0.09433206170797348, 0.17633278667926788, 0.13068744540214539, 0.09069466590881348, 0.00573531910777092, 0.004073188174515963, 0.00203580386005342, 0.19019316136837006, 0.14947772026062012, 0.1946873813867569, 0.18740661442279816], "count": [1274]}, "timestamp": {"min": [0.0], "max": [42.43333333333333], "mean": [21.216666666666665], "std": [12.259066939299347], "count": [1274]}, "frame_index": {"min": [0], "max": [1273], "mean": [636.5], "std": [367.77200817898034], "count": [1274]}, "episode_index": {"min": [351], "max": [351], "mean": [351.0], "std": [0.0], "count": [1274]}, "index": {"min": [169318], "max": [170591], "mean": [169954.5], "std": [367.77200817898034], "count": [1274]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1274]}}} +{"episode_index": 352, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3923603786342123]], [[0.3571305092279568]], [[0.31539550935316657]]], "std": [[[0.224703578850747]], [[0.20586974251271326]], [[0.20498480821389303]]], "count": [174]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39859304647785043]], [[0.380181946948639]], [[0.3420816523927579]]], "std": [[[0.22511254278666737]], [[0.19354214717863147]], [[0.2041037832701305]]], "count": [174]}, "observation.state": {"min": [0.42124420404434204, -0.23137308657169342, 0.09480158239603043, 0.5917450189590454, -1.1474733352661133, -0.36709854006767273, -0.6376814842224121, -0.5984577536582947, 0.15049926936626434, -0.1906081587076187, 0.30019038915634155, -0.7597163319587708], "max": [0.6961657404899597, -0.058028608560562134, 0.12805011868476868, 2.116400718688965, -0.045773230493068695, 0.5184739828109741, -0.46470001339912415, -0.3892102837562561, 0.17049843072891235, 1.5940629243850708, 0.8278805613517761, 0.4043891429901123], "mean": [0.6047044992446899, -0.15695464611053467, 0.10905373096466064, 1.2760556936264038, -0.7566543817520142, 0.18356922268867493, -0.5816270709037781, -0.5465219020843506, 0.16445297002792358, 0.5839579701423645, 0.5722587704658508, -0.23432138562202454], "std": [0.06804750114679337, 0.05598858743906021, 0.010420982725918293, 0.3992006480693817, 0.3110355734825134, 0.22541137039661407, 0.05398133769631386, 0.06260035187005997, 0.006342744920402765, 0.6364302039146423, 0.16895939409732819, 0.40200182795524597], "count": [978]}, "action": {"min": [-0.1378127932548523, -0.08957062661647797, 0.07830546051263809, 0.0850508064031601, 0.2705250084400177, -0.14595428109169006, 0.5690790414810181, 0.11717488616704941, -0.1318785697221756, 0.05018816143274307, -0.6369749307632446, -0.5207495093345642, -0.6350511312484741, -0.5947210192680359], "max": [-0.09120938181877136, -0.07460355013608932, 0.10473550856113434, 0.3856526017189026, 0.7879669666290283, 0.3336571156978607, 0.9107189774513245, 0.13738501071929932, -0.10399018973112106, 0.07314208894968033, 0.6375459432601929, 0.32923179864883423, 0.698952853679657, 0.8061280846595764], "mean": [-0.11129821091890335, -0.08090653270483017, 0.09021679311990738, 0.21692390739917755, 0.6167745590209961, 0.07916958630084991, 0.7051907777786255, 0.12375633418560028, -0.12391345947980881, 0.05668953061103821, -0.11085154861211777, -0.09816733002662659, 0.1422726958990097, 0.09614639729261398], "std": [0.012727192603051662, 0.0032743082847446203, 0.008316295221447945, 0.0805073231458664, 0.16034068167209625, 0.15135209262371063, 0.1177784875035286, 0.005602033343166113, 0.008586748503148556, 0.006689155008643866, 0.4859459698200226, 0.3202153742313385, 0.5118165612220764, 0.589874267578125], "count": [978]}, "timestamp": {"min": [0.0], "max": [32.56666666666667], "mean": [16.283333333333335], "std": [9.410804468308793], "count": [978]}, "frame_index": {"min": [0], "max": [977], "mean": [488.5], "std": [282.3241340492638], "count": [978]}, "episode_index": {"min": [352], "max": [352], "mean": [352.0], "std": [0.0], "count": [978]}, "index": {"min": [170592], "max": [171569], "mean": [171080.5], "std": [282.3241340492638], "count": [978]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [978]}}} +{"episode_index": 353, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.394827908756095]], [[0.36190325111526095]], [[0.3201640367258014]]], "std": [[[0.22512044099741538]], [[0.206648120827555]], [[0.20562334498239535]]], "count": [210]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40262634739080816]], [[0.38606409637929245]], [[0.34792156214337583]]], "std": [[[0.2262701031015369]], [[0.19484984745293676]], [[0.20520284248473866]]], "count": [210]}, "observation.state": {"min": [0.4980081617832184, -0.23558968305587769, 0.08831235021352768, 0.8471473455429077, -0.6785368323326111, -0.45621901750564575, -0.6852766871452332, -0.5630335807800293, 0.153773695230484, 0.09876395761966705, -0.29021593928337097, -1.0679160356521606], "max": [0.634800910949707, -0.043224141001701355, 0.11454147845506668, 2.1692423820495605, -0.218071848154068, 0.14400556683540344, -0.5321117639541626, -0.396129846572876, 0.17118287086486816, 2.2698936462402344, 0.9520831108093262, 0.5340401530265808], "mean": [0.5895768404006958, -0.17968782782554626, 0.10310940444469452, 1.5748502016067505, -0.449386328458786, -0.14700625836849213, -0.5933698415756226, -0.4950576722621918, 0.161815345287323, 1.2128753662109375, 0.38826078176498413, -0.07436774671077728], "std": [0.03885752707719803, 0.05046767741441727, 0.004847656935453415, 0.35574212670326233, 0.0972556620836258, 0.1695837527513504, 0.038481682538986206, 0.04353533685207367, 0.0046282135881483555, 0.6845413446426392, 0.3984876275062561, 0.5779111385345459], "count": [1255]}, "action": {"min": [-0.13034997880458832, -0.09889402985572815, 0.07665499299764633, 0.1394459754228592, 0.33040472865104675, -0.195903018116951, 0.6541970372200012, 0.11120599508285522, -0.1298196017742157, 0.048652250319719315, 0.14926931262016296, -0.589493989944458, -0.526848554611206, 0.20195698738098145], "max": [-0.11142894625663757, -0.06565367430448532, 0.10235637426376343, 0.5384712815284729, 0.5691577792167664, 0.28834593296051025, 0.819200873374939, 0.12819521129131317, -0.10054047405719757, 0.07164420187473297, 0.8457791805267334, -0.07901277393102646, 0.20966479182243347, 0.8735912442207336], "mean": [-0.11698917299509048, -0.08133447915315628, 0.08880513161420822, 0.36025989055633545, 0.4848048686981201, 0.08909190446138382, 0.7699752449989319, 0.12158097326755524, -0.11829189956188202, 0.059349626302719116, 0.4377303719520569, -0.4066261053085327, -0.2688513994216919, 0.6348571181297302], "std": [0.004270060453563929, 0.006151409819722176, 0.006767132319509983, 0.1007179245352745, 0.058087076991796494, 0.1379232555627823, 0.04285011440515518, 0.0037174560129642487, 0.006469573825597763, 0.005543352570384741, 0.22853703796863556, 0.15928667783737183, 0.20235472917556763, 0.22175247967243195], "count": [1255]}, "timestamp": {"min": [0.0], "max": [41.8], "mean": [20.9], "std": [12.076239296881937], "count": [1255]}, "frame_index": {"min": [0], "max": [1254], "mean": [627.0], "std": [362.2871789064581], "count": [1255]}, "episode_index": {"min": [353], "max": [353], "mean": [353.0], "std": [0.0], "count": [1255]}, "index": {"min": [171570], "max": [172824], "mean": [172197.0], "std": [362.2871789064581], "count": [1255]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1255]}}} +{"episode_index": 354, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39366649336502274]], [[0.35884634746154354]], [[0.31532916721683063]]], "std": [[[0.2259234020188629]], [[0.20663680738184506]], [[0.20552677162372707]]], "count": [198]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40151345150854956]], [[0.382924547765234]], [[0.34316243453049006]]], "std": [[[0.22677022591682197]], [[0.19481168547782948]], [[0.20512772822720982]]], "count": [198]}, "observation.state": {"min": [0.5097235441207886, -0.23521128296852112, 0.09346769005060196, 0.46299540996551514, -0.9098624587059021, -0.6407683491706848, -0.6602936387062073, -0.5585234761238098, 0.14082245528697968, 0.018662400543689728, -0.1927940994501114, -0.8643732070922852], "max": [0.698119580745697, -0.05531793832778931, 0.1263817846775055, 2.0721559524536133, -0.00013663650315720588, 0.4716481864452362, -0.45882299542427063, -0.3734559118747711, 0.17345137894153595, 1.7813160419464111, 0.7765052318572998, 0.7496628165245056], "mean": [0.6202396750450134, -0.16612155735492706, 0.10845339298248291, 1.488429069519043, -0.5454900860786438, -0.05822121724486351, -0.5663006901741028, -0.49418312311172485, 0.16148574650287628, 0.9575539827346802, 0.4190504550933838, 0.009251322597265244], "std": [0.044880375266075134, 0.05051712319254875, 0.007839292287826538, 0.4253710210323334, 0.27165043354034424, 0.3201625943183899, 0.05541419982910156, 0.05483359470963478, 0.008793871849775314, 0.5830023884773254, 0.2782275676727295, 0.49310192465782166], "count": [1155]}, "action": {"min": [-0.1282913237810135, -0.09858450293540955, 0.08199223130941391, 0.12360116094350815, 0.23793447017669678, -0.26425597071647644, 0.572345495223999, 0.10967747867107391, -0.12872037291526794, 0.05491988733410835, -0.6048219799995422, -0.5262132883071899, -0.6055310368537903, -0.5366056561470032], "max": [-0.0913795530796051, -0.07397640496492386, 0.10338228195905685, 0.5466566681861877, 0.7597904801368713, 0.28288987278938293, 0.9382734298706055, 0.14004024863243103, -0.09521810710430145, 0.0714084729552269, 0.7702440023422241, 0.1316969096660614, 0.6059896349906921, 0.8447359204292297], "mean": [-0.11015667021274567, -0.08142032474279404, 0.08990662544965744, 0.31688207387924194, 0.5253986120223999, 0.0734434649348259, 0.733357846736908, 0.12438777089118958, -0.11884421855211258, 0.0612449087202549, 0.4242556691169739, -0.3050817847251892, -0.36296433210372925, 0.6627101302146912], "std": [0.008683671243488789, 0.005440583452582359, 0.005675663705915213, 0.13348528742790222, 0.15764479339122772, 0.16006961464881897, 0.10973716527223587, 0.008698184043169022, 0.00959481205791235, 0.004610731732100248, 0.22502702474594116, 0.1684090793132782, 0.17044982314109802, 0.21898259222507477], "count": [1155]}, "timestamp": {"min": [0.0], "max": [38.46666666666667], "mean": [19.233333333333334], "std": [11.113988516313157], "count": [1155]}, "frame_index": {"min": [0], "max": [1154], "mean": [577.0], "std": [333.41965548939476], "count": [1155]}, "episode_index": {"min": [354], "max": [354], "mean": [354.0], "std": [0.0], "count": [1155]}, "index": {"min": [172825], "max": [173979], "mean": [173402.0], "std": [333.41965548939476], "count": [1155]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1155]}}} +{"episode_index": 355, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.38952104435771145]], [[0.35781002127022477]], [[0.3134938009168912]]], "std": [[[0.22472279977566914]], [[0.20649624580632214]], [[0.2057261042090644]]], "count": [211]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39806962642877053]], [[0.38270921873225333]], [[0.3417441842455782]]], "std": [[[0.22570450330433076]], [[0.19409688309280898]], [[0.20515321259213784]]], "count": [211]}, "observation.state": {"min": [0.5187823176383972, -0.24507321417331696, 0.1021476536989212, 0.5540008544921875, -0.8770697116851807, -0.8712331652641296, -0.6045123338699341, -0.5878390073776245, 0.14744779467582703, -0.12937870621681213, -0.15781515836715698, -0.9720512628555298], "max": [0.6935091018676758, -0.022102460265159607, 0.14252708852291107, 2.5445873737335205, 0.3008735775947571, 0.41082730889320374, -0.40648603439331055, -0.39558926224708557, 0.17314286530017853, 1.6930365562438965, 0.7807409763336182, 0.32341763377189636], "mean": [0.623276948928833, -0.1776876300573349, 0.11399562656879425, 1.372040033340454, -0.36250513792037964, -0.1077924445271492, -0.5239243507385254, -0.5169053673744202, 0.1586645543575287, 0.7372406721115112, 0.4563998579978943, -0.21508412063121796], "std": [0.05069428309798241, 0.0676310583949089, 0.01061819028109312, 0.600051760673523, 0.3570602238178253, 0.37676331400871277, 0.06165843456983566, 0.04970743507146835, 0.006464697420597076, 0.6465381383895874, 0.2764565646648407, 0.4305984675884247], "count": [1264]}, "action": {"min": [-0.12141720205545425, -0.10801531374454498, 0.08192459493875504, -0.0034443007316440344, 0.3558582365512848, -0.3672068119049072, 0.5175000429153442, 0.10990327596664429, -0.1265391856431961, 0.05196291580796242, -0.5307932496070862, -0.5404201745986938, -0.6237679123878479, -0.6075880527496338], "max": [-0.08720744401216507, -0.0668187290430069, 0.10556729882955551, 0.6859657764434814, 0.676954448223114, 0.4117664396762848, 0.9003487825393677, 0.14515073597431183, -0.1119813472032547, 0.07317584753036499, 0.7526506781578064, 0.2768428325653076, 0.7056426405906677, 0.8171238303184509], "mean": [-0.10748931020498276, -0.08616019040346146, 0.09286557883024216, 0.29688501358032227, 0.49845707416534424, 0.0016176977660506964, 0.7401954531669617, 0.1313513219356537, -0.11933974921703339, 0.06116027012467384, 0.39802977442741394, -0.2380913645029068, -0.311185359954834, 0.5099209547042847], "std": [0.009233885444700718, 0.010481017641723156, 0.0064868503250181675, 0.19759008288383484, 0.10716991871595383, 0.23441919684410095, 0.10014297813177109, 0.009937058202922344, 0.0042239888571202755, 0.005344860255718231, 0.32163530588150024, 0.22419746220111847, 0.3543941080570221, 0.3856427073478699], "count": [1264]}, "timestamp": {"min": [0.0], "max": [42.1], "mean": [21.05], "std": [12.162841864557075], "count": [1264]}, "frame_index": {"min": [0], "max": [1263], "mean": [631.5], "std": [364.88525593671227], "count": [1264]}, "episode_index": {"min": [355], "max": [355], "mean": [355.0], "std": [0.0], "count": [1264]}, "index": {"min": [173980], "max": [175243], "mean": [174611.5], "std": [364.88525593671227], "count": [1264]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1264]}}} +{"episode_index": 356, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39712890303180093]], [[0.3619554406730012]], [[0.31973353655187564]]], "std": [[[0.2260985052457308]], [[0.20730815017609158]], [[0.2063077416648331]]], "count": [238]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40478728648322077]], [[0.38611980625583564]], [[0.34739174951026164]]], "std": [[[0.226852926406526]], [[0.1956336709703001]], [[0.20613887544500528]]], "count": [238]}, "observation.state": {"min": [0.45808935165405273, -0.26536083221435547, 0.0953252837061882, 0.5640659332275391, -1.0846205949783325, -0.9768735766410828, -0.6315573453903198, -0.5490090847015381, 0.15170222520828247, 0.07968217879533768, -0.25537362694740295, -1.0588198900222778], "max": [0.642083466053009, -0.02871312014758587, 0.12240996211767197, 2.459033966064453, -0.11422810703516006, 0.4543169140815735, -0.5048427581787109, -0.4048333764076233, 0.17009657621383667, 1.6274036169052124, 1.0781986713409424, 0.180070698261261], "mean": [0.5732073187828064, -0.16327719390392303, 0.10585830360651016, 1.5910367965698242, -0.5214436650276184, -0.17125655710697174, -0.5612534880638123, -0.49565640091896057, 0.16312582790851593, 1.075155258178711, 0.5809905529022217, -0.21692173182964325], "std": [0.05249234661459923, 0.05836794897913933, 0.0054585435427725315, 0.44989320635795593, 0.2779753804206848, 0.3335475027561188, 0.030768727883696556, 0.033851638436317444, 0.0035780593752861023, 0.4978179931640625, 0.32255083322525024, 0.39845019578933716], "count": [1482]}, "action": {"min": [-0.13345424830913544, -0.09246696531772614, 0.07804635167121887, 0.1231357753276825, 0.16156406700611115, -0.1406010389328003, 0.5307051539421082, 0.10994487255811691, -0.13041451573371887, 0.05572333559393883, 0.24590647220611572, -0.591086745262146, -0.5920791029930115, 0.21293647587299347], "max": [-0.10196138173341751, -0.07031944394111633, 0.10635097324848175, 0.6875931024551392, 0.7928763031959534, 0.4553930163383484, 0.8984196186065674, 0.12801364064216614, -0.09886529296636581, 0.07315047085285187, 0.836615800857544, -0.07957994937896729, -0.08100270479917526, 0.7525799870491028], "mean": [-0.11747951805591583, -0.08155759423971176, 0.09232815355062485, 0.3683032691478729, 0.49634793400764465, 0.09456121921539307, 0.7274603247642517, 0.12350917607545853, -0.11932796239852905, 0.061858560889959335, 0.49656474590301514, -0.4289657771587372, -0.322331964969635, 0.6160627007484436], "std": [0.008085746318101883, 0.005243886727839708, 0.008103632368147373, 0.1262727826833725, 0.17249354720115662, 0.14564849436283112, 0.11374714225530624, 0.0036458552349358797, 0.006212150678038597, 0.004055619239807129, 0.14998750388622284, 0.1377599686384201, 0.13420119881629944, 0.1627795249223709], "count": [1482]}, "timestamp": {"min": [0.0], "max": [49.36666666666667], "mean": [24.68333333333333], "std": [14.260548402524384], "count": [1482]}, "frame_index": {"min": [0], "max": [1481], "mean": [740.5], "std": [427.8164520757315], "count": [1482]}, "episode_index": {"min": [356], "max": [356], "mean": [356.0], "std": [0.0], "count": [1482]}, "index": {"min": [175244], "max": [176725], "mean": [175984.5], "std": [427.8164520757315], "count": [1482]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1482]}}} +{"episode_index": 357, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3934181037655302]], [[0.3580040960077725]], [[0.3133683278867102]]], "std": [[[0.2266415236626351]], [[0.20709139128976034]], [[0.20561159669198475]]], "count": [148]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40152372777188955]], [[0.3825957409615498]], [[0.34180193612730375]]], "std": [[[0.22716840126406196]], [[0.19528030647657718]], [[0.20524429021533505]]], "count": [148]}, "observation.state": {"min": [0.5173072814941406, -0.22477786242961884, 0.0927223265171051, 0.6265535354614258, -0.7643445730209351, -0.5509715676307678, -0.6338819265365601, -0.5530171990394592, 0.15465517342090607, -0.041308920830488205, 0.24198323488235474, -1.10657799243927], "max": [0.7134028673171997, -0.04018137976527214, 0.1274045705795288, 2.3688673973083496, 0.04372368007898331, 0.5852107405662537, -0.4795662760734558, -0.4162939190864563, 0.17017436027526855, 1.5990954637527466, 0.7719962000846863, 0.2895922362804413], "mean": [0.6212995648384094, -0.15951576828956604, 0.10816247761249542, 1.461168646812439, -0.3911002278327942, -0.03569866716861725, -0.5585917234420776, -0.5018904805183411, 0.16444437205791473, 0.7687427401542664, 0.4803664982318878, -0.3092637062072754], "std": [0.05684757977724075, 0.05658857151865959, 0.008381709456443787, 0.6638264656066895, 0.24441367387771606, 0.3737852871417999, 0.04762599617242813, 0.04037369415163994, 0.004130232613533735, 0.6294199824333191, 0.14622236788272858, 0.45551326870918274], "count": [787]}, "action": {"min": [-0.12733639776706696, -0.1001804769039154, 0.0802760049700737, -0.010067489929497242, 0.2640970051288605, -0.30937179923057556, 0.6081187725067139, 0.10944538563489914, -0.13255111873149872, 0.05788789317011833, -0.615470290184021, -0.5099688768386841, -0.6173137426376343, -0.4460770785808563], "max": [-0.099982351064682, -0.0662088617682457, 0.10595926642417908, 0.566463828086853, 0.7135826945304871, 0.3759634494781494, 0.8846015930175781, 0.13484710454940796, -0.11202012747526169, 0.06880279630422592, 0.6622334122657776, 0.22524726390838623, 0.6190268397331238, 0.8018409609794617], "mean": [-0.11108875274658203, -0.0810946598649025, 0.09156229346990585, 0.2848827838897705, 0.4955766201019287, 0.06645034998655319, 0.7496486306190491, 0.12428557127714157, -0.12161514908075333, 0.06335499882698059, 0.47787901759147644, -0.33222514390945435, -0.3746241629123688, 0.5702875852584839], "std": [0.007237256038933992, 0.008462360128760338, 0.007962376810610294, 0.18290702998638153, 0.11892125755548477, 0.2330351620912552, 0.07038968801498413, 0.0074084969237446785, 0.005972718354314566, 0.0025882916525006294, 0.22781193256378174, 0.16337712109088898, 0.23877567052841187, 0.24511805176734924], "count": [787]}, "timestamp": {"min": [0.0], "max": [26.2], "mean": [13.100000000000001], "std": [7.572904917459937], "count": [787]}, "frame_index": {"min": [0], "max": [786], "mean": [393.0], "std": [227.1871475237981], "count": [787]}, "episode_index": {"min": [357], "max": [357], "mean": [357.0], "std": [0.0], "count": [787]}, "index": {"min": [176726], "max": [177512], "mean": [177119.0], "std": [227.1871475237981], "count": [787]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [787]}}} +{"episode_index": 358, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39794015303253916]], [[0.36104656313690353]], [[0.3186019902136482]]], "std": [[[0.22602064831579566]], [[0.20646008549789213]], [[0.20444968202752586]]], "count": [248]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4046524340695059]], [[0.38391955359652824]], [[0.3446835336285052]]], "std": [[[0.22638267672798099]], [[0.1946562412440761]], [[0.20363395950527635]]], "count": [248]}, "observation.state": {"min": [0.3762206435203552, -0.24600766599178314, 0.08572106808423996, 0.546451985836029, -0.9460711479187012, -0.7113044857978821, -0.685732364654541, -0.5852518677711487, 0.15821218490600586, -0.07129458338022232, -0.15330615639686584, -1.3709880113601685], "max": [0.6311249136924744, -0.021986620500683784, 0.10386264324188232, 3.1698827743530273, 0.013936920091509819, 0.5921090245246887, -0.5353938937187195, -0.4010492265224457, 0.17959709465503693, 1.7154734134674072, 0.8425006866455078, 0.30563896894454956], "mean": [0.539578378200531, -0.1553208827972412, 0.09734722971916199, 1.6109979152679443, -0.6012158989906311, -0.03463417664170265, -0.6198204755783081, -0.4987620413303375, 0.1688656061887741, 1.0143505334854126, 0.5203127264976501, -0.18351157009601593], "std": [0.0608048215508461, 0.06351882219314575, 0.0049080392345786095, 0.6781519651412964, 0.25403791666030884, 0.3347766399383545, 0.04101356491446495, 0.05662810057401657, 0.006034723483026028, 0.468014121055603, 0.14949187636375427, 0.3784247934818268], "count": [1564]}, "action": {"min": [-0.14402876794338226, -0.08559483289718628, 0.07276603579521179, 0.0465208999812603, 0.15837033092975616, -0.28934246301651, 0.4477383494377136, 0.09652042388916016, -0.12973257899284363, 0.04660674184560776, 0.32581594586372375, -0.5764760375022888, -0.5605868101119995, 0.0561998225748539], "max": [-0.11248207837343216, -0.06860876083374023, 0.10482800751924515, 0.5865437984466553, 0.7007668018341064, 0.6726152896881104, 0.8527107238769531, 0.1276906430721283, -0.1135033667087555, 0.07178743183612823, 0.8095746636390686, -0.2029920071363449, -0.06433618813753128, 0.814389169216156], "mean": [-0.12562541663646698, -0.07698780298233032, 0.08932910859584808, 0.30505311489105225, 0.5211274027824402, 0.15439608693122864, 0.7103869915008545, 0.11423725634813309, -0.12169284373521805, 0.060753922909498215, 0.4916631281375885, -0.40943968296051025, -0.33188509941101074, 0.6476039886474609], "std": [0.006869491655379534, 0.0038864444941282272, 0.009788256138563156, 0.14667662978172302, 0.1558689922094345, 0.22813887894153595, 0.0950004979968071, 0.009692275896668434, 0.003978790249675512, 0.006249633617699146, 0.1168261393904686, 0.0943509042263031, 0.1317828893661499, 0.14550095796585083], "count": [1564]}, "timestamp": {"min": [0.0], "max": [52.1], "mean": [26.049999999999997], "std": [15.049593940627695], "count": [1564]}, "frame_index": {"min": [0], "max": [1563], "mean": [781.5], "std": [451.4878182188308], "count": [1564]}, "episode_index": {"min": [358], "max": [358], "mean": [358.0], "std": [0.0], "count": [1564]}, "index": {"min": [177513], "max": [179076], "mean": [178294.5], "std": [451.4878182188308], "count": [1564]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1564]}}} +{"episode_index": 359, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3996065668944345]], [[0.3646557201921172]], [[0.32454493711626065]]], "std": [[[0.22092173291846975]], [[0.20248464928850418]], [[0.2013214318140982]]], "count": [220]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40895285081204197]], [[0.39057295008912657]], [[0.35436315483264014]]], "std": [[[0.22241679827325628]], [[0.19096488389561028]], [[0.2003011934543753]]], "count": [220]}, "observation.state": {"min": [0.44085994362831116, -0.28974148631095886, 0.08893326669931412, 0.9152966141700745, -0.6271615028381348, -0.858908474445343, -0.7053558230400085, -0.5880475044250488, 0.15441666543483734, 0.024114340543746948, -0.11217857152223587, -1.0619099140167236], "max": [0.6497443914413452, -0.03476773947477341, 0.10293450206518173, 2.809845209121704, 0.1750313639640808, 0.2400428205728531, -0.6022264361381531, -0.39894092082977295, 0.17860284447669983, 1.7488141059875488, 0.7495878338813782, 0.4311072826385498], "mean": [0.5652373433113098, -0.19472794234752655, 0.09506458044052124, 1.8450700044631958, -0.32195186614990234, -0.31484663486480713, -0.6562154293060303, -0.5082981586456299, 0.16381041705608368, 1.1033066511154175, 0.43302372097969055, -0.2774903476238251], "std": [0.05738935247063637, 0.0671311765909195, 0.0034219620283693075, 0.4850200116634369, 0.23587042093276978, 0.2739245891571045, 0.02766510844230652, 0.05221450328826904, 0.007054810877889395, 0.46822860836982727, 0.1991824209690094, 0.3821965456008911], "count": [1332]}, "action": {"min": [-0.1390957087278366, -0.0912010595202446, 0.07255890965461731, 0.13462023437023163, 0.05297013744711876, -0.1331011950969696, 0.44679704308509827, 0.0950375348329544, -0.12744559347629547, 0.043388381600379944, 0.3095439076423645, -0.5799610018730164, -0.5459157824516296, 0.21903280913829803], "max": [-0.11731068789958954, -0.06661806255578995, 0.10317865759134293, 0.7699828743934631, 0.5894924998283386, 0.4841447174549103, 0.8250157833099365, 0.12725606560707092, -0.11044163256883621, 0.06936631351709366, 0.8070286512374878, -0.1362624317407608, -0.047805849462747574, 0.8297735452651978], "mean": [-0.12532684206962585, -0.07975888252258301, 0.0846247598528862, 0.46391814947128296, 0.39982956647872925, 0.1659812331199646, 0.7206621766090393, 0.11359164863824844, -0.11783283948898315, 0.05479526147246361, 0.5425844192504883, -0.42676955461502075, -0.25586557388305664, 0.6203416585922241], "std": [0.0055788676254451275, 0.0074830977246165276, 0.008100233040750027, 0.15940526127815247, 0.13827231526374817, 0.15933512151241302, 0.08997445553541183, 0.00860535353422165, 0.004504285752773285, 0.007016010582447052, 0.13070183992385864, 0.10647453367710114, 0.14241300523281097, 0.15645235776901245], "count": [1332]}, "timestamp": {"min": [0.0], "max": [44.36666666666667], "mean": [22.18333333333333], "std": [12.81717236395795], "count": [1332]}, "frame_index": {"min": [0], "max": [1331], "mean": [665.5], "std": [384.5151709187385], "count": [1332]}, "episode_index": {"min": [359], "max": [359], "mean": [359.0], "std": [0.0], "count": [1332]}, "index": {"min": [179077], "max": [180408], "mean": [179742.5], "std": [384.5151709187385], "count": [1332]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1332]}}} +{"episode_index": 360, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3986019502332637]], [[0.36458822388757717]], [[0.3249101050542381]]], "std": [[[0.21849298422890182]], [[0.20090072115694238]], [[0.2001739517561993]]], "count": [191]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40397247601774855]], [[0.38698760251628284]], [[0.35191446663016573]]], "std": [[[0.2191233850542659]], [[0.18877338611078562]], [[0.19872026087023612]]], "count": [191]}, "observation.state": {"min": [0.38648417592048645, -0.23975996673107147, 0.08231441676616669, 0.6731047034263611, -0.6633701920509338, -0.4192129671573639, -0.7390732765197754, -0.6272557973861694, 0.15623405575752258, -0.11029691249132156, 0.06408251821994781, -0.8344314098358154], "max": [0.686496913433075, -0.01774683967232704, 0.1122029721736908, 2.246408462524414, 0.30019038915634155, 0.5113462805747986, -0.5817071199417114, -0.4905479848384857, 0.17812968790531158, 1.4757977724075317, 0.8895035982131958, 0.7825575470924377], "mean": [0.5603407621383667, -0.16465486586093903, 0.09304066747426987, 1.6765228509902954, -0.2454533576965332, 0.008750025182962418, -0.6583731174468994, -0.5596646666526794, 0.1648799479007721, 1.057413935661316, 0.45406195521354675, 0.23848383128643036], "std": [0.08452264964580536, 0.05865111202001572, 0.008025122806429863, 0.42064568400382996, 0.2716829478740692, 0.22872599959373474, 0.042403560131788254, 0.035122454166412354, 0.004691482521593571, 0.489504873752594, 0.18355692923069, 0.4171709716320038], "count": [1105]}, "action": {"min": [-0.14355722069740295, -0.08321750909090042, 0.06852523237466812, 0.1134456917643547, 0.014197184704244137, -0.20538628101348877, 0.732537031173706, 0.09621230512857437, -0.1303175538778305, 0.0418471060693264, -0.6465480327606201, -0.509689211845398, -0.6461641192436218, -0.6025311350822449], "max": [-0.10909988731145859, -0.06442251801490784, 0.10579335689544678, 0.45863768458366394, 0.6378682255744934, 0.34976980090141296, 0.949891984462738, 0.12515954673290253, -0.11212695389986038, 0.05844171717762947, 0.6520520448684692, 0.425807923078537, 0.6605111956596375, 0.8979454636573792], "mean": [-0.1273231953382492, -0.07573266327381134, 0.0866449698805809, 0.3187708556652069, 0.3543601930141449, 0.12415031343698502, 0.8324796557426453, 0.11545778810977936, -0.12314032018184662, 0.04908151924610138, 0.29012608528137207, -0.30364081263542175, -0.2757672071456909, 0.6809121370315552], "std": [0.009094842709600925, 0.003877174574881792, 0.012040149420499802, 0.08621350675821304, 0.17027759552001953, 0.15241223573684692, 0.0687149167060852, 0.005948253907263279, 0.004594472702592611, 0.003899562871083617, 0.2613477110862732, 0.16703836619853973, 0.2777577042579651, 0.3325459361076355], "count": [1105]}, "timestamp": {"min": [0.0], "max": [36.8], "mean": [18.4], "std": [10.632863103500288], "count": [1105]}, "frame_index": {"min": [0], "max": [1104], "mean": [552.0], "std": [318.98589310500864], "count": [1105]}, "episode_index": {"min": [360], "max": [360], "mean": [360.0], "std": [0.0], "count": [1105]}, "index": {"min": [180409], "max": [181513], "mean": [180961.0], "std": [318.98589310500864], "count": [1105]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1105]}}} +{"episode_index": 361, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3881548484985392]], [[0.3523380232021124]], [[0.3096259073521882]]], "std": [[[0.22259914635885966]], [[0.2022988511873005]], [[0.20086234175848053]]], "count": [217]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3962673501300162]], [[0.3768999327329498]], [[0.33848806888346733]]], "std": [[[0.22352481461919305]], [[0.1907919812242814]], [[0.20040777559714645]]], "count": [217]}, "observation.state": {"min": [0.49502718448638916, -0.22487826645374298, 0.08917178958654404, 0.8498733639717102, -0.872287392616272, -0.4820181429386139, -0.688396692276001, -0.6041725873947144, 0.15908071398735046, -0.13944381475448608, -0.13212749361991882, -1.1178768873214722], "max": [0.6865741014480591, -0.04435164853930473, 0.12563124299049377, 1.97024667263031, 0.10247737169265747, 0.3000256419181824, -0.5162724256515503, -0.3778887689113617, 0.1828857809305191, 1.4793626070022583, 0.9042603373527527, 0.2637084722518921], "mean": [0.6007508039474487, -0.16094858944416046, 0.10548434406518936, 1.5256608724594116, -0.4025512635707855, -0.12459421902894974, -0.5961297750473022, -0.5184267163276672, 0.17016838490962982, 0.9533339738845825, 0.4655406177043915, -0.15819814801216125], "std": [0.05136960744857788, 0.0457540825009346, 0.009993467479944229, 0.27343428134918213, 0.2974139153957367, 0.20027483999729156, 0.061258748173713684, 0.05898843705654144, 0.009349027648568153, 0.5549415349960327, 0.21654395759105682, 0.4882320165634155], "count": [1311]}, "action": {"min": [-0.12996023893356323, -0.08945080637931824, 0.07622774690389633, 0.10337843745946884, 0.22230519354343414, -0.15356425940990448, 0.6557433009147644, 0.09331141412258148, -0.13529518246650696, 0.04891045019030571, 0.321768194437027, -0.5585295557975769, -0.6072641015052795, 0.15817159414291382], "max": [-0.09706065058708191, -0.06781325489282608, 0.10408978164196014, 0.503779947757721, 0.6579045057296753, 0.2434588521718979, 0.9278565049171448, 0.13135284185409546, -0.11708326637744904, 0.07546375691890717, 0.782920241355896, -0.10829611867666245, -0.22955697774887085, 0.7958977818489075], "mean": [-0.1142515167593956, -0.08034125715494156, 0.09078962355852127, 0.35137590765953064, 0.47215718030929565, 0.06032562255859375, 0.7799789309501648, 0.11716940999031067, -0.12572573125362396, 0.0600961372256279, 0.4898824095726013, -0.36791396141052246, -0.3582685589790344, 0.6342470645904541], "std": [0.009649167768657207, 0.0056526558473706245, 0.008156971074640751, 0.09798788279294968, 0.1296273022890091, 0.09471338987350464, 0.07886625826358795, 0.01263084914535284, 0.006123013328760862, 0.006624354515224695, 0.1531267762184143, 0.11128522455692291, 0.12706969678401947, 0.20506173372268677], "count": [1311]}, "timestamp": {"min": [0.0], "max": [43.666666666666664], "mean": [21.833333333333332], "std": [12.61509971188261], "count": [1311]}, "frame_index": {"min": [0], "max": [1310], "mean": [655.0], "std": [378.4529913564783], "count": [1311]}, "episode_index": {"min": [361], "max": [361], "mean": [361.0], "std": [0.0], "count": [1311]}, "index": {"min": [181514], "max": [182824], "mean": [182169.0], "std": [378.4529913564783], "count": [1311]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1311]}}} +{"episode_index": 362, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39853321863724916]], [[0.3621347952761351]], [[0.3218400724487326]]], "std": [[[0.22141636191992245]], [[0.20255933633115594]], [[0.200666315366957]]], "count": [189]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4048689092921119]], [[0.3858514224619889]], [[0.3489898358520363]]], "std": [[[0.22257213172246454]], [[0.1905544864084018]], [[0.19997332512543756]]], "count": [189]}, "observation.state": {"min": [0.44845137000083923, -0.22027550637722015, 0.08830326795578003, 0.8207264542579651, -0.8135337233543396, -0.2872128188610077, -0.6967217922210693, -0.5881092548370361, 0.16026811301708221, -0.2396756112575531, -0.0038258200511336327, -0.9732884168624878], "max": [0.6082501411437988, -0.03224240988492966, 0.10563597083091736, 2.1117873191833496, 0.11313501745462418, 0.2866961359977722, -0.5784481167793274, -0.4378634989261627, 0.1800585687160492, 1.4030354022979736, 0.7672139406204224, 0.5677962303161621], "mean": [0.5521391034126282, -0.1483117640018463, 0.09551344811916351, 1.584542155265808, -0.36736202239990234, 0.03322634473443031, -0.6438073515892029, -0.5236692428588867, 0.16897077858448029, 0.8735981583595276, 0.4049835503101349, 0.09644674509763718], "std": [0.04141448810696602, 0.05994727462530136, 0.005339863710105419, 0.40662989020347595, 0.2762225270271301, 0.14187835156917572, 0.03156460076570511, 0.04275398328900337, 0.004847097676247358, 0.5339338779449463, 0.20707561075687408, 0.4770355522632599], "count": [1089]}, "action": {"min": [-0.13605482876300812, -0.09129162132740021, 0.07869519293308258, 0.12761396169662476, 0.11445396393537521, -0.13417746126651764, 0.7131906747817993, 0.09871803969144821, -0.13125517964363098, 0.04791397973895073, -0.654620349407196, -0.46165674924850464, -0.671220600605011, -0.5959859490394592], "max": [-0.11842450499534607, -0.06610742211341858, 0.103667713701725, 0.4900378882884979, 0.6646982431411743, 0.3182868957519531, 0.9065439701080322, 0.12409944087266922, -0.11320324242115021, 0.06860477477312088, 0.6979485154151917, 0.23876778781414032, 0.6607462763786316, 0.9046221375465393], "mean": [-0.12584944069385529, -0.07585075497627258, 0.0892433449625969, 0.3042551279067993, 0.4149857461452484, 0.11650174856185913, 0.815146803855896, 0.11335442960262299, -0.12396785616874695, 0.0563511997461319, 0.35407689213752747, -0.2761876881122589, -0.3472554087638855, 0.6593040823936462], "std": [0.003950647544115782, 0.006389312911778688, 0.007731155026704073, 0.09425550699234009, 0.1690487265586853, 0.13029031455516815, 0.05235711485147476, 0.006143323611468077, 0.005063704214990139, 0.00518362270668149, 0.24310828745365143, 0.14688673615455627, 0.2553483843803406, 0.3117721676826477], "count": [1089]}, "timestamp": {"min": [0.0], "max": [36.266666666666666], "mean": [18.133333333333333], "std": [10.47890296774464], "count": [1089]}, "frame_index": {"min": [0], "max": [1088], "mean": [544.0], "std": [314.3670890323392], "count": [1089]}, "episode_index": {"min": [362], "max": [362], "mean": [362.0], "std": [0.0], "count": [1089]}, "index": {"min": [182825], "max": [183913], "mean": [183369.0], "std": [314.3670890323392], "count": [1089]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1089]}}} +{"episode_index": 363, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3984397038650851]], [[0.3598206144597757]], [[0.3150631543512467]]], "std": [[[0.2247116501330026]], [[0.20341696018679034]], [[0.201220228021118]]], "count": [216]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4082613156116356]], [[0.3860688001795369]], [[0.3452350949124506]]], "std": [[[0.22570484017096779]], [[0.19183159149218368]], [[0.2011591859404568]]], "count": [216]}, "observation.state": {"min": [0.5567240715026855, -0.2370879054069519, 0.09767285734415054, 0.7506899833679199, -0.8796657919883728, -0.7833815813064575, -0.6415428519248962, -0.5930286645889282, 0.15192389488220215, -0.16712288558483124, 0.33735552430152893, -0.8687853217124939], "max": [0.6998881101608276, -0.04974212124943733, 0.1306634396314621, 2.6225922107696533, 0.16655988991260529, 0.16609083116054535, -0.49986159801483154, -0.3390125334262848, 0.17260360717773438, 1.5749812126159668, 0.8882738947868347, 0.45328816771507263], "mean": [0.6488099098205566, -0.1479167640209198, 0.11186376959085464, 1.6231516599655151, -0.45970362424850464, -0.31512659788131714, -0.5716596841812134, -0.5101112723350525, 0.1628279685974121, 0.7395743727684021, 0.5413964986801147, -0.019690465182065964], "std": [0.024919049814343452, 0.049195412546396255, 0.008553776890039444, 0.5601069331169128, 0.3752504885196686, 0.2714223265647888, 0.046991270035505295, 0.06167396530508995, 0.005561626050621271, 0.5828960537910461, 0.10814196616411209, 0.4808274805545807], "count": [1296]}, "action": {"min": [-0.12457343190908432, -0.10420317947864532, 0.08041561394929886, 0.13483752310276031, 0.23480412364006042, -0.2133553922176361, 0.5268754363059998, 0.11208119988441467, -0.1279265284538269, 0.05194209888577461, -0.6326011419296265, -0.466997891664505, -0.6193469166755676, -0.5943848490715027], "max": [-0.09480252861976624, -0.07257870584726334, 0.1048174500465393, 0.6467730402946472, 0.7156553864479065, 0.4468773603439331, 0.9116770625114441, 0.13614900410175323, -0.10735849291086197, 0.08515716344118118, 0.6392163634300232, 0.3771559000015259, 0.7035343647003174, 0.8606229424476624], "mean": [-0.1049831435084343, -0.08000088483095169, 0.09195598214864731, 0.4094798266887665, 0.5105676651000977, 0.06853528320789337, 0.6803021430969238, 0.12388458102941513, -0.11986099928617477, 0.06141551956534386, 0.13435225188732147, -0.1803327053785324, -0.15753424167633057, 0.4672834575176239], "std": [0.006179379299283028, 0.007171022240072489, 0.0061889998614788055, 0.14860589802265167, 0.17666277289390564, 0.20220652222633362, 0.09978502243757248, 0.005904453806579113, 0.005961603485047817, 0.008406121283769608, 0.4016607403755188, 0.2524248957633972, 0.46962210536003113, 0.5105529427528381], "count": [1296]}, "timestamp": {"min": [0.0], "max": [43.166666666666664], "mean": [21.583333333333332], "std": [12.470762102109374], "count": [1296]}, "frame_index": {"min": [0], "max": [1295], "mean": [647.5], "std": [374.1228630632812], "count": [1296]}, "episode_index": {"min": [363], "max": [363], "mean": [363.0], "std": [0.0], "count": [1296]}, "index": {"min": [183914], "max": [185209], "mean": [184561.5], "std": [374.1228630632812], "count": [1296]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1296]}}} +{"episode_index": 364, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40291954805549296]], [[0.36677477743971154]], [[0.3239591831943505]]], "std": [[[0.2228322167393055]], [[0.2047647786959883]], [[0.20317563290544075]]], "count": [174]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4098478733127989]], [[0.3911642156862745]], [[0.35210164838604663]]], "std": [[[0.22314024628950632]], [[0.19211802480850407]], [[0.20237789516922108]]], "count": [174]}, "observation.state": {"min": [0.4487680196762085, -0.21669988334178925, 0.09310992062091827, 0.8809074759483337, -0.6475203633308411, -0.7096220254898071, -0.6572895050048828, -0.567837119102478, 0.1579308956861496, -0.2212228924036026, -0.12515904009342194, -0.9335194826126099], "max": [0.6308854818344116, -0.03512299060821533, 0.11430943757295609, 2.434290647506714, -0.2518210709095001, 0.3947201073169708, -0.5515035390853882, -0.4946024417877197, 0.17778617143630981, 1.6072734594345093, 0.7260863780975342, 0.3429739475250244], "mean": [0.5346571803092957, -0.10907802730798721, 0.10174372047185898, 1.4693738222122192, -0.49474605917930603, -0.1362352818250656, -0.6120501160621643, -0.5276306867599487, 0.16919490694999695, 0.48201385140419006, 0.328352153301239, -0.4737691581249237], "std": [0.05003485456109047, 0.05030379071831703, 0.0050526210106909275, 0.38596975803375244, 0.11564496159553528, 0.2995433211326599, 0.021212926134467125, 0.015395758673548698, 0.005112158600240946, 0.7145195603370667, 0.23398490250110626, 0.47391587495803833], "count": [977]}, "action": {"min": [-0.1335279643535614, -0.08309514075517654, 0.08186368644237518, 0.07407654821872711, 0.3417024612426758, -0.22551554441452026, 0.6605224609375, 0.1101652979850769, -0.13617943227291107, 0.05410832166671753, -0.6540548205375671, -0.4946105182170868, -0.6557693481445312, -0.36820080876350403], "max": [-0.11235108226537704, -0.06607213616371155, 0.12074176222085953, 0.5541249513626099, 0.5667077898979187, 0.3876843750476837, 0.8467152118682861, 0.12858767807483673, -0.11907083541154861, 0.06746049970388412, 0.7893348336219788, 0.2593698799610138, 0.6940305233001709, 0.8313378095626831], "mean": [-0.12351226806640625, -0.0747123509645462, 0.09730257838964462, 0.31858280301094055, 0.5032228231430054, 0.04867586866021156, 0.7748122215270996, 0.11785376071929932, -0.12657955288887024, 0.05883178859949112, 0.18355348706245422, -0.16033442318439484, -0.05358646810054779, 0.2811468541622162], "std": [0.0048223272897303104, 0.003953205421566963, 0.01022382639348507, 0.12959790229797363, 0.056186478585004807, 0.13901139795780182, 0.05737176164984703, 0.003253304399549961, 0.005091634579002857, 0.0029852204024791718, 0.5603997707366943, 0.2720998525619507, 0.5143789649009705, 0.4538879990577698], "count": [977]}, "timestamp": {"min": [0.0], "max": [32.53333333333333], "mean": [16.266666666666666], "std": [9.401181958787003], "count": [977]}, "frame_index": {"min": [0], "max": [976], "mean": [488.0], "std": [282.03545876361005], "count": [977]}, "episode_index": {"min": [364], "max": [364], "mean": [364.0], "std": [0.0], "count": [977]}, "index": {"min": [185210], "max": [186186], "mean": [185698.0], "std": [282.03545876361005], "count": [977]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [977]}}} +{"episode_index": 365, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4009747406491153]], [[0.36161419837924785]], [[0.3169622172337263]]], "std": [[[0.2259532412302762]], [[0.20416485270679585]], [[0.20094489332434176]]], "count": [214]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.409266927799157]], [[0.38686748925946285]], [[0.3456684457272005]]], "std": [[[0.22737060247362595]], [[0.1927732899468519]], [[0.20108913257659672]]], "count": [214]}, "observation.state": {"min": [0.5007033944129944, -0.2172173112630844, 0.09600193798542023, 0.9014570713043213, -0.8315697312355042, -0.6448502540588379, -0.664178192615509, -0.5565618872642517, 0.1544918417930603, -0.23212677240371704, -0.14223860204219818, -1.0514801740646362], "max": [0.6460065841674805, -0.037393469363451004, 0.13374991714954376, 2.2602479457855225, -0.0005465460126288235, 0.36982420086860657, -0.5155465006828308, -0.39256197214126587, 0.17969949543476105, 1.590288519859314, 0.7521839141845703, 0.4442106783390045], "mean": [0.5979174971580505, -0.12433410435914993, 0.10686333477497101, 1.8182920217514038, -0.527233362197876, -0.21910269558429718, -0.6041643023490906, -0.49674034118652344, 0.16699716448783875, 0.559278130531311, 0.42297226190567017, -0.3377928137779236], "std": [0.03499239683151245, 0.04265369102358818, 0.009114795364439487, 0.39199963212013245, 0.20904754102230072, 0.29651322960853577, 0.039886027574539185, 0.043918222188949585, 0.006280957721173763, 0.6510804295539856, 0.20232313871383667, 0.5009983777999878], "count": [1287]}, "action": {"min": [-0.12919823825359344, -0.08647778630256653, 0.0836152508854866, 0.09249812364578247, 0.26492181420326233, -0.08994685113430023, 0.5779465436935425, 0.09912009537220001, -0.13057667016983032, 0.05270051211118698, -0.639868974685669, -0.4655015468597412, -0.6447041630744934, -0.574568510055542], "max": [-0.09743881970643997, -0.06730742752552032, 0.11967746168375015, 0.5551876425743103, 0.634578287601471, 0.3559284210205078, 0.8583571314811707, 0.13317805528640747, -0.1140739768743515, 0.07597559690475464, 0.7504247426986694, 0.3805890381336212, 0.6713951826095581, 0.8419979214668274], "mean": [-0.1129496693611145, -0.07540687173604965, 0.09556747227907181, 0.35979917645454407, 0.5036438703536987, 0.19722993671894073, 0.7316447496414185, 0.11796373873949051, -0.12144315242767334, 0.0625574141740799, 0.10715314745903015, -0.13191364705562592, -0.054355598986148834, 0.279100239276886], "std": [0.007008157204836607, 0.004117751494050026, 0.008913779631257057, 0.12015753984451294, 0.10087963193655014, 0.11412449926137924, 0.07102588564157486, 0.0077989595010876656, 0.004697706084698439, 0.0053268917836248875, 0.5170881152153015, 0.2946566343307495, 0.5087925791740417, 0.5264907479286194], "count": [1287]}, "timestamp": {"min": [0.0], "max": [42.86666666666667], "mean": [21.433333333333334], "std": [12.384159535770177], "count": [1287]}, "frame_index": {"min": [0], "max": [1286], "mean": [643.0], "std": [371.5247860731053], "count": [1287]}, "episode_index": {"min": [365], "max": [365], "mean": [365.0], "std": [0.0], "count": [1287]}, "index": {"min": [186187], "max": [187473], "mean": [186830.0], "std": [371.5247860731053], "count": [1287]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1287]}}} +{"episode_index": 366, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.393437706812153]], [[0.3591490164173526]], [[0.31836114643439895]]], "std": [[[0.22293633022828874]], [[0.20500354033364646]], [[0.20385839071928744]]], "count": [239]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40052597856901945]], [[0.38314562652118034]], [[0.3459746902945278]]], "std": [[[0.22478877468328723]], [[0.19315935251040534]], [[0.2033341571885322]]], "count": [239]}, "observation.state": {"min": [0.47258493304252625, -0.23315702378749847, 0.09498953819274902, 0.4959167242050171, -0.8479661345481873, -0.6139693260192871, -0.6479372978210449, -0.5867037177085876, 0.1572646051645279, -0.21052870154380798, -0.32369187474250793, -0.9792238473892212], "max": [0.6409018635749817, -0.023507999256253242, 0.13148917257785797, 1.8981133699417114, 0.005465460009872913, 0.6074461936950684, -0.5504454970359802, -0.4131198823451996, 0.17442099750041962, 1.4692974090576172, 0.7223971486091614, 0.3894801437854767], "mean": [0.5734326839447021, -0.16394619643688202, 0.10721846669912338, 1.4065011739730835, -0.4947124421596527, 0.0010306877084076405, -0.601540207862854, -0.5327945351600647, 0.1668425053358078, 0.6192068457603455, 0.388296514749527, -0.3128361105918884], "std": [0.04129090532660484, 0.055976707488298416, 0.01053920853883028, 0.4183587431907654, 0.2702004313468933, 0.28680941462516785, 0.031251102685928345, 0.04172982648015022, 0.004097603727132082, 0.670040488243103, 0.26885896921157837, 0.4746943712234497], "count": [1489]}, "action": {"min": [-0.13372667133808136, -0.09652762860059738, 0.08053857088088989, 0.03603699058294296, 0.33822038769721985, -0.4209391176700592, 0.6313112378120422, 0.10534210503101349, -0.13291577994823456, 0.04932865872979164, -0.658116340637207, -0.4685080647468567, -0.6571448445320129, -0.48797059059143066], "max": [-0.10670340806245804, -0.06657510995864868, 0.11425107717514038, 0.5425317287445068, 0.6841003894805908, 0.2955317795276642, 0.900015652179718, 0.1283666342496872, -0.11605723947286606, 0.0715211033821106, 0.7910274863243103, 0.3020642399787903, 0.6651655435562134, 0.7953373193740845], "mean": [-0.11663604527711868, -0.08253581821918488, 0.0933525562286377, 0.2820759117603302, 0.5098593831062317, 0.05468396842479706, 0.7718182802200317, 0.11989396065473557, -0.12498455494642258, 0.057562414556741714, 0.29639363288879395, -0.2202749103307724, -0.21393553912639618, 0.41669490933418274], "std": [0.006269260309636593, 0.00791371800005436, 0.010475585237145424, 0.12456271797418594, 0.10359067469835281, 0.17507785558700562, 0.0698779970407486, 0.005307972431182861, 0.004877040162682533, 0.0049957651644945145, 0.4667433798313141, 0.2417515069246292, 0.4373451769351959, 0.4203130304813385], "count": [1489]}, "timestamp": {"min": [0.0], "max": [49.6], "mean": [24.799999999999997], "std": [14.32790594919191], "count": [1489]}, "frame_index": {"min": [0], "max": [1488], "mean": [744.0], "std": [429.83717847575724], "count": [1489]}, "episode_index": {"min": [366], "max": [366], "mean": [366.0], "std": [0.0], "count": [1489]}, "index": {"min": [187474], "max": [188962], "mean": [188218.0], "std": [429.83717847575724], "count": [1489]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1489]}}} +{"episode_index": 367, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3970625029730475]], [[0.35965308102862686]], [[0.32047333889887836]]], "std": [[[0.22138874571751488]], [[0.2019848302899039]], [[0.20024731697356735]]], "count": [229]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40356609679291416]], [[0.3832169694418282]], [[0.34739679600612683]]], "std": [[[0.22240506548953753]], [[0.1895282029356775]], [[0.19913895656002095]]], "count": [229]}, "observation.state": {"min": [0.44736248254776, -0.22841526567935944, 0.0896073430776596, 0.8809074759483337, -1.2022645473480225, -0.37022584676742554, -0.6754224896430969, -0.5859623551368713, 0.15609924495220184, -0.5141597390174866, -0.23979705572128296, -1.2614136934280396], "max": [0.6391333937644958, -0.01804029941558838, 0.12733975052833557, 2.1717586517333984, -0.15057341754436493, 0.2770259380340576, -0.5170910358428955, -0.4100848436355591, 0.17605173587799072, 1.503686547279358, 0.9526296854019165, 0.5063806772232056], "mean": [0.5448622703552246, -0.17294374108314514, 0.0988413393497467, 1.5117236375808716, -0.6451416015625, -0.08145502209663391, -0.618533730506897, -0.5262685418128967, 0.16890393197536469, 0.4598452150821686, 0.3682680130004883, -0.3757263123989105], "std": [0.045188818126916885, 0.0546206496655941, 0.009881454519927502, 0.3166719675064087, 0.29305222630500793, 0.1906658262014389, 0.04148034006357193, 0.04965612664818764, 0.005676009226590395, 0.6034901142120361, 0.29904815554618835, 0.553505539894104], "count": [1407]}, "action": {"min": [-0.1342984288930893, -0.09644246101379395, 0.0767885223031044, 0.17835329473018646, 0.21356578171253204, -0.08712362498044968, 0.5343608856201172, 0.10575273633003235, -0.13572877645492554, 0.04880250617861748, -0.7035261392593384, -0.46214619278907776, -0.703624963760376, -0.5379243493080139], "max": [-0.09882050007581711, -0.06849920004606247, 0.10888153314590454, 0.49667292833328247, 0.8053401112556458, 0.33240845799446106, 0.8910701870918274, 0.12876605987548828, -0.10801181942224503, 0.07239268720149994, 0.7552638053894043, 0.277892529964447, 0.7150133848190308, 0.8291679620742798], "mean": [-0.12389028072357178, -0.07904858887195587, 0.08815059065818787, 0.32459867000579834, 0.5434350967407227, 0.09280350804328918, 0.735493004322052, 0.11696278303861618, -0.125309556722641, 0.05812372639775276, 0.36341607570648193, -0.2123650312423706, -0.3315883278846741, 0.4418099820613861], "std": [0.0090706842020154, 0.005433837883174419, 0.008518976159393787, 0.08433348685503006, 0.14081956446170807, 0.11337359249591827, 0.09977718442678452, 0.004768911749124527, 0.008623519912362099, 0.00619462039321661, 0.4351882338523865, 0.19370944797992706, 0.41146910190582275, 0.3485170006752014], "count": [1407]}, "timestamp": {"min": [0.0], "max": [46.86666666666667], "mean": [23.43333333333333], "std": [13.538860392985104], "count": [1407]}, "frame_index": {"min": [0], "max": [1406], "mean": [703.0], "std": [406.16581178955306], "count": [1407]}, "episode_index": {"min": [367], "max": [367], "mean": [367.0], "std": [0.0], "count": [1407]}, "index": {"min": [188963], "max": [190369], "mean": [189666.0], "std": [406.16581178955306], "count": [1407]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1407]}}} +{"episode_index": 368, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3964431047508609]], [[0.3592731657179]], [[0.31888232365825664]]], "std": [[[0.22223648237845633]], [[0.2025224185235861]], [[0.20086577501411973]]], "count": [186]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40296710356783094]], [[0.3821981428772226]], [[0.3455104100780097]]], "std": [[[0.22396386741177787]], [[0.19082631541478587]], [[0.20033112293210562]]], "count": [186]}, "observation.state": {"min": [0.4334074854850769, -0.23234614729881287, 0.09459417313337326, 0.8280655741691589, -0.8747468590736389, -0.7279294729232788, -0.6799634695053101, -0.6018480062484741, 0.16105754673480988, -0.04005077853798866, 0.08526118099689484, -0.8721787929534912], "max": [0.6085745096206665, -0.0368528813123703, 0.1121990829706192, 2.4424684047698975, -0.2907624840736389, 0.503295361995697, -0.5553185343742371, -0.412980854511261, 0.17466989159584045, 1.3097233772277832, 0.6695188283920288, 0.5817214250564575], "mean": [0.5465142726898193, -0.16926975548267365, 0.10040010511875153, 1.8666579723358154, -0.49765288829803467, -0.03078509122133255, -0.6288367509841919, -0.5288206934928894, 0.1685500144958496, 0.7289063930511475, 0.40259358286857605, -0.004217018838971853], "std": [0.050002746284008026, 0.055507589131593704, 0.0040297736413776875, 0.48983609676361084, 0.10731033980846405, 0.3233427405357361, 0.03342807665467262, 0.05899469926953316, 0.0035146165173500776, 0.48143449425697327, 0.1763935387134552, 0.4461997449398041], "count": [1064]}, "action": {"min": [-0.1336269974708557, -0.09053489565849304, 0.07910642772912979, 0.0284984540194273, 0.30357256531715393, -0.09380926936864853, 0.6095439791679382, 0.10280304402112961, -0.13110539317131042, 0.05051031336188316, -0.6365063190460205, -0.43346646428108215, -0.6357986927032471, -0.5769729018211365], "max": [-0.11806066334247589, -0.06729012727737427, 0.10761035978794098, 0.5103817582130432, 0.6006596684455872, 0.45544761419296265, 0.8610133528709412, 0.12641766667366028, -0.11448775231838226, 0.0692562609910965, 0.7301363945007324, 0.24684801697731018, 0.653681218624115, 0.8972680568695068], "mean": [-0.12358219176530838, -0.07942652702331543, 0.09157560020685196, 0.3065941035747528, 0.4359603524208069, 0.25601083040237427, 0.7697473764419556, 0.11570463329553604, -0.12455695122480392, 0.05737587809562683, 0.28043264150619507, -0.19710174202919006, -0.2531564235687256, 0.5282915234565735], "std": [0.004499498289078474, 0.005251300986856222, 0.00780932791531086, 0.1343749463558197, 0.09523409605026245, 0.163052499294281, 0.0646028146147728, 0.006232784129679203, 0.005412374157458544, 0.0057041528634727, 0.3758377432823181, 0.18821871280670166, 0.3869127929210663, 0.4614616930484772], "count": [1064]}, "timestamp": {"min": [0.0], "max": [35.43333333333333], "mean": [17.716666666666665], "std": [10.238340251774753], "count": [1064]}, "frame_index": {"min": [0], "max": [1063], "mean": [531.5], "std": [307.1502075532426], "count": [1064]}, "episode_index": {"min": [368], "max": [368], "mean": [368.0], "std": [0.0], "count": [1064]}, "index": {"min": [190370], "max": [191433], "mean": [190901.5], "std": [307.1502075532426], "count": [1064]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1064]}}} +{"episode_index": 369, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39573509113007344]], [[0.36129039326636003]], [[0.32170709397442104]]], "std": [[[0.22058787033439278]], [[0.20200242151501305]], [[0.2003887275175119]]], "count": [216]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.40028027036431857]], [[0.3838092232005971]], [[0.34760890850681836]]], "std": [[[0.22220592705133263]], [[0.19012218526812838]], [[0.19964420711281775]]], "count": [216]}, "observation.state": {"min": [0.41337472200393677, -0.24066351354122162, 0.08775883167982101, 0.8718907833099365, -0.8825351595878601, -0.6904950737953186, -0.7130553722381592, -0.5829582214355469, 0.15478090941905975, -0.15831591188907623, 0.02910356968641281, -0.41494718194007874], "max": [0.5534265041351318, -0.026326799765229225, 0.1087237298488617, 2.699338674545288, -0.26425498723983765, 0.37584710121154785, -0.5887425541877747, -0.42628714442253113, 0.17741155624389648, 1.3835341930389404, 0.5201751589775085, 0.7108539938926697], "mean": [0.5126749277114868, -0.16425836086273193, 0.09760908782482147, 1.7726365327835083, -0.5778690576553345, -0.053612660616636276, -0.6658522486686707, -0.530935525894165, 0.1697349101305008, 0.8051603436470032, 0.30374908447265625, 0.22683119773864746], "std": [0.03899045288562775, 0.05213499441742897, 0.00461955601349473, 0.47909489274024963, 0.13936175405979156, 0.3227800726890564, 0.030563514679670334, 0.04952158033847809, 0.0049025556072592735, 0.5557026863098145, 0.10639050602912903, 0.33771735429763794], "count": [1296]}, "action": {"min": [-0.1358136236667633, -0.08896461129188538, 0.08267035335302353, 0.09154557436704636, 0.2547827661037445, -0.09944891184568405, 0.5905029773712158, 0.10068714618682861, -0.13338777422904968, 0.047131914645433426, -0.6017163991928101, -0.38435283303260803, -0.638838529586792, -0.6381413340568542], "max": [-0.12346619367599487, -0.06561896204948425, 0.10530046373605728, 0.5635874271392822, 0.6387640833854675, 0.5086224675178528, 0.8440534472465515, 0.1269460916519165, -0.11202604323625565, 0.06832316517829895, 0.5285024642944336, 0.13760338723659515, 0.6854822039604187, 0.908400297164917], "mean": [-0.12843134999275208, -0.07848399132490158, 0.09152837842702866, 0.3097391128540039, 0.4737441837787628, 0.22069591283798218, 0.7576120495796204, 0.11157724261283875, -0.12507466971874237, 0.05451682582497597, 0.15370537340641022, -0.18448856472969055, -0.13182663917541504, 0.5539379119873047], "std": [0.003775754477828741, 0.005049676634371281, 0.007071101106703281, 0.12981131672859192, 0.10032239556312561, 0.15685376524925232, 0.07367078959941864, 0.00447396095842123, 0.006133706774562597, 0.0059091392904520035, 0.3790653645992279, 0.1542479693889618, 0.4222399890422821, 0.5218653082847595], "count": [1296]}, "timestamp": {"min": [0.0], "max": [43.166666666666664], "mean": [21.583333333333332], "std": [12.470762102109374], "count": [1296]}, "frame_index": {"min": [0], "max": [1295], "mean": [647.5], "std": [374.1228630632812], "count": [1296]}, "episode_index": {"min": [369], "max": [369], "mean": [369.0], "std": [0.0], "count": [1296]}, "index": {"min": [191434], "max": [192729], "mean": [192081.5], "std": [374.1228630632812], "count": [1296]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1296]}}} +{"episode_index": 370, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5731911545868347]], [[0.5350737409547153]], [[0.48080584004435106]]], "std": [[[0.27555143585327113]], [[0.2701930524637836]], [[0.2770094030836497]]], "count": [112]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5967238100101151]], [[0.564859695961718]], [[0.5136811950474635]]], "std": [[[0.2531218633740517]], [[0.23904048003260053]], [[0.2620639009119108]]], "count": [112]}, "observation.state": {"min": [0.7354281544685364, 0.08392293751239777, 0.14504188299179077, -1.3508225679397583, -0.8232349157333374, -0.13289426267147064, -0.6127216219902039, 0.01360746007412672, 0.1189994215965271, 0.6783469915390015, 0.08047889918088913, -0.43711423873901367], "max": [0.9014669060707092, 0.14232224225997925, 0.16309532523155212, 0.7012031674385071, 0.7715862989425659, 1.1100914478302002, -0.5231301784515381, 0.07413823902606964, 0.1390206217765808, 1.6198548078536987, 0.4847863018512726, -0.09437786787748337], "mean": [0.8293834924697876, 0.11633583903312683, 0.15539135038852692, -0.48322150111198425, 0.21269464492797852, 0.5603219270706177, -0.5701621770858765, 0.044410571455955505, 0.13001181185245514, 1.2645132541656494, 0.2595630884170532, -0.2504803240299225], "std": [0.05433044210076332, 0.017675969749689102, 0.005709759891033173, 0.717556893825531, 0.5505374670028687, 0.31200817227363586, 0.020955413579940796, 0.018624337390065193, 0.004891283810138702, 0.2514815926551819, 0.08411258459091187, 0.08517226576805115], "count": [545]}, "action": {"min": [-0.061313603073358536, -0.05101227015256882, 0.11281388252973557, -0.5824163556098938, -0.5254948139190674, -0.45797601342201233, -0.567549467086792, 0.12811875343322754, -0.05435366928577423, 0.08168788254261017, 0.26406049728393555, -0.5005224943161011, -0.4401431679725647, 0.7130970358848572], "max": [-0.040825437754392624, -0.03811539709568024, 0.14044855535030365, 0.6763088703155518, 0.7905208468437195, 0.844416618347168, 0.681257426738739, 0.1366429626941681, -0.03619978204369545, 0.09884104132652283, 0.4728652238845825, -0.2732661962509155, -0.05560976266860962, 0.881557822227478], "mean": [-0.05301586538553238, -0.04466487094759941, 0.12479077279567719, 0.301781564950943, 0.03830643743276596, 0.43141961097717285, -0.03391651436686516, 0.13182714581489563, -0.04602780193090439, 0.09163446724414825, 0.341176301240921, -0.37678977847099304, -0.20571814477443695, 0.8249855637550354], "std": [0.00692743482068181, 0.0037303490098565817, 0.009508742019534111, 0.4142899811267853, 0.4760739207267761, 0.3373275399208069, 0.45619648694992065, 0.0022615960333496332, 0.004464206285774708, 0.0038426602259278297, 0.056248005479574203, 0.054241009056568146, 0.10412225872278214, 0.041946638375520706], "count": [545]}, "timestamp": {"min": [0.0], "max": [18.133333333333333], "mean": [9.066666666666668], "std": [5.244256117145903], "count": [545]}, "frame_index": {"min": [0], "max": [544], "mean": [272.0], "std": [157.3276835143771], "count": [545]}, "episode_index": {"min": [370], "max": [370], "mean": [370.0], "std": [0.0], "count": [545]}, "index": {"min": [192730], "max": [193274], "mean": [193002.0], "std": [157.3276835143771], "count": [545]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [545]}}} +{"episode_index": 371, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5788786397650848]], [[0.539615572605854]], [[0.48416022544283416]]], "std": [[[0.27476500493120665]], [[0.26902993325153135]], [[0.2760798886024585]]], "count": [115]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6020942715733636]], [[0.5686348086577627]], [[0.5164145495879511]]], "std": [[[0.25177788217593094]], [[0.23798407366502103]], [[0.26144975465923853]]], "count": [115]}, "observation.state": {"min": [0.7823591828346252, 0.05844563990831375, 0.13517193496227264, -2.3579633235931396, 0.11026565730571747, -0.2532830536365509, -0.6334571838378906, -0.05625239014625549, 0.11816850304603577, 0.5565171241760254, -0.07637979835271835, -0.4894945025444031], "max": [0.8840752840042114, 0.22472380101680756, 0.16927343606948853, -0.055358149111270905, 0.6311240196228027, 0.7414824962615967, -0.5295632481575012, 0.08775340765714645, 0.1426878273487091, 1.5546412467956543, 0.25428053736686707, -0.019178539514541626], "mean": [0.8357669115066528, 0.13650882244110107, 0.15090124309062958, -1.17337167263031, 0.33283913135528564, 0.11814259737730026, -0.5747747421264648, 0.027761658653616905, 0.13249103724956512, 1.205762505531311, 0.10817404836416245, -0.23603969812393188], "std": [0.028240418061614037, 0.04466501250863075, 0.00783666130155325, 0.7391408681869507, 0.14645947515964508, 0.2613133490085602, 0.029780717566609383, 0.037880368530750275, 0.0073655834421515465, 0.2857734262943268, 0.10821224004030228, 0.12404288351535797], "count": [564]}, "action": {"min": [-0.06901289522647858, -0.0469801239669323, 0.1064806804060936, -0.5873569250106812, -0.39223289489746094, -0.5861493945121765, -0.5837703943252563, 0.12390393763780594, -0.05483407527208328, 0.07787495106458664, 0.31015267968177795, -0.38457509875297546, -0.4770311713218689, 0.6823665499687195], "max": [-0.04360572621226311, -0.02560380846261978, 0.13783439993858337, 0.6436605453491211, 0.375004380941391, 0.8599990010261536, 0.6270018219947815, 0.13801439106464386, -0.039002373814582825, 0.10020177811384201, 0.5278235077857971, -0.1679469645023346, -0.04402172565460205, 0.8749929070472717], "mean": [-0.05602053180336952, -0.03956376761198044, 0.12453346699476242, 0.4478495717048645, -0.16984710097312927, 0.6684957146644592, -0.25287166237831116, 0.1309581696987152, -0.049244292080402374, 0.09284969419240952, 0.37008288502693176, -0.2982994019985199, -0.21941864490509033, 0.8363374471664429], "std": [0.005866102408617735, 0.005954196210950613, 0.008598902262747288, 0.20615777373313904, 0.21089966595172882, 0.25861871242523193, 0.32540518045425415, 0.003822516417130828, 0.003116321749985218, 0.008089804090559483, 0.05019049346446991, 0.0746738612651825, 0.1284749060869217, 0.043011534959077835], "count": [564]}, "timestamp": {"min": [0.0], "max": [18.766666666666666], "mean": [9.383333333333333], "std": [5.427083999786693], "count": [564]}, "frame_index": {"min": [0], "max": [563], "mean": [281.5], "std": [162.81251999360083], "count": [564]}, "episode_index": {"min": [371], "max": [371], "mean": [371.0], "std": [0.0], "count": [564]}, "index": {"min": [193275], "max": [193838], "mean": [193556.5], "std": [162.81251999360083], "count": [564]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [564]}}} +{"episode_index": 372, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5732489692138538]], [[0.5345321707083664]], [[0.4796505711318796]]], "std": [[[0.27560941599829153]], [[0.26943483992136535]], [[0.27553372334938386]]], "count": [107]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5956190723433714]], [[0.5635412136297926]], [[0.5117058670820354]]], "std": [[[0.2537665813155354]], [[0.2386811537558957]], [[0.26084888488328384]]], "count": [107]}, "observation.state": {"min": [0.7566656470298767, 0.08808548748493195, 0.13813914358615875, -1.7460881471633911, -0.37219783663749695, -0.1400485634803772, -0.6380367279052734, -0.007120360154658556, 0.128160297870636, 0.07485931366682053, -0.562942385673523, -0.9720250368118286], "max": [0.8846930861473083, 0.16228550672531128, 0.1561044305562973, -0.1771879941225052, 1.0124764442443848, 1.2948079109191895, -0.5721309185028076, 0.08854112774133682, 0.14216671884059906, 1.8719021081924438, 0.31959277391433716, -0.03573459014296532], "mean": [0.8313968777656555, 0.1257714480161667, 0.14754024147987366, -0.8970760703086853, 0.45398077368736267, 0.5986500978469849, -0.6026000380516052, 0.04311300069093704, 0.13587597012519836, 1.0124832391738892, -0.03609143942594528, -0.4217311143875122], "std": [0.04538225010037422, 0.01774236373603344, 0.004347864538431168, 0.40548285841941833, 0.3574766218662262, 0.46266642212867737, 0.01423040684312582, 0.021261097863316536, 0.0037361979484558105, 0.5773172378540039, 0.24728097021579742, 0.26887738704681396], "count": [514]}, "action": {"min": [-0.06818702816963196, -0.0483054593205452, 0.11190871149301529, -0.588188886642456, -0.5678479671478271, -0.4687323272228241, -0.5040906071662903, 0.12309396266937256, -0.05694819241762161, 0.08701614290475845, 0.29355746507644653, -0.44324585795402527, -0.5850435495376587, 0.42336827516555786], "max": [-0.04706410691142082, -0.03441358730196953, 0.1349783092737198, 0.8402390480041504, 0.792338490486145, 0.830287754535675, 0.5019116997718811, 0.13170470297336578, -0.042354512959718704, 0.10333149880170822, 0.6989837884902954, -0.03540264442563057, 0.09407374262809753, 0.870376706123352], "mean": [-0.058634404093027115, -0.04002508521080017, 0.12081874907016754, 0.4511898458003998, -0.12353118509054184, 0.47066375613212585, -0.15991120040416718, 0.12660738825798035, -0.049092814326286316, 0.09412649273872375, 0.47563138604164124, -0.25632932782173157, -0.2551221251487732, 0.7296215891838074], "std": [0.00654451921582222, 0.0030561108142137527, 0.007268889341503382, 0.4097209572792053, 0.3948476016521454, 0.36856868863105774, 0.2728608548641205, 0.001982520567253232, 0.0038436250761151314, 0.0031368921045213938, 0.13783620297908783, 0.1448763906955719, 0.23319460451602936, 0.127542182803154], "count": [514]}, "timestamp": {"min": [0.0], "max": [17.1], "mean": [8.549999999999999], "std": [4.945957945636012], "count": [514]}, "frame_index": {"min": [0], "max": [513], "mean": [256.5], "std": [148.37873836908037], "count": [514]}, "episode_index": {"min": [372], "max": [372], "mean": [372.0], "std": [0.0], "count": [514]}, "index": {"min": [193839], "max": [194352], "mean": [194095.5], "std": [148.37873836908037], "count": [514]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [514]}}} +{"episode_index": 373, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5814600816993464]], [[0.5412663425925925]], [[0.48537316448801743]]], "std": [[[0.2755237933281732]], [[0.26915116364308833]], [[0.27541998132038037]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6032141094771243]], [[0.5693568464052288]], [[0.5163977668845315]]], "std": [[[0.25313097682794333]], [[0.2379403974247403]], [[0.260455263795154]]], "count": [100]}, "observation.state": {"min": [0.7509199380874634, 0.0791580080986023, 0.13565027713775635, -1.913001298904419, -0.03689185157418251, -0.16049399971961975, -0.6378977298736572, 0.013576559722423553, 0.13645267486572266, 0.5141597390174866, -0.26411834359169006, -0.7342303395271301], "max": [0.8766769170761108, 0.21642187237739563, 0.1573968231678009, -0.3837325870990753, 0.9106822609901428, 1.2188975811004639, -0.5733357071876526, 0.11384081095457077, 0.14519095420837402, 1.997296690940857, 0.20960038900375366, -0.09754203259944916], "mean": [0.8072318434715271, 0.14585831761360168, 0.1478467583656311, -1.2162580490112305, 0.5158446431159973, 0.49339935183525085, -0.6021203994750977, 0.06017550081014633, 0.1407438963651657, 1.3039312362670898, 0.04158671200275421, -0.40574711561203003], "std": [0.04649606719613075, 0.041592784225940704, 0.006399564910680056, 0.4087718725204468, 0.30192381143569946, 0.3905471861362457, 0.020238494500517845, 0.023749366402626038, 0.002621268155053258, 0.41341131925582886, 0.13634103536605835, 0.1528332531452179], "count": [447]}, "action": {"min": [-0.06733095645904541, -0.046776287257671356, 0.10942872613668442, -0.608535647392273, -0.592780590057373, -0.40982329845428467, -0.38770443201065063, 0.12000486999750137, -0.05595951899886131, 0.09498798847198486, 0.18636296689510345, -0.40881869196891785, -0.4435296654701233, 0.5677615404129028], "max": [-0.05326565355062485, -0.029000965878367424, 0.13909167051315308, 0.7632539868354797, 0.6985512375831604, 0.9030925631523132, 0.4063470661640167, 0.1272324174642563, -0.040211889892816544, 0.1047891303896904, 0.6571266055107117, -0.19168147444725037, 0.11797841638326645, 0.8899794816970825], "mean": [-0.06151759624481201, -0.03877633810043335, 0.12467256188392639, 0.44247764348983765, -0.11774902790784836, 0.5252734422683716, -0.0831906646490097, 0.12375976145267487, -0.048334334045648575, 0.09914638847112656, 0.4228488802909851, -0.3149394989013672, -0.14975515007972717, 0.8034916520118713], "std": [0.0036428673192858696, 0.0046268305741250515, 0.01151263527572155, 0.4378618896007538, 0.34194016456604004, 0.3982403874397278, 0.20068535208702087, 0.0015051589580252767, 0.0038140364922583103, 0.003072710009291768, 0.12033382058143616, 0.055949997156858444, 0.1600959599018097, 0.10365797579288483], "count": [447]}, "timestamp": {"min": [0.0], "max": [14.866666666666667], "mean": [7.433333333333333], "std": [4.301248742021407], "count": [447]}, "frame_index": {"min": [0], "max": [446], "mean": [223.0], "std": [129.03746226064223], "count": [447]}, "episode_index": {"min": [373], "max": [373], "mean": [373.0], "std": [0.0], "count": [447]}, "index": {"min": [194353], "max": [194799], "mean": [194576.0], "std": [129.03746226064223], "count": [447]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [447]}}} +{"episode_index": 374, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5767876147863091]], [[0.5377480529595016]], [[0.4828972649807587]]], "std": [[[0.27615259472574777]], [[0.27018770946256165]], [[0.27652580512763336]]], "count": [107]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5991270997495571]], [[0.5664978111701586]], [[0.5148266574023171]]], "std": [[[0.2545552427585687]], [[0.23919209104702766]], [[0.26130228411058193]]], "count": [107]}, "observation.state": {"min": [0.7523486614227295, 0.07877960056066513, 0.13654859364032745, -1.9513746500015259, -0.41605815291404724, -0.11598142236471176, -0.6528257727622986, 0.020712370052933693, 0.1291027069091797, 0.5407903790473938, -0.29636457562446594, -0.7043151259422302], "max": [0.896331250667572, 0.19870592653751373, 0.15536554157733917, 0.31474462151527405, 0.5715504884719849, 0.8773499131202698, -0.517052412033081, 0.08989261090755463, 0.15494942665100098, 1.7563629150390625, 0.7176148891448975, -0.07879258692264557], "mean": [0.8267920613288879, 0.12964658439159393, 0.1469186246395111, -1.1525243520736694, 0.21626710891723633, 0.3812870383262634, -0.599561870098114, 0.06751614063978195, 0.1396557241678238, 1.239120364189148, 0.19942502677440643, -0.3048734962940216], "std": [0.04689311236143112, 0.03388786315917969, 0.004631939809769392, 0.5908486247062683, 0.2695896029472351, 0.296377956867218, 0.041649095714092255, 0.017886100336909294, 0.007353765890002251, 0.38688918948173523, 0.30093148350715637, 0.15487058460712433], "count": [508]}, "action": {"min": [-0.0717015191912651, -0.048671502619981766, 0.11027997732162476, -0.5169187188148499, -0.501917839050293, -0.5092366933822632, -0.5101015567779541, 0.12048115581274033, -0.0535234659910202, 0.08952213823795319, 0.20572860538959503, -0.582094669342041, -0.4874480366706848, 0.6192317605018616], "max": [-0.04757752642035484, -0.031957704573869705, 0.1393052339553833, 0.6456210017204285, 0.7294060587882996, 0.9196414947509766, 0.6665226817131042, 0.13129091262817383, -0.039820797741413116, 0.11339032649993896, 0.5999149084091187, -0.11493001878261566, 0.02026839181780815, 0.8830629587173462], "mean": [-0.05978647619485855, -0.04142960160970688, 0.12191382795572281, 0.37939053773880005, -0.14505721628665924, 0.6176607608795166, -0.04514071345329285, 0.12417063117027283, -0.046474769711494446, 0.09823949635028839, 0.37226322293281555, -0.3709934651851654, -0.20609945058822632, 0.790787935256958], "std": [0.006743844132870436, 0.004357465077191591, 0.009472411125898361, 0.32408201694488525, 0.33868610858917236, 0.37975937128067017, 0.2958448827266693, 0.002478489186614752, 0.0034753980580717325, 0.007201648782938719, 0.11789164692163467, 0.1308896541595459, 0.1447591483592987, 0.06305145472288132], "count": [508]}, "timestamp": {"min": [0.0], "max": [16.9], "mean": [8.450000000000001], "std": [4.888222808160673], "count": [508]}, "frame_index": {"min": [0], "max": [507], "mean": [253.5], "std": [146.64668424482022], "count": [508]}, "episode_index": {"min": [374], "max": [374], "mean": [374.0], "std": [0.0], "count": [508]}, "index": {"min": [194800], "max": [195307], "mean": [195053.5], "std": [146.64668424482022], "count": [508]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [508]}}} +{"episode_index": 375, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5891205392156863]], [[0.5453135185185185]], [[0.4869570887799564]]], "std": [[[0.27253343224570187]], [[0.26486186335401635]], [[0.2700542048079315]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6113654711328976]], [[0.573233401416122]], [[0.5181995152505448]]], "std": [[[0.2482328671858094]], [[0.2327942047864647]], [[0.2542236977366605]]], "count": [100]}, "observation.state": {"min": [0.7898579239845276, 0.1365688145160675, 0.14809076488018036, -2.307008743286133, -0.5928657650947571, -0.42239823937416077, -0.668433427810669, 0.041586920619010925, 0.1283949315547943, 0.5724535584449768, -0.024184659123420715, -1.0209612846374512], "max": [0.8629845380783081, 0.22578181326389313, 0.156174436211586, 0.4233640134334564, 0.39952513575553894, 0.921847403049469, -0.5451709032058716, 0.12330888211727142, 0.1508946418762207, 2.446033239364624, 0.38599810004234314, -0.08390699326992035], "mean": [0.8200222253799438, 0.17831307649612427, 0.15178170800209045, -0.9880126118659973, 0.02848770096898079, 0.2963176369667053, -0.6055954694747925, 0.06894057244062424, 0.13901808857917786, 1.3261688947677612, 0.20807909965515137, -0.5776105523109436], "std": [0.025665640830993652, 0.029317883774638176, 0.002031808253377676, 0.9912643432617188, 0.3698490858078003, 0.4839187264442444, 0.038777146488428116, 0.023859158158302307, 0.007122062146663666, 0.641882061958313, 0.11567647755146027, 0.35097557306289673], "count": [415]}, "action": {"min": [-0.061729177832603455, -0.04351090267300606, 0.1196383386850357, -0.5083057880401611, -0.5109022855758667, -0.4874902367591858, -0.5142572522163391, 0.11829275637865067, -0.054693806916475296, 0.08782192319631577, 0.13260777294635773, -0.4935777485370636, -0.3891165554523468, 0.5193290114402771], "max": [-0.048557620495557785, -0.026937739923596382, 0.13633356988430023, 0.5285865664482117, 0.7448994517326355, 0.8651690483093262, 0.6366301774978638, 0.13341763615608215, -0.034818653017282486, 0.11038464307785034, 0.6247422695159912, -0.2872964143753052, 0.3478914201259613, 0.9188183546066284], "mean": [-0.05796082690358162, -0.03582756593823433, 0.1291961967945099, 0.23892280459403992, 0.16709119081497192, 0.4880983233451843, 0.12223494797945023, 0.1238519623875618, -0.045494794845581055, 0.09793772548437119, 0.42362719774246216, -0.4231731593608856, -0.10320021957159042, 0.719673752784729], "std": [0.004040229134261608, 0.005249906796962023, 0.005246706306934357, 0.37496834993362427, 0.419455349445343, 0.45609527826309204, 0.3704703450202942, 0.0047480082139372826, 0.005151018965989351, 0.006162515841424465, 0.16801340878009796, 0.06636683642864227, 0.23810219764709473, 0.15348896384239197], "count": [415]}, "timestamp": {"min": [0.0], "max": [13.8], "mean": [6.9], "std": [3.9933277684991833], "count": [415]}, "frame_index": {"min": [0], "max": [414], "mean": [207.0], "std": [119.7998330549755], "count": [415]}, "episode_index": {"min": [375], "max": [375], "mean": [375.0], "std": [0.0], "count": [415]}, "index": {"min": [195308], "max": [195722], "mean": [195515.0], "std": [119.7998330549755], "count": [415]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [415]}}} +{"episode_index": 376, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5775684449891068]], [[0.5339314760348585]], [[0.47490016067538127]]], "std": [[[0.2737775440099791]], [[0.2652363458209344]], [[0.2689281043944063]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5994553594771242]], [[0.562013839869281]], [[0.5056092510893245]]], "std": [[[0.25041708350745534]], [[0.2339202197791039]], [[0.2544584235928815]]], "count": [100]}, "observation.state": {"min": [0.7912017107009888, 0.10999488085508347, 0.13405972719192505, -2.225858688354492, -0.23870396614074707, -0.371647447347641, -0.6934859752655029, -0.013622899539768696, 0.12817327678203583, 0.005661630071699619, -0.8698279857635498, -0.7199735641479492], "max": [0.8958447575569153, 0.21387335658073425, 0.16257421672344208, -0.8874078392982483, 0.8787093162536621, 0.641426146030426, -0.5925575494766235, 0.1128445714712143, 0.1478613168001175, 1.5871431827545166, 0.24089014530181885, -0.18078991770744324], "mean": [0.838286817073822, 0.1769866794347763, 0.14774668216705322, -1.4888079166412354, 0.392692506313324, 0.11778447777032852, -0.6330978274345398, 0.05708763375878334, 0.1400759369134903, 0.7799239158630371, -0.29534250497817993, -0.40528059005737305], "std": [0.03487464040517807, 0.03342295438051224, 0.006555092055350542, 0.40568360686302185, 0.27031782269477844, 0.32075199484825134, 0.03175714239478111, 0.045134562999010086, 0.005827832035720348, 0.6004124283790588, 0.35849717259407043, 0.13064098358154297], "count": [450]}, "action": {"min": [-0.06528564542531967, -0.03993883356451988, 0.10867367684841156, 0.22641591727733612, -0.3408092260360718, 0.5343700051307678, -0.3099474608898163, 0.11152353137731552, -0.06385529041290283, 0.08633709698915482, 0.3576284646987915, -0.41453102231025696, -0.5567039251327515, 0.3634300231933594], "max": [-0.053002141416072845, -0.026266956701874733, 0.14313481748104095, 0.7543999552726746, 0.09485754370689392, 0.9238808155059814, 0.0482298769056797, 0.1267937868833542, -0.03782527893781662, 0.10285398364067078, 0.7792549133300781, 0.12723249197006226, -0.026745984330773354, 0.8834691047668457], "mean": [-0.05848903954029083, -0.032196950167417526, 0.12395481765270233, 0.5549667477607727, -0.16595610976219177, 0.7594802975654602, -0.1618366837501526, 0.12203167378902435, -0.04917224496603012, 0.0950089544057846, 0.5321086049079895, -0.15859124064445496, -0.32427847385406494, 0.6763086318969727], "std": [0.0032365068327635527, 0.00379634159617126, 0.010543354786932468, 0.12910422682762146, 0.14698486030101776, 0.09731052070856094, 0.11716543883085251, 0.004226230084896088, 0.008776698261499405, 0.004154725465923548, 0.159980908036232, 0.17039628326892853, 0.19405096769332886, 0.19202809035778046], "count": [450]}, "timestamp": {"min": [0.0], "max": [14.966666666666667], "mean": [7.483333333333333], "std": [4.330116327237342], "count": [450]}, "frame_index": {"min": [0], "max": [449], "mean": [224.5], "std": [129.90348981712026], "count": [450]}, "episode_index": {"min": [376], "max": [376], "mean": [376.0], "std": [0.0], "count": [450]}, "index": {"min": [195723], "max": [196172], "mean": [195947.5], "std": [129.90348981712026], "count": [450]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [450]}}} +{"episode_index": 377, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5683712090713903]], [[0.5276926683716965]], [[0.47059940481828805]]], "std": [[[0.2744434440862899]], [[0.2668202268879055]], [[0.2714576975491338]]], "count": [138]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5921940892298949]], [[0.5573769418395378]], [[0.5038516189889805]]], "std": [[[0.252236808255139]], [[0.2363366338703875]], [[0.25673062152540194]]], "count": [138]}, "observation.state": {"min": [0.7381619811058044, 0.066701240837574, 0.1240471825003624, -1.918243646621704, -0.5813882946968079, -0.11771044135093689, -0.7728370428085327, -0.056036148220300674, 0.11086130887269974, 0.6913477182388306, -0.3359891474246979, -0.898402214050293], "max": [0.9514638781547546, 0.1786731481552124, 0.16124939918518066, 0.6951221823692322, 0.769126832485199, 1.057443618774414, -0.5736600160598755, 0.08353680372238159, 0.1459726244211197, 1.6873749494552612, 0.2829741835594177, 0.23877164721488953], "mean": [0.8510012030601501, 0.11590523272752762, 0.14361585676670074, -0.6657077074050903, 0.18666872382164001, 0.48889783024787903, -0.6615625023841858, 0.03557829186320305, 0.1330757737159729, 1.2931815385818481, 0.0016482288483530283, -0.21771803498268127], "std": [0.0648530051112175, 0.028985828161239624, 0.009319586679339409, 0.7787491083145142, 0.3524276316165924, 0.31865304708480835, 0.05794181674718857, 0.039283428341150284, 0.005756665952503681, 0.30791211128234863, 0.10969262570142746, 0.26415008306503296], "count": [717]}, "action": {"min": [-0.07435840368270874, -0.05557511746883392, 0.10120262205600739, -0.6109704971313477, -0.5749392509460449, -0.5565283298492432, -0.607215166091919, 0.1049400120973587, -0.05994977802038193, 0.0756165087223053, 0.1827957183122635, -0.47174081206321716, -0.44746503233909607, 0.6014890670776367], "max": [-0.04115843027830124, -0.028651989996433258, 0.14223749935626984, 0.6848109364509583, 0.784865140914917, 0.8906720876693726, 0.835742712020874, 0.13723710179328918, -0.03239617124199867, 0.09656982868909836, 0.6915311813354492, -0.13578328490257263, -0.00950130820274353, 0.9538975954055786], "mean": [-0.05966966971755028, -0.04143579676747322, 0.11610028147697449, 0.20778915286064148, 0.004299865569919348, 0.36630120873451233, 0.0986347571015358, 0.1224963590502739, -0.046042416244745255, 0.08834801614284515, 0.3570442497730255, -0.29882052540779114, -0.17846398055553436, 0.8408632278442383], "std": [0.00821053609251976, 0.00532165402546525, 0.012550139799714088, 0.4217502176761627, 0.4498237073421478, 0.47663435339927673, 0.4533267617225647, 0.0061022029258310795, 0.006847212556749582, 0.005045562516897917, 0.12408599257469177, 0.06496673822402954, 0.12900801002979279, 0.08979696035385132], "count": [717]}, "timestamp": {"min": [0.0], "max": [23.866666666666667], "mean": [11.933333333333334], "std": [6.89932900655859], "count": [717]}, "frame_index": {"min": [0], "max": [716], "mean": [358.0], "std": [206.9798701967577], "count": [717]}, "episode_index": {"min": [377], "max": [377], "mean": [377.0], "std": [0.0], "count": [717]}, "index": {"min": [196173], "max": [196889], "mean": [196531.0], "std": [206.9798701967577], "count": [717]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [717]}}} +{"episode_index": 378, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5887936213426181]], [[0.5454685724757193]], [[0.48975562223851116]]], "std": [[[0.2742713056715735]], [[0.26796256642066874]], [[0.27446935492692487]]], "count": [107]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6107292341131676]], [[0.5726478987233522]], [[0.520538928084214]]], "std": [[[0.25020668846502525]], [[0.23632550106784495]], [[0.25851703402213183]]], "count": [107]}, "observation.state": {"min": [0.7517385482788086, 0.03202617168426514, 0.13476359844207764, -2.2719905376434326, -0.19347727298736572, -0.44393855333328247, -0.7194266319274902, -0.026805609464645386, 0.12120182067155838, 1.1402939558029175, -0.6565383672714233, -0.2189924567937851], "max": [0.8595633506774902, 0.20573359727859497, 0.1605118066072464, -0.6819117069244385, 0.22531358897686005, 0.472726970911026, -0.5694820284843445, 0.058360688388347626, 0.15566368401050568, 1.844852089881897, 0.09113655239343643, 0.03596844896674156], "mean": [0.7901832461357117, 0.11940477043390274, 0.1488230675458908, -1.7163891792297363, 0.0050672488287091255, 0.059825651347637177, -0.613078773021698, 0.02992151491343975, 0.13523808121681213, 1.6167311668395996, -0.04197579249739647, -0.09515327960252762], "std": [0.02982865460216999, 0.049534477293491364, 0.007044046185910702, 0.3219459354877472, 0.12505818903446198, 0.23780515789985657, 0.042408689856529236, 0.02522960491478443, 0.007230096496641636, 0.18754011392593384, 0.17785878479480743, 0.054832447320222855], "count": [514]}, "action": {"min": [-0.0719962790608406, -0.06783808767795563, 0.11494220793247223, 0.27376729249954224, -0.4747663736343384, 0.6895895600318909, -0.45129817724227905, 0.11770220845937729, -0.06406308710575104, 0.07772523909807205, 0.18984119594097137, -0.3392954170703888, -0.2552235424518585, 0.8339613676071167], "max": [-0.05611115321516991, -0.02773396484553814, 0.13788732886314392, 0.5147476196289062, 0.18591251969337463, 0.9358228445053101, 0.11078319698572159, 0.13144145905971527, -0.037117816507816315, 0.1091814637184143, 0.4000411331653595, 0.004787085112184286, 0.11866572499275208, 0.9771111607551575], "mean": [-0.0641435980796814, -0.04771957919001579, 0.12807276844978333, 0.38325759768486023, -0.1825091391801834, 0.8765670657157898, -0.045674968510866165, 0.12645749747753143, -0.0493604876101017, 0.09302148222923279, 0.26906299591064453, -0.27681171894073486, -0.04138040542602539, 0.9117851257324219], "std": [0.0033885620068758726, 0.011143157258629799, 0.006909087300300598, 0.06813574582338333, 0.1749560683965683, 0.0471300408244133, 0.10896570980548859, 0.004545335192233324, 0.005630125757306814, 0.005972766317427158, 0.04520258679986, 0.08042550086975098, 0.09284646809101105, 0.028002489358186722], "count": [514]}, "timestamp": {"min": [0.0], "max": [17.1], "mean": [8.549999999999999], "std": [4.945957945636012], "count": [514]}, "frame_index": {"min": [0], "max": [513], "mean": [256.5], "std": [148.37873836908037], "count": [514]}, "episode_index": {"min": [378], "max": [378], "mean": [378.0], "std": [0.0], "count": [514]}, "index": {"min": [196890], "max": [197403], "mean": [197146.5], "std": [148.37873836908037], "count": [514]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [514]}}} +{"episode_index": 379, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5754616802832243]], [[0.5326444689542484]], [[0.47577615468409584]]], "std": [[[0.2726083722728613]], [[0.26566110022149503]], [[0.27074701356431385]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5987303976034858]], [[0.5617810239651416]], [[0.5085953921568627]]], "std": [[[0.24964971883032755]], [[0.23471898521245768]], [[0.2552802564216038]]], "count": [100]}, "observation.state": {"min": [0.7646046280860901, 0.07036182284355164, 0.13357749581336975, -2.441420078277588, -0.7725427746772766, -0.0934034213423729, -0.700776219367981, 0.0029191900976002216, 0.12117589265108109, 0.707284152507782, -0.24007032811641693, -0.47596022486686707], "max": [0.9268051981925964, 0.1720007061958313, 0.15646609663963318, 0.31998685002326965, 0.3551182746887207, 1.0588518381118774, -0.5995621085166931, 0.07210715860128403, 0.1369737833738327, 1.789284348487854, 0.12857495248317719, -0.0535460002720356], "mean": [0.839068591594696, 0.13479925692081451, 0.14351192116737366, -0.8235223889350891, -0.06284866482019424, 0.3109106421470642, -0.6469916105270386, 0.034461162984371185, 0.13066460192203522, 1.400280475616455, -0.03535107150673866, -0.19653289020061493], "std": [0.04935269057750702, 0.0237642303109169, 0.005887081380933523, 0.8214633464813232, 0.2658533751964569, 0.30067911744117737, 0.023607023060321808, 0.014188338071107864, 0.004677204415202141, 0.3901650905609131, 0.07503984123468399, 0.12295252829790115], "count": [423]}, "action": {"min": [-0.06937971711158752, -0.052239470183849335, 0.10505947470664978, -0.4431098699569702, -0.5427526235580444, -0.6282023191452026, -0.6447520852088928, 0.12245772778987885, -0.05102601274847984, 0.07941276580095291, 0.24435393512248993, -0.3610117733478546, -0.4116741418838501, 0.7114845514297485], "max": [-0.04738312587141991, -0.030806733295321465, 0.13638490438461304, 0.5454868674278259, 0.8255605101585388, 0.8922368288040161, 0.7147039175033569, 0.12971852719783783, -0.03676379844546318, 0.09526169300079346, 0.5141613483428955, -0.16210757195949554, 0.03460054472088814, 0.9205796718597412], "mean": [-0.06163657829165459, -0.04101387411355972, 0.11920991539955139, 0.21845947206020355, 0.00022960286878515035, 0.3829866945743561, 0.05375860631465912, 0.1255408525466919, -0.04597608372569084, 0.0879799872636795, 0.3384820818901062, -0.28659194707870483, -0.13038192689418793, 0.8617777824401855], "std": [0.005788325797766447, 0.005241008009761572, 0.009568627923727036, 0.2892009913921356, 0.45099693536758423, 0.5517789721488953, 0.4595769941806793, 0.0014531610067933798, 0.002871684031561017, 0.004792417399585247, 0.10439736396074295, 0.042163580656051636, 0.16063512861728668, 0.0718001276254654], "count": [423]}, "timestamp": {"min": [0.0], "max": [14.066666666666666], "mean": [7.033333333333333], "std": [4.070308023652191], "count": [423]}, "frame_index": {"min": [0], "max": [422], "mean": [211.0], "std": [122.10924070956574], "count": [423]}, "episode_index": {"min": [379], "max": [379], "mean": [379.0], "std": [0.0], "count": [423]}, "index": {"min": [197404], "max": [197826], "mean": [197615.0], "std": [122.10924070956574], "count": [423]}, "task_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [423]}}} +{"episode_index": 380, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48028036220043574]], [[0.4356315005446623]], [[0.38784694172113293]]], "std": [[[0.27445938938969255]], [[0.24634227569708317]], [[0.2417296744247768]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4952894199346405]], [[0.4623216203703704]], [[0.4197708251633987]]], "std": [[[0.28303500132195286]], [[0.23600370483634697]], [[0.2422130128539184]]], "count": [100]}, "observation.state": {"min": [0.2210400551557541, -0.13834503293037415, 0.1333065629005432, 1.456296682357788, -0.7019016742706299, 0.00950556993484497, -0.546128511428833, -0.3862602114677429, 0.1977788507938385, -1.5856753587722778, -0.72062087059021, -1.402368187904358], "max": [0.23670175671577454, -0.12776489555835724, 0.1414330154657364, 1.8068982362747192, -0.6137711405754089, 0.20301228761672974, -0.4842153489589691, -0.34113627672195435, 0.2181202471256256, -1.0964686870574951, 0.7989135980606079, -0.6308653950691223], "mean": [0.23322495818138123, -0.13024266064167023, 0.13865302503108978, 1.5679179430007935, -0.6312733888626099, 0.13899262249469757, -0.5097610950469971, -0.37286442518234253, 0.20431150496006012, -1.3654530048370361, -0.05577612668275833, -1.0319617986679077], "std": [0.003785146865993738, 0.0034949202090501785, 0.001380899571813643, 0.1420583873987198, 0.010920307599008083, 0.07824331521987915, 0.01570276916027069, 0.012610970064997673, 0.00596201978623867, 0.11637745052576065, 0.4207196831703186, 0.19427935779094696], "count": [245]}, "action": {"min": [-0.15625882148742676, -0.10854195058345795, 0.13500988483428955, 0.21707487106323242, 0.3589005470275879, 0.10847752541303635, 0.8521806001663208, 0.10650860518217087, -0.1499878615140915, 0.09661305695772171, -0.4761686325073242, -0.14246542751789093, 0.8142451643943787, -0.18489520251750946], "max": [-0.1527353972196579, -0.10333528369665146, 0.1416892111301422, 0.2732255756855011, 0.41049009561538696, 0.23967450857162476, 0.8796945810317993, 0.11410796642303467, -0.13548187911510468, 0.11293516308069229, -0.01378625724464655, 0.3028547167778015, 0.9844057559967041, 0.3029620945453644], "mean": [-0.1533057540655136, -0.10717952996492386, 0.13854020833969116, 0.23535007238388062, 0.39280909299850464, 0.14732636511325836, 0.8747497200965881, 0.11001770198345184, -0.14228415489196777, 0.10235429555177689, -0.30844470858573914, 0.07591647654771805, 0.9161648750305176, 0.09353571385145187], "std": [0.0006163745420053601, 0.0007627029553987086, 0.0013295417884364724, 0.021993886679410934, 0.021329309791326523, 0.049395471811294556, 0.00639245193451643, 0.0022399520967155695, 0.0033986063208431005, 0.00497248861938715, 0.1384163498878479, 0.10875649750232697, 0.03156138211488724, 0.13787119090557098], "count": [245]}, "timestamp": {"min": [0.0], "max": [8.133333333333333], "mean": [4.066666666666666], "std": [2.357493961344923], "count": [245]}, "frame_index": {"min": [0], "max": [244], "mean": [122.0], "std": [70.7248188403477], "count": [245]}, "episode_index": {"min": [380], "max": [380], "mean": [380.0], "std": [0.0], "count": [245]}, "index": {"min": [197827], "max": [198071], "mean": [197949.0], "std": [70.7248188403477], "count": [245]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [245]}}} +{"episode_index": 381, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.466637415577342]], [[0.4261314188453159]], [[0.3789604820261438]]], "std": [[[0.27497645006295357]], [[0.246596834061054]], [[0.24185630112856218]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4759813208061002]], [[0.44861291122004354]], [[0.4059570152505447]]], "std": [[[0.2844381556122119]], [[0.23778728589156545]], [[0.24393811875175797]]], "count": [100]}, "observation.state": {"min": [0.22021372616291046, -0.13841454684734344, 0.1362673044204712, 1.7251191139221191, -0.6435579061508179, 0.07031615078449249, -0.5774132609367371, -0.4265187978744507, 0.19768941402435303, -1.7404265403747559, -1.0369343757629395, -1.4111887216567993], "max": [0.23082475364208221, -0.12985002994537354, 0.14332689344882965, 1.7934781312942505, -0.5801585912704468, 0.13280928134918213, -0.4934362769126892, -0.3468433916568756, 0.22703871130943298, -1.0958396196365356, 1.0709569454193115, -0.6512892842292786], "mean": [0.22673478722572327, -0.13407443463802338, 0.13951453566551208, 1.7677503824234009, -0.5927291512489319, 0.09153808653354645, -0.5455578565597534, -0.3810634911060333, 0.210106760263443, -1.4593673944473267, 0.27513816952705383, -1.0681240558624268], "std": [0.0033563473261892796, 0.0030519866850227118, 0.0019967732951045036, 0.019183922559022903, 0.012490223161876202, 0.009723786264657974, 0.022752564400434494, 0.024970166385173798, 0.009615984745323658, 0.1353779137134552, 0.5138943195343018, 0.22527679800987244], "count": [146]}, "action": {"min": [-0.1549367606639862, -0.10968860983848572, 0.13672596216201782, 0.2279803454875946, 0.3316074311733246, 0.20573824644088745, 0.8697978258132935, 0.09847540408372879, -0.15481245517730713, 0.0875127986073494, -0.6252716183662415, -0.10175690054893494, 0.6932662725448608, -0.2748991549015045], "max": [-0.15412242710590363, -0.10608585178852081, 0.14349809288978577, 0.2530907988548279, 0.37017059326171875, 0.2316673994064331, 0.8883581757545471, 0.10948965698480606, -0.1417715698480606, 0.11431372910737991, 0.08303914219141006, 0.2855946123600006, 0.9846552610397339, 0.34752926230430603], "mean": [-0.15451520681381226, -0.10774855315685272, 0.13987776637077332, 0.24237941205501556, 0.33833882212638855, 0.22139272093772888, 0.881820797920227, 0.1045115664601326, -0.1458275318145752, 0.10232677310705185, -0.19180284440517426, 0.10108911991119385, 0.938540518283844, 0.0006941873580217361], "std": [0.00023867226263973862, 0.0009627405670471489, 0.0019849513191729784, 0.004151050932705402, 0.008360631763935089, 0.0074465456418693066, 0.0037470536772161722, 0.002742190146818757, 0.004292003810405731, 0.00888696126639843, 0.17279896140098572, 0.10437233000993729, 0.05039805546402931, 0.1698267012834549], "count": [146]}, "timestamp": {"min": [0.0], "max": [4.833333333333333], "mean": [2.4166666666666665], "std": [1.4048527008591012], "count": [146]}, "frame_index": {"min": [0], "max": [145], "mean": [72.5], "std": [42.14558102577303], "count": [146]}, "episode_index": {"min": [381], "max": [381], "mean": [381.0], "std": [0.0], "count": [146]}, "index": {"min": [198072], "max": [198217], "mean": [198144.5], "std": [42.14558102577303], "count": [146]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [146]}}} +{"episode_index": 382, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45375885385719944]], [[0.40216238982966923]], [[0.3579123248415528]]], "std": [[[0.2663679283133594]], [[0.23593483137785062]], [[0.2320310447076395]]], "count": [88]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4604956767429194]], [[0.4231758238017429]], [[0.38242314381560705]]], "std": [[[0.27671885930514467]], [[0.22731639284295993]], [[0.23504192732276366]]], "count": [88]}, "observation.state": {"min": [0.23078614473342896, -0.1386462152004242, 0.143722265958786, 1.6498404741287231, -0.461148202419281, -0.0116118798032403, -0.5404677391052246, -0.4202711284160614, 0.20771491527557373, -3.772322177886963, -1.0678142309188843, 1.1937005519866943], "max": [0.23282495141029358, -0.13011260330677032, 0.14486688375473022, 1.9387931823730469, -0.41783443093299866, 0.203852117061615, -0.4790025055408478, -0.36323103308677673, 0.23009665310382843, -3.4510769844055176, -0.7215773463249207, 1.4080179929733276], "mean": [0.2323511689901352, -0.13428565859794617, 0.14469510316848755, 1.743045687675476, -0.43563270568847656, 0.14413070678710938, -0.5213141441345215, -0.4029938578605652, 0.21529239416122437, -3.618509531021118, -0.8790201544761658, 1.3391776084899902], "std": [0.00030287986737675965, 0.002279782434925437, 0.00020468658476602286, 0.05705476179718971, 0.009545966982841492, 0.04217436537146568, 0.021749110892415047, 0.02156583033502102, 0.008068883791565895, 0.057631753385066986, 0.07563421875238419, 0.053928669542074203], "count": [88]}, "action": {"min": [-0.1538945734500885, -0.11192861944437027, 0.14341525733470917, 0.2107248455286026, 0.2608691453933716, 0.15388411283493042, 0.8816085457801819, 0.10518621653318405, -0.1578906923532486, 0.10029800236225128, -0.5895780920982361, -0.39304447174072266, 0.3081934452056885, 0.6240834593772888], "max": [-0.1532687246799469, -0.1109890341758728, 0.1444963961839676, 0.2901175022125244, 0.28088706731796265, 0.2641693651676178, 0.9238530397415161, 0.1096855029463768, -0.1448194533586502, 0.12418437749147415, -0.3997974097728729, -0.29374128580093384, 0.399636834859848, 0.7900291681289673], "mean": [-0.15337084233760834, -0.11157593131065369, 0.1441863477230072, 0.23388980329036713, 0.2728724777698517, 0.19208456575870514, 0.9127501845359802, 0.10759570449590683, -0.14853619039058685, 0.10786015540361404, -0.5147304534912109, -0.37272435426712036, 0.33449867367744446, 0.6931087374687195], "std": [9.692487947177142e-05, 0.00020229029178153723, 0.00023464679543394595, 0.01608915627002716, 0.003942288924008608, 0.022119609639048576, 0.00794644933193922, 0.0011306935921311378, 0.004035168793052435, 0.00902714766561985, 0.037522412836551666, 0.025152062997221947, 0.02648220956325531, 0.03313807398080826], "count": [88]}, "timestamp": {"min": [0.0], "max": [2.9], "mean": [1.45], "std": [0.8467257197253691], "count": [88]}, "frame_index": {"min": [0], "max": [87], "mean": [43.5], "std": [25.401771591761076], "count": [88]}, "episode_index": {"min": [382], "max": [382], "mean": [382.0], "std": [0.0], "count": [88]}, "index": {"min": [198218], "max": [198305], "mean": [198261.5], "std": [25.401771591761076], "count": [88]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [88]}}} +{"episode_index": 383, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46533579248366014]], [[0.4282271132897604]], [[0.38024078703703706]]], "std": [[[0.273471164577655]], [[0.24589751956689698]], [[0.2415158437635699]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47497643246187365]], [[0.451149098583878]], [[0.40615949891067543]]], "std": [[[0.28397977159337684]], [[0.23775868738974493]], [[0.24418821712797592]]], "count": [100]}, "observation.state": {"min": [0.20288391411304474, -0.13988958299160004, 0.12321107089519501, 1.3881474733352661, -0.6044798493385315, 0.0426531583070755, -0.6078408360481262, -0.4170893728733063, 0.2006579041481018, -1.4776849746704102, -1.015345811843872, -1.3947376012802124], "max": [0.23925025761127472, -0.12839043140411377, 0.14182709157466888, 1.556109070777893, -0.2249036729335785, 0.2462151050567627, -0.49535924196243286, -0.318956583738327, 0.22869278490543365, -0.9964466094970703, 1.0209479331970215, -0.6778885126113892], "mean": [0.22973720729351044, -0.13264155387878418, 0.13860036432743073, 1.4653997421264648, -0.31815075874328613, 0.18960657715797424, -0.5584654808044434, -0.3741407096385956, 0.21097196638584137, -1.2926183938980103, 0.02073315531015396, -0.9824751019477844], "std": [0.008555416949093342, 0.003604728262871504, 0.003636214416474104, 0.0651787593960762, 0.07931648194789886, 0.04598204419016838, 0.027683060616254807, 0.02788754180073738, 0.008215261623263359, 0.13252995908260345, 0.5718450546264648, 0.19341419637203217], "count": [226]}, "action": {"min": [-0.16197247803211212, -0.11110520362854004, 0.12700572609901428, 0.19861246645450592, 0.23244136571884155, 0.01592264138162136, 0.8741153478622437, 0.0881359726190567, -0.15594592690467834, 0.08877898752689362, -0.6704927682876587, -0.12694796919822693, 0.6816191673278809, -0.2862122058868408], "max": [-0.15432676672935486, -0.099643275141716, 0.14270883798599243, 0.29098960757255554, 0.38382959365844727, 0.12264782935380936, 0.9457976222038269, 0.10941077023744583, -0.1354839950799942, 0.11681196838617325, -0.012002894654870033, 0.34151437878608704, 0.968953013420105, 0.2680697441101074], "mean": [-0.1560722440481186, -0.10882044583559036, 0.13968178629875183, 0.2258506715297699, 0.2733372747898102, 0.04873991012573242, 0.9323136806488037, 0.1000579446554184, -0.1445777416229248, 0.10159046202898026, -0.3264412581920624, 0.06691417843103409, 0.895576536655426, 0.048092927783727646], "std": [0.001690392498858273, 0.0021679215133190155, 0.003080057678744197, 0.021831316873431206, 0.031717896461486816, 0.03213874623179436, 0.01335444301366806, 0.005049309693276882, 0.005783793982118368, 0.007205833215266466, 0.1798957884311676, 0.12478350102901459, 0.081133171916008, 0.1734142303466797], "count": [226]}, "timestamp": {"min": [0.0], "max": [7.5], "mean": [3.75], "std": [2.174664725116648], "count": [226]}, "frame_index": {"min": [0], "max": [225], "mean": [112.5], "std": [65.23994175349944], "count": [226]}, "episode_index": {"min": [383], "max": [383], "mean": [383.0], "std": [0.0], "count": [226]}, "index": {"min": [198306], "max": [198531], "mean": [198418.5], "std": [65.23994175349944], "count": [226]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [226]}}} +{"episode_index": 384, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4773246486928105]], [[0.42654325435729845]], [[0.38033220588235295]]], "std": [[[0.27259437049411966]], [[0.24240530066071503]], [[0.2368885841607923]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.490668690087146]], [[0.45219124727668847]], [[0.41029354302832244]]], "std": [[[0.2819324576535118]], [[0.23265095473755926]], [[0.23808830817858254]]], "count": [100]}, "observation.state": {"min": [0.2252257764339447, -0.13133279979228973, 0.13710470497608185, 1.5045253038406372, -0.44502508640289307, 0.1373639553785324, -0.5785176157951355, -0.39409878849983215, 0.19347776472568512, -1.6339040994644165, -0.5442231893539429, -1.3992427587509155], "max": [0.24549022316932678, -0.12338609993457794, 0.1434396654367447, 1.5615609884262085, -0.4067668616771698, 0.19273877143859863, -0.5044412016868591, -0.3414374589920044, 0.2185843139886856, -1.076338529586792, 0.8557543754577637, -0.6125629544258118], "mean": [0.23983433842658997, -0.12945730984210968, 0.14015762507915497, 1.545591950416565, -0.41079384088516235, 0.15060700476169586, -0.53974449634552, -0.3713585138320923, 0.2032734453678131, -1.3168264627456665, 0.10466867685317993, -1.0758825540542603], "std": [0.007912632077932358, 0.002908020978793502, 0.0014921865658834577, 0.01547008752822876, 0.005444270558655262, 0.012199648655951023, 0.013431352563202381, 0.014143181033432484, 0.00839676521718502, 0.13434478640556335, 0.4411351680755615, 0.1927400678396225], "count": [236]}, "action": {"min": [-0.15503989160060883, -0.11012482643127441, 0.13820290565490723, 0.22090759873390198, 0.3019567131996155, 0.08625471591949463, 0.9143157005310059, 0.10272710025310516, -0.15054427087306976, 0.09189999103546143, -0.5591349005699158, -0.08977657556533813, 0.8150467872619629, -0.20129568874835968], "max": [-0.15236879885196686, -0.10714833438396454, 0.14428435266017914, 0.24652257561683655, 0.3182138502597809, 0.10513654351234436, 0.9205788969993591, 0.11070556938648224, -0.13470527529716492, 0.1148039847612381, 0.016005458310246468, 0.3372965455055237, 0.9837806820869446, 0.18511205911636353], "mean": [-0.15321367979049683, -0.10864988714456558, 0.14058101177215576, 0.23967517912387848, 0.30402883887290955, 0.09912325441837311, 0.9166350364685059, 0.10696952790021896, -0.1401454657316208, 0.1003311276435852, -0.2909465730190277, 0.11586249619722366, 0.9184215068817139, 0.028845373541116714], "std": [0.0010815572459250689, 0.0006784078432247043, 0.001696622814051807, 0.006073067430406809, 0.002028930699452758, 0.005715633276849985, 0.001823510741814971, 0.0021531376987695694, 0.004734922666102648, 0.007204680237919092, 0.16348792612552643, 0.11104124784469604, 0.04172974452376366, 0.12959791719913483], "count": [236]}, "timestamp": {"min": [0.0], "max": [7.833333333333333], "mean": [3.9166666666666665], "std": [2.270890672058971], "count": [236]}, "frame_index": {"min": [0], "max": [235], "mean": [117.5], "std": [68.12672016176913], "count": [236]}, "episode_index": {"min": [384], "max": [384], "mean": [384.0], "std": [0.0], "count": [236]}, "index": {"min": [198532], "max": [198767], "mean": [198649.5], "std": [68.12672016176913], "count": [236]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [236]}}} +{"episode_index": 385, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4732024591503268]], [[0.4256846949891067]], [[0.3788781345315904]]], "std": [[[0.2712566393901461]], [[0.24131233149599823]], [[0.2367597618893129]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48591232843137255]], [[0.45063432461873637]], [[0.4081998828976035]]], "std": [[[0.2805535611187773]], [[0.23180655147506563]], [[0.23831636906814482]]], "count": [100]}, "observation.state": {"min": [0.2237352877855301, -0.13484664261341095, 0.14224837720394135, 1.5900788307189941, -0.6309873461723328, 0.25501200556755066, -0.5481441020965576, -0.3931720554828644, 0.1950877606868744, -1.5378659963607788, -0.5730534791946411, -1.407775640487671], "max": [0.24298034608364105, -0.12798112630844116, 0.14788076281547546, 1.6848586797714233, -0.5589799284934998, 0.31320708990097046, -0.49359846115112305, -0.33917471766471863, 0.22026948630809784, -1.007560133934021, 0.8371718525886536, -0.7683215737342834], "mean": [0.23043987154960632, -0.13097570836544037, 0.1446119248867035, 1.6710028648376465, -0.6018720865249634, 0.2765733599662781, -0.5223392248153687, -0.36780375242233276, 0.20847159624099731, -1.2456179857254028, 0.14434899389743805, -1.1383693218231201], "std": [0.002627750625833869, 0.0015532219549641013, 0.0013221690896898508, 0.020061993971467018, 0.016858164221048355, 0.008242224343121052, 0.01449998002499342, 0.016641944646835327, 0.00807439349591732, 0.14148078858852386, 0.42124950885772705, 0.19364982843399048], "count": [119]}, "action": {"min": [-0.15320661664009094, -0.11256170272827148, 0.1412678360939026, 0.15976212918758392, 0.3327241539955139, 0.1755220592021942, 0.8920477032661438, 0.10468626022338867, -0.14922085404396057, 0.09236947447061539, -0.5711866617202759, -0.02599666640162468, 0.8052958250045776, -0.20537595450878143], "max": [-0.1505696326494217, -0.10956376045942307, 0.14677970111370087, 0.17959895730018616, 0.354870468378067, 0.2212710678577423, 0.9073851108551025, 0.11117259413003922, -0.13774420320987701, 0.11780676990747452, -0.021064788103103638, 0.32785463333129883, 0.9693025946617126, 0.16403180360794067], "mean": [-0.1525799036026001, -0.11058718711137772, 0.14364437758922577, 0.16696853935718536, 0.3444398045539856, 0.21208438277244568, 0.8990668654441833, 0.10750042647123337, -0.1442139744758606, 0.1052580326795578, -0.2976103127002716, 0.1577877700328827, 0.9126374125480652, 0.0015924525214359164], "std": [0.0003991476260125637, 0.0007743508322164416, 0.0012482882011681795, 0.0038682122249156237, 0.0037356563843786716, 0.01193708274513483, 0.003251435933634639, 0.0018853072542697191, 0.003921516705304384, 0.007891830056905746, 0.15952374041080475, 0.10840535163879395, 0.04176851734519005, 0.12114956974983215], "count": [119]}, "timestamp": {"min": [0.0], "max": [3.933333333333333], "mean": [1.9666666666666668], "std": [1.1450376024878448], "count": [119]}, "frame_index": {"min": [0], "max": [118], "mean": [59.0], "std": [34.351128074635334], "count": [119]}, "episode_index": {"min": [385], "max": [385], "mean": [385.0], "std": [0.0], "count": [119]}, "index": {"min": [198768], "max": [198886], "mean": [198827.0], "std": [34.351128074635334], "count": [119]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [119]}}} +{"episode_index": 386, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45325016067538126]], [[0.40735800653594767]], [[0.36131215686274515]]], "std": [[[0.27256334718957237]], [[0.24799584438721547]], [[0.2423205268706121]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.463384681372549]], [[0.4301829765795207]], [[0.3880311655773421]]], "std": [[[0.2832117073461784]], [[0.24056901749809997]], [[0.24490795688763367]]], "count": [100]}, "observation.state": {"min": [0.17019358277320862, -0.17158368229866028, 0.12719586491584778, 1.4502156972885132, -0.7132425308227539, 0.20367392897605896, -0.5656670331954956, -0.3892952501773834, 0.20413455367088318, -3.8792638778686523, -0.8373084664344788, 0.7019352912902832], "max": [0.19370931386947632, -0.10134541988372803, 0.1490279734134674, 2.092705726623535, -0.32437506318092346, 0.5022473335266113, -0.5220258235931396, -0.35117584466934204, 0.2359442263841629, -3.4651262760162354, 0.11040229350328445, 1.3252009153366089], "mean": [0.18592174351215363, -0.11780836433172226, 0.1465989053249359, 1.579323410987854, -0.39351141452789307, 0.39280715584754944, -0.5428485870361328, -0.3657066524028778, 0.21971715986728668, -3.694216728210449, -0.2504010796546936, 1.0271215438842773], "std": [0.005543534643948078, 0.016044937074184418, 0.005577432457357645, 0.13966411352157593, 0.08386825025081635, 0.057413749396800995, 0.014205790124833584, 0.00910369772464037, 0.009918379597365856, 0.10790472477674484, 0.30267587304115295, 0.21361754834651947], "count": [168]}, "action": {"min": [-0.16670657694339752, -0.112964928150177, 0.12896312773227692, 0.06543543934822083, 0.22681079804897308, 0.08121928572654724, 0.8664718270301819, 0.09391968697309494, -0.157406747341156, 0.09940695017576218, -0.488494336605072, -0.6554578542709351, 0.005226620472967625, 0.6856105327606201], "max": [-0.16059820353984833, -0.10476426780223846, 0.15235388278961182, 0.17096000909805298, 0.2753792107105255, 0.3916025161743164, 0.96208256483078, 0.10327353328466415, -0.13994471728801727, 0.12548518180847168, -0.05868728086352348, -0.3596101999282837, 0.37931501865386963, 0.8764089345932007], "mean": [-0.1616915762424469, -0.11166926473379135, 0.1491192728281021, 0.11660538613796234, 0.25162723660469055, 0.13424180448055267, 0.9483146667480469, 0.0980728268623352, -0.14980752766132355, 0.11104024946689606, -0.24175159633159637, -0.4958534836769104, 0.20134682953357697, 0.784298837184906], "std": [0.0015419517876580358, 0.0020191394723951817, 0.005798769649118185, 0.020215652883052826, 0.0068331132642924786, 0.07002264261245728, 0.020166993141174316, 0.002403900260105729, 0.005531932692974806, 0.008476272225379944, 0.12930703163146973, 0.08831489086151123, 0.11258644610643387, 0.05315222218632698], "count": [168]}, "timestamp": {"min": [0.0], "max": [5.566666666666666], "mean": [2.783333333333333], "std": [1.616552115071067], "count": [168]}, "frame_index": {"min": [0], "max": [167], "mean": [83.5], "std": [48.496563452132015], "count": [168]}, "episode_index": {"min": [386], "max": [386], "mean": [386.0], "std": [0.0], "count": [168]}, "index": {"min": [198887], "max": [199054], "mean": [198970.5], "std": [48.496563452132015], "count": [168]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [168]}}} +{"episode_index": 387, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.461183720043573]], [[0.4235071432461873]], [[0.3764561437908497]]], "std": [[[0.2756115647777332]], [[0.25193254206574855]], [[0.24709188436122592]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4761737608932462]], [[0.45076512799564267]], [[0.4082159177559913]]], "std": [[[0.2870947495001458]], [[0.24300994053280725]], [[0.2486025584701141]]], "count": [100]}, "observation.state": {"min": [0.21334050595760345, -0.15564395487308502, 0.13919173181056976, 1.5749812126159668, -0.6990323066711426, 0.22206255793571472, -0.5693430304527283, -0.41816282272338867, 0.20106494426727295, -2.0763497352600098, -1.4278514385223389, -1.4171503782272339], "max": [0.24061718583106995, -0.13520188629627228, 0.1444663405418396, 1.831641674041748, -0.5464093685150146, 0.47840046882629395, -0.4811725914478302, -0.3396226167678833, 0.22087615728378296, -1.0169962644577026, 0.7035413384437561, -0.17213723063468933], "mean": [0.22826257348060608, -0.1454884558916092, 0.14095959067344666, 1.6891512870788574, -0.6036777496337891, 0.36928701400756836, -0.5242904424667358, -0.3793624937534332, 0.21174472570419312, -1.5369046926498413, -0.04773116111755371, -1.0755127668380737], "std": [0.0069819120690226555, 0.005212431773543358, 0.001637330511584878, 0.06656300276517868, 0.04202520474791527, 0.06304237246513367, 0.02937932498753071, 0.023523131385445595, 0.0054054562933743, 0.2727724015712738, 0.7370247840881348, 0.44528043270111084], "count": [146]}, "action": {"min": [-0.15661104023456573, -0.11180807650089264, 0.13756851851940155, 0.08704420179128647, 0.30911341309547424, 0.198985293507576, 0.8748496770858765, 0.10205643624067307, -0.15000897645950317, 0.09218516945838928, -0.648618221282959, -0.09091492742300034, -0.6341428160667419, -0.5375534296035767], "max": [-0.1520957350730896, -0.108632393181324, 0.1428532898426056, 0.17515791952610016, 0.34630119800567627, 0.2898847758769989, 0.919198751449585, 0.10763836652040482, -0.14212915301322937, 0.11805763840675354, 0.672580361366272, 0.29682087898254395, 0.9906736612319946, 0.35575956106185913], "mean": [-0.15387430787086487, -0.1104743629693985, 0.13935036957263947, 0.12933719158172607, 0.3291420638561249, 0.23617880046367645, 0.9043633341789246, 0.1058797836303711, -0.1463351547718048, 0.10464947670698166, -0.04312315955758095, 0.199528306722641, 0.6458364725112915, -0.08777821809053421], "std": [0.0013293869560584426, 0.0006459212745539844, 0.00160020065959543, 0.020835287868976593, 0.009209681302309036, 0.024823905900120735, 0.012182923965156078, 0.001238705706782639, 0.0025732447393238544, 0.007414284627884626, 0.33662641048431396, 0.09150528907775879, 0.59750896692276, 0.23411788046360016], "count": [146]}, "timestamp": {"min": [0.0], "max": [4.833333333333333], "mean": [2.4166666666666665], "std": [1.4048527008591012], "count": [146]}, "frame_index": {"min": [0], "max": [145], "mean": [72.5], "std": [42.14558102577303], "count": [146]}, "episode_index": {"min": [387], "max": [387], "mean": [387.0], "std": [0.0], "count": [146]}, "index": {"min": [199055], "max": [199200], "mean": [199127.5], "std": [42.14558102577303], "count": [146]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [146]}}} +{"episode_index": 388, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43302074074074076]], [[0.39649193899782137]], [[0.35295919117647057]]], "std": [[[0.2782535075519219]], [[0.256773212607958]], [[0.252197261860384]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4325266421568627]], [[0.41264114379084965]], [[0.37137021241830065]]], "std": [[[0.2908208449455428]], [[0.25080524739104804]], [[0.2563185056300637]]], "count": [100]}, "observation.state": {"min": [0.18355390429496765, -0.1469404399394989, 0.14353041350841522, 1.951164960861206, -0.6342666149139404, 0.1166916936635971, -0.6162123084068298, -0.48735079169273376, 0.20779010653495789, -3.946784019470215, -0.9326807260513306, 1.0835703611373901], "max": [0.18824933469295502, -0.14351926743984222, 0.14498615264892578, 1.9968773126602173, -0.6255218982696533, 0.15216413140296936, -0.522141695022583, -0.3680036664009094, 0.23729495704174042, -3.466803789138794, -0.617460310459137, 1.3965425491333008], "mean": [0.18669243156909943, -0.1450342833995819, 0.14447122812271118, 1.9645187854766846, -0.629966139793396, 0.14257916808128357, -0.5695778727531433, -0.4236757755279541, 0.22240959107875824, -3.657268762588501, -0.79598468542099, 1.3170634508132935], "std": [0.0015006784815341234, 0.0009802370332181454, 0.0005328659317456186, 0.012159259989857674, 0.0025557747576385736, 0.011339841410517693, 0.031602125614881516, 0.03780769929289818, 0.010176045820116997, 0.12866352498531342, 0.0923076793551445, 0.09017587453126907], "count": [101]}, "action": {"min": [-0.1612812727689743, -0.1126999780535698, 0.14359751343727112, 0.19286853075027466, 0.28282421827316284, 0.3121059834957123, 0.8779059052467346, 0.09260136634111404, -0.16297096014022827, 0.08702945709228516, -0.5576642751693726, -0.4383261203765869, 0.22817803919315338, 0.6573106050491333], "max": [-0.16034424304962158, -0.11178544163703918, 0.14480066299438477, 0.20574718713760376, 0.2898011803627014, 0.3270470201969147, 0.8831215500831604, 0.10814879089593887, -0.1486544907093048, 0.12279655039310455, -0.4040381908416748, -0.35518625378608704, 0.37167292833328247, 0.8047018051147461], "mean": [-0.1607304960489273, -0.11225580424070358, 0.14444147050380707, 0.1970057487487793, 0.287434846162796, 0.3173510730266571, 0.8819432854652405, 0.09688510745763779, -0.15477290749549866, 0.10386141389608383, -0.48519471287727356, -0.3980880081653595, 0.29149869084358215, 0.7171282768249512], "std": [0.0003060002054553479, 0.0002984910970553756, 0.00043079431634396315, 0.004190760664641857, 0.001687686308287084, 0.0033989630173891783, 0.0015903172316029668, 0.0050627198070287704, 0.0045844982378184795, 0.012665988877415657, 0.05161920189857483, 0.020238783210515976, 0.04080641269683838, 0.04613221809267998], "count": [101]}, "timestamp": {"min": [0.0], "max": [3.3333333333333335], "mean": [1.6666666666666665], "std": [0.97182531580755], "count": [101]}, "frame_index": {"min": [0], "max": [100], "mean": [50.0], "std": [29.154759474226502], "count": [101]}, "episode_index": {"min": [388], "max": [388], "mean": [388.0], "std": [0.0], "count": [101]}, "index": {"min": [199201], "max": [199301], "mean": [199251.0], "std": [29.154759474226502], "count": [101]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [101]}}} +{"episode_index": 389, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45609375544662306]], [[0.41258522331154684]], [[0.36803123910675384]]], "std": [[[0.28175822934498207]], [[0.2579849401251021]], [[0.2519155260239761]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46244116013071895]], [[0.43317713779956424]], [[0.3922226851851852]]], "std": [[[0.29391863041703914]], [[0.24935239796031286]], [[0.25498880120202816]]], "count": [100]}, "observation.state": {"min": [0.19252772629261017, -0.15619227290153503, 0.1436820775270462, 1.9878606796264648, -0.632490336894989, 0.10219894349575043, -0.5767568349838257, -0.4846709966659546, 0.2046491950750351, -4.002142429351807, -1.1137241125106812, 1.2067217826843262], "max": [0.1989453136920929, -0.14887884259223938, 0.14460763335227966, 1.9989742040634155, -0.6229258179664612, 0.12160708010196686, -0.48148924112319946, -0.37348681688308716, 0.22889110445976257, -3.7370941638946533, -0.5906795859336853, 1.4119843244552612], "mean": [0.19514940679073334, -0.15286320447921753, 0.14426931738853455, 1.9940770864486694, -0.6273812055587769, 0.10960525274276733, -0.5265032649040222, -0.42306244373321533, 0.21751956641674042, -3.8850488662719727, -0.9334322810173035, 1.3819791078567505], "std": [0.0018135368591174483, 0.0020017933566123247, 0.00034310820046812296, 0.0026198511477559805, 0.0018864584853872657, 0.005326870828866959, 0.0331929475069046, 0.038875941187143326, 0.00830324087291956, 0.05967304855585098, 0.15697172284126282, 0.04669804498553276], "count": [122]}, "action": {"min": [-0.15992793440818787, -0.11378396302461624, 0.14263640344142914, 0.2053326666355133, 0.28380313515663147, 0.3236061632633209, 0.8732172846794128, 0.10423653572797775, -0.15985986590385437, 0.08646882325410843, -0.5449334383010864, -0.3466137647628784, 0.2504335939884186, 0.6906570196151733], "max": [-0.15862324833869934, -0.11211861670017242, 0.14345422387123108, 0.21618719398975372, 0.29111289978027344, 0.32905760407447815, 0.8769595623016357, 0.1114175021648407, -0.1468273103237152, 0.12127619236707687, -0.35499274730682373, -0.2475743591785431, 0.36271020770072937, 0.8292160630226135], "mean": [-0.15934912860393524, -0.11302822083234787, 0.14320699870586395, 0.21236681938171387, 0.28769221901893616, 0.3263741135597229, 0.8749831914901733, 0.10847800225019455, -0.15310020744800568, 0.10540914535522461, -0.4799077808856964, -0.28570103645324707, 0.3224705159664154, 0.7604690194129944], "std": [0.00033697570324875414, 0.00044616215745918453, 0.0002485611184965819, 0.00324221421033144, 0.002010026481002569, 0.0013486064272001386, 0.001160729443654418, 0.001543708611279726, 0.004476830828934908, 0.01217060349881649, 0.0467829704284668, 0.024624058976769447, 0.03954867646098137, 0.037466634064912796], "count": [122]}, "timestamp": {"min": [0.0], "max": [4.033333333333333], "mean": [2.0166666666666666], "std": [1.1739061101960222], "count": [122]}, "frame_index": {"min": [0], "max": [121], "mean": [60.5], "std": [35.21718330588067], "count": [122]}, "episode_index": {"min": [389], "max": [389], "mean": [389.0], "std": [0.0], "count": [122]}, "index": {"min": [199302], "max": [199423], "mean": [199362.5], "std": [35.21718330588067], "count": [122]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [122]}}} +{"episode_index": 390, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47326129901960784]], [[0.42188789760348583]], [[0.3764602750544662]]], "std": [[[0.27724299067454994]], [[0.25315951646469564]], [[0.24653508118321119]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4846373474945534]], [[0.44537757080610024]], [[0.40328289215686275]]], "std": [[[0.28826285485053005]], [[0.24518207002828413]], [[0.24915271396628433]]], "count": [100]}, "observation.state": {"min": [0.15609188377857208, -0.11718475073575974, 0.12551328539848328, 1.5881916284561157, -0.7867529988288879, -0.14894609153270721, -0.6196798086166382, -0.403412401676178, 0.19909976422786713, 1.5433180332183838, -0.9020741581916809, 0.40317845344543457], "max": [0.18147650361061096, -0.10431867837905884, 0.14569781720638275, 1.785090446472168, -0.6119948625564575, 0.05788823962211609, -0.5548861026763916, -0.332957923412323, 0.22751964628696442, 2.1040289402008057, 0.47522175312042236, 1.2937078475952148], "mean": [0.16906479001045227, -0.11181624978780746, 0.13976964354515076, 1.6959002017974854, -0.6674923896789551, -0.05647207424044609, -0.5883782505989075, -0.37520137429237366, 0.21123850345611572, 1.83100163936615, -0.19777172803878784, 0.7193400859832764], "std": [0.005280155688524246, 0.002764946548268199, 0.005330910440534353, 0.040311671793460846, 0.049671050161123276, 0.05386367812752724, 0.018005842342972755, 0.016986016184091568, 0.008239434100687504, 0.1715453416109085, 0.3865818977355957, 0.18778836727142334], "count": [256]}, "action": {"min": [-0.16784581542015076, -0.10899732261896133, 0.13219693303108215, 0.24257902801036835, 0.3500787913799286, 0.14056667685508728, 0.8392520546913147, 0.09233538806438446, -0.1535080373287201, 0.08679252862930298, -0.25262194871902466, -0.5065319538116455, -0.18647222220897675, 0.8240669965744019], "max": [-0.16171690821647644, -0.09679338335990906, 0.14943154156208038, 0.33637452125549316, 0.4198842942714691, 0.19814062118530273, 0.8739320039749146, 0.10108453780412674, -0.13661730289459229, 0.11755089461803436, 0.23052750527858734, 0.005150345619767904, 0.2220807671546936, 0.9839062094688416], "mean": [-0.1640312522649765, -0.10575791448354721, 0.14392858743667603, 0.29798418283462524, 0.3734273612499237, 0.16565212607383728, 0.8620589971542358, 0.09594151377677917, -0.14355938136577606, 0.10056563466787338, 0.021165717393159866, -0.28467604517936707, 0.03577747195959091, 0.9298903346061707], "std": [0.0012414962984621525, 0.0031678439117968082, 0.004587487317621708, 0.02289806865155697, 0.020855605602264404, 0.013154529966413975, 0.00619205879047513, 0.0016349531942978501, 0.0046919649466872215, 0.008574455976486206, 0.1262732446193695, 0.1251372992992401, 0.1402922421693802, 0.03533446416258812], "count": [256]}, "timestamp": {"min": [0.0], "max": [8.5], "mean": [4.25], "std": [2.4633423545166346], "count": [256]}, "frame_index": {"min": [0], "max": [255], "mean": [127.5], "std": [73.90027063549903], "count": [256]}, "episode_index": {"min": [390], "max": [390], "mean": [390.0], "std": [0.0], "count": [256]}, "index": {"min": [199424], "max": [199679], "mean": [199551.5], "std": [73.90027063549903], "count": [256]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [256]}}} +{"episode_index": 391, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47230192810457516]], [[0.43615002178649237]], [[0.3866060266884532]]], "std": [[[0.27546518507962336]], [[0.25257850282784405]], [[0.2474731541696972]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4892462418300653]], [[0.46606579793028324]], [[0.42109342592592597]]], "std": [[[0.2859034320257781]], [[0.24153559837268754]], [[0.2473066730954803]]], "count": [100]}, "observation.state": {"min": [0.17595474421977997, -0.16423936188220978, 0.12144163250923157, 1.424633502960205, -0.6777170300483704, -0.04635784029960632, -0.6227766275405884, -0.4022153615951538, 0.19786958396434784, 1.2147338390350342, -0.8875907063484192, 0.5703039765357971], "max": [0.2583099603652954, -0.1294175535440445, 0.14816723763942719, 1.7756544351577759, -0.5438132882118225, 0.1560511738061905, -0.5182725787162781, -0.3281080424785614, 0.2179698646068573, 2.090818405151367, 0.14387823641300201, 1.4022572040557861], "mean": [0.24509210884571075, -0.13929371535778046, 0.13958700001239777, 1.599128246307373, -0.5879977941513062, 0.02123086340725422, -0.569654643535614, -0.37741929292678833, 0.20386838912963867, 1.6243095397949219, -0.39053094387054443, 0.91641765832901], "std": [0.016945919021964073, 0.006838031113147736, 0.00627704756334424, 0.06204164773225784, 0.0293560978025198, 0.04272744059562683, 0.020933909341692924, 0.022484896704554558, 0.005125558935105801, 0.18583498895168304, 0.2632226049900055, 0.20961250364780426], "count": [247]}, "action": {"min": [-0.16624365746974945, -0.11301819235086441, 0.12429782748222351, 0.23359708487987518, 0.32359978556632996, 0.07167135924100876, 0.8582083582878113, 0.09350074082612991, -0.14707569777965546, 0.09232322126626968, -0.21475175023078918, -0.4367266595363617, -0.0637407973408699, 0.895374059677124], "max": [-0.14795753359794617, -0.100799061357975, 0.1456146389245987, 0.3153747320175171, 0.41622811555862427, 0.22191619873046875, 0.8878173828125, 0.10962525010108948, -0.13619107007980347, 0.11554133892059326, 0.12376003712415695, 0.1295943707227707, 0.15861091017723083, 0.9949179887771606], "mean": [-0.15123401582241058, -0.10874687880277634, 0.13808029890060425, 0.29047828912734985, 0.3808632791042328, 0.13328178226947784, 0.8669499754905701, 0.1044364795088768, -0.1404740959405899, 0.09838824719190598, -0.030687181279063225, -0.14783652126789093, 0.03922773152589798, 0.9725183248519897], "std": [0.003747562412172556, 0.002950802445411682, 0.005211240611970425, 0.015983961522579193, 0.01618521846830845, 0.02546621486544609, 0.0057326979003846645, 0.004145685117691755, 0.0025555018801242113, 0.00624760752543807, 0.0785265564918518, 0.1437850147485733, 0.04787731170654297, 0.027193836867809296], "count": [247]}, "timestamp": {"min": [0.0], "max": [8.2], "mean": [4.1000000000000005], "std": [2.3767391293301183], "count": [247]}, "frame_index": {"min": [0], "max": [246], "mean": [123.0], "std": [71.30217387990355], "count": [247]}, "episode_index": {"min": [391], "max": [391], "mean": [391.0], "std": [0.0], "count": [247]}, "index": {"min": [199680], "max": [199926], "mean": [199803.0], "std": [71.30217387990355], "count": [247]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [247]}}} +{"episode_index": 392, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4671355991285403]], [[0.42331840958605665]], [[0.377312181372549]]], "std": [[[0.2787189923289355]], [[0.2571818231217647]], [[0.25119190447877776]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4782579057734205]], [[0.4471528159041394]], [[0.4041907026143791]]], "std": [[[0.2891371636217944]], [[0.24906646023582962]], [[0.2524719235269545]]], "count": [100]}, "observation.state": {"min": [0.16024671494960785, -0.1397969126701355, 0.12605513632297516, 1.6351622343063354, -0.6532590985298157, 0.050856079906225204, -0.6427939534187317, -0.40728920698165894, 0.20272549986839294, 1.7421040534973145, -0.8595802187919617, 0.4777900278568268], "max": [0.16945992410182953, -0.10986360162496567, 0.14041024446487427, 1.7460881471633911, -0.44721126556396484, 0.17229951918125153, -0.5633424520492554, -0.3671155571937561, 0.2328771948814392, 2.183711051940918, 0.4912082254886627, 1.029464602470398], "mean": [0.16484062373638153, -0.1266709566116333, 0.13436350226402283, 1.6884747743606567, -0.5303190350532532, 0.0897405743598938, -0.6055658459663391, -0.38599154353141785, 0.21495340764522552, 1.9820630550384521, -0.1563907265663147, 0.7013698816299438], "std": [0.0015089437365531921, 0.009048284031450748, 0.003821420716121793, 0.02527572773396969, 0.05579574033617973, 0.03777603432536125, 0.020227903500199318, 0.011193815618753433, 0.008708825334906578, 0.11559084057807922, 0.36530783772468567, 0.12588413059711456], "count": [202]}, "action": {"min": [-0.16803140938282013, -0.10748854279518127, 0.13093064725399017, 0.21537768840789795, 0.262717068195343, 0.14066974818706512, 0.8770918846130371, 0.08571416139602661, -0.15857480466365814, 0.08981572091579437, -0.25143882632255554, -0.5153154134750366, -0.14636456966400146, 0.8278080224990845], "max": [-0.1661774069070816, -0.10141613334417343, 0.1453247219324112, 0.2643299400806427, 0.34699442982673645, 0.20777197182178497, 0.9209865927696228, 0.0999859943985939, -0.1395176649093628, 0.11451157927513123, 0.19519232213497162, -0.14437825977802277, 0.27831584215164185, 0.9485547542572021], "mean": [-0.16661234200000763, -0.10537129640579224, 0.13882409036159515, 0.25187116861343384, 0.2992354929447174, 0.1674043834209442, 0.9043647646903992, 0.0912010669708252, -0.1466246098279953, 0.09907744079828262, 0.007058055605739355, -0.353291779756546, 0.06443025916814804, 0.9120126962661743], "std": [0.00035665862378664315, 0.0015643645310774446, 0.004076031036674976, 0.016268305480480194, 0.022939268499612808, 0.01440165564417839, 0.011009345762431622, 0.003306766739115119, 0.005447904113680124, 0.006963474676012993, 0.11530350148677826, 0.09607233107089996, 0.12353656440973282, 0.03782046213746071], "count": [202]}, "timestamp": {"min": [0.0], "max": [6.7], "mean": [3.35], "std": [1.9437220880453965], "count": [202]}, "frame_index": {"min": [0], "max": [201], "mean": [100.5], "std": [58.31166264136189], "count": [202]}, "episode_index": {"min": [392], "max": [392], "mean": [392.0], "std": [0.0], "count": [202]}, "index": {"min": [199927], "max": [200128], "mean": [200027.5], "std": [58.31166264136189], "count": [202]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [202]}}} +{"episode_index": 393, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4570180718954248]], [[0.41084890795206974]], [[0.3647636574074074]]], "std": [[[0.2786651827319227]], [[0.25140668062584814]], [[0.24600869161775316]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4637097930283225]], [[0.43155969498910673]], [[0.38999201525054467]]], "std": [[[0.2907614354095376]], [[0.24463604276238263]], [[0.2489946054907238]]], "count": [100]}, "observation.state": {"min": [0.18502123653888702, -0.131788432598114, 0.13941079378128052, 1.7620246410369873, -0.48205357789993286, -0.08448059111833572, -0.588711678981781, -0.42273467779159546, 0.20911750197410583, -0.4179120659828186, 0.2198481261730194, -1.2930572032928467], "max": [0.19633503258228302, -0.11981047689914703, 0.1443004161119461, 1.9236955642700195, -0.41906413435935974, 0.07420855760574341, -0.508696436882019, -0.3679032623767853, 0.2284257411956787, 0.002935660071671009, 0.9865155220031738, -0.8224828243255615], "mean": [0.187464639544487, -0.12569627165794373, 0.14300797879695892, 1.836438536643982, -0.4332341253757477, -0.01953897625207901, -0.5508723855018616, -0.3984558880329132, 0.21865950524806976, -0.19052840769290924, 0.7127637267112732, -1.036362648010254], "std": [0.001386526389978826, 0.0038279760628938675, 0.0010731330839917064, 0.037077486515045166, 0.010425916872918606, 0.035074517130851746, 0.023626767098903656, 0.015099375508725643, 0.006547963246703148, 0.1448347121477127, 0.24534286558628082, 0.1417475938796997], "count": [163]}, "action": {"min": [-0.162442147731781, -0.11042554676532745, 0.1428612619638443, 0.25370272994041443, 0.24595403671264648, 0.19273170828819275, 0.8817775249481201, 0.09663266688585281, -0.15744361281394958, 0.09681392461061478, -0.5697566866874695, 0.1736152470111847, 0.5608733892440796, -0.41287562251091003], "max": [-0.1605404019355774, -0.10686960816383362, 0.14736361801624298, 0.3202405273914337, 0.28049835562705994, 0.24211135506629944, 0.9082134962081909, 0.10105373710393906, -0.14086326956748962, 0.12036439031362534, -0.3862604796886444, 0.5833498239517212, 0.783547043800354, -0.29502174258232117], "mean": [-0.16188083589076996, -0.10997581481933594, 0.14572669565677643, 0.297092080116272, 0.2504578232765198, 0.20778295397758484, 0.8974182605743408, 0.09862197935581207, -0.14942395687103271, 0.10665087401866913, -0.46074485778808594, 0.426336407661438, 0.6617338061332703, -0.37029871344566345], "std": [0.00026545149739831686, 0.000520356057677418, 0.0011518708197399974, 0.014355935156345367, 0.004437623545527458, 0.013838578946888447, 0.007534585427492857, 0.0014513926580548286, 0.00515656266361475, 0.007703934330493212, 0.0517563633620739, 0.14228291809558868, 0.08385609835386276, 0.031358834356069565], "count": [163]}, "timestamp": {"min": [0.0], "max": [5.4], "mean": [2.6999999999999993], "std": [1.5684387141358123], "count": [163]}, "frame_index": {"min": [0], "max": [162], "mean": [81.0], "std": [47.05316142407437], "count": [163]}, "episode_index": {"min": [393], "max": [393], "mean": [393.0], "std": [0.0], "count": [163]}, "index": {"min": [200129], "max": [200291], "mean": [200210.0], "std": [47.05316142407437], "count": [163]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [163]}}} +{"episode_index": 394, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45061390795206974]], [[0.4062426633986928]], [[0.3594732979302832]]], "std": [[[0.27344196774783747]], [[0.25156840070993225]], [[0.24414930644384855]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4584629466230937]], [[0.42774870098039214]], [[0.3844581072984749]]], "std": [[[0.2838256537082125]], [[0.2436921979983577]], [[0.24480048908255803]]], "count": [100]}, "observation.state": {"min": [0.09726782143115997, -0.12361005693674088, 0.1425633728504181, 2.1440796852111816, -0.3872278332710266, -0.14245226979255676, -0.6266456842422485, -0.40569061040878296, 0.21666060388088226, -0.45418840646743774, -0.022818300873041153, -1.0081350803375244], "max": [0.11936256289482117, -0.10990992933511734, 0.14413577318191528, 2.229004144668579, -0.3549816310405731, -0.06716371327638626, -0.557673990726471, -0.33656442165374756, 0.2381829172372818, -0.1088290810585022, 0.4194740355014801, -0.7485215067863464], "mean": [0.11437300592660904, -0.11895143985748291, 0.14313678443431854, 2.1751389503479004, -0.3778613805770874, -0.10302459448575974, -0.5946712493896484, -0.3747503459453583, 0.22982187569141388, -0.2496669888496399, 0.20998632907867432, -0.8545761704444885], "std": [0.00615510530769825, 0.004316078033298254, 0.0004990873276256025, 0.02474365010857582, 0.009629098698496819, 0.02107597328722477, 0.0221099816262722, 0.018646007403731346, 0.006828839424997568, 0.11306573450565338, 0.1769542247056961, 0.07805988192558289], "count": [165]}, "action": {"min": [-0.17911970615386963, -0.1098480224609375, 0.14838330447673798, 0.28538596630096436, 0.13186956942081451, 0.3259202539920807, 0.86429363489151, 0.07921752333641052, -0.1633673906326294, 0.09649043530225754, -0.6611288189888, 0.10115580260753632, 0.6788167953491211, -0.3805018663406372], "max": [-0.17522217333316803, -0.10903497785329819, 0.15138472616672516, 0.31496956944465637, 0.15450958907604218, 0.3629609942436218, 0.8907338976860046, 0.09143514186143875, -0.1498553305864334, 0.12020640820264816, -0.5441285967826843, 0.29923054575920105, 0.7534368634223938, -0.18399597704410553], "mean": [-0.17606763541698456, -0.10963902622461319, 0.14935871958732605, 0.3024914860725403, 0.14733608067035675, 0.34010758996009827, 0.8779746294021606, 0.0837278962135315, -0.1554195135831833, 0.10962065309286118, -0.5859335064888, 0.22366923093795776, 0.7106314897537231, -0.30055001378059387], "std": [0.0011021749814972281, 0.00020977036911062896, 0.0009610078996047378, 0.007722716778516769, 0.006847407203167677, 0.010725048370659351, 0.007539523299783468, 0.0034277872182428837, 0.004139845725148916, 0.007458020932972431, 0.037772271782159805, 0.06220070272684097, 0.024154817685484886, 0.07380842417478561], "count": [165]}, "timestamp": {"min": [0.0], "max": [5.466666666666667], "mean": [2.7333333333333325], "std": [1.587684080899201], "count": [165]}, "frame_index": {"min": [0], "max": [164], "mean": [82.0], "std": [47.63052242697603], "count": [165]}, "episode_index": {"min": [394], "max": [394], "mean": [394.0], "std": [0.0], "count": [165]}, "index": {"min": [200292], "max": [200456], "mean": [200374.0], "std": [47.63052242697603], "count": [165]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [165]}}} +{"episode_index": 395, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43969510620915037]], [[0.40596642701525054]], [[0.36026437363834424]]], "std": [[[0.27351948415497246]], [[0.24975567355502262]], [[0.2449949715025881]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4506483061002179]], [[0.43104468137254903]], [[0.38848965413943354]]], "std": [[[0.28560009959362503]], [[0.24212582751633802]], [[0.24718694668699784]]], "count": [100]}, "observation.state": {"min": [0.22694794833660126, -0.17984700202941895, 0.13031992316246033, 1.3740981817245483, -0.5540609955787659, -0.1400960236787796, -0.6114396452903748, -0.4303570091724396, 0.19966496527194977, -0.7286725640296936, -0.9757212400436401, -1.2592742443084717], "max": [0.26556161046028137, -0.13538722693920135, 0.13542470335960388, 1.8008172512054443, -0.42002061009407043, 0.2584512233734131, -0.5113298892974854, -0.34632596373558044, 0.230936661362648, 1.6389366388320923, 1.016575574874878, 1.4112917184829712], "mean": [0.23888559639453888, -0.16526424884796143, 0.1318369060754776, 1.5836559534072876, -0.5229515433311462, 0.06696637719869614, -0.5703303813934326, -0.38594549894332886, 0.21987658739089966, 0.4987357556819916, -0.009995300322771072, -0.011708916164934635], "std": [0.00980554148554802, 0.007760369218885899, 0.0011398759670555592, 0.12373485416173935, 0.024907711893320084, 0.1132679134607315, 0.030326347798109055, 0.016811642795801163, 0.0072148204781115055, 0.8790583610534668, 0.7533335089683533, 1.0963338613510132], "count": [367]}, "action": {"min": [-0.15637356042861938, -0.11071037501096725, 0.1286599189043045, 0.19727469980716705, 0.3247983753681183, 0.04760085418820381, 0.8496654629707336, 0.08994852006435394, -0.15997982025146484, 0.09150974452495575, -0.6766390204429626, -0.252685010433197, -0.6618393063545227, -0.6601125597953796], "max": [-0.15062032639980316, -0.10550189018249512, 0.13500335812568665, 0.36815276741981506, 0.3719063997268677, 0.19209708273410797, 0.9161311984062195, 0.10694163292646408, -0.13967476785182953, 0.12111321091651917, 0.20428192615509033, 0.4858986437320709, 0.8297529220581055, 0.9990525245666504], "mean": [-0.15479731559753418, -0.10814519226551056, 0.12990444898605347, 0.2862866222858429, 0.3506833612918854, 0.12540021538734436, 0.8804805278778076, 0.09722303599119186, -0.15063528716564178, 0.10599081218242645, -0.24941305816173553, 0.2081194818019867, 0.39698413014411926, 0.3160953223705292], "std": [0.0013620745157822967, 0.0013065686216577888, 0.0009370844345539808, 0.04488256201148033, 0.011914357542991638, 0.04100887477397919, 0.01587708480656147, 0.0037942021153867245, 0.005014955066144466, 0.007121071219444275, 0.21301531791687012, 0.21545834839344025, 0.3452734351158142, 0.6526522636413574], "count": [367]}, "timestamp": {"min": [0.0], "max": [12.2], "mean": [6.1], "std": [3.531446036839741], "count": [367]}, "frame_index": {"min": [0], "max": [366], "mean": [183.0], "std": [105.94338110519222], "count": [367]}, "episode_index": {"min": [395], "max": [395], "mean": [395.0], "std": [0.0], "count": [367]}, "index": {"min": [200457], "max": [200823], "mean": [200640.0], "std": [105.94338110519222], "count": [367]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [367]}}} +{"episode_index": 396, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4560195288671024]], [[0.4121832080610022]], [[0.3682124183006536]]], "std": [[[0.28053720804276744]], [[0.25811443070543433]], [[0.2518749073533296]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46220052559912855]], [[0.43266046840958605]], [[0.3931937745098039]]], "std": [[[0.2890335721889815]], [[0.24965742273309677]], [[0.25292482602157096]]], "count": [100]}, "observation.state": {"min": [0.15948988497257233, -0.17647989094257355, 0.1274564266204834, 1.9509552717208862, -0.49011510610580444, -0.012519179843366146, -0.6100572943687439, -0.45721668004989624, 0.19996829330921173, -0.8150647878646851, -0.049872320145368576, -1.3921664953231812], "max": [0.17427119612693787, -0.17369970679283142, 0.12987789511680603, 2.0339925289154053, -0.46483737230300903, 0.08494783192873001, -0.5282503962516785, -0.3736335337162018, 0.2324468344449997, -0.5940515995025635, 0.5525580048561096, -1.0356208086013794], "mean": [0.16914069652557373, -0.17507478594779968, 0.12885192036628723, 1.9956483840942383, -0.4802331030368805, 0.0301041342318058, -0.5677362680435181, -0.40098634362220764, 0.21988807618618011, -0.7086954712867737, 0.30037933588027954, -1.248150110244751], "std": [0.004487147089093924, 0.0006692986353300512, 0.0007975489716045558, 0.026713818311691284, 0.0065451194532215595, 0.021771885454654694, 0.02751128189265728, 0.02373117208480835, 0.01034008339047432, 0.06228352338075638, 0.190473273396492, 0.09432566165924072], "count": [170]}, "action": {"min": [-0.16940666735172272, -0.10872174054384232, 0.1294434517621994, 0.24966548383235931, 0.21139994263648987, 0.27352800965309143, 0.8787100911140442, 0.09258060157299042, -0.1655452400445938, 0.08194461464881897, -0.5812548995018005, 0.11712050437927246, 0.7466153502464294, -0.20106573402881622], "max": [-0.1667371392250061, -0.10685434192419052, 0.13106690347194672, 0.291957288980484, 0.23478876054286957, 0.3052794337272644, 0.8955233693122864, 0.10304738581180573, -0.14130693674087524, 0.11723761260509491, -0.373243510723114, 0.45560938119888306, 0.8502974510192871, -0.03422810882329941], "mean": [-0.16764234006404877, -0.10784969478845596, 0.13024795055389404, 0.2771355211734772, 0.2216477394104004, 0.29240545630455017, 0.8878125548362732, 0.09588144719600677, -0.15358278155326843, 0.10397124290466309, -0.4726434051990509, 0.3149136006832123, 0.8037236928939819, -0.1269543170928955], "std": [0.0008234947454184294, 0.000601310923229903, 0.0005463873967528343, 0.011022244580090046, 0.009658721275627613, 0.011407955549657345, 0.0033333254978060722, 0.002842024667188525, 0.007720085326582193, 0.010219113901257515, 0.048055995255708694, 0.09817257523536682, 0.033181577920913696, 0.04795641824603081], "count": [170]}, "timestamp": {"min": [0.0], "max": [5.633333333333334], "mean": [2.8166666666666664], "std": [1.6357974609753292], "count": [170]}, "frame_index": {"min": [0], "max": [169], "mean": [84.5], "std": [49.073923829259876], "count": [170]}, "episode_index": {"min": [396], "max": [396], "mean": [396.0], "std": [0.0], "count": [170]}, "index": {"min": [200824], "max": [200993], "mean": [200908.5], "std": [49.073923829259876], "count": [170]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [170]}}} +{"episode_index": 397, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45183106209150325]], [[0.39874528867102393]], [[0.35502314814814817]]], "std": [[[0.2655760743350304]], [[0.2407068459098519]], [[0.23479121935492367]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4663824945533769]], [[0.42684491557734205]], [[0.38630605936819173]]], "std": [[[0.2743393040484019]], [[0.22926891692376428]], [[0.23407556124274903]]], "count": [100]}, "observation.state": {"min": [0.21850700676441193, -0.1678999364376068, 0.1239071786403656, 1.5181552171707153, -0.5744198560714722, -0.05788816139101982, -0.6135093569755554, -0.4278085231781006, 0.1954779326915741, 0.8320497274398804, -1.0305124521255493, -0.10738258063793182], "max": [0.27289819717407227, -0.13684682548046112, 0.14178690314292908, 1.9106947183609009, -0.33229997754096985, 0.3728383481502533, -0.4949344992637634, -0.32214608788490295, 0.22043929994106293, 1.6542439460754395, 0.9564555287361145, 1.407968282699585], "mean": [0.24971888959407806, -0.15295319259166718, 0.13632704317569733, 1.6734131574630737, -0.42798689007759094, 0.10436222702264786, -0.5630908608436584, -0.3864500820636749, 0.20569966733455658, 1.5073974132537842, -0.27104708552360535, 0.8470883965492249], "std": [0.00990680605173111, 0.009583626873791218, 0.003741413587704301, 0.08157908171415329, 0.0649474710226059, 0.10691282898187637, 0.033743347972631454, 0.026094799861311913, 0.006610570941120386, 0.1637253761291504, 0.5251739621162415, 0.34422290325164795], "count": [231]}, "action": {"min": [-0.1586047261953354, -0.11142468452453613, 0.12488197535276413, 0.15195943415164948, 0.259138822555542, 0.0970933735370636, 0.8643044233322144, 0.09895215183496475, -0.15140065550804138, 0.08602847158908844, -0.27578774094581604, -0.4630032181739807, -0.4937431514263153, 0.6565638184547424], "max": [-0.14968141913414001, -0.10296761989593506, 0.1409914642572403, 0.33220282196998596, 0.3229368329048157, 0.26622751355171204, 0.9372703433036804, 0.11485446989536285, -0.13582773506641388, 0.11638191342353821, 0.33552756905555725, 0.10089411586523056, 0.24665728211402893, 0.9945883750915527], "mean": [-0.1524531990289688, -0.10900259017944336, 0.13487838208675385, 0.26326560974121094, 0.29482296109199524, 0.1554795652627945, 0.9031637907028198, 0.10415687412023544, -0.14230100810527802, 0.09810292720794678, 0.007091061677783728, -0.160418301820755, -0.026589997112751007, 0.9407688975334167], "std": [0.0016147452406585217, 0.0020816372707486153, 0.0034053977578878403, 0.04536920785903931, 0.017717694863677025, 0.03285496309399605, 0.020983459427952766, 0.0044889687560498714, 0.00385074014775455, 0.00713580334559083, 0.1600418984889984, 0.1499142348766327, 0.18471820652484894, 0.07908693701028824], "count": [231]}, "timestamp": {"min": [0.0], "max": [7.666666666666667], "mean": [3.8333333333333335], "std": [2.222777708350689], "count": [231]}, "frame_index": {"min": [0], "max": [230], "mean": [115.0], "std": [66.68333125052067], "count": [231]}, "episode_index": {"min": [397], "max": [397], "mean": [397.0], "std": [0.0], "count": [231]}, "index": {"min": [200994], "max": [201224], "mean": [201109.0], "std": [66.68333125052067], "count": [231]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [231]}}} +{"episode_index": 398, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44851302559912853]], [[0.38110226579520695]], [[0.33856742102396514]]], "std": [[[0.26515465340802974]], [[0.23386545062076725]], [[0.22742058788740824]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4589945996732026]], [[0.40408791666666666]], [[0.36493056644880173]]], "std": [[[0.27610491865357134]], [[0.22666520488291195]], [[0.22921605735695424]]], "count": [100]}, "observation.state": {"min": [0.15964433550834656, -0.1337345689535141, 0.14931705594062805, 1.8708536624908447, -0.3940596580505371, -0.21474876999855042, -0.6088834404945374, -0.41779986023902893, 0.2040269672870636, -0.5728729367256165, 0.07460352778434753, -1.200798511505127], "max": [0.17364564538002014, -0.11125369369983673, 0.1499263048171997, 2.04091215133667, -0.32765433192253113, -0.01592228002846241, -0.5192224979400635, -0.3459630012512207, 0.23300552368164062, -0.2660965323448181, 0.6259317994117737, -0.3934917151927948], "mean": [0.16984446346759796, -0.12265875190496445, 0.14962461590766907, 1.949986219406128, -0.34024515748023987, -0.14313432574272156, -0.5831336975097656, -0.3711589574813843, 0.21721486747264862, -0.43632373213768005, 0.3373796045780182, -0.8966162204742432], "std": [0.0039137923158705235, 0.005581542383879423, 0.0001348065270576626, 0.05013647675514221, 0.013735979795455933, 0.039879728108644485, 0.028367212042212486, 0.015869392082095146, 0.009005897678434849, 0.08760097622871399, 0.17745932936668396, 0.2874145209789276], "count": [148]}, "action": {"min": [-0.16621245443820953, -0.11561353504657745, 0.1513495147228241, 0.2902078330516815, 0.18749405443668365, 0.2054145634174347, 0.8632018566131592, 0.0874054804444313, -0.16154180467128754, 0.09120389074087143, -0.566190242767334, 0.006881154607981443, 0.6954983472824097, -0.405855655670166], "max": [-0.16417570412158966, -0.11214715242385864, 0.1534438580274582, 0.38167083263397217, 0.21448896825313568, 0.2701675295829773, 0.9073799252510071, 0.09942299872636795, -0.13956300914287567, 0.12234918028116226, -0.4487476050853729, 0.42095330357551575, 0.7981029152870178, -0.17813889682292938], "mean": [-0.1647534966468811, -0.11395324021577835, 0.15226495265960693, 0.3527778685092926, 0.1957174837589264, 0.23379530012607574, 0.8841432929039001, 0.0929110199213028, -0.14623843133449554, 0.10601871460676193, -0.5004798769950867, 0.2434227466583252, 0.7619032263755798, -0.28408220410346985], "std": [0.0005968895857222378, 0.0008253883570432663, 0.0005661502946168184, 0.018569188192486763, 0.0072327652014791965, 0.019274387508630753, 0.010210147127509117, 0.002868802985176444, 0.006908439099788666, 0.008165457285940647, 0.02917497046291828, 0.1519455760717392, 0.02315307781100273, 0.06775803864002228], "count": [148]}, "timestamp": {"min": [0.0], "max": [4.9], "mean": [2.4499999999999997], "std": [1.424098155168932], "count": [148]}, "frame_index": {"min": [0], "max": [147], "mean": [73.5], "std": [42.72294465506796], "count": [148]}, "episode_index": {"min": [398], "max": [398], "mean": [398.0], "std": [0.0], "count": [148]}, "index": {"min": [201225], "max": [201372], "mean": [201298.5], "std": [42.72294465506796], "count": [148]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [148]}}} +{"episode_index": 399, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.469235114379085]], [[0.42882207244008713]], [[0.38230721132897605]]], "std": [[[0.2809375751009521]], [[0.2581224296349483]], [[0.25156327128301603]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48077993191721136]], [[0.4536685403050109]], [[0.4103712091503268]]], "std": [[[0.2913010166946439]], [[0.24833867473187907]], [[0.2521254121791948]]], "count": [100]}, "observation.state": {"min": [0.1918095201253891, -0.18933051824569702, 0.11932609230279922, 1.4487478733062744, -0.5971015095710754, -0.20883770287036896, -0.6493659615516663, -0.4774656891822815, 0.19250555336475372, 0.036905430257320404, -1.0854403972625732, -0.7311500906944275], "max": [0.23821541666984558, -0.11704573780298233, 0.1388261765241623, 2.434919595718384, -0.28584355115890503, 0.387687087059021, -0.550159752368927, -0.3371899724006653, 0.2332829385995865, 1.6861168146133423, 1.3201818466186523, 1.4037106037139893], "mean": [0.20725125074386597, -0.13984709978103638, 0.13105352222919464, 1.6519943475723267, -0.38010790944099426, 0.17598888278007507, -0.5982694625854492, -0.39332476258277893, 0.20987491309642792, 1.3739100694656372, -0.2426443248987198, 0.9377081394195557], "std": [0.011802862398326397, 0.01682431437075138, 0.005903657991439104, 0.16520148515701294, 0.059598930180072784, 0.11528900265693665, 0.027590276673436165, 0.02840360440313816, 0.013026122935116291, 0.3307027816772461, 0.5956695079803467, 0.44366252422332764], "count": [316]}, "action": {"min": [-0.1643735021352768, -0.1076362133026123, 0.12152677774429321, 0.14496907591819763, 0.21038474142551422, 0.07609135657548904, 0.7983928322792053, 0.08820339292287827, -0.16037677228450775, 0.08349046111106873, -0.34312790632247925, -0.5514748096466064, -0.6482771039009094, -0.6481504440307617], "max": [-0.15812432765960693, -0.1009068489074707, 0.14320245385169983, 0.3246721923351288, 0.31712114810943604, 0.47580647468566895, 0.9472909569740295, 0.10329097509384155, -0.13239429891109467, 0.11579012125730515, 0.31033238768577576, 0.5919011831283569, 0.6908576488494873, 0.9946593046188354], "mean": [-0.16123127937316895, -0.1050684005022049, 0.13406172394752502, 0.22732128202915192, 0.25459179282188416, 0.1420707255601883, 0.9251298308372498, 0.09717055410146713, -0.14422643184661865, 0.09620915353298187, -0.07235264778137207, -0.08478086441755295, 0.002147900639101863, 0.859807550907135], "std": [0.0012109072413295507, 0.0020181946456432343, 0.006628111936151981, 0.04039701446890831, 0.030193358659744263, 0.06624099612236023, 0.022953582927584648, 0.004149492830038071, 0.007872479036450386, 0.01044585183262825, 0.12769773602485657, 0.19786785542964935, 0.24556879699230194, 0.36406266689300537], "count": [316]}, "timestamp": {"min": [0.0], "max": [10.5], "mean": [5.25], "std": [3.040696192212128], "count": [316]}, "frame_index": {"min": [0], "max": [315], "mean": [157.5], "std": [91.22088576636384], "count": [316]}, "episode_index": {"min": [399], "max": [399], "mean": [399.0], "std": [0.0], "count": [316]}, "index": {"min": [201373], "max": [201688], "mean": [201530.5], "std": [91.22088576636384], "count": [316]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [316]}}} +{"episode_index": 400, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4628230718954249]], [[0.42059718409586055]], [[0.3756822930283224]]], "std": [[[0.2805132679216369]], [[0.258591534376716]], [[0.2517050039357954]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4691835648148148]], [[0.440966135620915]], [[0.3996809449891067]]], "std": [[[0.29040663991985805]], [[0.2502456840006154]], [[0.25322414567476487]]], "count": [100]}, "observation.state": {"min": [0.16071006655693054, -0.15587563812732697, 0.12414958328008652, 1.5447858572006226, -0.5921825766563416, 0.07278674095869064, -0.637079119682312, -0.4526911675930023, 0.2094791680574417, -0.8981020450592041, -0.39938849210739136, -1.1211858987808228], "max": [0.194172665476799, -0.11438140273094177, 0.13359953463077545, 1.8945486545562744, -0.33708223700523376, 0.2660665810108185, -0.5358031988143921, -0.3419008255004883, 0.23164184391498566, -0.4281868636608124, 0.8695546984672546, -0.3244222402572632], "mean": [0.1737353652715683, -0.13146163523197174, 0.12710943818092346, 1.6920462846755981, -0.47081300616264343, 0.20884858071804047, -0.5766186118125916, -0.3881201446056366, 0.21809826791286469, -0.6340411901473999, 0.3129411041736603, -0.812079131603241], "std": [0.00577334500849247, 0.01359474752098322, 0.0015881159342825413, 0.06948700547218323, 0.06678090989589691, 0.0497659370303154, 0.02862192690372467, 0.028630351647734642, 0.006320778746157885, 0.11531214416027069, 0.3423628807067871, 0.2254399061203003], "count": [248]}, "action": {"min": [-0.16883154213428497, -0.10562913864850998, 0.12883435189723969, 0.17555268108844757, 0.2233390212059021, 0.09601704031229019, 0.8870314955711365, 0.08870970457792282, -0.15832573175430298, 0.08865155279636383, -0.5888081789016724, -0.10094521194696426, 0.7632448077201843, -0.3683646619319916], "max": [-0.16292454302310944, -0.09935760498046875, 0.13766425848007202, 0.24838294088840485, 0.29651761054992676, 0.2746047377586365, 0.9461015462875366, 0.1025855615735054, -0.13935577869415283, 0.11630263179540634, -0.3118496239185333, 0.42663347721099854, 0.8702539801597595, 0.026757052168250084], "mean": [-0.1667710542678833, -0.101751409471035, 0.13263218104839325, 0.2018847018480301, 0.2664516866207123, 0.1759505569934845, 0.9245531558990479, 0.09446684271097183, -0.14960652589797974, 0.10402964055538177, -0.44823864102363586, 0.15972262620925903, 0.8200146555900574, -0.2408907562494278], "std": [0.0009543455671519041, 0.0017305617220699787, 0.00207518576644361, 0.021681930869817734, 0.018365900963544846, 0.03789546340703964, 0.015679428353905678, 0.004194227978587151, 0.004824591800570488, 0.0068221925757825375, 0.08127070963382721, 0.16100960969924927, 0.02787623181939125, 0.09905825555324554], "count": [248]}, "timestamp": {"min": [0.0], "max": [8.233333333333333], "mean": [4.116666666666667], "std": [2.386361712360937], "count": [248]}, "frame_index": {"min": [0], "max": [247], "mean": [123.5], "std": [71.5908513708281], "count": [248]}, "episode_index": {"min": [400], "max": [400], "mean": [400.0], "std": [0.0], "count": [248]}, "index": {"min": [201689], "max": [201936], "mean": [201812.5], "std": [71.5908513708281], "count": [248]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [248]}}} +{"episode_index": 401, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46745034586056644]], [[0.4196580964052288]], [[0.37395068627450984]]], "std": [[[0.27696202541149606]], [[0.25376882192821154]], [[0.24787395556002467]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48049313180827885]], [[0.4453374564270152]], [[0.4026134123093682]]], "std": [[[0.28817871721965227]], [[0.24424016771069373]], [[0.2490647442120401]]], "count": [100]}, "observation.state": {"min": [0.20974941551685333, -0.1437741219997406, 0.12685753405094147, 1.4105842113494873, -0.6303041577339172, 0.036254558712244034, -0.6274179816246033, -0.4061307907104492, 0.1904224157333374, 1.285399317741394, -1.132033348083496, 0.30579110980033875], "max": [0.23275545239448547, -0.13239853084087372, 0.1349450945854187, 1.6928268671035767, -0.41305214166641235, 0.2284809947013855, -0.5510556101799011, -0.3395763039588928, 0.22638019919395447, 1.6240485906600952, 0.25742316246032715, 1.4008362293243408], "mean": [0.22276248037815094, -0.13671262562274933, 0.1322181224822998, 1.544442892074585, -0.5146701335906982, 0.1096583679318428, -0.5802271962165833, -0.36392709612846375, 0.20924939215183258, 1.4306538105010986, -0.5259472727775574, 0.9069052338600159], "std": [0.004914375487715006, 0.003129128599539399, 0.0011708068195730448, 0.05313470959663391, 0.05392710492014885, 0.04628496989607811, 0.018638595938682556, 0.016411541029810905, 0.011625639162957668, 0.08769193291664124, 0.4658486247062683, 0.3329758942127228], "count": [229]}, "action": {"min": [-0.15986165404319763, -0.10659186542034149, 0.12936116755008698, 0.2125721275806427, 0.3192429840564728, 0.04902305454015732, 0.8713712096214294, 0.0955573171377182, -0.15303094685077667, 0.08526992797851562, -0.27085375785827637, -0.34325867891311646, -0.22221319377422333, 0.8978357315063477], "max": [-0.15588660538196564, -0.10189580917358398, 0.13634172081947327, 0.2846684753894806, 0.36709246039390564, 0.1852397471666336, 0.9201972484588623, 0.10475552082061768, -0.128258615732193, 0.11362563073635101, 0.30495861172676086, 0.11531281471252441, 0.2907049059867859, 0.9965459704399109], "mean": [-0.15726767480373383, -0.10497307777404785, 0.1338442862033844, 0.2580372393131256, 0.3438796103000641, 0.10887641459703445, 0.8955204486846924, 0.10076551884412766, -0.1416286677122116, 0.1017860546708107, -0.003813910996541381, -0.06114716827869415, 0.036195091903209686, 0.9548068046569824], "std": [0.000709995802026242, 0.0006577462190762162, 0.0011311799753457308, 0.017673641443252563, 0.014252686873078346, 0.025864778086543083, 0.012953801080584526, 0.0023094082716852427, 0.0075937556102871895, 0.008471143431961536, 0.17776373028755188, 0.12715661525726318, 0.18668991327285767, 0.025659099221229553], "count": [229]}, "timestamp": {"min": [0.0], "max": [7.6], "mean": [3.8000000000000003], "std": [2.2035325174717877], "count": [229]}, "frame_index": {"min": [0], "max": [228], "mean": [114.0], "std": [66.10597552415364], "count": [229]}, "episode_index": {"min": [401], "max": [401], "mean": [401.0], "std": [0.0], "count": [229]}, "index": {"min": [201937], "max": [202165], "mean": [202051.0], "std": [66.10597552415364], "count": [229]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [229]}}} +{"episode_index": 402, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46433571895424836]], [[0.41638514433551194]], [[0.36996224673202616]]], "std": [[[0.2766185425101456]], [[0.25490976273034494]], [[0.24822355063738538]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4748748093681917]], [[0.44025011437908496]], [[0.3970047739651416]]], "std": [[[0.28585467825431776]], [[0.2455060682429784]], [[0.24815103800386257]]], "count": [100]}, "observation.state": {"min": [0.13807474076747894, -0.1645868867635727, 0.1203320100903511, 1.5204617977142334, -0.6893311142921448, -0.038846418261528015, -0.6620389819145203, -0.4332607686519623, 0.19624274969100952, 1.37200129032135, -0.6335834264755249, 0.5325097441673279], "max": [0.1821715533733368, -0.12020433694124222, 0.13810543715953827, 2.025395154953003, -0.42958515882492065, 0.36046722531318665, -0.5714744925498962, -0.37059852480888367, 0.23115572333335876, 2.3531405925750732, 0.29923394322395325, 0.9836533069610596], "mean": [0.15015868842601776, -0.13087792694568634, 0.13217929005622864, 1.7825857400894165, -0.5063130259513855, 0.18407444655895233, -0.6193276047706604, -0.39942988753318787, 0.21589577198028564, 2.029597759246826, -0.3306219279766083, 0.792961835861206], "std": [0.00967398937791586, 0.008851973339915276, 0.004917006939649582, 0.09922363609075546, 0.06573203951120377, 0.07977994531393051, 0.024799881502985954, 0.015435371547937393, 0.009437059052288532, 0.22462180256843567, 0.28732675313949585, 0.11693820357322693], "count": [192]}, "action": {"min": [-0.17203503847122192, -0.10773282498121262, 0.12461279332637787, 0.13332192599773407, 0.2270086407661438, 0.11083691567182541, 0.8640812039375305, 0.08680158108472824, -0.1610734909772873, 0.08277799189090729, -0.23888713121414185, -0.4866381585597992, -0.269314706325531, 0.8654158711433411], "max": [-0.1653146892786026, -0.09862103313207626, 0.14320512115955353, 0.2661251127719879, 0.36453795433044434, 0.3128945231437683, 0.9399667382240295, 0.1031380444765091, -0.13679081201553345, 0.11022639274597168, 0.17305071651935577, -0.20720306038856506, 0.2576782703399658, 0.9681298136711121], "mean": [-0.16979365050792694, -0.10464835911989212, 0.13743221759796143, 0.2019045203924179, 0.2548978924751282, 0.21609587967395782, 0.9186051487922668, 0.09014184027910233, -0.14811259508132935, 0.09729331731796265, -0.06632105261087418, -0.31831619143486023, 0.11091461032629013, 0.9194574952125549], "std": [0.0012085030321031809, 0.0025377613492310047, 0.004847770556807518, 0.026976032182574272, 0.028605887666344643, 0.0424780510365963, 0.019455382600426674, 0.003728635376319289, 0.007090129889547825, 0.007116659078747034, 0.11900453269481659, 0.06754834949970245, 0.13049563765525818, 0.028595978394150734], "count": [192]}, "timestamp": {"min": [0.0], "max": [6.366666666666666], "mean": [3.1833333333333336], "std": [1.847495802631427], "count": [192]}, "frame_index": {"min": [0], "max": [191], "mean": [95.5], "std": [55.42487407894281], "count": [192]}, "episode_index": {"min": [402], "max": [402], "mean": [402.0], "std": [0.0], "count": [192]}, "index": {"min": [202166], "max": [202357], "mean": [202261.5], "std": [55.42487407894281], "count": [192]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [192]}}} +{"episode_index": 403, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4539124074074074]], [[0.41286950163398695]], [[0.36729122004357295]]], "std": [[[0.2795931168555626]], [[0.255396828232161]], [[0.24849057182968118]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4625243790849673]], [[0.4356644417211329]], [[0.39318914760348583]]], "std": [[[0.29037923455109105]], [[0.24669715054054178]], [[0.24995730528148827]]], "count": [100]}, "observation.state": {"min": [0.1684405356645584, -0.15801483392715454, 0.12924399971961975, 1.742733120918274, -0.7696734070777893, -0.04563641920685768, -0.6271862983703613, -0.4354771673679352, 0.20314809679985046, -0.6741531491279602, -1.299959659576416, -1.1618937253952026], "max": [0.20930923521518707, -0.13949571549892426, 0.14518967270851135, 2.340559244155884, -0.47344547510147095, 0.28921452164649963, -0.5184888243675232, -0.3572922348976135, 0.2351418137550354, 2.0528645515441895, 0.9106822609901428, 1.1124873161315918], "mean": [0.19255489110946655, -0.1476440578699112, 0.13496309518814087, 2.0891354084014893, -0.6269287467002869, 0.07600497454404831, -0.5740600824356079, -0.3885480761528015, 0.21938171982765198, 0.3500986695289612, -0.09196159988641739, -0.20089171826839447], "std": [0.012877402827143669, 0.005591271910816431, 0.005322813987731934, 0.2057686597108841, 0.11727181077003479, 0.11836768686771393, 0.032035596668720245, 0.017986822873353958, 0.009273769333958626, 1.1169164180755615, 0.7277403473854065, 0.9419700503349304], "count": [238]}, "action": {"min": [-0.16466909646987915, -0.11234788596630096, 0.13181158900260925, 0.1570383608341217, 0.22617919743061066, 0.2135154753923416, 0.8125232458114624, 0.08960705995559692, -0.16158552467823029, 0.09173176437616348, -0.48861265182495117, -0.2595944404602051, -0.6502300500869751, -0.6305318474769592], "max": [-0.1593978852033615, -0.10207382589578629, 0.14686673879623413, 0.24125798046588898, 0.3194703459739685, 0.46112337708473206, 0.9247970581054688, 0.10437379032373428, -0.13763491809368134, 0.11868695169687271, 0.27074775099754333, 0.35538560152053833, 0.8265185952186584, 0.9931262731552124], "mean": [-0.16203942894935608, -0.10618582367897034, 0.13713008165359497, 0.2037808895111084, 0.27482691407203674, 0.3572435677051544, 0.8628233671188354, 0.09664423018693924, -0.15021218359470367, 0.10541535168886185, -0.31001538038253784, 0.14648859202861786, 0.550922155380249, 0.2198287397623062], "std": [0.0015187974786385894, 0.003499579383060336, 0.005054960492998362, 0.01930982992053032, 0.031487081199884415, 0.08758419752120972, 0.04267123341560364, 0.004188940394669771, 0.006295125000178814, 0.007191241718828678, 0.18469280004501343, 0.1596914678812027, 0.35638976097106934, 0.5864853262901306], "count": [238]}, "timestamp": {"min": [0.0], "max": [7.9], "mean": [3.9499999999999997], "std": [2.290135852350734], "count": [238]}, "frame_index": {"min": [0], "max": [237], "mean": [118.5], "std": [68.70407557052202], "count": [238]}, "episode_index": {"min": [403], "max": [403], "mean": [403.0], "std": [0.0], "count": [238]}, "index": {"min": [202358], "max": [202595], "mean": [202476.5], "std": [68.70407557052202], "count": [238]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [238]}}} +{"episode_index": 404, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45217860838779955]], [[0.40829096949891064]], [[0.3658092674291939]]], "std": [[[0.27281980791327815]], [[0.25333598907411586]], [[0.24727592216104147]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4572613371459695]], [[0.4289817156862745]], [[0.389411075708061]]], "std": [[[0.2832660943035837]], [[0.24625939974782451]], [[0.249343874715304]]], "count": [100]}, "observation.state": {"min": [0.1493730992078781, -0.20331639051437378, 0.12234385311603546, 2.3585925102233887, -0.8060187101364136, -0.31240731477737427, -0.6402608752250671, -0.45599648356437683, 0.20571084320545197, -0.6691206097602844, 0.10575664788484573, -1.2031234502792358], "max": [0.15816156566143036, -0.19998788833618164, 0.12303736805915833, 2.382706880569458, -0.7971373200416565, -0.2888101041316986, -0.5605468153953552, -0.3679264485836029, 0.2328473925590515, -0.484383761882782, 0.4980400502681732, -0.7964341044425964], "mean": [0.15325672924518585, -0.2009052336215973, 0.12295810878276825, 2.367706537246704, -0.803117573261261, -0.296998530626297, -0.5990577936172485, -0.40133658051490784, 0.2196788191795349, -0.5960080623626709, 0.23754119873046875, -1.0172336101531982], "std": [0.0024980686139315367, 0.0007145912386476994, 0.0001146280555985868, 0.00824626162648201, 0.0020250596571713686, 0.0071428269147872925, 0.026438120752573013, 0.0242648646235466, 0.008031943812966347, 0.05171602964401245, 0.09720650315284729, 0.1202976331114769], "count": [145]}, "action": {"min": [-0.1714070588350296, -0.10431072115898132, 0.12316760420799255, 0.29708024859428406, 0.338094025850296, 0.43381452560424805, 0.7748705148696899, 0.08650161325931549, -0.1631925255060196, 0.08263805508613586, -0.5471406579017639, 0.09421084821224213, 0.753627359867096, -0.29742059111595154], "max": [-0.17000487446784973, -0.10407412052154541, 0.1242859736084938, 0.3019680678844452, 0.341042160987854, 0.44144541025161743, 0.7789664268493652, 0.09546760469675064, -0.1438702791929245, 0.11385525017976761, -0.4570310711860657, 0.34823697805404663, 0.8303074240684509, -0.1438785195350647], "mean": [-0.17073075473308563, -0.1042042002081871, 0.12401767820119858, 0.29920119047164917, 0.34026724100112915, 0.43661442399024963, 0.7772099375724792, 0.09027065336704254, -0.15202707052230835, 0.10058006644248962, -0.5188887715339661, 0.22848352789878845, 0.7987716794013977, -0.17934566736221313], "std": [0.0003982698835898191, 5.9709869674406946e-05, 0.00020103526185266674, 0.0015323208644986153, 0.0007542444509454072, 0.002178871538490057, 0.0013875516597181559, 0.002817668253555894, 0.005749421194195747, 0.008866829797625542, 0.019000912085175514, 0.08224528282880783, 0.02344813384115696, 0.025953449308872223], "count": [145]}, "timestamp": {"min": [0.0], "max": [4.8], "mean": [2.4], "std": [1.39522996909709], "count": [145]}, "frame_index": {"min": [0], "max": [144], "mean": [72.0], "std": [41.8568990729127], "count": [145]}, "episode_index": {"min": [404], "max": [404], "mean": [404.0], "std": [0.0], "count": [145]}, "index": {"min": [202596], "max": [202740], "mean": [202668.0], "std": [41.8568990729127], "count": [145]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [145]}}} +{"episode_index": 405, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4783672712418301]], [[0.4285812391067538]], [[0.38308470588235294]]], "std": [[[0.28189444802766894]], [[0.2589800251123679]], [[0.25186189428348005]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4898916639433551]], [[0.4537849537037037]], [[0.4129024373638344]]], "std": [[[0.2906032117236965]], [[0.24856047789644586]], [[0.25183704156598335]]], "count": [100]}, "observation.state": {"min": [0.14338025450706482, -0.21079199016094208, 0.12005460262298584, 1.9585040807724, -0.970665693283081, -0.5599465370178223, -0.6230005621910095, -0.47311776876449585, 0.19569312036037445, -0.6324248909950256, -1.3787989616394043, -1.3708322048187256], "max": [0.1698537915945053, -0.18141472339630127, 0.12475624680519104, 2.5749924182891846, -0.8610832095146179, 0.154376819729805, -0.4571858048439026, -0.33858004212379456, 0.23176109790802002, 1.823463797569275, 1.142007827758789, 1.4030029773712158], "mean": [0.16520702838897705, -0.20061683654785156, 0.12211728096008301, 2.2287864685058594, -0.8821519017219543, -0.2206781655550003, -0.558249831199646, -0.391396164894104, 0.21135295927524567, 0.7787266969680786, -0.2611258029937744, 0.3421753942966461], "std": [0.003816006937995553, 0.007032910827547312, 0.001776255783624947, 0.06820250302553177, 0.02144671604037285, 0.07568053156137466, 0.03926781564950943, 0.027066374197602272, 0.010420979000627995, 0.8160540461540222, 0.8645651936531067, 1.0017987489700317], "count": [404]}, "action": {"min": [-0.17088845372200012, -0.1042572408914566, 0.1203237846493721, 0.16469335556030273, 0.37859025597572327, 0.35998106002807617, 0.7079024910926819, 0.09447693824768066, -0.16153118014335632, 0.08092992752790451, -0.5833979845046997, -0.2177216112613678, -0.6532589197158813, -0.6561818718910217], "max": [-0.16708429157733917, -0.10153337568044662, 0.12531599402427673, 0.31495487689971924, 0.4298382103443146, 0.47025227546691895, 0.8334034085273743, 0.11434619128704071, -0.1375318467617035, 0.11663147807121277, 0.23455867171287537, 0.48756006360054016, 0.8513979315757751, 0.9992529153823853], "mean": [-0.16810482740402222, -0.10328935086727142, 0.12232544273138046, 0.2793128788471222, 0.38780277967453003, 0.39701974391937256, 0.7830687165260315, 0.10432850569486618, -0.145685076713562, 0.1010793149471283, -0.18693365156650543, 0.13775993883609772, 0.3584689795970917, 0.4492069184780121], "std": [0.0008193140965886414, 0.0006259315996430814, 0.0018986993236467242, 0.015808673575520515, 0.009228385053575039, 0.014067577198147774, 0.015454784967005253, 0.004186010919511318, 0.005956354085355997, 0.009374117478728294, 0.22560477256774902, 0.22327028214931488, 0.33564433455467224, 0.6343398094177246], "count": [404]}, "timestamp": {"min": [0.0], "max": [13.433333333333334], "mean": [6.716666666666666], "std": [3.887479903485033], "count": [404]}, "frame_index": {"min": [0], "max": [403], "mean": [201.5], "std": [116.62439710455098], "count": [404]}, "episode_index": {"min": [405], "max": [405], "mean": [405.0], "std": [0.0], "count": [404]}, "index": {"min": [202741], "max": [203144], "mean": [202942.5], "std": [116.62439710455098], "count": [404]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [404]}}} +{"episode_index": 406, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4408166993464052]], [[0.37622941448801744]], [[0.3367191312636166]]], "std": [[[0.26328465204649804]], [[0.2346582531188542]], [[0.22934347275908912]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44590976307189545]], [[0.39616388071895425]], [[0.35969974128540305]]], "std": [[[0.2739822411033632]], [[0.22770825148584245]], [[0.23137253598507065]]], "count": [100]}, "observation.state": {"min": [0.1734216958284378, -0.17824067175388336, 0.1147981509566307, 1.891403317451477, -0.611311674118042, -0.8402440547943115, -0.6173089146614075, -0.48707276582717896, 0.2033425271511078, -0.9159256815910339, -0.8158565163612366, -1.2958284616470337], "max": [0.22295530140399933, -0.13718663156032562, 0.13779303431510925, 3.5045480728149414, -0.29527148604393005, 0.18999023735523224, -0.5644854307174683, -0.3656328022480011, 0.22832593321800232, 2.295475721359253, 1.1362690925598145, 0.9664230346679688], "mean": [0.18734772503376007, -0.15172065794467926, 0.13242080807685852, 2.1987175941467285, -0.45328229665756226, -0.008758011274039745, -0.596507728099823, -0.4002934694290161, 0.21279607713222504, 1.7028299570083618, -0.07005878537893295, 0.6610206961631775], "std": [0.008387641049921513, 0.00854176003485918, 0.0057013682089746, 0.33037805557250977, 0.05919716879725456, 0.20715820789337158, 0.01609005220234394, 0.02705450914800167, 0.008367707021534443, 0.7210796475410461, 0.5292684435844421, 0.5294323563575745], "count": [172]}, "action": {"min": [-0.1687132716178894, -0.10937883704900742, 0.12015329301357269, 0.20808589458465576, 0.18230338394641876, 0.25076740980148315, 0.426714688539505, 0.09125855565071106, -0.1598353385925293, 0.0844261422753334, -0.38527920842170715, -0.5366858243942261, -0.596206784248352, -0.5824286937713623], "max": [-0.1620284616947174, -0.09624606370925903, 0.1403772234916687, 0.37069353461265564, 0.24632492661476135, 0.7989120483398438, 0.9239740371704102, 0.1023719534277916, -0.13778921961784363, 0.11111085116863251, 0.2529528737068176, 0.41773682832717896, 0.857300877571106, 0.9526221752166748], "mean": [-0.16457761824131012, -0.10632673650979996, 0.13547946512699127, 0.2555789649486542, 0.19721898436546326, 0.3701831102371216, 0.8575592041015625, 0.09444648027420044, -0.1464630663394928, 0.09712362289428711, -0.06518509238958359, -0.26732680201530457, 0.07491640746593475, 0.8020628094673157], "std": [0.0017683239420875907, 0.003695943159982562, 0.004475689958781004, 0.03171294927597046, 0.015573715791106224, 0.11677679419517517, 0.09195351600646973, 0.00254661007784307, 0.0053733293898403645, 0.008398395031690598, 0.16853858530521393, 0.2078852504491806, 0.29398491978645325, 0.3425217866897583], "count": [172]}, "timestamp": {"min": [0.0], "max": [5.7], "mean": [2.85], "std": [1.655042799043779], "count": [172]}, "frame_index": {"min": [0], "max": [171], "mean": [85.5], "std": [49.65128397131337], "count": [172]}, "episode_index": {"min": [406], "max": [406], "mean": [406.0], "std": [0.0], "count": [172]}, "index": {"min": [203145], "max": [203316], "mean": [203230.5], "std": [49.65128397131337], "count": [172]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [172]}}} +{"episode_index": 407, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.45413897875816994]], [[0.4031901334422658]], [[0.3601625163398693]]], "std": [[[0.26837605847299273]], [[0.24151177671649343]], [[0.23546090696481262]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4636134232026144]], [[0.4276433251633987]], [[0.38872288126361654]]], "std": [[[0.27781775280457244]], [[0.2316604563450354]], [[0.2355448877655619]]], "count": [100]}, "observation.state": {"min": [0.20229698717594147, -0.14913369715213776, 0.1205679327249527, 2.9310460090637207, -0.4358704388141632, -0.8334528803825378, -0.5950365662574768, -0.45561808347702026, 0.20097939670085907, -0.8228233456611633, -0.11764402687549591, -1.1716766357421875], "max": [0.23582908511161804, -0.13165715336799622, 0.13862785696983337, 3.3284084796905518, -0.09878818690776825, -0.6727375388145447, -0.5242036581039429, -0.37409690022468567, 0.22829870879650116, -0.5277895927429199, 0.8270607590675354, -0.7894466519355774], "mean": [0.21318447589874268, -0.13513991236686707, 0.13425035774707794, 3.1132614612579346, -0.26231834292411804, -0.7282274961471558, -0.5506438612937927, -0.39384591579437256, 0.21157275140285492, -0.709797203540802, 0.21044297516345978, -1.0005158185958862], "std": [0.00934707559645176, 0.00301117985509336, 0.004966978915035725, 0.12975800037384033, 0.12190867960453033, 0.0466606467962265, 0.020637547597289085, 0.02690800651907921, 0.009852060116827488, 0.09580733627080917, 0.2976837754249573, 0.13603216409683228], "count": [138]}, "action": {"min": [-0.16739921271800995, -0.10753700137138367, 0.1277886927127838, 0.39529505372047424, 0.1497880071401596, 0.6129307150840759, 0.45329737663269043, 0.09880635142326355, -0.15716837346553802, 0.08637034893035889, -0.5483550429344177, 0.05856812745332718, 0.771782398223877, -0.3521132469177246], "max": [-0.15897153317928314, -0.09821467101573944, 0.14288492500782013, 0.47235971689224243, 0.24884061515331268, 0.7508867383003235, 0.6295205950737, 0.10441245883703232, -0.13879558444023132, 0.1162257045507431, -0.3193286657333374, 0.4217390716075897, 0.8694007396697998, -0.0033619008027017117], "mean": [-0.16240441799163818, -0.10520126670598984, 0.1388106346130371, 0.43797358870506287, 0.1955912560224533, 0.6781331300735474, 0.5499196648597717, 0.10194260627031326, -0.1476839929819107, 0.10175615549087524, -0.46929389238357544, 0.19283117353916168, 0.8298616409301758, -0.15810737013816833], "std": [0.001937521854415536, 0.002305888570845127, 0.004199208691716194, 0.027700209990143776, 0.037582509219646454, 0.04476770758628845, 0.05884867161512375, 0.0018749573500826955, 0.006271992344409227, 0.00939678680151701, 0.06573422998189926, 0.10248643159866333, 0.023606354370713234, 0.11631626635789871], "count": [138]}, "timestamp": {"min": [0.0], "max": [4.566666666666666], "mean": [2.283333333333333], "std": [1.327870754531758], "count": [138]}, "frame_index": {"min": [0], "max": [137], "mean": [68.5], "std": [39.83612263595275], "count": [138]}, "episode_index": {"min": [407], "max": [407], "mean": [407.0], "std": [0.0], "count": [138]}, "index": {"min": [203317], "max": [203454], "mean": [203385.5], "std": [39.83612263595275], "count": [138]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [138]}}} +{"episode_index": 408, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4650131699346405]], [[0.4167197249455338]], [[0.3719445833333333]]], "std": [[[0.2740294349799172]], [[0.25302768288801486]], [[0.24628568583278954]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4756937663398693]], [[0.44077912581699347]], [[0.398677295751634]]], "std": [[[0.2816602253809881]], [[0.24279011668245665]], [[0.2456627784117232]]], "count": [100]}, "observation.state": {"min": [0.15075546503067017, -0.15056240558624268, 0.1201557070016861, 1.611257553100586, -0.755463182926178, -0.6651355624198914, -0.6603631973266602, -0.4485672116279602, 0.19731737673282623, 1.3812276124954224, -0.7214407324790955, 0.37854424118995667], "max": [0.18332995474338531, -0.11835087835788727, 0.12384495139122009, 2.9237067699432373, -0.4440686106681824, 0.27408236265182495, -0.5238406658172607, -0.3754020631313324, 0.23278386890888214, 2.2875075340270996, 0.661320686340332, 1.0932120084762573], "mean": [0.17826423048973083, -0.14787250757217407, 0.12112312018871307, 2.7527294158935547, -0.5132042169570923, -0.5457805395126343, -0.6091562509536743, -0.4036521911621094, 0.2166222333908081, 1.905612587928772, -0.20685052871704102, 0.7618941068649292], "std": [0.007258770987391472, 0.006893819198012352, 0.0007022026111371815, 0.30333179235458374, 0.06532572954893112, 0.21646422147750854, 0.03319377079606056, 0.01873713918030262, 0.010133768431842327, 0.2597556412220001, 0.4201475977897644, 0.1864282190799713], "count": [160]}, "action": {"min": [-0.1702086329460144, -0.09817080944776535, 0.127604678273201, 0.1637858748435974, 0.2354661077260971, 0.18907451629638672, 0.6391111612319946, 0.08728823810815811, -0.16201558709144592, 0.08517885208129883, -0.22961686551570892, -0.49240240454673767, -0.31319618225097656, 0.7845042943954468], "max": [-0.16848982870578766, -0.09575743228197098, 0.13088828325271606, 0.40116357803344727, 0.3650689125061035, 0.6114956140518188, 0.9044333696365356, 0.10977328568696976, -0.13965527713298798, 0.11244935542345047, 0.2534421384334564, -0.17156974971294403, 0.2751012444496155, 0.9491649270057678], "mean": [-0.1694704294204712, -0.09770131856203079, 0.12851166725158691, 0.3700283467769623, 0.25820431113243103, 0.5554471015930176, 0.6863242387771606, 0.0908428207039833, -0.14942078292369843, 0.09730495512485504, -0.023337583988904953, -0.32122600078582764, 0.042586036026477814, 0.9109112620353699], "std": [0.00037991174031049013, 0.0003688718134071678, 0.000559293432161212, 0.054270513355731964, 0.029787026345729828, 0.09715315699577332, 0.059798769652843475, 0.00528085557743907, 0.006394733674824238, 0.008872350677847862, 0.156454399228096, 0.06844600290060043, 0.18269288539886475, 0.04644831642508507], "count": [160]}, "timestamp": {"min": [0.0], "max": [5.3], "mean": [2.6499999999999995], "std": [1.5395706472188204], "count": [160]}, "frame_index": {"min": [0], "max": [159], "mean": [79.5], "std": [46.18711941656461], "count": [160]}, "episode_index": {"min": [408], "max": [408], "mean": [408.0], "std": [0.0], "count": [160]}, "index": {"min": [203455], "max": [203614], "mean": [203534.5], "std": [46.18711941656461], "count": [160]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [160]}}} +{"episode_index": 409, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4896875735294118]], [[0.4423870833333333]], [[0.3952449591503268]]], "std": [[[0.2835021772821309]], [[0.2599891189442976]], [[0.2530870680984149]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.505976195533769]], [[0.4692120942265795]], [[0.4278704901960785]]], "std": [[[0.29135341018904354]], [[0.2483583515435908]], [[0.25132506789255465]]], "count": [100]}, "observation.state": {"min": [0.201856791973114, -0.1693054735660553, 0.11903441697359085, 2.399482011795044, -0.6081690788269043, -0.4264356791973114, -0.5973842740058899, -0.47030672430992126, 0.1887916773557663, -0.7349632382392883, 0.03333931043744087, -1.2855607271194458], "max": [0.215047225356102, -0.15707266330718994, 0.12456569075584412, 2.575831174850464, -0.5147097110748291, -0.2897755801677704, -0.488439679145813, -0.382120817899704, 0.22258466482162476, -0.1570577770471573, 1.0410335063934326, -0.5232139229774475], "mean": [0.20824041962623596, -0.1622740477323532, 0.12334799021482468, 2.446537733078003, -0.5861985683441162, -0.3226987421512604, -0.5252396464347839, -0.41877830028533936, 0.20444470643997192, -0.4620208740234375, 0.549938976764679, -0.8419747948646545], "std": [0.004275191109627485, 0.0037926894146949053, 0.000783882278483361, 0.043355438858270645, 0.02206648886203766, 0.0325697623193264, 0.02338438108563423, 0.03384261950850487, 0.010488959029316902, 0.19611936807632446, 0.336007297039032, 0.2555610239505768], "count": [238]}, "action": {"min": [-0.16409176588058472, -0.10125898569822311, 0.12370658665895462, 0.3275654911994934, 0.2489524781703949, 0.44230711460113525, 0.7398039698600769, 0.1057078018784523, -0.1570775806903839, 0.0828392431139946, -0.5665265321731567, 0.0772768035531044, 0.7007291316986084, -0.5006490349769592], "max": [-0.16204503178596497, -0.098537877202034, 0.12857304513454437, 0.3824806213378906, 0.2830260694026947, 0.4993707537651062, 0.7849836945533752, 0.11498391628265381, -0.13313931226730347, 0.11567822098731995, -0.2688382565975189, 0.5024482011795044, 0.8487808704376221, -0.12645135819911957], "mean": [-0.1628216952085495, -0.10011915117502213, 0.12734511494636536, 0.3405687212944031, 0.2731238901615143, 0.4586264491081238, 0.7736440896987915, 0.11097157746553421, -0.14449192583560944, 0.09822102636098862, -0.40283259749412537, 0.24864168465137482, 0.787034273147583, -0.3401150405406952], "std": [0.0005448391893878579, 0.0005719776963815093, 0.0007659958791919053, 0.012927670031785965, 0.008068904280662537, 0.013769228011369705, 0.011444367468357086, 0.0022334838286042213, 0.007607659325003624, 0.009031198918819427, 0.08484557271003723, 0.1301601082086563, 0.04057004302740097, 0.12253940105438232], "count": [238]}, "timestamp": {"min": [0.0], "max": [7.9], "mean": [3.9499999999999997], "std": [2.290135852350734], "count": [238]}, "frame_index": {"min": [0], "max": [237], "mean": [118.5], "std": [68.70407557052202], "count": [238]}, "episode_index": {"min": [409], "max": [409], "mean": [409.0], "std": [0.0], "count": [238]}, "index": {"min": [203615], "max": [203852], "mean": [203733.5], "std": [68.70407557052202], "count": [238]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [238]}}} +{"episode_index": 410, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4744580446623094]], [[0.43393651688453155]], [[0.3879471732026144]]], "std": [[[0.27999971975712656]], [[0.25689002325630406]], [[0.2505566669057255]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4846303894335512]], [[0.45799536764705884]], [[0.41668952342047927]]], "std": [[[0.28884839538443635]], [[0.24709241058332554]], [[0.2509665058109882]]], "count": [100]}, "observation.state": {"min": [0.1658688634634018, -0.17075735330581665, 0.11933386325836182, 1.8553366661071777, -0.5423102974891663, -0.4132448136806488, -0.5952296257019043, -0.4402652680873871, 0.19660700857639313, -0.7160911560058594, -0.6428747177124023, -1.0232356786727905], "max": [0.21429811418056488, -0.11524634063243866, 0.14313633739948273, 2.599735975265503, -0.3262879550457001, 0.26689791679382324, -0.534281849861145, -0.3573462963104248, 0.22897537052631378, 1.0463528633117676, 0.5559739470481873, 0.6197059750556946], "mean": [0.1893543004989624, -0.1452917605638504, 0.1299256533384323, 2.3982903957366943, -0.43455079197883606, -0.19605690240859985, -0.5590497255325317, -0.3891598880290985, 0.21088807284832, -0.31164440512657166, 0.031403619796037674, -0.6098301410675049], "std": [0.017014065757393837, 0.01872699335217476, 0.009062368422746658, 0.17773708701133728, 0.08157796412706375, 0.1819646656513214, 0.019099105149507523, 0.024753151461482048, 0.009452888742089272, 0.35791322588920593, 0.3181137442588806, 0.3880009949207306], "count": [246]}, "action": {"min": [-0.16788998246192932, -0.1092853844165802, 0.12413649260997772, 0.16494816541671753, 0.1328238546848297, 0.2581855058670044, 0.7363853454589844, 0.09366568177938461, -0.15925848484039307, 0.08756484091281891, -0.6903858780860901, -0.13608871400356293, -0.6474754810333252, -0.6415141224861145], "max": [-0.16324062645435333, -0.09712686389684677, 0.1483752280473709, 0.3687554895877838, 0.25143635272979736, 0.5102911591529846, 0.9229922294616699, 0.10261107981204987, -0.13543203473091125, 0.11758340895175934, 0.3259322941303253, 0.2743372917175293, 0.8159487247467041, 0.9228485822677612], "mean": [-0.16530045866966248, -0.10341154783964157, 0.13473404943943024, 0.3194274306297302, 0.18710912764072418, 0.4395849406719208, 0.8111460208892822, 0.09959778934717178, -0.14651043713092804, 0.10012340545654297, -0.5102297067642212, 0.05837107449769974, 0.6590806245803833, -0.18130263686180115], "std": [0.0015221204375848174, 0.0041987174190580845, 0.00908017810434103, 0.05507681518793106, 0.04830125719308853, 0.05961907282471657, 0.05332018435001373, 0.003025582991540432, 0.005896610673516989, 0.00861471239477396, 0.22295933961868286, 0.08920656889677048, 0.313157856464386, 0.3365473747253418], "count": [246]}, "timestamp": {"min": [0.0], "max": [8.166666666666666], "mean": [4.083333333333333], "std": [2.3671165456607204], "count": [246]}, "frame_index": {"min": [0], "max": [245], "mean": [122.5], "std": [71.01349636982161], "count": [246]}, "episode_index": {"min": [410], "max": [410], "mean": [410.0], "std": [0.0], "count": [246]}, "index": {"min": [203853], "max": [204098], "mean": [203975.5], "std": [71.01349636982161], "count": [246]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [246]}}} +{"episode_index": 411, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4804561928104575]], [[0.4365413208061002]], [[0.39031473583877996]]], "std": [[[0.28396865724967507]], [[0.26056976506952756]], [[0.25343445145566595]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4929176661220044]], [[0.46128983387799566]], [[0.4193958769063181]]], "std": [[[0.29258632384955613]], [[0.2494471275521841]], [[0.25265154447970145]]], "count": [100]}, "observation.state": {"min": [0.18066561222076416, -0.19535425305366516, 0.11911478638648987, 1.9004199504852295, -0.5787922143936157, -0.16660724580287933, -0.6248385906219482, -0.4359637200832367, 0.19300073385238647, -0.698896586894989, -0.889776885509491, -1.139022707939148], "max": [0.23657819628715515, -0.14334936439990997, 0.12385792285203934, 2.354818105697632, -0.48628929257392883, 0.1509283483028412, -0.46969661116600037, -0.35765519738197327, 0.22571909427642822, 1.639356017112732, 1.1242451667785645, 1.3994210958480835], "mean": [0.19773074984550476, -0.16254225373268127, 0.12258237600326538, 2.0316402912139893, -0.5357815027236938, 0.022485563531517982, -0.551733672618866, -0.3952176570892334, 0.21153971552848816, 0.33834847807884216, 0.027547717094421387, 0.022894343361258507], "std": [0.020894600078463554, 0.018119914457201958, 0.0016196039505302906, 0.11064743250608444, 0.021000966429710388, 0.07765540480613708, 0.041366565972566605, 0.022382421419024467, 0.011829170398414135, 1.0086220502853394, 0.7123456001281738, 1.0217409133911133], "count": [248]}, "action": {"min": [-0.16641321778297424, -0.10441552847623825, 0.11842212080955505, 0.21708565950393677, 0.21918225288391113, 0.2656748294830322, 0.8123430609703064, 0.0920945256948471, -0.15593400597572327, 0.08785723149776459, -0.5168522000312805, -0.2332485169172287, -0.6705394387245178, -0.6653465032577515], "max": [-0.15843068063259125, -0.10012740641832352, 0.12868747115135193, 0.32044142484664917, 0.30763131380081177, 0.4351188838481903, 0.9090763330459595, 0.11516838520765305, -0.13778400421142578, 0.11953483521938324, 0.1834390014410019, 0.46977296471595764, 0.8610476851463318, 0.9912548661231995], "mean": [-0.16383233666419983, -0.10127559304237366, 0.1259370744228363, 0.2631530165672302, 0.25527894496917725, 0.3174647092819214, 0.872422993183136, 0.10435962677001953, -0.14679719507694244, 0.10206861793994904, -0.254642128944397, 0.11842504143714905, 0.4534076154232025, 0.2724995017051697], "std": [0.0030229762196540833, 0.0011824100511148572, 0.0037299860268831253, 0.031013961881399155, 0.022110117599368095, 0.042065173387527466, 0.02138684317469597, 0.007338383235037327, 0.00599076971411705, 0.009988418780267239, 0.18419256806373596, 0.18783508241176605, 0.4069509506225586, 0.637558102607727], "count": [248]}, "timestamp": {"min": [0.0], "max": [8.233333333333333], "mean": [4.116666666666667], "std": [2.386361712360937], "count": [248]}, "frame_index": {"min": [0], "max": [247], "mean": [123.5], "std": [71.5908513708281], "count": [248]}, "episode_index": {"min": [411], "max": [411], "mean": [411.0], "std": [0.0], "count": [248]}, "index": {"min": [204099], "max": [204346], "mean": [204222.5], "std": [71.5908513708281], "count": [248]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [248]}}} +{"episode_index": 412, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4684518382352941]], [[0.4165698638344227]], [[0.3734192783224401]]], "std": [[[0.2748627046171135]], [[0.25251421200960084]], [[0.24568778925217802]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47955136710239654]], [[0.4410555718954248]], [[0.4015174891067538]]], "std": [[[0.284211193068859]], [[0.244553897094249]], [[0.24725901582295795]]], "count": [100]}, "observation.state": {"min": [0.1777309626340866, -0.17007002234458923, 0.11643406003713608, 1.7846710681915283, -0.5805684924125671, 0.04660852998495102, -0.6462151408195496, -0.45789629220962524, 0.19527961313724518, -0.7592872977256775, -0.16888271272182465, -0.9435527920722961], "max": [0.20641319453716278, -0.15510337054729462, 0.12436994910240173, 2.084108352661133, -0.40731340646743774, 0.34881991147994995, -0.5278719663619995, -0.3510754406452179, 0.23118554055690765, 1.1463749408721924, 0.6801764965057373, 0.7795888781547546], "mean": [0.18292753398418427, -0.1614387035369873, 0.12223327159881592, 1.9924352169036865, -0.548823356628418, 0.12950649857521057, -0.5878726243972778, -0.38585221767425537, 0.21254439651966095, -0.41583946347236633, 0.12342982739210129, -0.6884993314743042], "std": [0.004968847613781691, 0.0032018490601330996, 0.0022089409176260233, 0.0774889662861824, 0.030104221776127815, 0.06969215720891953, 0.027022935450077057, 0.03032633103430271, 0.010447192937135696, 0.4404695928096771, 0.23495380580425262, 0.394123911857605], "count": [180]}, "action": {"min": [-0.16689451038837433, -0.10279674082994461, 0.12038672715425491, 0.13789182901382446, 0.21849073469638824, 0.22237299382686615, 0.872750997543335, 0.0887443944811821, -0.159676194190979, 0.07989508658647537, -0.5896382927894592, -0.1989150494337082, -0.6476958394050598, -0.6032119393348694], "max": [-0.16418839991092682, -0.09777528047561646, 0.1281842291355133, 0.24602676928043365, 0.26199790835380554, 0.3557387590408325, 0.9349440932273865, 0.09916205704212189, -0.13464587926864624, 0.11601316928863525, 0.3137361705303192, 0.22147350013256073, 0.8436405658721924, 0.9459657669067383], "mean": [-0.1660507470369339, -0.10125009715557098, 0.12611925601959229, 0.21713009476661682, 0.24577076733112335, 0.3143557906150818, 0.889966607093811, 0.09428505599498749, -0.14558729529380798, 0.09953393787145615, -0.4736741781234741, 0.10118988156318665, 0.6813716888427734, -0.11694391071796417], "std": [0.0005633654072880745, 0.0011757166357710958, 0.0020287325605750084, 0.02156117931008339, 0.006148497108370066, 0.02989939972758293, 0.013938285410404205, 0.0028350353240966797, 0.00772614823654294, 0.009916541166603565, 0.22198548913002014, 0.10303913801908493, 0.3563721477985382, 0.31710284948349], "count": [180]}, "timestamp": {"min": [0.0], "max": [5.966666666666667], "mean": [2.9833333333333334], "std": [1.7320240781835015], "count": [180]}, "frame_index": {"min": [0], "max": [179], "mean": [89.5], "std": [51.96072234550504], "count": [180]}, "episode_index": {"min": [412], "max": [412], "mean": [412.0], "std": [0.0], "count": [180]}, "index": {"min": [204347], "max": [204526], "mean": [204436.5], "std": [51.96072234550504], "count": [180]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [180]}}} +{"episode_index": 413, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.472129940087146]], [[0.4280167619825708]], [[0.38285750816993463]]], "std": [[[0.28005873877612]], [[0.2563881782330648]], [[0.24920700648190072]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48569239106753814]], [[0.4542732543572985]], [[0.4132003077342048]]], "std": [[[0.2883193204909058]], [[0.24522108927146247]], [[0.24805171947513577]]], "count": [100]}, "observation.state": {"min": [0.20235104858875275, -0.1761014759540558, 0.11463221907615662, 1.6657769680023193, -0.5634889006614685, 0.08816751092672348, -0.6392723917961121, -0.44261297583580017, 0.19563348591327667, -0.8966342210769653, -0.9937572479248047, -1.073770523071289], "max": [0.21563415229320526, -0.1538136750459671, 0.11984200775623322, 1.926840901374817, -0.4515836238861084, 0.2860889434814453, -0.513260543346405, -0.35099050402641296, 0.22828055918216705, 2.1400954723358154, 0.9986761808395386, 0.9434428811073303], "mean": [0.21073871850967407, -0.1630326807498932, 0.11840314418077469, 1.769597053527832, -0.5125519037246704, 0.19576555490493774, -0.5628429651260376, -0.38810786604881287, 0.21079209446907043, 0.16955041885375977, -0.009007948450744152, -0.2841101586818695], "std": [0.0034781424328684807, 0.006454587448388338, 0.0013169983867555857, 0.0618482306599617, 0.033899396657943726, 0.04544740170240402, 0.0386187918484211, 0.021746503189206123, 0.012012739665806293, 1.1441237926483154, 0.5975196361541748, 0.7261179089546204], "count": [246]}, "action": {"min": [-0.16405200958251953, -0.10112703591585159, 0.11950308084487915, 0.1728515625, 0.27285391092300415, 0.1721753627061844, 0.8814789652824402, 0.08933042734861374, -0.1586071103811264, 0.08485012501478195, -0.5415707230567932, -0.277233362197876, -0.6623889803886414, -0.6489823460578918], "max": [-0.16183637082576752, -0.09616649895906448, 0.12229777872562408, 0.25007370114326477, 0.3022523820400238, 0.28825119137763977, 0.9232876300811768, 0.11024964600801468, -0.13449949026107788, 0.11774083971977234, 0.20373132824897766, 0.4142710268497467, 0.8508219718933105, 0.9902243614196777], "mean": [-0.1623602956533432, -0.09949234873056412, 0.12163642048835754, 0.215568408370018, 0.28297847509384155, 0.22365890443325043, 0.906776487827301, 0.10088109225034714, -0.1449308842420578, 0.10129350423812866, -0.3133756220340729, 0.05473445728421211, 0.5780692100524902, 0.15225133299827576], "std": [0.0005755122983828187, 0.001293462817557156, 0.0007820590399205685, 0.017566440626978874, 0.007880759425461292, 0.02672697976231575, 0.01007567998021841, 0.0063174692913889885, 0.007887201383709908, 0.007723726332187653, 0.2178434133529663, 0.17669516801834106, 0.3742026388645172, 0.568111777305603], "count": [246]}, "timestamp": {"min": [0.0], "max": [8.166666666666666], "mean": [4.083333333333333], "std": [2.3671165456607204], "count": [246]}, "frame_index": {"min": [0], "max": [245], "mean": [122.5], "std": [71.01349636982161], "count": [246]}, "episode_index": {"min": [413], "max": [413], "mean": [413.0], "std": [0.0], "count": [246]}, "index": {"min": [204527], "max": [204772], "mean": [204649.5], "std": [71.01349636982161], "count": [246]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [246]}}} +{"episode_index": 414, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47851924836601306]], [[0.4187478594771242]], [[0.37802986111111114]]], "std": [[[0.2734018267608277]], [[0.250313758543806]], [[0.2432646899418998]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49230383986928106]], [[0.445510348583878]], [[0.40942939814814816]]], "std": [[[0.2814315817020271]], [[0.24061999149368896]], [[0.24299835462213376]]], "count": [100]}, "observation.state": {"min": [0.1922806054353714, -0.1764412820339203, 0.11798442900180817, 2.070059061050415, -0.6566750407218933, -0.21963651478290558, -0.6151156425476074, -0.43970924615859985, 0.19416220486164093, -0.7687233090400696, 0.04631977155804634, -0.9943400025367737], "max": [0.20674528181552887, -0.16813933849334717, 0.12146496772766113, 2.4290482997894287, -0.5550174713134766, 0.04050128161907196, -0.5035994052886963, -0.35684430599212646, 0.20948046445846558, -0.36486050486564636, 0.5000895857810974, -0.5923017859458923], "mean": [0.20117901265621185, -0.17322984337806702, 0.11938252300024033, 2.1841721534729004, -0.5879893898963928, -0.04754121974110603, -0.5672647356987, -0.3945145905017853, 0.19837868213653564, -0.6686093211174011, 0.1373819261789322, -0.8632930517196655], "std": [0.0034238945227116346, 0.0019633721094578505, 0.0008126461762003601, 0.11124688386917114, 0.01408014353364706, 0.08073323220014572, 0.021931352093815804, 0.026462942361831665, 0.003692478872835636, 0.06758607178926468, 0.09134769439697266, 0.11746040731668472], "count": [112]}, "action": {"min": [-0.16560402512550354, -0.10071712732315063, 0.12184419482946396, 0.22568219900131226, 0.23418192565441132, 0.3453313410282135, 0.7952550649642944, 0.1026919037103653, -0.1442301720380783, 0.08154317736625671, -0.5497716665267944, 0.01620163582265377, 0.7908926010131836, -0.39125293493270874], "max": [-0.16303645074367523, -0.09864040464162827, 0.1255926787853241, 0.31654974818229675, 0.27506616711616516, 0.46371468901634216, 0.862102746963501, 0.10959683358669281, -0.13241887092590332, 0.11156174540519714, -0.4334275424480438, 0.2542578876018524, 0.861699640750885, -0.1403159201145172], "mean": [-0.1639591008424759, -0.09983281046152115, 0.12268994003534317, 0.2711932063102722, 0.2593657672405243, 0.3829024136066437, 0.842778205871582, 0.10543172061443329, -0.13799948990345, 0.09351151436567307, -0.5028716921806335, 0.12439543008804321, 0.8317877054214478, -0.18029604852199554], "std": [0.0007556375348940492, 0.0003666817501652986, 0.0009585105581209064, 0.02108852006494999, 0.011973695829510689, 0.03603493422269821, 0.020196599885821342, 0.0014150716597214341, 0.003546846332028508, 0.006305249407887459, 0.032591503113508224, 0.06128926947712898, 0.01861897110939026, 0.04586315155029297], "count": [112]}, "timestamp": {"min": [0.0], "max": [3.7], "mean": [1.8499999999999999], "std": [1.077677544021814], "count": [112]}, "frame_index": {"min": [0], "max": [111], "mean": [55.5], "std": [32.33032632065442], "count": [112]}, "episode_index": {"min": [414], "max": [414], "mean": [414.0], "std": [0.0], "count": [112]}, "index": {"min": [204773], "max": [204884], "mean": [204828.5], "std": [32.33032632065442], "count": [112]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [112]}}} +{"episode_index": 415, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46385727668845317]], [[0.41837548474945535]], [[0.3729825762527233]]], "std": [[[0.2791275819235233]], [[0.256790166206969]], [[0.24902871651280079]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4738632244008715]], [[0.4420308632897603]], [[0.40028554193899785]]], "std": [[[0.28952669873278913]], [[0.24846369464873555]], [[0.25004379065541765]]], "count": [100]}, "observation.state": {"min": [0.13303951919078827, -0.17502030730247498, 0.12039942294359207, 1.8616273403167725, -0.5323358178138733, -0.06922023743391037, -0.6719627380371094, -0.45985785126686096, 0.20277604460716248, -0.7731268405914307, -0.9653368592262268, -0.9713859558105469], "max": [0.17271119356155396, -0.11438912153244019, 0.135206937789917, 2.1497414112091064, -0.4873823821544647, 0.26146015524864197, -0.5460590124130249, -0.3557940423488617, 0.23975661396980286, 1.832899808883667, 0.7849766612052917, 0.9289964437484741], "mean": [0.1458669900894165, -0.13506481051445007, 0.13183395564556122, 2.0443756580352783, -0.50893235206604, 0.04236584156751633, -0.6149616241455078, -0.40425798296928406, 0.22196950018405914, 0.2232847660779953, 0.07946180552244186, -0.21578866243362427], "std": [0.01082190964370966, 0.012613347731530666, 0.0028373280074447393, 0.08666403591632843, 0.012358317151665688, 0.09460312128067017, 0.03843364119529724, 0.018185438588261604, 0.011307240463793278, 1.003031611442566, 0.5243154168128967, 0.7741954326629639], "count": [239]}, "action": {"min": [-0.1731579601764679, -0.10547518730163574, 0.12337762862443924, 0.16733211278915405, 0.20468978583812714, 0.25609228014945984, 0.8644727468490601, 0.07726409286260605, -0.16496996581554413, 0.0812636986374855, -0.5049036145210266, -0.20691552758216858, -0.6466084718704224, -0.6455935835838318], "max": [-0.16678690910339355, -0.10042424499988556, 0.14159050583839417, 0.27959656715393066, 0.24235719442367554, 0.3525550663471222, 0.9221110343933105, 0.09636399149894714, -0.1406412273645401, 0.11711883544921875, 0.273259699344635, 0.36614200472831726, 0.8713269233703613, 0.9969498515129089], "mean": [-0.17088870704174042, -0.10426140576601028, 0.13751937448978424, 0.24058066308498383, 0.21875585615634918, 0.31549715995788574, 0.8901932835578918, 0.08820675313472748, -0.15271152555942535, 0.10016398876905441, -0.2611313462257385, 0.0925993025302887, 0.5101332068443298, 0.18170589208602905], "std": [0.0017872403841465712, 0.0011360165663063526, 0.003451927565038204, 0.03399689495563507, 0.009579146280884743, 0.027511870488524437, 0.016737982630729675, 0.00584908714517951, 0.007793927565217018, 0.009147108532488346, 0.24788320064544678, 0.16197197139263153, 0.4117758870124817, 0.610526442527771], "count": [239]}, "timestamp": {"min": [0.0], "max": [7.933333333333334], "mean": [3.9666666666666663], "std": [2.2997584414213788], "count": [239]}, "frame_index": {"min": [0], "max": [238], "mean": [119.0], "std": [68.99275324264136], "count": [239]}, "episode_index": {"min": [415], "max": [415], "mean": [415.0], "std": [0.0], "count": [239]}, "index": {"min": [204885], "max": [205123], "mean": [205004.0], "std": [68.99275324264136], "count": [239]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [239]}}} +{"episode_index": 416, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4987826906318083]], [[0.4563176334422658]], [[0.4085639488017429]]], "std": [[[0.2822161289940888]], [[0.25430191529030355]], [[0.2486357825334916]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5166500381263617]], [[0.4867389297385621]], [[0.4421743818082789]]], "std": [[[0.287069665361977]], [[0.24000496089317763]], [[0.24634482219205814]]], "count": [100]}, "observation.state": {"min": [0.28143954277038574, -0.17990106344223022, 0.13238361477851868, 1.7123280763626099, -0.7672139406204224, -0.21085286140441895, -0.573235273361206, -0.42440280318260193, 0.17723394930362701, 1.3583714962005615, -1.045269250869751, 0.5527756214141846], "max": [0.29443690180778503, -0.15054695308208466, 0.13976727426052094, 1.8419164419174194, -0.6036600470542908, 0.11000370234251022, -0.4915364980697632, -0.33878856897354126, 0.2130102664232254, 1.97024667263031, -0.05246841907501221, 1.3726404905319214], "mean": [0.2903992831707001, -0.16612526774406433, 0.13521847128868103, 1.8017067909240723, -0.6743653416633606, -0.08566156774759293, -0.53525710105896, -0.37537238001823425, 0.19563551247119904, 1.6070597171783447, -0.4451548755168915, 0.8916093707084656], "std": [0.0031389889772981405, 0.011800762265920639, 0.0019346409244462848, 0.029398435726761818, 0.06302867829799652, 0.10175330936908722, 0.028598451986908913, 0.021324533969163895, 0.012627462856471539, 0.21069836616516113, 0.35533052682876587, 0.19110646843910217], "count": [198]}, "action": {"min": [-0.14582082629203796, -0.10863134264945984, 0.12631626427173615, 0.24616281688213348, 0.37097781896591187, 0.18968166410923004, 0.7849562168121338, 0.10805869847536087, -0.14881515502929688, 0.08100705593824387, -0.31955745816230774, -0.23613744974136353, -0.15780627727508545, 0.898195207118988], "max": [-0.14364904165267944, -0.10571121424436569, 0.13587360084056854, 0.37030306458473206, 0.45973122119903564, 0.25008365511894226, 0.8676580190658569, 0.11745109409093857, -0.12221319228410721, 0.11233971267938614, 0.18354293704032898, 0.008824456483125687, 0.30900049209594727, 0.9958233833312988], "mean": [-0.14452822506427765, -0.10747777670621872, 0.13003607094287872, 0.31954553723335266, 0.4113457500934601, 0.22165672481060028, 0.8214450478553772, 0.11411196738481522, -0.13516461849212646, 0.09777022153139114, -0.03686454892158508, -0.10999080538749695, 0.047221262007951736, 0.9630787372589111], "std": [0.0005087212775833905, 0.0009120171307586133, 0.00296933320350945, 0.041113078594207764, 0.04028378427028656, 0.02287951670587063, 0.03073841705918312, 0.0026649015489965677, 0.008381998166441917, 0.010657098144292831, 0.1451130509376526, 0.06316181272268295, 0.1767674684524536, 0.02232247218489647], "count": [198]}, "timestamp": {"min": [0.0], "max": [6.566666666666666], "mean": [3.2833333333333337], "std": [1.9052315889170555], "count": [198]}, "frame_index": {"min": [0], "max": [197], "mean": [98.5], "std": [57.15694766751166], "count": [198]}, "episode_index": {"min": [416], "max": [416], "mean": [416.0], "std": [0.0], "count": [198]}, "index": {"min": [205124], "max": [205321], "mean": [205222.5], "std": [57.15694766751166], "count": [198]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [198]}}} +{"episode_index": 417, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.507889765795207]], [[0.44973717592592594]], [[0.4062641775599129]]], "std": [[[0.28024102395867234]], [[0.2516026084428007]], [[0.2461963772407567]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5256122276688454]], [[0.4793793409586056]], [[0.4398422140522876]]], "std": [[[0.2827574251480489]], [[0.2385185165808699]], [[0.24348701618682553]]], "count": [100]}, "observation.state": {"min": [0.26138362288475037, -0.19538514316082, 0.13097065687179565, 1.6892621517181396, -0.8471462726593018, -0.43646207451820374, -0.5373091697692871, -0.4007943868637085, 0.18141190707683563, -0.6991062760353088, 0.02705403044819832, -1.1480234861373901], "max": [0.28284507989883423, -0.13354149460792542, 0.13941988348960876, 2.1233203411102295, -0.6475203633308411, -0.14821301400661469, -0.4237154722213745, -0.3177132308483124, 0.21021027863025665, -0.24995040893554688, 0.3571678102016449, -0.7357656359672546], "mean": [0.2739211916923523, -0.1751885861158371, 0.13444596529006958, 2.0214028358459473, -0.700799822807312, -0.3734130859375, -0.500895082950592, -0.3722144663333893, 0.19114625453948975, -0.4175354242324829, 0.1527545303106308, -0.9500893950462341], "std": [0.007326146122068167, 0.020305218175053596, 0.002599296858534217, 0.09162700176239014, 0.05344947427511215, 0.07682745903730392, 0.03662058338522911, 0.02870779111981392, 0.008544511161744595, 0.1389351338148117, 0.08768156915903091, 0.10529173165559769], "count": [215]}, "action": {"min": [-0.14857779443264008, -0.10918226838111877, 0.1255245953798294, 0.32398712635040283, 0.3947889804840088, 0.17203302681446075, 0.747298002243042, 0.1151067465543747, -0.14408284425735474, 0.08756647258996964, -0.6178852915763855, 0.09137897193431854, 0.7098032832145691, -0.3099709153175354], "max": [-0.1468084305524826, -0.1034555733203888, 0.1376161426305771, 0.44018733501434326, 0.4998140037059784, 0.3047642409801483, 0.7934549450874329, 0.12341573089361191, -0.1256859451532364, 0.1217707097530365, -0.39265933632850647, 0.3006511926651001, 0.8421087861061096, -0.20247520506381989], "mean": [-0.14780153334140778, -0.10766196995973587, 0.12996475398540497, 0.4087646007537842, 0.4186711609363556, 0.26804786920547485, 0.7632164359092712, 0.1181584820151329, -0.13268236815929413, 0.09829594939947128, -0.5502796173095703, 0.19279274344444275, 0.7650352716445923, -0.25322845578193665], "std": [0.00037761166458949447, 0.0012851592618972063, 0.004129438195377588, 0.03585077449679375, 0.02860359661281109, 0.029985792934894562, 0.01655970886349678, 0.0026427777484059334, 0.004746970254927874, 0.011065112426877022, 0.06808120012283325, 0.05750201642513275, 0.04266587272286415, 0.029292043298482895], "count": [215]}, "timestamp": {"min": [0.0], "max": [7.133333333333334], "mean": [3.566666666666667], "std": [2.06881608655772], "count": [215]}, "frame_index": {"min": [0], "max": [214], "mean": [107.0], "std": [62.0644825967316], "count": [215]}, "episode_index": {"min": [417], "max": [417], "mean": [417.0], "std": [0.0], "count": [215]}, "index": {"min": [205322], "max": [205536], "mean": [205429.0], "std": [62.0644825967316], "count": [215]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [215]}}} +{"episode_index": 418, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4987143218954248]], [[0.450088431372549]], [[0.40278149237472766]]], "std": [[[0.2758074365400998]], [[0.24672846393473186]], [[0.240951774156321]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5151731345315904]], [[0.4785682135076253]], [[0.43579090141612203]]], "std": [[[0.2779791267651286]], [[0.23285442808592982]], [[0.2382037711956755]]], "count": [100]}, "observation.state": {"min": [0.24137401580810547, -0.15837007761001587, 0.1333921253681183, 1.4017772674560547, -0.9239360094070435, -0.21443398296833038, -0.5444758534431458, -0.4309748411178589, 0.18530336022377014, -0.7121070623397827, -0.24007032811641693, -1.0474011898040771], "max": [0.2523016929626465, -0.1386539489030838, 0.1377139538526535, 1.664309024810791, -0.8489225506782532, -0.09204362332820892, -0.46618276834487915, -0.3133576214313507, 0.21702876687049866, -0.4214767813682556, 0.5070580244064331, -0.7498396635055542], "mean": [0.24890752136707306, -0.15210354328155518, 0.136360764503479, 1.553718090057373, -0.8699769377708435, -0.1410674899816513, -0.506754457950592, -0.36376816034317017, 0.2024770826101303, -0.5949644446372986, 0.3243938386440277, -0.8874176740646362], "std": [0.00207927986048162, 0.004016097169369459, 0.0010292500955983996, 0.09366127848625183, 0.01727386936545372, 0.028095947578549385, 0.022531230002641678, 0.03248250111937523, 0.011651230044662952, 0.06899576634168625, 0.17215971648693085, 0.057605717331171036], "count": [204]}, "action": {"min": [-0.151295468211174, -0.10954185575246811, 0.1315760463476181, 0.32487955689430237, 0.4996187388896942, 0.04716283828020096, 0.7558160424232483, 0.10426773130893707, -0.14959831535816193, 0.08647273480892181, -0.6268901228904724, 0.027421340346336365, 0.7506216168403625, -0.31142446398735046], "max": [-0.14919590950012207, -0.10307495296001434, 0.13324570655822754, 0.37895500659942627, 0.5388109683990479, 0.1660502552986145, 0.7866854667663574, 0.12023712694644928, -0.12983182072639465, 0.1196218952536583, -0.3543740212917328, 0.2489101141691208, 0.8705443739891052, -0.17015604674816132], "mean": [-0.15009142458438873, -0.10751262307167053, 0.1322029083967209, 0.3460930585861206, 0.5165077447891235, 0.11538375914096832, 0.772993266582489, 0.1126341000199318, -0.13864606618881226, 0.10620564967393875, -0.43759360909461975, 0.1926736682653427, 0.8327460289001465, -0.2646857500076294], "std": [0.00043388165067881346, 0.001544962520711124, 0.0003725790302269161, 0.01821122132241726, 0.015520455315709114, 0.043398477137088776, 0.012314552441239357, 0.004098878242075443, 0.0060974047519266605, 0.011491814628243446, 0.06092197820544243, 0.04815436899662018, 0.025060512125492096, 0.034728750586509705], "count": [204]}, "timestamp": {"min": [0.0], "max": [6.766666666666667], "mean": [3.3833333333333337], "std": [1.9629673305332263], "count": [204]}, "frame_index": {"min": [0], "max": [203], "mean": [101.5], "std": [58.88901991599679], "count": [204]}, "episode_index": {"min": [418], "max": [418], "mean": [418.0], "std": [0.0], "count": [204]}, "index": {"min": [205537], "max": [205740], "mean": [205638.5], "std": [58.88901991599679], "count": [204]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [204]}}} +{"episode_index": 419, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48479191721132897]], [[0.4326560430283224]], [[0.387737938453159]]], "std": [[[0.26578069294223416]], [[0.2383748322510862]], [[0.2331272963234162]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4959795288671024]], [[0.4567392102396514]], [[0.4147806617647059]]], "std": [[[0.27076302941217983]], [[0.22911791337765572]], [[0.23438992892385607]]], "count": [100]}, "observation.state": {"min": [0.2226695567369461, -0.15692593157291412, 0.13676248490810394, 1.8043819665908813, -0.8605366945266724, -0.3962635397911072, -0.5801625847816467, -0.4204255938529968, 0.19619089365005493, -0.693234920501709, -0.06982125341892242, -0.9066897034645081], "max": [0.2440924197435379, -0.13397397100925446, 0.14218227565288544, 1.9610203504562378, -0.7072305083274841, -0.281130313873291, -0.5055609941482544, -0.3314210772514343, 0.22027337551116943, -0.4820771813392639, 0.4387398064136505, -0.6406147480010986], "mean": [0.23427900671958923, -0.14249113202095032, 0.14039883017539978, 1.901490330696106, -0.7283287048339844, -0.3367573618888855, -0.5458991527557373, -0.36415138840675354, 0.20923210680484772, -0.597629725933075, 0.24322158098220825, -0.7258657813072205], "std": [0.00800564419478178, 0.008808196522295475, 0.0011907429434359074, 0.04642675444483757, 0.026607729494571686, 0.03555428609251976, 0.024502303451299667, 0.025553075596690178, 0.00896531529724598, 0.04733242467045784, 0.1464904397726059, 0.045191530138254166], "count": [175]}, "action": {"min": [-0.15415456891059875, -0.1097404733300209, 0.1364770382642746, 0.3455795347690582, 0.40716227889060974, 0.17353928089141846, 0.7707359790802002, 0.09900844097137451, -0.14987340569496155, 0.09099186211824417, -0.5776857137680054, 0.026945343241095543, 0.7794572710990906, -0.31594187021255493], "max": [-0.15072675049304962, -0.1039179190993309, 0.14213941991329193, 0.42768120765686035, 0.4802172780036926, 0.24561946094036102, 0.7977402210235596, 0.10798761993646622, -0.13545401394367218, 0.11789239197969437, -0.36297357082366943, 0.1779109686613083, 0.8695017695426941, -0.2011987566947937], "mean": [-0.15247198939323425, -0.1080123707652092, 0.13917799293994904, 0.391107976436615, 0.42631182074546814, 0.21697555482387543, 0.7852513194084167, 0.10278232395648956, -0.14226172864437103, 0.1059608906507492, -0.4567774832248688, 0.1128878965973854, 0.8370331525802612, -0.26890429854393005], "std": [0.001213905750773847, 0.001080831978470087, 0.0022073090076446533, 0.02334677241742611, 0.016436509788036346, 0.025874760001897812, 0.010498528368771076, 0.002262287074699998, 0.005026255734264851, 0.009626862592995167, 0.05726184695959091, 0.035941123962402344, 0.022884905338287354, 0.024125659838318825], "count": [175]}, "timestamp": {"min": [0.0], "max": [5.8], "mean": [2.9], "std": [1.6839107920420118], "count": [175]}, "frame_index": {"min": [0], "max": [174], "mean": [87.0], "std": [50.51732376126036], "count": [175]}, "episode_index": {"min": [419], "max": [419], "mean": [419.0], "std": [0.0], "count": [175]}, "index": {"min": [205741], "max": [205915], "mean": [205828.0], "std": [50.51732376126036], "count": [175]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [175]}}} +{"episode_index": 420, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4965022685185185]], [[0.4351704656862745]], [[0.3920895778867102]]], "std": [[[0.2527926943269665]], [[0.23443520126518239]], [[0.22831766796851477]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5044082652505446]], [[0.45767126906318084]], [[0.41618063725490195]]], "std": [[[0.2570732187070514]], [[0.2248059295444756]], [[0.22812247204625055]]], "count": [100]}, "observation.state": {"min": [0.1644478738307953, -0.15275566279888153, 0.13447971642017365, 2.201115369796753, -1.068907380104065, -0.7180943489074707, -0.5799617767333984, -0.3967553973197937, 0.2008756846189499, -0.6085202097892761, -0.08034226298332214, -0.9350681304931641], "max": [0.20714685320854187, -0.12091483175754547, 0.13730433583259583, 2.5238282680511475, -0.9453879594802856, -0.30968132615089417, -0.5131369829177856, -0.31331899762153625, 0.22919054329395294, -0.3170512020587921, 0.4058103859424591, -0.49810755252838135], "mean": [0.18817129731178284, -0.14343173801898956, 0.13664200901985168, 2.4344820976257324, -0.9738733172416687, -0.609908401966095, -0.5608215928077698, -0.371640682220459, 0.2083466351032257, -0.5591923594474792, 0.20320245623588562, -0.8683509230613708], "std": [0.008644073270261288, 0.011065242812037468, 0.00045230158139020205, 0.09692088514566422, 0.03877691179513931, 0.11827299743890762, 0.02066846191883087, 0.029511913657188416, 0.00968828983604908, 0.056515153497457504, 0.1050247922539711, 0.07874809205532074], "count": [211]}, "action": {"min": [-0.1670839488506317, -0.10430775582790375, 0.1374749094247818, 0.2552556097507477, 0.4801360070705414, 0.356662780046463, 0.684201717376709, 0.09250132739543915, -0.1529875248670578, 0.09502235054969788, -0.585223913192749, 0.05420922860503197, 0.7697402834892273, -0.4259605407714844], "max": [-0.15775154531002045, -0.09967374056577682, 0.1406177431344986, 0.35673755407333374, 0.5272570848464966, 0.4189160466194153, 0.747539222240448, 0.1053444892168045, -0.1390179991722107, 0.12325789034366608, -0.4319029748439789, 0.20022040605545044, 0.8294531106948853, -0.21208810806274414], "mean": [-0.16230180859565735, -0.10299317538738251, 0.13904538750648499, 0.3306286036968231, 0.4904574751853943, 0.39047056436538696, 0.7041425704956055, 0.10080418735742569, -0.1420133113861084, 0.10296447575092316, -0.5056694149971008, 0.16900336742401123, 0.8114553093910217, -0.23188024759292603], "std": [0.0020123261492699385, 0.0015682203229516745, 0.0006895745173096657, 0.03520308434963226, 0.010082243010401726, 0.0153411366045475, 0.01660725101828575, 0.0034860188607126474, 0.004459721967577934, 0.010269795544445515, 0.028928019106388092, 0.04091048985719681, 0.014920433983206749, 0.02783544547855854], "count": [211]}, "timestamp": {"min": [0.0], "max": [7.0], "mean": [3.5], "std": [2.030325644378808], "count": [211]}, "frame_index": {"min": [0], "max": [210], "mean": [105.0], "std": [60.909769331364245], "count": [211]}, "episode_index": {"min": [420], "max": [420], "mean": [420.0], "std": [0.0], "count": [211]}, "index": {"min": [205916], "max": [206126], "mean": [206021.0], "std": [60.909769331364245], "count": [211]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [211]}}} +{"episode_index": 421, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.499825697167756]], [[0.4439323665577342]], [[0.3965533877995643]]], "std": [[[0.27006916786569973]], [[0.24169542966711452]], [[0.23586306977734667]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.511833575708061]], [[0.4681218981481482]], [[0.4239936791938998]]], "std": [[[0.2743790075471462]], [[0.2302922078237135]], [[0.2349831125961617]]], "count": [100]}, "observation.state": {"min": [0.19768652319908142, -0.1373719722032547, 0.13994358479976654, 1.4997024536132812, -1.0935019254684448, -0.2519252598285675, -0.5922409296035767, -0.400717169046402, 0.19178740680217743, 1.4040838479995728, -0.7810142040252686, 0.5009576678276062], "max": [0.2163291871547699, -0.111300028860569, 0.15062889456748962, 1.7559435367584229, -0.9354134798049927, -0.12412320822477341, -0.5240260362625122, -0.31225326657295227, 0.2283972203731537, 2.1426117420196533, 0.21561239659786224, 1.3392490148544312], "mean": [0.21134069561958313, -0.1308836191892624, 0.146089568734169, 1.6950576305389404, -0.9840942621231079, -0.2246628701686859, -0.5468020439147949, -0.35293084383010864, 0.20721721649169922, 1.7080897092819214, -0.23634909093379974, 0.9603923559188843], "std": [0.004927774891257286, 0.008758476004004478, 0.0023155086673796177, 0.057285234332084656, 0.043589863926172256, 0.02756344899535179, 0.016071347519755363, 0.02542480081319809, 0.013237522915005684, 0.2540206015110016, 0.3964161276817322, 0.21619674563407898], "count": [183]}, "action": {"min": [-0.15640681982040405, -0.11099094152450562, 0.13752387464046478, 0.32321152091026306, 0.5132111310958862, 0.10854135453701019, 0.727782130241394, 0.09624636918306351, -0.1561678797006607, 0.09486976265907288, -0.37938830256462097, -0.2875889241695404, -0.2297719568014145, 0.8791828155517578], "max": [-0.15304875373840332, -0.10681390017271042, 0.14941051602363586, 0.34445369243621826, 0.5902581810951233, 0.1832902878522873, 0.7717918157577515, 0.10907726734876633, -0.12926360964775085, 0.12331661581993103, 0.16868144273757935, -0.15218453109264374, 0.26174792647361755, 0.9839741587638855], "mean": [-0.1538974791765213, -0.10982370376586914, 0.1434713751077652, 0.3362460434436798, 0.5385172367095947, 0.16403654217720032, 0.7543473243713379, 0.10389034450054169, -0.13951876759529114, 0.10571230947971344, -0.09506011754274368, -0.217394158244133, -0.020639287307858467, 0.9332064390182495], "std": [0.0006514275446534157, 0.0007559543591924012, 0.00284571317024529, 0.0046917470172047615, 0.02027018554508686, 0.019551249220967293, 0.013217953033745289, 0.003744912100955844, 0.008555987849831581, 0.010770000517368317, 0.18190301954746246, 0.039491284638643265, 0.19196857511997223, 0.030048485845327377], "count": [183]}, "timestamp": {"min": [0.0], "max": [6.066666666666666], "mean": [3.0333333333333337], "std": [1.760892029836225], "count": [183]}, "frame_index": {"min": [0], "max": [182], "mean": [91.0], "std": [52.82676089508675], "count": [183]}, "episode_index": {"min": [421], "max": [421], "mean": [421.0], "std": [0.0], "count": [183]}, "index": {"min": [206127], "max": [206309], "mean": [206218.0], "std": [52.82676089508675], "count": [183]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [183]}}} +{"episode_index": 422, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4936729493464052]], [[0.4434852750544662]], [[0.3954214188453159]]], "std": [[[0.2727768226741199]], [[0.2418703557231914]], [[0.23694991271219523]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5110951171023965]], [[0.47241290305010897]], [[0.42739724673202617]]], "std": [[[0.2763166737390551]], [[0.2274478165662184]], [[0.23473582246074381]]], "count": [100]}, "observation.state": {"min": [0.2584875822067261, -0.1442452073097229, 0.15047593414783478, 1.417504072189331, -0.9473008513450623, -0.22606132924556732, -0.5373477339744568, -0.38554197549819946, 0.19335462152957916, -0.282662034034729, -0.848785936832428, -1.3749805688858032], "max": [0.2826828956604004, -0.12310036271810532, 0.15487943589687347, 1.7221834659576416, -0.883628249168396, 0.045192819088697433, -0.39611440896987915, -0.2793467044830322, 0.22406890988349915, 1.658437728881836, 1.1104447841644287, 1.4102990627288818], "mean": [0.2657875716686249, -0.13861152529716492, 0.1520916223526001, 1.6163232326507568, -0.8956491351127625, -0.12428577989339828, -0.4692322015762329, -0.3261423408985138, 0.20778605341911316, 0.7134159207344055, 0.28519049286842346, -0.1525469571352005], "std": [0.006911965552717447, 0.005956013221293688, 0.0009001824073493481, 0.07608042657375336, 0.006924048997461796, 0.07761052250862122, 0.04301778972148895, 0.02980906143784523, 0.008659296669065952, 0.7169937491416931, 0.6104557514190674, 1.0827972888946533], "count": [258]}, "action": {"min": [-0.14427712559700012, -0.11492664366960526, 0.14287391304969788, 0.27478525042533875, 0.517648458480835, 0.11287365108728409, 0.7614192962646484, 0.10677812248468399, -0.154099702835083, 0.09602969884872437, -0.623757541179657, -0.5581246018409729, -0.6254743337631226, -0.3279244899749756], "max": [-0.14000512659549713, -0.11198914796113968, 0.148196741938591, 0.34832000732421875, 0.5692840218544006, 0.1729183793067932, 0.7848096489906311, 0.12138521671295166, -0.1323038637638092, 0.12788383662700653, 0.6299206018447876, 0.44264358282089233, 0.6905790567398071, 0.9847986102104187], "mean": [-0.14295879006385803, -0.11411099135875702, 0.14496183395385742, 0.3210473358631134, 0.5269681811332703, 0.15063099563121796, 0.7718344330787659, 0.11400966346263885, -0.1375834196805954, 0.1156187355518341, -0.019371911883354187, -0.13437384366989136, -0.05946313589811325, 0.5015193819999695], "std": [0.0012894495157524943, 0.000571049633435905, 0.0011424002004787326, 0.02151961624622345, 0.0071348766796290874, 0.015437684021890163, 0.007936603389680386, 0.0031861525494605303, 0.005693457555025816, 0.00968904048204422, 0.4336300492286682, 0.35648298263549805, 0.45608261227607727, 0.4509814381599426], "count": [258]}, "timestamp": {"min": [0.0], "max": [8.566666666666666], "mean": [4.283333333333333], "std": [2.482587509180843], "count": [258]}, "frame_index": {"min": [0], "max": [257], "mean": [128.5], "std": [74.47762527542528], "count": [258]}, "episode_index": {"min": [422], "max": [422], "mean": [422.0], "std": [0.0], "count": [258]}, "index": {"min": [206310], "max": [206567], "mean": [206438.5], "std": [74.47762527542528], "count": [258]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [258]}}} +{"episode_index": 423, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4940660049019608]], [[0.4475104438997822]], [[0.40112614379084965]]], "std": [[[0.2574187343076141]], [[0.23717813525411846]], [[0.2319669817062447]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.501687091503268]], [[0.4699146732026144]], [[0.42565608387799564]]], "std": [[[0.26091830370167696]], [[0.22543898747570926]], [[0.23066974769329537]]], "count": [100]}, "observation.state": {"min": [0.1773911714553833, -0.174224853515625, 0.12918047606945038, 1.4091163873672485, -0.8983849883079529, -0.2997356951236725, -0.5913991332054138, -0.4526679813861847, 0.1906544417142868, -0.625085711479187, 0.02336484007537365, -1.0041313171386719], "max": [0.20444391667842865, -0.13648386299610138, 0.1459687352180481, 2.3585925102233887, -0.6894677877426147, 0.48579639196395874, -0.5249990820884705, -0.3323478102684021, 0.22295668721199036, 0.6378768086433411, 0.618826687335968, 0.2848031520843506], "mean": [0.18155576288700104, -0.1633998155593872, 0.1410638988018036, 2.2471930980682373, -0.7397164106369019, -0.19906003773212433, -0.5586362481117249, -0.3820324242115021, 0.20919597148895264, -0.4445587694644928, 0.20767781138420105, -0.7329890727996826], "std": [0.004899675026535988, 0.01034639123827219, 0.003846898442134261, 0.15821322798728943, 0.044658027589321136, 0.13407239317893982, 0.018513064831495285, 0.02799619361758232, 0.009830259718000889, 0.17017234861850739, 0.11152666807174683, 0.17786496877670288], "count": [170]}, "action": {"min": [-0.16341130435466766, -0.11294164508581161, 0.12965905666351318, 0.10392088443040848, 0.3077021837234497, 0.172550231218338, 0.7760145664215088, 0.09465416520833969, -0.1557380110025406, 0.08323614299297333, -0.5755747556686401, -0.17625992000102997, -0.6197882294654846, -0.6249822974205017], "max": [-0.15952318906784058, -0.10326074808835983, 0.14610323309898376, 0.3043610453605652, 0.4355045258998871, 0.4304191470146179, 0.8778671026229858, 0.10861188918352127, -0.13407166302204132, 0.11699911206960678, 0.3254243731498718, 0.29013460874557495, 0.8340991735458374, 0.7634957432746887], "mean": [-0.16266986727714539, -0.11118077486753464, 0.14057117700576782, 0.28440481424331665, 0.33600476384162903, 0.3987145721912384, 0.8019764423370361, 0.10080661624670029, -0.14394934475421906, 0.10194409638643265, -0.5028765201568604, 0.1286540925502777, 0.7670519948005676, -0.2657899558544159], "std": [0.0007884806836955249, 0.0017130838241428137, 0.00414750911295414, 0.03386050462722778, 0.02868630923330784, 0.0414891317486763, 0.01960352621972561, 0.003543216735124588, 0.005878490395843983, 0.009389068000018597, 0.11211072653532028, 0.06897186487913132, 0.18340149521827698, 0.14348803460597992], "count": [170]}, "timestamp": {"min": [0.0], "max": [5.633333333333334], "mean": [2.8166666666666664], "std": [1.6357974609753292], "count": [170]}, "frame_index": {"min": [0], "max": [169], "mean": [84.5], "std": [49.073923829259876], "count": [170]}, "episode_index": {"min": [423], "max": [423], "mean": [423.0], "std": [0.0], "count": [170]}, "index": {"min": [206568], "max": [206737], "mean": [206652.5], "std": [49.073923829259876], "count": [170]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [170]}}} +{"episode_index": 424, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49902582788671024]], [[0.4439534586056645]], [[0.39939406862745097]]], "std": [[[0.2660126269924762]], [[0.2386785972736556]], [[0.23263564669256917]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5101827750544662]], [[0.46982581699346404]], [[0.4293589188453159]]], "std": [[[0.26738931518234677]], [[0.22561562702335233]], [[0.22991826873108168]]], "count": [100]}, "observation.state": {"min": [0.1920798122882843, -0.18704459071159363, 0.11804795265197754, 1.0008500814437866, -0.8856778144836426, 0.0036962400190532207, -0.5683004856109619, -0.42400118708610535, 0.1910187005996704, -0.6661849617958069, 0.24102678894996643, -0.9750384092330933], "max": [0.25422462821006775, -0.11090616881847382, 0.15022963285446167, 1.8404486179351807, -0.4671601951122284, 0.9030651450157166, -0.4986954927444458, -0.3378077745437622, 0.21961615979671478, 0.04361550882458687, 0.5633522868156433, -0.14334605634212494], "mean": [0.2276560515165329, -0.1513548046350479, 0.13368968665599823, 1.4217571020126343, -0.6463286280632019, 0.44676923751831055, -0.543289840221405, -0.39250993728637695, 0.20308347046375275, -0.5147616267204285, 0.4297184646129608, -0.8647696375846863], "std": [0.019393591210246086, 0.024864399805665016, 0.013284487649798393, 0.3751406967639923, 0.13202205300331116, 0.4017808139324188, 0.022913482040166855, 0.027681630104780197, 0.011242260225117207, 0.14860554039478302, 0.07756708562374115, 0.138164684176445], "count": [156]}, "action": {"min": [-0.16137397289276123, -0.11314418911933899, 0.11562910676002502, -0.05264905095100403, 0.39008909463882446, 0.0328972265124321, 0.8262451887130737, 0.10197004675865173, -0.1537662148475647, 0.08864112198352814, -0.5158286690711975, 0.09640257805585861, 0.7029550671577454, -0.5915369391441345], "max": [-0.15206648409366608, -0.10240649431943893, 0.1502479463815689, 0.2588808834552765, 0.4603880047798157, 0.2781912386417389, 0.9095464944839478, 0.11239425092935562, -0.13368681073188782, 0.11944320797920227, -0.3388415277004242, 0.28090700507164, 0.8475199341773987, -0.2592831254005432], "mean": [-0.15601645410060883, -0.10728195309638977, 0.13247697055339813, 0.1062995195388794, 0.4276980757713318, 0.151731938123703, 0.8681306838989258, 0.10772329568862915, -0.1404988169670105, 0.10013280808925629, -0.43766942620277405, 0.22373610734939575, 0.8107069730758667, -0.30556583404541016], "std": [0.002045697532594204, 0.0037797228433191776, 0.01369056012481451, 0.13339434564113617, 0.02701577916741371, 0.10030923038721085, 0.022702742367982864, 0.0036976845003664494, 0.006425214000046253, 0.010850812308490276, 0.042170751839876175, 0.03960033133625984, 0.033010441809892654, 0.05774896591901779], "count": [156]}, "timestamp": {"min": [0.0], "max": [5.166666666666667], "mean": [2.5833333333333335], "std": [1.5010798582156581], "count": [156]}, "frame_index": {"min": [0], "max": [155], "mean": [77.5], "std": [45.032395746469746], "count": [156]}, "episode_index": {"min": [424], "max": [424], "mean": [424.0], "std": [0.0], "count": [156]}, "index": {"min": [206738], "max": [206893], "mean": [206815.5], "std": [45.032395746469746], "count": [156]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [156]}}} +{"episode_index": 425, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5265242075163399]], [[0.46362863562091505]], [[0.4182691122004357]]], "std": [[[0.27209490159600397]], [[0.2462582031568764]], [[0.24123142605703415]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5406204003267974]], [[0.4905541612200436]], [[0.44981382897603484]]], "std": [[[0.2731237635497337]], [[0.23285142165481623]], [[0.2379234104266016]]], "count": [100]}, "observation.state": {"min": [0.2065058797597885, -0.1618221402168274, 0.1222064420580864, 0.9763163924217224, -0.9915710687637329, -0.22825635969638824, -0.5380042195320129, -0.40647831559181213, 0.1876574158668518, -0.7838209867477417, -0.16478362679481506, -1.0711714029312134], "max": [0.24313479661941528, -0.13435238599777222, 0.15435443818569183, 2.115981101989746, -0.4157848656177521, 0.8924973011016846, -0.4730173945426941, -0.33116623759269714, 0.2160733938217163, -0.3921201825141907, 0.7195277810096741, -0.7879508137702942], "mean": [0.2257852405309677, -0.1519908905029297, 0.1358650028705597, 1.4952977895736694, -0.6403459310531616, 0.3878144919872284, -0.5128368139266968, -0.37121838331222534, 0.1994381546974182, -0.6462583541870117, 0.1145033910870552, -0.9793661832809448], "std": [0.01085127703845501, 0.009878857992589474, 0.01373746246099472, 0.49582505226135254, 0.1616741120815277, 0.49959272146224976, 0.023156676441431046, 0.02337660640478134, 0.010367689654231071, 0.11411482095718384, 0.29728934168815613, 0.07133320719003677], "count": [136]}, "action": {"min": [-0.15875442326068878, -0.11525382101535797, 0.12163279205560684, -0.06325532495975494, 0.38872992992401123, 0.007614137139171362, 0.7899776697158813, 0.10895881801843643, -0.14954838156700134, 0.08915362507104874, -0.5829391479492188, 0.08516599237918854, 0.7790561318397522, -0.3421142101287842], "max": [-0.15074704587459564, -0.10369376093149185, 0.15206359326839447, 0.309950053691864, 0.48691076040267944, 0.34239625930786133, 0.9147017002105713, 0.11463244259357452, -0.13039831817150116, 0.11892762035131454, -0.26885703206062317, 0.32825717329978943, 0.8577567934989929, -0.03930499777197838], "mean": [-0.15606087446212769, -0.10852862149477005, 0.13446322083473206, 0.11308267712593079, 0.42533138394355774, 0.16795466840267181, 0.8542852997779846, 0.11256666481494904, -0.13809049129486084, 0.10137860476970673, -0.4963865876197815, 0.16827182471752167, 0.8177161812782288, -0.16436363756656647], "std": [0.0025115059688687325, 0.004890562500804663, 0.012615364044904709, 0.15954352915287018, 0.028827941045165062, 0.140753373503685, 0.0468665286898613, 0.0015450448263436556, 0.00618516793474555, 0.01135964971035719, 0.10071399062871933, 0.07115115225315094, 0.023135554045438766, 0.11776474863290787], "count": [136]}, "timestamp": {"min": [0.0], "max": [4.5], "mean": [2.25], "std": [1.3086252328302401], "count": [136]}, "frame_index": {"min": [0], "max": [135], "mean": [67.5], "std": [39.2587569849072], "count": [136]}, "episode_index": {"min": [425], "max": [425], "mean": [425.0], "std": [0.0], "count": [136]}, "index": {"min": [206894], "max": [207029], "mean": [206961.5], "std": [39.2587569849072], "count": [136]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [136]}}} +{"episode_index": 426, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49687472494553375]], [[0.4376117510893246]], [[0.3947982434640523]]], "std": [[[0.26035546698464274]], [[0.23744772063264946]], [[0.23126358399236438]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5096323801742919]], [[0.4642679874727669]], [[0.4242087363834423]]], "std": [[[0.2642996060887001]], [[0.22777811969846737]], [[0.23188754123785338]]], "count": [100]}, "observation.state": {"min": [0.19062021374702454, -0.1835307478904724, 0.12640513479709625, 1.1704893112182617, -0.8161298036575317, 0.27195319533348083, -0.5743319392204285, -0.42258793115615845, 0.19563348591327667, -0.6143915057182312, 0.068181611597538, -0.8279816508293152], "max": [0.2334427684545517, -0.11321526020765305, 0.15141445398330688, 1.6079025268554688, -0.6665128469467163, 0.6997780799865723, -0.4974675476551056, -0.3282470405101776, 0.21948912739753723, -0.4581725299358368, 0.39173683524131775, -0.6276090145111084], "mean": [0.21051546931266785, -0.15674129128456116, 0.13593725860118866, 1.5005801916122437, -0.7389575839042664, 0.45321035385131836, -0.5489928126335144, -0.370373398065567, 0.20509949326515198, -0.5538743734359741, 0.19320598244667053, -0.7675620913505554], "std": [0.008764561265707016, 0.026463763788342476, 0.010176705196499825, 0.08019348233938217, 0.04597899317741394, 0.13160258531570435, 0.02674304135143757, 0.026307716965675354, 0.008578299544751644, 0.035478681325912476, 0.056388065218925476, 0.04332339018583298], "count": [141]}, "action": {"min": [-0.15849795937538147, -0.11341985315084457, 0.12298048287630081, 0.04269890859723091, 0.37354663014411926, 0.115359827876091, 0.8611611723899841, 0.10061829537153244, -0.14937791228294373, 0.09165036678314209, -0.5320830941200256, 0.07118886709213257, 0.805501401424408, -0.3386092185974121], "max": [-0.1547871232032776, -0.10611691325902939, 0.15139125287532806, 0.172899067401886, 0.47019535303115845, 0.23197859525680542, 0.8948904871940613, 0.11169099807739258, -0.13439254462718964, 0.11798044294118881, -0.42073217034339905, 0.15616394579410553, 0.8453848361968994, -0.2202514410018921], "mean": [-0.1574365198612213, -0.1093975231051445, 0.13364796340465546, 0.11632045358419418, 0.4103195071220398, 0.20462974905967712, 0.8794699907302856, 0.10420816391706467, -0.14021435379981995, 0.1024005115032196, -0.49454888701438904, 0.12419277429580688, 0.8195395469665527, -0.2581254541873932], "std": [0.0010770508088171482, 0.0027169997338205576, 0.011358533054590225, 0.039105143398046494, 0.021434852853417397, 0.026605533435940742, 0.008388344198465347, 0.0024129555094987154, 0.004705845378339291, 0.009822661057114601, 0.02075177989900112, 0.021165717393159866, 0.007478781975805759, 0.02809428796172142], "count": [141]}, "timestamp": {"min": [0.0], "max": [4.666666666666667], "mean": [2.3333333333333335], "std": [1.3567390098101924], "count": [141]}, "frame_index": {"min": [0], "max": [140], "mean": [70.0], "std": [40.702170294305766], "count": [141]}, "episode_index": {"min": [426], "max": [426], "mean": [426.0], "std": [0.0], "count": [141]}, "index": {"min": [207030], "max": [207170], "mean": [207100.0], "std": [40.702170294305766], "count": [141]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [141]}}} +{"episode_index": 427, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46935482298474945]], [[0.42807806372549023]], [[0.3816028758169935]]], "std": [[[0.2724109402035578]], [[0.24875452272087112]], [[0.24261929738352073]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47665691176470587]], [[0.44946453159041394]], [[0.40660768518518514]]], "std": [[[0.28023401495269085]], [[0.23863939194593267]], [[0.24299201560759492]]], "count": [100]}, "observation.state": {"min": [0.11020340025424957, -0.15181347727775574, 0.12528254091739655, 1.3734691143035889, -1.1161835193634033, -0.09360659122467041, -0.6342757940292358, -0.44403398036956787, 0.20017440617084503, -0.8832140564918518, -0.6789467930793762, -0.8865994215011597], "max": [0.1945124715566635, -0.1008588895201683, 0.1461929827928543, 1.9364866018295288, -0.5271435976028442, 0.4844825863838196, -0.5302351117134094, -0.3425031900405884, 0.23501737415790558, 2.0140719413757324, 0.6505264043807983, 1.021178126335144], "mean": [0.13498318195343018, -0.12201538681983948, 0.13804619014263153, 1.779588222503662, -0.7458597421646118, 0.0834427922964096, -0.5709336400032043, -0.38912585377693176, 0.21533910930156708, -0.1912546306848526, 0.2880364954471588, -0.4166485667228699], "std": [0.02308838628232479, 0.011846791952848434, 0.008099876344203949, 0.16095875203609467, 0.17625980079174042, 0.16374073922634125, 0.03038838878273964, 0.030058441683650017, 0.009548189118504524, 0.9507986307144165, 0.40530601143836975, 0.5682471394538879], "count": [376]}, "action": {"min": [-0.17425107955932617, -0.11206679791212082, 0.12652450799942017, 0.10666752606630325, 0.28370538353919983, 0.13972589373588562, 0.801979660987854, 0.08979018777608871, -0.15888872742652893, 0.08659745007753372, -0.4311138391494751, -0.2510285973548889, -0.6263691782951355, -0.6369981169700623], "max": [-0.16044490039348602, -0.09819043427705765, 0.15173466503620148, 0.27608999609947205, 0.5280521512031555, 0.2974015176296234, 0.9144819974899292, 0.10582178086042404, -0.14028367400169373, 0.1216341182589531, 0.3600705564022064, 0.22224490344524384, 0.9115203022956848, 0.9873985648155212], "mean": [-0.17011791467666626, -0.10598292946815491, 0.14224041998386383, 0.22614404559135437, 0.3630059063434601, 0.2418677806854248, 0.8654733300209045, 0.09798092395067215, -0.1477660983800888, 0.1042279601097107, -0.2933942675590515, 0.08059854060411453, 0.7058332562446594, -0.06586269289255142], "std": [0.003683471353724599, 0.003991737961769104, 0.0083214296028018, 0.04637431353330612, 0.07302194833755493, 0.033150527626276016, 0.030977994203567505, 0.0044194553047418594, 0.0046426039189100266, 0.010882042348384857, 0.16393746435642242, 0.13081374764442444, 0.33291155099868774, 0.5000671148300171], "count": [376]}, "timestamp": {"min": [0.0], "max": [12.5], "mean": [6.25], "std": [3.6180488910154014], "count": [376]}, "frame_index": {"min": [0], "max": [375], "mean": [187.5], "std": [108.54146673046205], "count": [376]}, "episode_index": {"min": [427], "max": [427], "mean": [427.0], "std": [0.0], "count": [376]}, "index": {"min": [207171], "max": [207546], "mean": [207358.5], "std": [108.54146673046205], "count": [376]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [376]}}} +{"episode_index": 428, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48195196895424836]], [[0.4341982979302832]], [[0.38880165577342046]]], "std": [[[0.27678155861263937]], [[0.2539492538162022]], [[0.24775317043679085]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49429715958605663]], [[0.45963073257080606]], [[0.4180593246187364]]], "std": [[[0.2842318326504319]], [[0.24150040098286846]], [[0.24662445824975562]]], "count": [100]}, "observation.state": {"min": [0.15479445457458496, -0.14151908457279205, 0.1302914023399353, 1.033142328262329, -1.193929672241211, -0.0030575899872928858, -0.5945886373519897, -0.4323803782463074, 0.19197796285152435, 1.0817904472351074, -1.0817512273788452, 0.42572203278541565], "max": [0.18887488543987274, -0.10627253353595734, 0.14291207492351532, 1.629081130027771, -0.6745743751525879, 0.517713189125061, -0.5225818753242493, -0.3115813732147217, 0.22262224555015564, 1.9096462726593018, 0.7602455019950867, 1.2847977876663208], "mean": [0.17008845508098602, -0.12655769288539886, 0.13496428728103638, 1.2318331003189087, -0.9161369204521179, 0.3504426181316376, -0.5566087365150452, -0.3764015734195709, 0.20712430775165558, 1.4975091218948364, -0.375117689371109, 1.0367748737335205], "std": [0.0059235235676169395, 0.008553260006010532, 0.004542189184576273, 0.13788200914859772, 0.19587405025959015, 0.08357372879981995, 0.013420995324850082, 0.03844540938735008, 0.012097234837710857, 0.14902588725090027, 0.4488627314567566, 0.13450109958648682], "count": [257]}, "action": {"min": [-0.16582758724689484, -0.10940428078174591, 0.12819716334342957, 0.10668709874153137, 0.42639678716659546, 0.054812729358673096, 0.7410515546798706, 0.09632089734077454, -0.152620330452919, 0.08544604480266571, -0.2039821296930313, -0.36515048146247864, -0.47504308819770813, 0.7692750096321106], "max": [-0.16090920567512512, -0.1020059883594513, 0.1451042890548706, 0.2491360753774643, 0.6245816349983215, 0.2172112911939621, 0.8852453827857971, 0.11257447302341461, -0.13663437962532043, 0.11864686012268066, 0.22184503078460693, 0.13151799142360687, 0.2551669478416443, 0.9981488585472107], "mean": [-0.16407255828380585, -0.10637827962636948, 0.13517753779888153, 0.19611452519893646, 0.5208197236061096, 0.10096010565757751, 0.8176648616790771, 0.10469474643468857, -0.14259077608585358, 0.10101272910833359, -0.07007309049367905, -0.09636010229587555, -0.0152134345844388, 0.9635986089706421], "std": [0.0010648096213117242, 0.0019000081811100245, 0.0060439943335950375, 0.020198853686451912, 0.08440801501274109, 0.02258339896798134, 0.058944761753082275, 0.004597177263349295, 0.004973046947270632, 0.011930877342820168, 0.07172390073537827, 0.1334512084722519, 0.18273583054542542, 0.026554260402917862], "count": [257]}, "timestamp": {"min": [0.0], "max": [8.533333333333333], "mean": [4.266666666666667], "std": [2.4729649321321876], "count": [257]}, "frame_index": {"min": [0], "max": [256], "mean": [128.0], "std": [74.18894796396563], "count": [257]}, "episode_index": {"min": [428], "max": [428], "mean": [428.0], "std": [0.0], "count": [257]}, "index": {"min": [207547], "max": [207803], "mean": [207675.0], "std": [74.18894796396563], "count": [257]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [257]}}} +{"episode_index": 429, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46295182734204793]], [[0.4207240522875817]], [[0.3773511220043573]]], "std": [[[0.274066112470781]], [[0.24722761980133875]], [[0.24152427319589498]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4762338208061002]], [[0.44937103213507623]], [[0.4101422031590414]]], "std": [[[0.28373518048166996]], [[0.23622841630064612]], [[0.24180543905739488]]], "count": [100]}, "observation.state": {"min": [0.21183456480503082, -0.1711975336074829, 0.11939609050750732, 1.3304827213287354, -0.6012005805969238, 0.08401177823543549, -0.619849681854248, -0.5149672627449036, 0.19378109276294708, -1.2258473634719849, 0.46661365032196045, -1.2151769399642944], "max": [0.2597386837005615, -0.1315876543521881, 0.1423533856868744, 1.692407488822937, -0.36427292227745056, 0.31728652119636536, -0.47236868739128113, -0.3643662631511688, 0.22002707421779633, -0.32606786489486694, 0.8441402912139893, -0.611264705657959], "mean": [0.23414579033851624, -0.15321937203407288, 0.13246381282806396, 1.5282679796218872, -0.46373069286346436, 0.20284998416900635, -0.5576637387275696, -0.41696488857269287, 0.2055549919605255, -0.9405949115753174, 0.6320787072181702, -1.036530613899231], "std": [0.019647983834147453, 0.012436860240995884, 0.008580946363508701, 0.15061695873737335, 0.071135014295578, 0.09111664444208145, 0.04179001599550247, 0.03295045346021652, 0.008713853545486927, 0.17312949895858765, 0.10619798302650452, 0.1429940015077591], "count": [209]}, "action": {"min": [-0.1580677181482315, -0.11219935119152069, 0.11969824135303497, 0.1842631697654724, 0.24696797132492065, 0.055908236652612686, 0.888849139213562, 0.09813058376312256, -0.15466979146003723, 0.07514537870883942, -0.42869892716407776, 0.04772345349192619, 0.7695361375808716, -0.3933015763759613], "max": [-0.1529906988143921, -0.10037940740585327, 0.14281317591667175, 0.27163398265838623, 0.3985271155834198, 0.1711166352033615, 0.9263880252838135, 0.11938852071762085, -0.1363721638917923, 0.11049295216798782, -0.1246538981795311, 0.30221670866012573, 0.955955982208252, -0.14067913591861725], "mean": [-0.15598751604557037, -0.10735978931188583, 0.13201850652694702, 0.22819392383098602, 0.3252218961715698, 0.11288847029209137, 0.907152533531189, 0.10791300237178802, -0.1447623372077942, 0.09697233140468597, -0.2717481255531311, 0.2414020150899887, 0.8931968212127686, -0.23641301691532135], "std": [0.0017236253479495645, 0.003954501356929541, 0.009159927256405354, 0.030552012845873833, 0.0625649020075798, 0.03857865929603577, 0.012347109615802765, 0.0045687672682106495, 0.0061299665831029415, 0.010947521775960922, 0.07922779023647308, 0.06231691315770149, 0.03556911647319794, 0.05254272371530533], "count": [209]}, "timestamp": {"min": [0.0], "max": [6.933333333333334], "mean": [3.4666666666666663], "std": [2.011080417199781], "count": [209]}, "frame_index": {"min": [0], "max": [208], "mean": [104.0], "std": [60.332412515993425], "count": [209]}, "episode_index": {"min": [429], "max": [429], "mean": [429.0], "std": [0.0], "count": [209]}, "index": {"min": [207804], "max": [208012], "mean": [207908.0], "std": [60.332412515993425], "count": [209]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [209]}}} +{"episode_index": 430, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7266738289760348]], [[0.6922551334422659]], [[0.6444261029411764]]], "std": [[[0.2324914289311067]], [[0.22284196620976798]], [[0.24686215655704652]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7266738289760348]], [[0.6922551334422659]], [[0.6444261029411764]]], "std": [[[0.2324914289311067]], [[0.22284196620976798]], [[0.24686215655704652]]], "count": [100]}, "observation.state": {"min": [0.5215238928794861, 0.01332170981913805, 0.11560054868459702, 2.4502270221710205, -0.26124897599220276, -0.2019786536693573, -0.1587330549955368, -0.1745569258928299, 0.1391683965921402, -0.9484276175498962, -0.42876532673835754, -0.6444945335388184], "max": [0.5215315818786621, 0.013329439796507359, 0.11560054868459702, 2.45064640045166, -0.26124897599220276, -0.201651930809021, -0.12449044734239578, -0.126397967338562, 0.15360517799854279, -0.8307915329933167, -0.11327166110277176, -0.4045920968055725], "mean": [0.521526038646698, 0.01332235336303711, 0.1156005710363388, 2.4505865573883057, -0.26124927401542664, -0.2017604410648346, -0.14928053319454193, -0.1470794379711151, 0.14749391376972198, -0.8860714435577393, -0.1976415365934372, -0.5237898826599121], "std": [3.820021447609179e-06, 2.124997081409674e-06, 2.2351741790771484e-08, 0.00014891408500261605, 2.980232238769531e-07, 0.000152624721522443, 0.011212950572371483, 0.015129209496080875, 0.0042761643417179585, 0.0324968546628952, 0.07466303557157516, 0.05345730111002922], "count": [170]}, "action": {"min": [-0.11921090632677078, -0.06538920849561691, 0.12112880498170853, 0.34237584471702576, 0.27546489238739014, 0.4730873703956604, 0.7634018063545227, 0.1761920303106308, -0.09037818759679794, 0.10308775305747986, -0.3928106427192688, -0.16855208575725555, 0.893132209777832, -0.2413209229707718], "max": [-0.1192091628909111, -0.06538745760917664, 0.1211305782198906, 0.34251096844673157, 0.27560800313949585, 0.47331371903419495, 0.7634908556938171, 0.1812719702720642, -0.08068070560693741, 0.11471859365701675, -0.29510045051574707, -0.005749681033194065, 0.9384156465530396, -0.14087702333927155], "mean": [-0.11921043694019318, -0.06538867950439453, 0.12112972885370255, 0.3424217104911804, 0.2755015790462494, 0.47327056527137756, 0.7634533047676086, 0.17793361842632294, -0.08748342841863632, 0.10806671530008316, -0.3274923264980316, -0.07695434242486954, 0.9197670221328735, -0.19534195959568024], "std": [5.798855795546842e-07, 3.6818101989410934e-07, 3.855664374441403e-07, 5.958695328445174e-05, 5.274876457406208e-05, 7.85292504588142e-05, 2.568317904660944e-05, 0.0016785182524472475, 0.002822065958753228, 0.0038413838483393192, 0.025805890560150146, 0.037686802446842194, 0.011534580029547215, 0.02186405286192894], "count": [170]}, "timestamp": {"min": [0.0], "max": [5.633333333333334], "mean": [2.8166666666666664], "std": [1.6357974609753292], "count": [170]}, "frame_index": {"min": [0], "max": [169], "mean": [84.5], "std": [49.073923829259876], "count": [170]}, "episode_index": {"min": [430], "max": [430], "mean": [430.0], "std": [0.0], "count": [170]}, "index": {"min": [208013], "max": [208182], "mean": [208097.5], "std": [49.073923829259876], "count": [170]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [170]}}} +{"episode_index": 431, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7199289025054466]], [[0.6862905446623094]], [[0.6386908224400871]]], "std": [[[0.23555026875246107]], [[0.2264455029992357]], [[0.2504477229927944]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7199289025054466]], [[0.6862905446623094]], [[0.6386908224400871]]], "std": [[[0.23555026875246107]], [[0.2264455029992357]], [[0.2504477229927944]]], "count": [100]}, "observation.state": {"min": [0.5215238928794861, 0.01332170981913805, 0.11560054868459702, 2.4502270221710205, -0.26124897599220276, -0.2019786536693573, -0.1688421070575714, -0.1864808350801468, 0.14184263348579407, -0.9605896472930908, -0.3376287817955017, -0.7301661372184753], "max": [0.5215315818786621, 0.013329439796507359, 0.11560054868459702, 2.45064640045166, -0.26124897599220276, -0.201651930809021, -0.12694628536701202, -0.13610543310642242, 0.15532276034355164, -0.8265977501869202, -0.012707189656794071, -0.49617886543273926], "mean": [0.5215272307395935, 0.013323783874511719, 0.1156005784869194, 2.450594663619995, -0.261249303817749, -0.20183466374874115, -0.15277869999408722, -0.15991677343845367, 0.14794744551181793, -0.8938265442848206, -0.14107933640480042, -0.5970692038536072], "std": [3.925036708096741e-06, 3.4254442198289325e-06, 2.9802322387695312e-08, 0.00014180525613483042, 3.2782554626464844e-07, 0.00015416790847666562, 0.015706319361925125, 0.015608560293912888, 0.003960848785936832, 0.03861400485038757, 0.09365229308605194, 0.06393712759017944], "count": [190]}, "action": {"min": [-0.11921090632677078, -0.06538920849561691, 0.12112880498170853, 0.34237584471702576, 0.27546489238739014, 0.4730873703956604, 0.7634018063545227, 0.17497633397579193, -0.09169746190309525, 0.10354144871234894, -0.3660143315792084, -0.12367717176675797, 0.9110985398292542, -0.2330523580312729], "max": [-0.1192091628909111, -0.06538745760917664, 0.1211305782198906, 0.34251096844673157, 0.27560940384864807, 0.47331371903419495, 0.7634902000427246, 0.1810094565153122, -0.08353428542613983, 0.1156393364071846, -0.26370880007743835, 0.04613158479332924, 0.9382173418998718, -0.13449101150035858], "mean": [-0.11921023577451706, -0.06538844108581543, 0.12112975865602493, 0.3424496650695801, 0.2755188047885895, 0.4732634723186493, 0.7634385228157043, 0.1777859926223755, -0.08892908692359924, 0.10752732306718826, -0.3148619532585144, -0.03894788399338722, 0.9264460802078247, -0.1934768408536911], "std": [5.624942787108012e-07, 5.709337074222276e-07, 3.5601524928097206e-07, 5.960249836789444e-05, 4.8443882405990735e-05, 7.146212738007307e-05, 3.1611609301762655e-05, 0.0019102130318060517, 0.002331905532628298, 0.00397478137165308, 0.027332769706845284, 0.04597993940114975, 0.008756709285080433, 0.025924593210220337], "count": [190]}, "timestamp": {"min": [0.0], "max": [6.3], "mean": [3.15], "std": [1.8282505298782221], "count": [190]}, "frame_index": {"min": [0], "max": [189], "mean": [94.5], "std": [54.847515896346664], "count": [190]}, "episode_index": {"min": [431], "max": [431], "mean": [431.0], "std": [0.0], "count": [190]}, "index": {"min": [208183], "max": [208372], "mean": [208277.5], "std": [54.847515896346664], "count": [190]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [190]}}} +{"episode_index": 432, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7011670642701525]], [[0.668467295751634]], [[0.61892875]]], "std": [[[0.2486069713520262]], [[0.23653232054663023]], [[0.2590152661991882]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7011670642701525]], [[0.668467295751634]], [[0.61892875]]], "std": [[[0.2486069713520262]], [[0.23653232054663023]], [[0.2590152661991882]]], "count": [100]}, "observation.state": {"min": [0.5215238928794861, 0.01332170981913805, 0.11560314148664474, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.19400277733802795, -0.20561003684997559, 0.1413150429725647, -0.8270171284675598, -0.20386165380477905, -0.83016037940979], "max": [0.5215315818786621, 0.013329439796507359, 0.11560314148664474, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.13113200664520264, -0.16525104641914368, 0.15360906720161438, -0.7253175377845764, 0.17831063270568848, -0.5778963565826416], "mean": [0.521527886390686, 0.013324907049536705, 0.11560314148664474, 2.450587272644043, -0.26124927401542664, -0.2017340511083603, -0.17454084753990173, -0.17683781683444977, 0.1493203043937683, -0.7663635611534119, 0.00804890412837267, -0.691994845867157], "std": [3.8122991554701002e-06, 3.8068196772655938e-06, 0.0, 0.00014901300892233849, 2.980232238769531e-07, 4.470348358154297e-07, 0.01844380795955658, 0.011063417419791222, 0.003987522795796394, 0.022388413548469543, 0.11832856386899948, 0.07468792796134949], "count": [162]}, "action": {"min": [-0.11920961737632751, -0.06539030373096466, 0.12113077193498611, 0.3424070179462433, 0.27548420429229736, 0.47312113642692566, 0.7634437680244446, 0.17345061898231506, -0.0935538038611412, 0.10156020522117615, -0.37488988041877747, -0.07280293852090836, 0.8974972367286682, -0.3122139573097229], "max": [-0.11920787394046783, -0.06538855284452438, 0.12113253772258759, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.18099303543567657, -0.08471261709928513, 0.11169183254241943, -0.2601335346698761, 0.11099649965763092, 0.9162800908088684, -0.20820876955986023], "mean": [-0.11920887976884842, -0.06538933515548706, 0.12113167345523834, 0.34241053462028503, 0.2754962146282196, 0.47327542304992676, 0.7634568214416504, 0.17561854422092438, -0.09087888151407242, 0.10732457786798477, -0.31655260920524597, 0.03166516497731209, 0.9084177017211914, -0.2616233229637146], "std": [5.707190666726092e-07, 5.786795327367145e-07, 4.5635403012056486e-07, 2.7669655082718236e-06, 2.230021527793724e-05, 6.407660112017766e-05, 3.075357017223723e-05, 0.002307252027094364, 0.0026329094544053078, 0.00350382924079895, 0.030666794627904892, 0.05857549235224724, 0.004179023206233978, 0.027072004973888397], "count": [162]}, "timestamp": {"min": [0.0], "max": [5.366666666666666], "mean": [2.683333333333333], "std": [1.5588160274411498], "count": [162]}, "frame_index": {"min": [0], "max": [161], "mean": [80.5], "std": [46.76448082323449], "count": [162]}, "episode_index": {"min": [432], "max": [432], "mean": [432.0], "std": [0.0], "count": [162]}, "index": {"min": [208373], "max": [208534], "mean": [208453.5], "std": [46.76448082323449], "count": [162]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [162]}}} +{"episode_index": 433, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7078410593681916]], [[0.6732652124183006]], [[0.6244883578431373]]], "std": [[[0.2417143210381961]], [[0.23114284115978007]], [[0.2535206391679075]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7078410593681916]], [[0.6732652124183006]], [[0.6244883578431373]]], "std": [[[0.2417143210381961]], [[0.23114284115978007]], [[0.2535206391679075]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.01332170981913805, 0.11560314148664474, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.19519980251789093, -0.20921656489372253, 0.14115819334983826, -0.9111027717590332, -0.3646828234195709, -0.8069306015968323], "max": [0.5215315818786621, 0.013329439796507359, 0.11560314148664474, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.1112305223941803, -0.1600150316953659, 0.15662941336631775, -0.675620973110199, 0.218071848154068, -0.43228811025619507], "mean": [0.5215285420417786, 0.013325720094144344, 0.11560306698083878, 2.450594902038574, -0.261249303817749, -0.20173388719558716, -0.16731764376163483, -0.17516887187957764, 0.1489121913909912, -0.7382977604866028, -0.018979785963892937, -0.6984285712242126], "std": [3.6713142890221206e-06, 3.8621624298684765e-06, 7.450580596923828e-08, 0.00014160931459628046, 3.2782554626464844e-07, 2.8312206268310547e-07, 0.029151132330298424, 0.01520461030304432, 0.0046806251630187035, 0.061246294528245926, 0.14347484707832336, 0.09869833290576935], "count": [183]}, "action": {"min": [-0.11921067535877228, -0.06539030373096466, 0.12113077193498611, 0.3424059748649597, 0.2754824161529541, 0.47312113642692566, 0.7634437680244446, 0.1723724901676178, -0.09563601762056351, 0.10213183611631393, -0.3738519251346588, -0.16381454467773438, 0.8898642063140869, -0.3183688223361969], "max": [-0.11920787394046783, -0.06538855284452438, 0.12113308161497116, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.18280841410160065, -0.08400032669305801, 0.11490003019571304, -0.2638747990131378, 0.12490537762641907, 0.9118906259536743, -0.15727654099464417], "mean": [-0.11920886486768723, -0.06538919359445572, 0.12113171070814133, 0.34241002798080444, 0.27549564838409424, 0.47327882051467896, 0.763455331325531, 0.17646607756614685, -0.09058122336864471, 0.10713911801576614, -0.3330262303352356, 0.03039359301328659, 0.9001712203025818, -0.2639155089855194], "std": [5.438614607555792e-07, 6.078444698687235e-07, 4.0593045014247764e-07, 2.6153743419854436e-06, 2.11445822060341e-05, 6.089228190830909e-05, 2.92607528535882e-05, 0.003622987074777484, 0.003145866794511676, 0.004175898153334856, 0.03143741190433502, 0.07580737769603729, 0.005505547858774662, 0.03800760209560394], "count": [183]}, "timestamp": {"min": [0.0], "max": [6.066666666666666], "mean": [3.0333333333333337], "std": [1.760892029836225], "count": [183]}, "frame_index": {"min": [0], "max": [182], "mean": [91.0], "std": [52.82676089508675], "count": [183]}, "episode_index": {"min": [433], "max": [433], "mean": [433.0], "std": [0.0], "count": [183]}, "index": {"min": [208535], "max": [208717], "mean": [208626.0], "std": [52.82676089508675], "count": [183]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [183]}}} +{"episode_index": 434, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6996813752723311]], [[0.6647098338779956]], [[0.614495174291939]]], "std": [[[0.24834442961585362]], [[0.2360055295640605]], [[0.2573968844060099]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6996813752723311]], [[0.6647098338779956]], [[0.614495174291939]]], "std": [[[0.24834442961585362]], [[0.2360055295640605]], [[0.2573968844060099]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.01332170981913805, 0.11560314148664474, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.19957086443901062, -0.20159421861171722, 0.14152765274047852, -0.9454919695854187, -0.27791863679885864, -0.8171884417533875], "max": [0.5215315818786621, 0.013329439796507359, 0.11560314148664474, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.12519322335720062, -0.16796943545341492, 0.1558244228363037, -0.7219624519348145, 0.20809738337993622, -0.4540049433708191], "mean": [0.5215286016464233, 0.013326371088624, 0.11560319364070892, 2.4505815505981445, -0.26124924421310425, -0.2017340362071991, -0.18556953966617584, -0.17954690754413605, 0.14833621680736542, -0.7625213265419006, 0.0788695439696312, -0.7225603461265564], "std": [3.689181994559476e-06, 3.7804215935466345e-06, 5.21540641784668e-08, 0.00015418669499922544, 2.682209014892578e-07, 4.3213367462158203e-07, 0.014836790971457958, 0.008599258959293365, 0.004351802170276642, 0.0332498736679554, 0.08833758533000946, 0.05961255729198456], "count": [149]}, "action": {"min": [-0.11921067535877228, -0.06539030373096466, 0.12113077193498611, 0.3424059748649597, 0.2754824161529541, 0.47312113642692566, 0.7634437680244446, 0.17213882505893707, -0.09285009652376175, 0.10073163360357285, -0.3417164981365204, -0.15079741179943085, 0.9017715454101562, -0.3117627203464508], "max": [-0.11920787394046783, -0.06538855284452438, 0.12113308161497116, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.18152926862239838, -0.08475799113512039, 0.11343029141426086, -0.25449249148368835, 0.1116769015789032, 0.9204244613647461, -0.15971490740776062], "mean": [-0.11920877546072006, -0.06538911163806915, 0.12113171815872192, 0.3424099385738373, 0.2754976451396942, 0.4732729494571686, 0.7634578943252563, 0.17470091581344604, -0.09009812772274017, 0.10647894442081451, -0.3010445237159729, 0.06095070764422417, 0.9094000458717346, -0.2747027277946472], "std": [5.654682126987609e-07, 5.986229325571912e-07, 4.3052668274867756e-07, 2.762047188298311e-06, 2.313430013600737e-05, 6.629794370383024e-05, 3.179197301506065e-05, 0.0019455826841294765, 0.0025170636363327503, 0.003706939984112978, 0.0237899012863636, 0.04486730694770813, 0.004801498726010323, 0.02419009618461132], "count": [149]}, "timestamp": {"min": [0.0], "max": [4.933333333333334], "mean": [2.4666666666666663], "std": [1.4337208778404378], "count": [149]}, "frame_index": {"min": [0], "max": [148], "mean": [74.0], "std": [43.01162633521314], "count": [149]}, "episode_index": {"min": [434], "max": [434], "mean": [434.0], "std": [0.0], "count": [149]}, "index": {"min": [208718], "max": [208866], "mean": [208792.0], "std": [43.01162633521314], "count": [149]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [149]}}} +{"episode_index": 435, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6989336138344227]], [[0.6689294253812637]], [[0.6204542320261438]]], "std": [[[0.2504280109694641]], [[0.2390227726155977]], [[0.2622539561726266]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6989336138344227]], [[0.6689294253812637]], [[0.6204542320261438]]], "std": [[[0.2504280109694641]], [[0.2390227726155977]], [[0.2622539561726266]]], "count": [100]}, "observation.state": {"min": [0.5215238928794861, 0.01332170981913805, 0.11560314148664474, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.18512162566184998, -0.21204307675361633, 0.14081597328186035, -0.9419272541999817, -0.23241868615150452, -0.8205307126045227], "max": [0.5215315818786621, 0.013329439796507359, 0.11560314148664474, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.14293234050273895, -0.1617680937051773, 0.15543295443058014, -0.7557225823402405, 0.09099990874528885, -0.6495277881622314], "mean": [0.5215292572975159, 0.013326871208846569, 0.11560317128896713, 2.4505839347839355, -0.26124924421310425, -0.20173406600952148, -0.16909998655319214, -0.181609645485878, 0.14893491566181183, -0.8366712331771851, -0.005494753364473581, -0.7225388884544373], "std": [3.2031964565248927e-06, 3.6379965422383975e-06, 2.9802322387695312e-08, 0.0001502522500231862, 2.682209014892578e-07, 4.6193599700927734e-07, 0.013255632482469082, 0.017124662175774574, 0.00453451182693243, 0.05260472744703293, 0.07677774876356125, 0.043890874832868576], "count": [154]}, "action": {"min": [-0.11920961737632751, -0.06539030373096466, 0.12113077193498611, 0.3424070179462433, 0.27548420429229736, 0.47312113642692566, 0.7634437680244446, 0.17404262721538544, -0.09383393824100494, 0.10146327316761017, -0.34256651997566223, -0.04134029895067215, 0.9093027710914612, -0.26274141669273376], "max": [-0.11920787394046783, -0.06538855284452438, 0.12113253772258759, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.1795330047607422, -0.08477335423231125, 0.1132436990737915, -0.26656392216682434, 0.0946711003780365, 0.9333245158195496, -0.14052337408065796], "mean": [-0.11920872330665588, -0.06538902968168259, 0.12113174796104431, 0.34240975975990295, 0.2754976153373718, 0.47327402234077454, 0.763457715511322, 0.1763627827167511, -0.09127114713191986, 0.10668894648551941, -0.3041287064552307, 0.037369005382061005, 0.9227293729782104, -0.228204607963562], "std": [4.997849600840709e-07, 5.777658884653647e-07, 3.87715260785626e-07, 2.6542118121142266e-06, 2.247737575089559e-05, 6.461026350734755e-05, 3.100050162174739e-05, 0.00201118690893054, 0.002694017719477415, 0.00424486817792058, 0.017602819949388504, 0.03256428986787796, 0.007241680286824703, 0.034357596188783646], "count": [154]}, "timestamp": {"min": [0.0], "max": [5.1], "mean": [2.55], "std": [1.4818344486930155], "count": [154]}, "frame_index": {"min": [0], "max": [153], "mean": [76.5], "std": [44.45503346079047], "count": [154]}, "episode_index": {"min": [435], "max": [435], "mean": [435.0], "std": [0.0], "count": [154]}, "index": {"min": [208867], "max": [209020], "mean": [208943.5], "std": [44.45503346079047], "count": [154]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [154]}}} +{"episode_index": 436, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7077922603485839]], [[0.6783724782135077]], [[0.6289781100217865]]], "std": [[[0.2443884837649138]], [[0.23215163372608072]], [[0.2554069326774236]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7077922603485839]], [[0.6783724782135077]], [[0.6289781100217865]]], "std": [[[0.2443884837649138]], [[0.23215163372608072]], [[0.2554069326774236]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.1870909333229065, -0.20304608345031738, 0.14172856509685516, -0.8813268542289734, -0.43190798163414, -0.8426486253738403], "max": [0.5215315818786621, 0.013329439796507359, 0.11560314148664474, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.0693964809179306, -0.17303554713726044, 0.15407444536685944, -0.7003644108772278, 0.07733625918626785, -0.6823872923851013], "mean": [0.5215290784835815, 0.013327494263648987, 0.11560236662626266, 2.4505796432495117, -0.26124924421310425, -0.2017340362071991, -0.14741352200508118, -0.17968866229057312, 0.1480729579925537, -0.8133559226989746, -0.13237400352954865, -0.7548356056213379], "std": [3.5725076941162115e-06, 3.3472024369984865e-06, 6.55802978144493e-07, 0.0001549370790598914, 2.682209014892578e-07, 4.3213367462158203e-07, 0.04655948281288147, 0.005951611790806055, 0.003932012710720301, 0.058091819286346436, 0.19630974531173706, 0.05096675455570221], "count": [148]}, "action": {"min": [-0.11921067535877228, -0.06539025902748108, 0.12112978845834732, 0.3424059748649597, 0.2754810154438019, 0.47312113642692566, 0.7634437680244446, 0.17338170111179352, -0.09383376687765121, 0.10135376453399658, -0.4426977336406708, -0.07892615348100662, 0.8753962516784668, -0.2370341718196869], "max": [-0.11920852214097977, -0.06538800895214081, 0.12113308161497116, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.1880195438861847, -0.08621953427791595, 0.11126203089952469, -0.27745774388313293, 0.09007255733013153, 0.9311090111732483, -0.16186285018920898], "mean": [-0.11920896917581558, -0.06538865715265274, 0.12113134562969208, 0.3424094617366791, 0.27549824118614197, 0.4732722342014313, 0.7634587287902832, 0.17876708507537842, -0.09119481593370438, 0.10573051869869232, -0.3476200997829437, 0.02286987565457821, 0.9109582901000977, -0.19927135109901428], "std": [5.622247272185632e-07, 5.9242216821076e-07, 7.074330596879008e-07, 2.7105725166620687e-06, 2.3095844881027006e-05, 6.664943794021383e-05, 3.198240665369667e-05, 0.005474659614264965, 0.0023575949016958475, 0.0032513535115867853, 0.05985749512910843, 0.0669664740562439, 0.019784094765782356, 0.02498023211956024], "count": [148]}, "timestamp": {"min": [0.0], "max": [4.9], "mean": [2.4499999999999997], "std": [1.424098155168932], "count": [148]}, "frame_index": {"min": [0], "max": [147], "mean": [73.5], "std": [42.72294465506796], "count": [148]}, "episode_index": {"min": [436], "max": [436], "mean": [436.0], "std": [0.0], "count": [148]}, "index": {"min": [209021], "max": [209168], "mean": [209094.5], "std": [42.72294465506796], "count": [148]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [148]}}} +{"episode_index": 437, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7154170234204793]], [[0.6855864215686274]], [[0.6358924700435731]]], "std": [[[0.24138288016536688]], [[0.22933957867044877]], [[0.25222837906647183]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7154170234204793]], [[0.6855864215686274]], [[0.6358924700435731]]], "std": [[[0.24138288016536688]], [[0.22933957867044877]], [[0.25222837906647183]]], "count": [100]}, "observation.state": {"min": [0.5215238928794861, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.2615222632884979, -0.20173360407352448, -0.18705230951309204, -0.1981498748064041, 0.13708136975765228, -0.8565834164619446, -0.3997983932495117, -0.8767179846763611], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20151077210903168, -0.09295081347227097, -0.15647028386592865, 0.15443481504917145, -0.7175589799880981, 0.06394588202238083, -0.6846768260002136], "mean": [0.5215293765068054, 0.013327364809811115, 0.11560177803039551, 2.45058012008667, -0.26129040122032166, -0.20170044898986816, -0.15218566358089447, -0.1729985624551773, 0.14666378498077393, -0.7873367667198181, -0.15526211261749268, -0.7684704661369324], "std": [3.141725073874113e-06, 3.4201984817627817e-06, 7.450580596923828e-08, 0.00015545405040029436, 9.77667368715629e-05, 7.971725426614285e-05, 0.0332699753344059, 0.012300138361752033, 0.005596516653895378, 0.03149615600705147, 0.1360405683517456, 0.05180058255791664], "count": [146]}, "action": {"min": [-0.11921025812625885, -0.06538975983858109, 0.12112978845834732, 0.3422510623931885, 0.27548420429229736, 0.47312113642692566, 0.7634437680244446, 0.17390607297420502, -0.09325751662254333, 0.09822265803813934, -0.4277610182762146, -0.055208031088113785, 0.883662760257721, -0.25220057368278503], "max": [-0.1192081868648529, -0.06538574397563934, 0.12113155424594879, 0.3424174189567566, 0.275551438331604, 0.4733581244945526, 0.763532817363739, 0.1858026087284088, -0.08271769434213638, 0.11183740198612213, -0.2904421091079712, 0.10024766623973846, 0.9232653379440308, -0.1311100721359253], "mean": [-0.1192091852426529, -0.06538812071084976, 0.1211308017373085, 0.34238603711128235, 0.2755070924758911, 0.47328075766563416, 0.763460636138916, 0.17808681726455688, -0.08963598310947418, 0.10517513006925583, -0.36670970916748047, 0.03056003339588642, 0.9058524370193481, -0.19845402240753174], "std": [5.638567586174759e-07, 1.0055086931970436e-06, 3.9060029166648746e-07, 5.625323683489114e-05, 2.8132428269600496e-05, 7.327572529902682e-05, 3.1565537938149646e-05, 0.004178432282060385, 0.0031221401877701283, 0.004826290067285299, 0.03678891435265541, 0.048121050000190735, 0.008671645075082779, 0.02988884598016739], "count": [146]}, "timestamp": {"min": [0.0], "max": [4.833333333333333], "mean": [2.4166666666666665], "std": [1.4048527008591012], "count": [146]}, "frame_index": {"min": [0], "max": [145], "mean": [72.5], "std": [42.14558102577303], "count": [146]}, "episode_index": {"min": [437], "max": [437], "mean": [437.0], "std": [0.0], "count": [146]}, "index": {"min": [209169], "max": [209314], "mean": [209241.5], "std": [42.14558102577303], "count": [146]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [146]}}} +{"episode_index": 438, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7191973720043573]], [[0.6942830637254902]], [[0.6462660021786493]]], "std": [[[0.2402758456228207]], [[0.2273693364678734]], [[0.25179360695002584]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7191973720043573]], [[0.6942830637254902]], [[0.6462660021786493]]], "std": [[[0.2402758456228207]], [[0.2273693364678734]], [[0.25179360695002584]]], "count": [100]}, "observation.state": {"min": [0.5215238928794861, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.1616908609867096, -0.19648176431655884, 0.1414913535118103, -0.8741973638534546, -0.27313634753227234, -0.782498300075531], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.10670500248670578, -0.15278655290603638, 0.15599295496940613, -0.783401608467102, -0.06435579061508179, -0.6656923890113831], "mean": [0.5215299725532532, 0.013328143395483494, 0.11560182273387909, 2.450585126876831, -0.26124924421310425, -0.20173406600952148, -0.14503005146980286, -0.1703154593706131, 0.14774565398693085, -0.8282862305641174, -0.18340452015399933, -0.7370655536651611], "std": [2.5555284537404077e-06, 2.8734775696648285e-06, 2.9802322387695312e-08, 0.00015094342234078795, 2.682209014892578e-07, 4.6193599700927734e-07, 0.019587021321058273, 0.016036897897720337, 0.005112675949931145, 0.02512056566774845, 0.04658627510070801, 0.032658498734235764], "count": [157]}, "action": {"min": [-0.11921025812625885, -0.06538975983858109, 0.12112978845834732, 0.3424070179462433, 0.27548420429229736, 0.47312113642692566, 0.7634437680244446, 0.17582851648330688, -0.09374422580003738, 0.09944421052932739, -0.3887230157852173, -0.01004672609269619, 0.9056603312492371, -0.23989833891391754], "max": [-0.11920852214097977, -0.06538800895214081, 0.12113155424594879, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.184114009141922, -0.08520176261663437, 0.11398483067750931, -0.3255673348903656, 0.04100678861141205, 0.9226343035697937, -0.16319330036640167], "mean": [-0.11920925229787827, -0.06538823992013931, 0.12113091349601746, 0.3424091339111328, 0.27549806237220764, 0.47327470779418945, 0.7634573578834534, 0.1786605715751648, -0.0902031734585762, 0.10631648451089859, -0.3589036166667938, 0.011252140626311302, 0.9148153066635132, -0.1827898621559143], "std": [4.2146220380345767e-07, 4.635157893062569e-07, 3.448099903380353e-07, 2.534537088649813e-06, 2.2578160496777855e-05, 6.491193198598921e-05, 3.111561090918258e-05, 0.002983418060466647, 0.0023542388807982206, 0.004945321474224329, 0.015957912430167198, 0.012570936232805252, 0.004632437136024237, 0.018107887357473373], "count": [157]}, "timestamp": {"min": [0.0], "max": [5.2], "mean": [2.6], "std": [1.5107025591499545], "count": [157]}, "frame_index": {"min": [0], "max": [156], "mean": [78.0], "std": [45.32107677449864], "count": [157]}, "episode_index": {"min": [438], "max": [438], "mean": [438.0], "std": [0.0], "count": [157]}, "index": {"min": [209315], "max": [209471], "mean": [209393.0], "std": [45.32107677449864], "count": [157]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [157]}}} +{"episode_index": 439, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.709538281590414]], [[0.6835475871459695]], [[0.6348163562091503]]], "std": [[[0.24468717068941828]], [[0.23203012259931696]], [[0.2554497175446952]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.709538281590414]], [[0.6835475871459695]], [[0.6348163562091503]]], "std": [[[0.24468717068941828]], [[0.23203012259931696]], [[0.2554497175446952]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.17917512357234955, -0.20836706459522247, 0.14065265655517578, -0.8758748769760132, -0.23774750530719757, -0.7960132360458374], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.10922261327505112, -0.15802255272865295, 0.15504665672779083, -0.7913698554039001, -0.04700295999646187, -0.6923149824142456], "mean": [0.5215293765068054, 0.013327797874808311, 0.1156018003821373, 2.4505786895751953, -0.26124924421310425, -0.2017340511083603, -0.15880055725574493, -0.17735867202281952, 0.14693525433540344, -0.8337934613227844, -0.1581539809703827, -0.7442612051963806], "std": [3.259891173001961e-06, 3.151412329316372e-06, 5.21540641784668e-08, 0.00015580056060571223, 2.682209014892578e-07, 4.470348358154297e-07, 0.022488877177238464, 0.01620510220527649, 0.004613060969859362, 0.0279864314943552, 0.04496588185429573, 0.03055986948311329], "count": [152]}, "action": {"min": [-0.11921066045761108, -0.06538975983858109, 0.12112978845834732, 0.3424070179462433, 0.27548420429229736, 0.47312113642692566, 0.7634437680244446, 0.17407214641571045, -0.09374231100082397, 0.09763479977846146, -0.3807797431945801, -0.013418290764093399, 0.9076489210128784, -0.23499064147472382], "max": [-0.11920852214097977, -0.06538800895214081, 0.12113155424594879, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763534665107727, 0.1841038465499878, -0.08634121716022491, 0.1124001294374466, -0.3228286802768707, 0.054751649498939514, 0.9228916764259338, -0.15750406682491302], "mean": [-0.11920931190252304, -0.06538832932710648, 0.12113089114427567, 0.34240931272506714, 0.27549856901168823, 0.4732719361782074, 0.7634590268135071, 0.17707428336143494, -0.09020700305700302, 0.10494183003902435, -0.3556665778160095, 0.018356936052441597, 0.9158132672309875, -0.18314112722873688], "std": [4.5295246309251525e-07, 5.222012191552494e-07, 3.068729768074263e-07, 2.407010242677643e-06, 2.305849193362519e-05, 6.700724043184891e-05, 3.233338793506846e-05, 0.003355179214850068, 0.0020679833833128214, 0.004512005485594273, 0.014118262566626072, 0.01877448707818985, 0.00460063898935914, 0.01833292283117771], "count": [152]}, "timestamp": {"min": [0.0], "max": [5.033333333333333], "mean": [2.5166666666666666], "std": [1.4625890286292547], "count": [152]}, "frame_index": {"min": [0], "max": [151], "mean": [75.5], "std": [43.877670858877636], "count": [152]}, "episode_index": {"min": [439], "max": [439], "mean": [439.0], "std": [0.0], "count": [152]}, "index": {"min": [209472], "max": [209623], "mean": [209547.5], "std": [43.877670858877636], "count": [152]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [152]}}} +{"episode_index": 440, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7224274972766885]], [[0.6934425190631809]], [[0.6448599046840958]]], "std": [[[0.23803817588403461]], [[0.22659111859992986]], [[0.25029381990849014]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7224274972766885]], [[0.6934425190631809]], [[0.6448599046840958]]], "std": [[[0.23803817588403461]], [[0.22659111859992986]], [[0.25029381990849014]]], "count": [100]}, "observation.state": {"min": [0.5215238928794861, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.16639399528503418, -0.18605607748031616, 0.14179727435112, -0.9494760632514954, -0.47645145654678345, -0.845209002494812], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.08042453974485397, -0.1431640237569809, 0.15453332662582397, -0.6772985458374023, -0.03593539819121361, -0.5347834825515747], "mean": [0.5215296745300293, 0.013328351080417633, 0.11560174822807312, 2.450568914413452, -0.2612491846084595, -0.20173396170139313, -0.14118176698684692, -0.16139140725135803, 0.1480497568845749, -0.8321506977081299, -0.22785994410514832, -0.6925935745239258], "std": [2.9526868274842855e-06, 2.678486225704546e-06, 1.043081283569336e-07, 0.0001634725194890052, 2.086162567138672e-07, 3.5762786865234375e-07, 0.030743928626179695, 0.010658334009349346, 0.004336024168878794, 0.08253996819257736, 0.14059394598007202, 0.09544200450181961], "count": [129]}, "action": {"min": [-0.11921025812625885, -0.06538975983858109, 0.12112978845834732, 0.3424070179462433, 0.27548420429229736, 0.47312113642692566, 0.7634437680244446, 0.17565327882766724, -0.09302721172571182, 0.10214448720216751, -0.44896218180656433, -0.15501712262630463, 0.8572011590003967, -0.2305307537317276], "max": [-0.11920852214097977, -0.06538800895214081, 0.12113155424594879, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.186574786901474, -0.08340699225664139, 0.11240172386169434, -0.305977463722229, 0.08005579560995102, 0.9309847354888916, -0.12926410138607025], "mean": [-0.11920925974845886, -0.06538830697536469, 0.12113082408905029, 0.34240928292274475, 0.27550023794174194, 0.4732677936553955, 0.7634608745574951, 0.1789143979549408, -0.08961443603038788, 0.10704394429922104, -0.3646811246871948, -0.014666554518043995, 0.9081882238388062, -0.17947813868522644], "std": [4.353224198894168e-07, 4.7265220359804516e-07, 3.957651983910182e-07, 2.8700308121187845e-06, 2.406278690614272e-05, 7.039326737867668e-05, 3.378954716026783e-05, 0.003877262119203806, 0.0029341031331568956, 0.003708113683387637, 0.04550585895776749, 0.07758049666881561, 0.026118259876966476, 0.03166725113987923], "count": [129]}, "timestamp": {"min": [0.0], "max": [4.266666666666667], "mean": [2.1333333333333333], "std": [1.2412657816683503], "count": [129]}, "frame_index": {"min": [0], "max": [128], "mean": [64.0], "std": [37.23797345005051], "count": [129]}, "episode_index": {"min": [440], "max": [440], "mean": [440.0], "std": [0.0], "count": [129]}, "index": {"min": [209624], "max": [209752], "mean": [209688.0], "std": [37.23797345005051], "count": [129]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [129]}}} +{"episode_index": 441, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7222340332244008]], [[0.6938989351851852]], [[0.6445248937908497]]], "std": [[[0.23850244478331573]], [[0.22553070925088714]], [[0.24869634154000994]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7222340332244008]], [[0.6938989351851852]], [[0.6445248937908497]]], "std": [[[0.23850244478331573]], [[0.22553070925088714]], [[0.24869634154000994]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.18881310522556305, -0.19316871464252472, 0.1389882117509842, -0.9433950781822205, -0.5663582682609558, -0.79926997423172], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.0815906673669815, -0.13594326376914978, 0.1543375849723816, -0.6370380520820618, 0.15521906316280365, -0.47811806201934814], "mean": [0.5215284824371338, 0.013328691944479942, 0.1156020238995552, 2.450556993484497, -0.2612493336200714, -0.20173364877700806, -0.15751950442790985, -0.16200830042362213, 0.14769268035888672, -0.7591987252235413, -0.16486810147762299, -0.6539027690887451], "std": [3.8721718738088384e-06, 2.295929334650282e-06, 1.7136335372924805e-07, 0.00017310290422756225, 3.5762786865234375e-07, 4.470348358154297e-08, 0.028102731332182884, 0.014455280266702175, 0.004676536191254854, 0.09440568089485168, 0.2090478390455246, 0.09429072588682175], "count": [225]}, "action": {"min": [-0.11921132355928421, -0.06538975983858109, 0.12112978845834732, 0.3424059748649597, 0.2754810154438019, 0.47312113642692566, 0.7634437680244446, 0.17392009496688843, -0.09222421050071716, 0.1004045233130455, -0.44650885462760925, -0.16761913895606995, 0.8593054413795471, -0.32018741965293884], "max": [-0.11920852214097977, -0.06538800895214081, 0.12113209813833237, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.1863061934709549, -0.08262328058481216, 0.11374540627002716, -0.26937904953956604, 0.093666210770607, 0.9181035757064819, -0.08691492676734924], "mean": [-0.11920952796936035, -0.06538829952478409, 0.12113114446401596, 0.3424091339111328, 0.2755017578601837, 0.4732632637023926, 0.7634629607200623, 0.17714925110340118, -0.08896201103925705, 0.10677415877580643, -0.3680024743080139, -0.014370600692927837, 0.8944287896156311, -0.2263796329498291], "std": [6.444688551709987e-07, 3.9944595187080267e-07, 4.5046357399769477e-07, 2.737604290814488e-06, 2.6125739168492146e-05, 7.441909838235006e-05, 3.5600605770014226e-05, 0.003040560521185398, 0.0025099830236285925, 0.004531064070761204, 0.051685579121112823, 0.07905697822570801, 0.014915737323462963, 0.06302965432405472], "count": [225]}, "timestamp": {"min": [0.0], "max": [7.466666666666667], "mean": [3.7333333333333334], "std": [2.1650421260121955], "count": [225]}, "frame_index": {"min": [0], "max": [224], "mean": [112.0], "std": [64.95126378036586], "count": [225]}, "episode_index": {"min": [441], "max": [441], "mean": [441.0], "std": [0.0], "count": [225]}, "index": {"min": [209753], "max": [209977], "mean": [209865.0], "std": [64.95126378036586], "count": [225]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [225]}}} +{"episode_index": 442, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7255587282135076]], [[0.69805102124183]], [[0.6496146514161221]]], "std": [[[0.2373456888279483]], [[0.2254984270059244]], [[0.24976655937909617]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7255587282135076]], [[0.69805102124183]], [[0.6496146514161221]]], "std": [[[0.2373456888279483]], [[0.2254984270059244]], [[0.24976655937909617]]], "count": [100]}, "observation.state": {"min": [0.5215238928794861, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.16132016479969025, -0.17066466808319092, 0.1412450522184372, -0.805628776550293, -0.34487053751945496, -0.8232216835021973], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.09888958930969238, -0.14677825570106506, 0.1544036865234375, -0.663668692111969, 0.02568765915930271, -0.6850023865699768], "mean": [0.521529495716095, 0.013329105451703072, 0.11560186743736267, 2.450587034225464, -0.26124927401542664, -0.20173399150371552, -0.1425085812807083, -0.1556626558303833, 0.14820697903633118, -0.7445361018180847, -0.15184789896011353, -0.7437661290168762], "std": [2.976355517603224e-06, 1.5447035366378259e-06, 1.4901161193847656e-08, 0.00014752578863408417, 2.980232238769531e-07, 3.8743019104003906e-07, 0.021908657625317574, 0.0056640817783772945, 0.005016077775508165, 0.05132250487804413, 0.12462115287780762, 0.03974059969186783], "count": [168]}, "action": {"min": [-0.11921025812625885, -0.06538944691419601, 0.12112978845834732, 0.3424070179462433, 0.27548420429229736, 0.4731214642524719, 0.7634437680244446, 0.1766359508037567, -0.09244662523269653, 0.10318314284086227, -0.4351980984210968, -0.03964976593852043, 0.8745649456977844, -0.267661452293396], "max": [-0.11920852214097977, -0.06538800895214081, 0.12113155424594879, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.18501131236553192, -0.08321734517812729, 0.11393644660711288, -0.3082744777202606, 0.09087315201759338, 0.9126920104026794, -0.17999030649662018], "mean": [-0.11920930445194244, -0.06538810580968857, 0.12113111466169357, 0.3424086570739746, 0.2754979133605957, 0.47327569127082825, 0.7634572386741638, 0.17921529710292816, -0.088915154337883, 0.10811593383550644, -0.368842214345932, 0.025310542434453964, 0.8991442918777466, -0.22454482316970825], "std": [4.694787776315934e-07, 2.765361273304734e-07, 3.534966594997968e-07, 2.2459762476501055e-06, 2.2112510123406537e-05, 6.342590495478362e-05, 3.0411745683522895e-05, 0.0028723578434437513, 0.0028353596571832895, 0.004165496211498976, 0.04021798446774483, 0.04537435621023178, 0.01358330063521862, 0.023929961025714874], "count": [168]}, "timestamp": {"min": [0.0], "max": [5.566666666666666], "mean": [2.783333333333333], "std": [1.616552115071067], "count": [168]}, "frame_index": {"min": [0], "max": [167], "mean": [83.5], "std": [48.496563452132015], "count": [168]}, "episode_index": {"min": [442], "max": [442], "mean": [442.0], "std": [0.0], "count": [168]}, "index": {"min": [209978], "max": [210145], "mean": [210061.5], "std": [48.496563452132015], "count": [168]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [168]}}} +{"episode_index": 443, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7212434967320261]], [[0.6939630528322439]], [[0.6455927913943356]]], "std": [[[0.23724035177794947]], [[0.226084658367944]], [[0.25013651400740844]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7212434967320261]], [[0.6939630528322439]], [[0.6455927913943356]]], "std": [[[0.23724035177794947]], [[0.226084658367944]], [[0.25013651400740844]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.15752831101417542, -0.1942344456911087, 0.1417791247367859, -0.7276241183280945, -0.32082250714302063, -0.8709440231323242], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.10290542244911194, -0.1434343159198761, 0.1537996232509613, -0.6424899697303772, -0.09059000015258789, -0.711936354637146], "mean": [0.5215298533439636, 0.013329079374670982, 0.11560182273387909, 2.450585126876831, -0.26124924421310425, -0.20173406600952148, -0.1472778022289276, -0.15645746886730194, 0.14800377190113068, -0.6813281178474426, -0.21074390411376953, -0.781200110912323], "std": [2.810068053804571e-06, 1.5954913124005543e-06, 2.9802322387695312e-08, 0.00015094342234078795, 2.682209014892578e-07, 4.6193599700927734e-07, 0.010666243731975555, 0.01570124924182892, 0.004430732689797878, 0.02363353781402111, 0.07403374463319778, 0.04605107009410858], "count": [157]}, "action": {"min": [-0.11921132355928421, -0.06538944691419601, 0.12112978845834732, 0.3424059748649597, 0.2754824161529541, 0.4731214642524719, 0.7634437680244446, 0.17678657174110413, -0.09166543930768967, 0.09994170814752579, -0.44883763790130615, -0.02935648523271084, 0.8683114051818848, -0.2548110783100128], "max": [-0.11920852214097977, -0.06538800895214081, 0.12113209813833237, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.1844659149646759, -0.08366125077009201, 0.11360479146242142, -0.3714347183704376, 0.09167755395174026, 0.8920791149139404, -0.19788575172424316], "mean": [-0.11920926719903946, -0.06538812071084976, 0.12113099545240402, 0.3424087166786194, 0.27549830079078674, 0.473274827003479, 0.7634575963020325, 0.1783599555492401, -0.08910488337278366, 0.10745931416749954, -0.41209036111831665, 0.029473362490534782, 0.8820230960845947, -0.22130931913852692], "std": [4.339935344432888e-07, 2.917899450949335e-07, 3.081594570630841e-07, 2.2454062218457693e-06, 2.250485158583615e-05, 6.490984378615394e-05, 3.1183939427137375e-05, 0.0015333228511735797, 0.002495985943824053, 0.004431200213730335, 0.02411644533276558, 0.03750045597553253, 0.007398452144116163, 0.01808658242225647], "count": [157]}, "timestamp": {"min": [0.0], "max": [5.2], "mean": [2.6], "std": [1.5107025591499545], "count": [157]}, "frame_index": {"min": [0], "max": [156], "mean": [78.0], "std": [45.32107677449864], "count": [157]}, "episode_index": {"min": [443], "max": [443], "mean": [443.0], "std": [0.0], "count": [157]}, "index": {"min": [210146], "max": [210302], "mean": [210224.0], "std": [45.32107677449864], "count": [157]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [157]}}} +{"episode_index": 444, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7281136492374728]], [[0.7006996078431373]], [[0.6529305038126362]]], "std": [[[0.23314578577980197]], [[0.22213358131574049]], [[0.2464451721524518]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7281136492374728]], [[0.7006996078431373]], [[0.6529305038126362]]], "std": [[[0.23314578577980197]], [[0.22213358131574049]], [[0.2464451721524518]]], "count": [100]}, "observation.state": {"min": [0.5215238928794861, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.15510337054729462, -0.17642582952976227, 0.14287060499191284, -0.7662070393562317, -0.43354761600494385, -0.7349187731742859], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.10573194175958633, -0.13633713126182556, 0.15509073436260223, -0.6775082349777222, -0.2702670097351074, -0.6691492795944214], "mean": [0.5215297937393188, 0.013329101726412773, 0.11560177057981491, 2.450578212738037, -0.26124921441078186, -0.2017340362071991, -0.1373385637998581, -0.14780975878238678, 0.14866293966770172, -0.7146058678627014, -0.33483025431632996, -0.7050183415412903], "std": [2.7887779197044438e-06, 1.5396565231640125e-06, 8.195638656616211e-08, 0.00015620584599673748, 2.384185791015625e-07, 4.3213367462158203e-07, 0.01618129201233387, 0.010397939011454582, 0.004316049627959728, 0.02700791507959366, 0.053540680557489395, 0.018097251653671265], "count": [145]}, "action": {"min": [-0.11921025812625885, -0.06538944691419601, 0.12112978845834732, 0.3424070179462433, 0.27548420429229736, 0.4731214642524719, 0.7634444236755371, 0.17670433223247528, -0.09200861304998398, 0.10220137238502502, -0.45504721999168396, -0.06833506375551224, 0.8702630996704102, -0.21999317407608032], "max": [-0.11920852214097977, -0.06538800895214081, 0.12113155424594879, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763532817363739, 0.18341946601867676, -0.08441732078790665, 0.11405990272760391, -0.41314366459846497, -0.006269288714975119, 0.8912176489830017, -0.1651701033115387], "mean": [-0.11920925974845886, -0.06538814306259155, 0.12113096565008163, 0.34240883588790894, 0.275499165058136, 0.4732716977596283, 0.7634589672088623, 0.17889590561389923, -0.08905895799398422, 0.10811444371938705, -0.4312169849872589, -0.02788023091852665, 0.8807492256164551, -0.19146011769771576], "std": [4.273000797638815e-07, 3.1648988851884496e-07, 2.9594264105980983e-07, 2.317884991498431e-06, 2.3182110453490168e-05, 6.719605153193697e-05, 3.230494985473342e-05, 0.002269970951601863, 0.0024403659626841545, 0.003921465016901493, 0.012779561802744865, 0.019401540979743004, 0.005717446096241474, 0.01805250346660614], "count": [145]}, "timestamp": {"min": [0.0], "max": [4.8], "mean": [2.4], "std": [1.39522996909709], "count": [145]}, "frame_index": {"min": [0], "max": [144], "mean": [72.0], "std": [41.8568990729127], "count": [145]}, "episode_index": {"min": [444], "max": [444], "mean": [444.0], "std": [0.0], "count": [145]}, "index": {"min": [210303], "max": [210447], "mean": [210375.0], "std": [41.8568990729127], "count": [145]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [145]}}} +{"episode_index": 445, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7258990849673203]], [[0.6972189760348584]], [[0.648913515795207]]], "std": [[[0.23354626900321282]], [[0.2226817484563779]], [[0.24647754495405852]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7258990849673203]], [[0.6972189760348584]], [[0.648913515795207]]], "std": [[[0.23354626900321282]], [[0.2226817484563779]], [[0.24647754495405852]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.16495756804943085, -0.1826426237821579, 0.14232616126537323, -0.8326787948608398, -0.4038974940776825, -0.7337753772735596], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.11470574885606766, -0.1413414627313614, 0.15373998880386353, -0.7267853617668152, -0.13595332205295563, -0.6438620686531067], "mean": [0.5215297341346741, 0.013328895904123783, 0.11560174077749252, 2.4505724906921387, -0.2612491846084595, -0.20173397660255432, -0.14450059831142426, -0.15344317257404327, 0.14722737669944763, -0.7789961099624634, -0.2784631550312042, -0.6799910664558411], "std": [3.354979071445996e-06, 1.94847257262154e-06, 1.1175870895385742e-07, 0.00016176885401364416, 2.086162567138672e-07, 3.725290298461914e-07, 0.017982570454478264, 0.014183348044753075, 0.004298042971640825, 0.024158326908946037, 0.09392833709716797, 0.02485044300556183], "count": [132]}, "action": {"min": [-0.11921066045761108, -0.06538975983858109, 0.12112978845834732, 0.3424070179462433, 0.27548420429229736, 0.47312113642692566, 0.7634437680244446, 0.17624403536319733, -0.09107967466115952, 0.10056094080209732, -0.4349503517150879, -0.076786570250988, 0.8843299150466919, -0.23705463111400604], "max": [-0.11920852214097977, -0.06538800895214081, 0.12113155424594879, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763534665107727, 0.18238438665866852, -0.0836905688047409, 0.11326026171445847, -0.3586888909339905, 0.02749873884022236, 0.9146664142608643, -0.1570846289396286], "mean": [-0.11920925974845886, -0.06538820266723633, 0.12113089859485626, 0.3424088954925537, 0.2754998505115509, 0.4732692241668701, 0.7634601593017578, 0.178297221660614, -0.0884004607796669, 0.10679979622364044, -0.3970504403114319, -0.025920052081346512, 0.8968508243560791, -0.1862526386976242], "std": [4.3269045590932365e-07, 3.8251940281952557e-07, 3.214829007447406e-07, 2.4689218207640806e-06, 2.3609518393641338e-05, 6.964799104025587e-05, 3.364958320162259e-05, 0.002339879749342799, 0.002285272814333439, 0.004272771067917347, 0.024436891078948975, 0.03573087230324745, 0.0075796679593622684, 0.02676401473581791], "count": [132]}, "timestamp": {"min": [0.0], "max": [4.366666666666666], "mean": [2.1833333333333336], "std": [1.2701341428135615], "count": [132]}, "frame_index": {"min": [0], "max": [131], "mean": [65.5], "std": [38.10402428440685], "count": [132]}, "episode_index": {"min": [445], "max": [445], "mean": [445.0], "std": [0.0], "count": [132]}, "index": {"min": [210448], "max": [210579], "mean": [210513.5], "std": [38.10402428440685], "count": [132]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [132]}}} +{"episode_index": 446, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7271688861655773]], [[0.6962241557734205]], [[0.6479016802832244]]], "std": [[[0.23335492798210763]], [[0.22301261244736628]], [[0.24610060319185464]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7271688861655773]], [[0.6962241557734205]], [[0.6479016802832244]]], "std": [[[0.23335492798210763]], [[0.22301261244736628]], [[0.24610060319185464]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.15916551649570465, -0.18134520947933197, 0.13712415099143982, -0.8882465958595276, -0.45978182554244995, -0.7670400738716125], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.1042877808213234, -0.13564208149909973, 0.15367259085178375, -0.7823531627655029, -0.1878751963376999, -0.5460357666015625], "mean": [0.5215290784835815, 0.01332919578999281, 0.11560173332691193, 2.4505727291107178, -0.26124921441078186, -0.2017340064048767, -0.14159078896045685, -0.15582428872585297, 0.14507542550563812, -0.8216559886932373, -0.3238533139228821, -0.6527864336967468], "std": [3.830218247458106e-06, 1.2969779845661833e-06, 1.1920928955078125e-07, 0.0001595569192431867, 2.384185791015625e-07, 4.023313522338867e-07, 0.02136138640344143, 0.016092877835035324, 0.006009963806718588, 0.029630228877067566, 0.09690052270889282, 0.0525442436337471], "count": [138]}, "action": {"min": [-0.11921132355928421, -0.06538975983858109, 0.12112978845834732, 0.3424059748649597, 0.2754824161529541, 0.47312113642692566, 0.7634437680244446, 0.1759222149848938, -0.09118763357400894, 0.09609859436750412, -0.4400852620601654, -0.1115615963935852, 0.8787275552749634, -0.20084933936595917], "max": [-0.11920852214097977, -0.06538800895214081, 0.12113209813833237, 0.3424174189567566, 0.275551438331604, 0.4733024835586548, 0.763534665107727, 0.18393895030021667, -0.08113241195678711, 0.11306516826152802, -0.35807371139526367, 0.03527858108282089, 0.919737696647644, -0.1399265080690384], "mean": [-0.11920933425426483, -0.06538815796375275, 0.12113099545240402, 0.3424087464809418, 0.2754995822906494, 0.47326943278312683, 0.7634604573249817, 0.17863065004348755, -0.087380550801754, 0.1047140508890152, -0.3981432318687439, -0.047387849539518356, 0.8995615839958191, -0.16240599751472473], "std": [5.404431249189656e-07, 3.0677074391860515e-07, 3.467041267413151e-07, 2.3687568955210736e-06, 2.358301389904227e-05, 6.865520117571577e-05, 3.306182043161243e-05, 0.0030053332448005676, 0.0030720189679414034, 0.005733052268624306, 0.03022581897675991, 0.046904947608709335, 0.013921813108026981, 0.018496640026569366], "count": [138]}, "timestamp": {"min": [0.0], "max": [4.566666666666666], "mean": [2.283333333333333], "std": [1.327870754531758], "count": [138]}, "frame_index": {"min": [0], "max": [137], "mean": [68.5], "std": [39.83612263595275], "count": [138]}, "episode_index": {"min": [446], "max": [446], "mean": [446.0], "std": [0.0], "count": [138]}, "index": {"min": [210580], "max": [210717], "mean": [210648.5], "std": [39.83612263595275], "count": [138]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [138]}}} +{"episode_index": 447, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7218827396514161]], [[0.694240901416122]], [[0.645765089869281]]], "std": [[[0.23863188909255914]], [[0.2263067986244215]], [[0.2495649135531451]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7218827396514161]], [[0.694240901416122]], [[0.645765089869281]]], "std": [[[0.23863188909255914]], [[0.2263067986244215]], [[0.2495649135531451]]], "count": [100]}, "observation.state": {"min": [0.5215238928794861, 0.013329439796507359, 0.11560185253620148, 2.4502270221710205, -0.2615222632884979, -0.20173360407352448, -0.16591519117355347, -0.20214253664016724, 0.1376219242811203, -0.9129900336265564, -0.4562292695045471, -0.7773502469062805], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20151077210903168, -0.10458125174045563, -0.1364220827817917, 0.1550997942686081, -0.7349632382392883, -0.11532121151685715, -0.5862588882446289], "mean": [0.5215299129486084, 0.013329426757991314, 0.11560188233852386, 2.450589895248413, -0.26125404238700867, -0.20173005759716034, -0.1491798311471939, -0.15816287696361542, 0.14664727449417114, -0.8256146907806396, -0.27483782172203064, -0.6536372900009155], "std": [2.5837084649538156e-06, 1.30385160446167e-08, 2.9802322387695312e-08, 0.00014573571388609707, 3.57774697476998e-05, 2.91730830213055e-05, 0.01814606599509716, 0.02131681703031063, 0.005848758853971958, 0.05587990581989288, 0.10001622885465622, 0.05638367310166359], "count": [172]}, "action": {"min": [-0.11921025812625885, -0.06538867950439453, 0.12113038450479507, 0.34225210547447205, 0.275485634803772, 0.4731217920780182, 0.7634444236755371, 0.1754833608865738, -0.09137864410877228, 0.09649965912103653, -0.43884533643722534, -0.0995267853140831, 0.8785249590873718, -0.22475792467594147], "max": [-0.1192082017660141, -0.06538574397563934, 0.12113155424594879, 0.34241393208503723, 0.275551438331604, 0.4733581244945526, 0.763532817363739, 0.18386276066303253, -0.08091118186712265, 0.11479294300079346, -0.32846322655677795, 0.05379769206047058, 0.9213448762893677, -0.13086019456386566], "mean": [-0.11920928210020065, -0.0653880164027214, 0.12113109976053238, 0.342405766248703, 0.27549877762794495, 0.47327786684036255, 0.7634568214416504, 0.17771275341510773, -0.0883772000670433, 0.10590984672307968, -0.3841186463832855, -0.03734417259693146, 0.9038531184196472, -0.17286662757396698], "std": [4.3585157527559204e-07, 3.4949090377267567e-07, 3.0187041488716204e-07, 2.0616957044694573e-05, 2.2702077330905013e-05, 6.347909948090091e-05, 3.0034729206818156e-05, 0.002450245199725032, 0.0030484225135296583, 0.0060080369003117085, 0.035305023193359375, 0.04603208974003792, 0.015025656670331955, 0.025158094242215157], "count": [172]}, "timestamp": {"min": [0.0], "max": [5.7], "mean": [2.85], "std": [1.655042799043779], "count": [172]}, "frame_index": {"min": [0], "max": [171], "mean": [85.5], "std": [49.65128397131337], "count": [172]}, "episode_index": {"min": [447], "max": [447], "mean": [447.0], "std": [0.0], "count": [172]}, "index": {"min": [210718], "max": [210889], "mean": [210803.5], "std": [49.65128397131337], "count": [172]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [172]}}} +{"episode_index": 448, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7090603567538126]], [[0.6819998284313725]], [[0.6334797494553377]]], "std": [[[0.2421436050087258]], [[0.23096388500834902]], [[0.2538507676013021]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7090603567538126]], [[0.6819998284313725]], [[0.6334797494553377]]], "std": [[[0.2421436050087258]], [[0.23096388500834902]], [[0.2538507676013021]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.16630132496356964, -0.2063668668270111, 0.13916969299316406, -0.7844500541687012, -0.4623779058456421, -0.8166564106941223], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.1361672282218933, -0.1486317217350006, 0.15238666534423828, -0.6804438829421997, -0.23788414895534515, -0.6325099468231201], "mean": [0.5215290188789368, 0.013329308480024338, 0.11560174077749252, 2.4505724906921387, -0.26124921441078186, -0.2017340064048767, -0.15643037855625153, -0.17047999799251556, 0.14562328159809113, -0.7380222678184509, -0.3298090100288391, -0.6980041861534119], "std": [3.862352514261147e-06, 9.17524005217274e-07, 1.1175870895385742e-07, 0.0001609108439879492, 2.384185791015625e-07, 4.023313522338867e-07, 0.010720305144786835, 0.021241214126348495, 0.005107395816594362, 0.03513265773653984, 0.07743895053863525, 0.05364026129245758], "count": [140]}, "action": {"min": [-0.11921132355928421, -0.06538975983858109, 0.1211303249001503, 0.3424059748649597, 0.2754824161529541, 0.47312113642692566, 0.7634437680244446, 0.1749863177537918, -0.09221290051937103, 0.09477069973945618, -0.48176702857017517, -0.09155118465423584, 0.8557793498039246, -0.20927752554416656], "max": [-0.11920853704214096, -0.06538800895214081, 0.12113209813833237, 0.342416375875473, 0.275551438331604, 0.4733024835586548, 0.763534665107727, 0.1800495833158493, -0.0832621306180954, 0.11059574037790298, -0.39816057682037354, 0.04482394456863403, 0.898016631603241, -0.15678788721561432], "mean": [-0.11920935660600662, -0.06538820266723633, 0.12113099545240402, 0.3424086570739746, 0.27549970149993896, 0.4732692837715149, 0.7634604573249817, 0.1768091470003128, -0.08927421271800995, 0.10344177484512329, -0.43272435665130615, -0.0359981432557106, 0.8812317252159119, -0.17805305123329163], "std": [5.320868012859137e-07, 2.7449962658465665e-07, 3.312954106604593e-07, 2.290804104632116e-06, 2.3710739696980454e-05, 6.923777982592583e-05, 3.3401323889847845e-05, 0.0017223607283085585, 0.0026344088837504387, 0.005553569179028273, 0.029408656060695648, 0.043061502277851105, 0.014556508511304855, 0.015824871137738228], "count": [140]}, "timestamp": {"min": [0.0], "max": [4.633333333333334], "mean": [2.3166666666666664], "std": [1.3471162615833208], "count": [140]}, "frame_index": {"min": [0], "max": [139], "mean": [69.5], "std": [40.413487847499624], "count": [140]}, "episode_index": {"min": [448], "max": [448], "mean": [448.0], "std": [0.0], "count": [140]}, "index": {"min": [210890], "max": [211029], "mean": [210959.5], "std": [40.413487847499624], "count": [140]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [140]}}} +{"episode_index": 449, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7177717701525054]], [[0.6914247249455338]], [[0.6436704520697168]]], "std": [[[0.23677906927855186]], [[0.2255359208800322]], [[0.24900470417888743]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7177717701525054]], [[0.6914247249455338]], [[0.6436704520697168]]], "std": [[[0.23677906927855186]], [[0.2255359208800322]], [[0.24900470417888743]]], "count": [100]}, "observation.state": {"min": [0.5215161442756653, 0.01332170981913805, 0.11560185253620148, 2.4502270221710205, -0.26124897599220276, -0.20173360407352448, -0.15990690886974335, -0.20583400130271912, 0.13917098939418793, -0.7716590166091919, -0.6210128664970398, -0.822330117225647], "max": [0.5215315818786621, 0.013329439796507359, 0.11560185253620148, 2.45064640045166, -0.26124897599220276, -0.20173360407352448, -0.12920904159545898, -0.13604365289211273, 0.15428832173347473, -0.6735240817070007, -0.2996438443660736, -0.5458728671073914], "mean": [0.5215294361114502, 0.01332936529070139, 0.1156017929315567, 2.450544834136963, -0.26124924421310425, -0.2017340511083603, -0.14600788056850433, -0.1574641615152359, 0.1474805474281311, -0.7359192371368408, -0.4200962781906128, -0.7107175588607788], "std": [3.778031896217726e-06, 6.294620220614888e-07, 5.960464477539063e-08, 0.00018081739835906774, 2.682209014892578e-07, 4.470348358154297e-07, 0.010247485712170601, 0.018088290467858315, 0.0048196446150541306, 0.023107167333364487, 0.11199695616960526, 0.08437216281890869], "count": [150]}, "action": {"min": [-0.11921132355928421, -0.06538908928632736, 0.12113038450479507, 0.3424059748649597, 0.2754824161529541, 0.47312211990356445, 0.7634437680244446, 0.17601023614406586, -0.09219841659069061, 0.09482354670763016, -0.5050922632217407, -0.15927907824516296, 0.8379568457603455, -0.18375442922115326], "max": [-0.11920853704214096, -0.06538800895214081, 0.12113209813833237, 0.34241393208503723, 0.275551438331604, 0.4733024835586548, 0.763530969619751, 0.18003913760185242, -0.08368504792451859, 0.11278344690799713, -0.42329829931259155, 0.033773500472307205, 0.8887372612953186, -0.129438579082489], "mean": [-0.11920934170484543, -0.06538822501897812, 0.12113089114427567, 0.34240907430648804, 0.2755042612552643, 0.4732566773891449, 0.7634658813476562, 0.17745652794837952, -0.08938703685998917, 0.10557322204113007, -0.4584294259548187, -0.04424809664487839, 0.8709313869476318, -0.15415625274181366], "std": [6.480531737906858e-07, 2.1295370800089586e-07, 4.2394350430186023e-07, 2.707611656660447e-06, 2.7377454898669384e-05, 7.771661330480129e-05, 3.7126057577552274e-05, 0.0013652482302859426, 0.0025645180139690638, 0.005133226979523897, 0.028307778760790825, 0.0645168125629425, 0.018317589536309242, 0.017303574830293655], "count": [150]}, "timestamp": {"min": [0.0], "max": [4.966666666666667], "mean": [2.483333333333333], "std": [1.4433435976027125], "count": [150]}, "frame_index": {"min": [0], "max": [149], "mean": [74.5], "std": [43.300307928081374], "count": [150]}, "episode_index": {"min": [449], "max": [449], "mean": [449.0], "std": [0.0], "count": [150]}, "index": {"min": [211030], "max": [211179], "mean": [211104.5], "std": [43.300307928081374], "count": [150]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [150]}}} +{"episode_index": 450, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7166768001089324]], [[0.6895539433551199]], [[0.6394973066448801]]], "std": [[[0.2427736833816581]], [[0.22749773541804294]], [[0.250106426890095]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7166768001089324]], [[0.6895539433551199]], [[0.6394973066448801]]], "std": [[[0.2427736833816581]], [[0.22749773541804294]], [[0.250106426890095]]], "count": [100]}, "observation.state": {"min": [0.5253002643585205, 0.022774340584874153, 0.1152220293879509, 2.292959451675415, -0.05930024012923241, -0.3255476951599121, -0.19413405656814575, -0.20503856241703033, 0.1382778435945511, -1.1954423189163208, -0.7135158181190491, -0.7617138624191284], "max": [0.5253620743751526, 0.02278978005051613, 0.11522591859102249, 2.2933788299560547, -0.05902697145938873, -0.3253248631954193, -0.12723974883556366, -0.13832959532737732, 0.15665404498577118, -0.7144136428833008, 0.03661857917904854, -0.40978604555130005], "mean": [0.5253279209136963, 0.022782376036047935, 0.11522320657968521, 2.293112277984619, -0.05929228663444519, -0.32538560032844543, -0.16942347586154938, -0.16288897395133972, 0.14995107054710388, -0.9442505240440369, -0.23583656549453735, -0.5755624771118164], "std": [9.650649190007243e-06, 7.247831490531098e-06, 9.119054311668151e-07, 0.0001849340187618509, 4.546604395727627e-05, 8.091626659734175e-05, 0.019445959478616714, 0.01697145216166973, 0.006075460929423571, 0.15233509242534637, 0.17828646302223206, 0.11368825286626816], "count": [289]}, "action": {"min": [-0.11968565732240677, -0.06542429327964783, 0.12129070609807968, 0.4333137571811676, 0.23770596086978912, 0.371491402387619, 0.7857766151428223, 0.1710663139820099, -0.09454791247844696, 0.09677346795797348, -0.5011038184165955, -0.2038380354642868, 0.8433446288108826, -0.2349691092967987], "max": [-0.11967708170413971, -0.06541920453310013, 0.12129531055688858, 0.433473140001297, 0.23786741495132446, 0.3717275559902191, 0.785902738571167, 0.18135792016983032, -0.08482911437749863, 0.11420480161905289, -0.26857173442840576, 0.054008886218070984, 0.9525343179702759, -0.03877212479710579], "mean": [-0.11968176066875458, -0.0654216930270195, 0.12129245698451996, 0.433346152305603, 0.23781493306159973, 0.37159764766693115, 0.7858565449714661, 0.17446370422840118, -0.09033123403787613, 0.10793760418891907, -0.3452624976634979, -0.06107184290885925, 0.9174872040748596, -0.14612676203250885], "std": [1.297300741498475e-06, 1.3728360954701202e-06, 9.142984822574363e-07, 3.6179073504172266e-05, 2.747129838098772e-05, 8.373093442060053e-05, 3.9961360016604885e-05, 0.0029853300657123327, 0.0025872220285236835, 0.005714933853596449, 0.05538133531808853, 0.07204864919185638, 0.025800948962569237, 0.07074253261089325], "count": [289]}, "timestamp": {"min": [0.0], "max": [9.6], "mean": [4.8], "std": [2.780887148615228], "count": [289]}, "frame_index": {"min": [0], "max": [288], "mean": [144.0], "std": [83.42661445845684], "count": [289]}, "episode_index": {"min": [450], "max": [450], "mean": [450.0], "std": [0.0], "count": [289]}, "index": {"min": [211180], "max": [211468], "mean": [211324.0], "std": [83.42661445845684], "count": [289]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [289]}}} +{"episode_index": 451, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.720718281590414]], [[0.690428954248366]], [[0.6411392755991285]]], "std": [[[0.23852467523583248]], [[0.2275804432099128]], [[0.25066695630503305]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.720718281590414]], [[0.690428954248366]], [[0.6411392755991285]]], "std": [[[0.23852467523583248]], [[0.2275804432099128]], [[0.25066695630503305]]], "count": [100]}, "observation.state": {"min": [0.5253311991691589, 0.022782059386372566, 0.11522333323955536, 2.292959451675415, -0.05930024012923241, -0.325406551361084, -0.16581480205059052, -0.19320732355117798, 0.1389363557100296, -0.8251299262046814, -0.26931053400039673, -0.8321939706802368], "max": [0.525338888168335, 0.02278978005051613, 0.11522333323955536, 2.2933788299560547, -0.05930024012923241, -0.325406551361084, -0.13351832330226898, -0.14265431463718414, 0.15290777385234833, -0.6018101572990417, -0.11942029744386673, -0.6603446006774902], "mean": [0.5253360867500305, 0.02278432622551918, 0.11522315442562103, 2.293133020401001, -0.059300318360328674, -0.32540634274482727, -0.15390732884407043, -0.16359113156795502, 0.1457844376564026, -0.7317637205123901, -0.2026897519826889, -0.7265808582305908], "std": [3.4435547604516614e-06, 3.5093025871901773e-06, 1.7881393432617188e-07, 0.00017877186473924667, 7.82310962677002e-08, 2.086162567138672e-07, 0.011162836104631424, 0.0174199678003788, 0.005615151487290859, 0.08755894005298615, 0.04723235219717026, 0.05504375323653221], "count": [144]}, "action": {"min": [-0.1196814626455307, -0.06542152911424637, 0.12129172682762146, 0.43334585428237915, 0.23779918253421783, 0.3715289235115051, 0.785794734954834, 0.1751999408006668, -0.09157664328813553, 0.097275510430336, -0.4432130753993988, -0.04737955704331398, 0.861979067325592, -0.2487502247095108], "max": [-0.119680255651474, -0.06542002409696579, 0.12129300087690353, 0.43336254358291626, 0.23784184455871582, 0.37171775102615356, 0.7858815789222717, 0.1815226674079895, -0.08178272843360901, 0.11182815581560135, -0.35232284665107727, 0.07955647259950638, 0.9111921191215515, -0.1791643351316452], "mean": [-0.11968061327934265, -0.06542090326547623, 0.1212920993566513, 0.4333539605140686, 0.2378244698047638, 0.3716066777706146, 0.7858449220657349, 0.17777538299560547, -0.0883297398686409, 0.10508943349123001, -0.39349764585494995, 0.005562643054872751, 0.8923424482345581, -0.2134360522031784], "std": [4.611767963069724e-07, 5.315305884323607e-07, 3.171313949223986e-07, 5.739570042351261e-06, 1.629572761885356e-05, 8.001091191545129e-05, 3.599900446715765e-05, 0.0020371403079479933, 0.003128926269710064, 0.005200578365474939, 0.034054387360811234, 0.03399726003408432, 0.019776083528995514, 0.024328067898750305], "count": [144]}, "timestamp": {"min": [0.0], "max": [4.766666666666667], "mean": [2.3833333333333333], "std": [1.3856072341783612], "count": [144]}, "frame_index": {"min": [0], "max": [143], "mean": [71.5], "std": [41.56821702535083], "count": [144]}, "episode_index": {"min": [451], "max": [451], "mean": [451.0], "std": [0.0], "count": [144]}, "index": {"min": [211469], "max": [211612], "mean": [211540.5], "std": [41.56821702535083], "count": [144]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [144]}}} +{"episode_index": 452, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.718220991285403]], [[0.6895128240740741]], [[0.6408398801742919]]], "std": [[[0.23694240737637282]], [[0.22682822020844987]], [[0.25047663107616663]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.718220991285403]], [[0.6895128240740741]], [[0.6408398801742919]]], "std": [[[0.23694240737637282]], [[0.22682822020844987]], [[0.25047663107616663]]], "count": [100]}, "observation.state": {"min": [0.5253234505653381, 0.022782059386372566, 0.11522074043750763, 2.292959451675415, -0.05930024012923241, -0.3255179524421692, -0.1587948352098465, -0.1913307160139084, 0.13901154696941376, -0.8358241319656372, -0.3958359360694885, -0.9268527030944824], "max": [0.5253466367721558, 0.02278978005051613, 0.11522333323955536, 2.2933788299560547, -0.05916360020637512, -0.32527291774749756, -0.13014349341392517, -0.12582649290561676, 0.15391887724399567, -0.5384837985038757, -0.12379267066717148, -0.7108729481697083], "mean": [0.525334894657135, 0.022782787680625916, 0.11522194743156433, 2.293114423751831, -0.05923955515027046, -0.32540494203567505, -0.14791126549243927, -0.15949420630931854, 0.14672628045082092, -0.6771699786186218, -0.25321143865585327, -0.8075395822525024], "std": [4.939740392728709e-06, 2.2261549474933418e-06, 1.2824626764995628e-06, 0.00018222842481918633, 6.789692997699603e-05, 8.048370364122093e-05, 0.005696702748537064, 0.022541677579283714, 0.0048597464337944984, 0.09987766295671463, 0.07805133610963821, 0.059877749532461166], "count": [153]}, "action": {"min": [-0.11968351155519485, -0.06542183458805084, 0.12128975242376328, 0.43332597613334656, 0.237714022397995, 0.3715048134326935, 0.7857778668403625, 0.17724840342998505, -0.09138529002666473, 0.09706655889749527, -0.489075243473053, -0.045998748391866684, 0.8393588662147522, -0.24010756611824036], "max": [-0.11967919021844864, -0.06541901081800461, 0.12129339575767517, 0.4334355890750885, 0.2378440946340561, 0.3717218041419983, 0.7859167456626892, 0.18147341907024384, -0.0821673721075058, 0.1141442358493805, -0.3627142608165741, 0.10815022885799408, 0.9070069789886475, -0.13121773302555084], "mean": [-0.11968179792165756, -0.06542100757360458, 0.12129096686840057, 0.4333663284778595, 0.23779796063899994, 0.3715936243534088, 0.7858518958091736, 0.17830662429332733, -0.08876235783100128, 0.10591180622577667, -0.42899975180625916, 0.030038028955459595, 0.8757668137550354, -0.2043026089668274], "std": [1.0724021421992802e-06, 5.317763793755148e-07, 1.0634115596985794e-06, 3.490144808893092e-05, 3.770661714952439e-05, 8.215380512410775e-05, 4.0677878132555634e-05, 0.0010595518397167325, 0.002697229851037264, 0.005467288661748171, 0.042808085680007935, 0.050549156963825226, 0.024443771690130234, 0.03694108873605728], "count": [153]}, "timestamp": {"min": [0.0], "max": [5.066666666666666], "mean": [2.533333333333333], "std": [1.4722117400046122], "count": [153]}, "frame_index": {"min": [0], "max": [152], "mean": [76.0], "std": [44.16635220013836], "count": [153]}, "episode_index": {"min": [452], "max": [452], "mean": [452.0], "std": [0.0], "count": [153]}, "index": {"min": [211613], "max": [211765], "mean": [211689.0], "std": [44.16635220013836], "count": [153]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [153]}}} +{"episode_index": 453, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.717330258714597]], [[0.6887598093681917]], [[0.6401550762527233]]], "std": [[[0.23690258193553895]], [[0.22717708767425665]], [[0.2508743927972616]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.717330258714597]], [[0.6887598093681917]], [[0.6401550762527233]]], "std": [[[0.23690258193553895]], [[0.22717708767425665]], [[0.2508743927972616]]], "count": [100]}, "observation.state": {"min": [0.5253311991691589, 0.022782059386372566, 0.11522074043750763, 2.292959451675415, -0.05902697145938873, -0.32538434863090515, -0.1614900678396225, -0.18611013889312744, 0.14277079701423645, -0.759916365146637, -0.5446330904960632, -0.8982973098754883], "max": [0.525338888168335, 0.022782059386372566, 0.11522074043750763, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.13293911516666412, -0.12779578566551208, 0.1560603529214859, -0.5395322442054749, -0.2687639892101288, -0.7522602081298828], "mean": [0.5253356695175171, 0.022782081738114357, 0.11522083729505539, 2.293124198913574, -0.0590270571410656, -0.32530295848846436, -0.14796656370162964, -0.15138693153858185, 0.14951372146606445, -0.6296786665916443, -0.3944874703884125, -0.7979722619056702], "std": [3.646981213023537e-06, 2.2351741790771484e-08, 9.685754776000977e-08, 0.00018520276353228837, 8.568167686462402e-08, 6.789010967622744e-06, 0.008129829540848732, 0.018085414543747902, 0.004092395305633545, 0.06816751509904861, 0.09721072018146515, 0.049347568303346634], "count": [144]}, "action": {"min": [-0.11968427151441574, -0.065422423183918, 0.12128988653421402, 0.43336689472198486, 0.23765921592712402, 0.3715195059776306, 0.785814106464386, 0.17575038969516754, -0.09280803054571152, 0.09986382722854614, -0.5396616458892822, -0.07969586551189423, 0.8187860250473022, -0.23100869357585907], "max": [-0.11968307197093964, -0.06542199850082397, 0.12129056453704834, 0.4334123432636261, 0.2377006560564041, 0.37170737981796265, 0.7859175801277161, 0.1796058565378189, -0.08465460687875748, 0.11514800041913986, -0.4286448359489441, 0.05902278423309326, 0.8833498358726501, -0.11235866695642471], "mean": [-0.11968347430229187, -0.0654221698641777, 0.12129012495279312, 0.4333727955818176, 0.23768506944179535, 0.3715934157371521, 0.7858841419219971, 0.17731885612010956, -0.09014460444450378, 0.1077231839299202, -0.4826379418373108, -0.005732099525630474, 0.8538177013397217, -0.18120518326759338], "std": [4.97406119848165e-07, 1.4996574293490994e-07, 2.5807551651269023e-07, 6.436270723497728e-06, 1.682276342762634e-05, 8.284910290967673e-05, 3.740345346159302e-05, 0.0012668705312535167, 0.0024061643052846193, 0.004616267513483763, 0.03718667849898338, 0.04654558748006821, 0.021966684609651566, 0.03399764746427536], "count": [144]}, "timestamp": {"min": [0.0], "max": [4.766666666666667], "mean": [2.3833333333333333], "std": [1.3856072341783612], "count": [144]}, "frame_index": {"min": [0], "max": [143], "mean": [71.5], "std": [41.56821702535083], "count": [144]}, "episode_index": {"min": [453], "max": [453], "mean": [453.0], "std": [0.0], "count": [144]}, "index": {"min": [211766], "max": [211909], "mean": [211837.5], "std": [41.56821702535083], "count": [144]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [144]}}} +{"episode_index": 454, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7238866639433551]], [[0.6948896922657952]], [[0.6466302015250545]]], "std": [[[0.2328976712957214]], [[0.22334726006513875]], [[0.24721880470341956]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7238866639433551]], [[0.6948896922657952]], [[0.6466302015250545]]], "std": [[[0.2328976712957214]], [[0.22334726006513875]], [[0.24721880470341956]]], "count": [100]}, "observation.state": {"min": [0.5253311991691589, 0.022782059386372566, 0.1152220293879509, 2.292959451675415, -0.05930024012923241, -0.325406551361084, -0.15184436738491058, -0.16803893446922302, 0.1450081765651703, -0.7504802942276001, -0.5654018521308899, -0.8800355792045593], "max": [0.525338888168335, 0.022782059386372566, 0.1152220293879509, 2.2933788299560547, -0.05930024012923241, -0.325406551361084, -0.1300353854894638, -0.12716251611709595, 0.15657109022140503, -0.5556783676147461, -0.37889301776885986, -0.7520430088043213], "mean": [0.5253354907035828, 0.022782081738114357, 0.11522198468446732, 2.293120861053467, -0.05930030345916748, -0.3254064917564392, -0.14260999858379364, -0.1446911245584488, 0.1497574895620346, -0.6620992422103882, -0.4384879469871521, -0.7859310507774353], "std": [3.7290583350113593e-06, 2.2351741790771484e-08, 4.470348358154297e-08, 0.00018011307111009955, 6.332993507385254e-08, 5.960464477539063e-08, 0.006551428698003292, 0.012902170419692993, 0.004296210594475269, 0.059257328510284424, 0.05658373981714249, 0.0402294360101223], "count": [128]}, "action": {"min": [-0.11968210339546204, -0.06542099267244339, 0.12129074335098267, 0.43334922194480896, 0.23779918253421783, 0.3715289235115051, 0.785794734954834, 0.17624717950820923, -0.09258164465427399, 0.10230780392885208, -0.537246823310852, -0.07928691804409027, 0.8222457766532898, -0.19745288789272308], "max": [-0.11968090385198593, -0.06542056798934937, 0.12129142135381699, 0.43336254358291626, 0.23784063756465912, 0.37171682715415955, 0.7858805060386658, 0.1796647310256958, -0.08459552377462387, 0.11505351960659027, -0.44939592480659485, 0.052901167422533035, 0.8804821372032166, -0.12533605098724365], "mean": [-0.1196814775466919, -0.06542078405618668, 0.12129101902246475, 0.43335461616516113, 0.23782463371753693, 0.37160149216651917, 0.7858469486236572, 0.17770469188690186, -0.08971094340085983, 0.10833737999200821, -0.4847511947154999, -0.01674908585846424, 0.8579533100128174, -0.16095653176307678], "std": [5.282976189846522e-07, 1.6384794321311347e-07, 2.6065137603836774e-07, 5.430055807664758e-06, 1.6268530089291744e-05, 8.066194277489558e-05, 3.624847158789635e-05, 0.001146287308074534, 0.002617400139570236, 0.004115208983421326, 0.026203304529190063, 0.035973623394966125, 0.01722882315516472, 0.02162119746208191], "count": [128]}, "timestamp": {"min": [0.0], "max": [4.233333333333333], "mean": [2.1166666666666667], "std": [1.2316429857894877], "count": [128]}, "frame_index": {"min": [0], "max": [127], "mean": [63.5], "std": [36.94928957368463], "count": [128]}, "episode_index": {"min": [454], "max": [454], "mean": [454.0], "std": [0.0], "count": [128]}, "index": {"min": [211910], "max": [212037], "mean": [211973.5], "std": [36.94928957368463], "count": [128]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [128]}}} +{"episode_index": 455, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7283629956427015]], [[0.6991562064270153]], [[0.6507711192810458]]], "std": [[[0.23037064749671263]], [[0.22015352470651703]], [[0.24400020265505698]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7283629956427015]], [[0.6991562064270153]], [[0.6507711192810458]]], "std": [[[0.23037064749671263]], [[0.22015352470651703]], [[0.24400020265505698]]], "count": [100]}, "observation.state": {"min": [0.5253311991691589, 0.022782059386372566, 0.1152220293879509, 2.292959451675415, -0.05930024012923241, -0.325406551361084, -0.15615366399288177, -0.15766730904579163, 0.14343060553073883, -0.7588679194450378, -0.5592532157897949, -0.8308987617492676], "max": [0.525338888168335, 0.022782059386372566, 0.1152220293879509, 2.2933788299560547, -0.05930024012923241, -0.325406551361084, -0.11528495699167252, -0.12702350318431854, 0.15610313415527344, -0.5856640338897705, -0.3097549378871918, -0.6572268009185791], "mean": [0.5253351330757141, 0.022782083600759506, 0.11522211879491806, 2.2931249141693115, -0.05930032953619957, -0.32540619373321533, -0.13969755172729492, -0.1437675505876541, 0.14874817430973053, -0.6879851818084717, -0.42569756507873535, -0.744061291217804], "std": [3.821185146080097e-06, 2.421438694000244e-08, 8.940696716308594e-08, 0.0001899026392493397, 8.940696716308594e-08, 3.5762786865234375e-07, 0.014011392369866371, 0.011349824257194996, 0.004780157934874296, 0.04706190899014473, 0.09037604928016663, 0.0585707351565361], "count": [162]}, "action": {"min": [-0.11968210339546204, -0.06542099267244339, 0.12129074335098267, 0.43334922194480896, 0.23779918253421783, 0.3715289235115051, 0.785794734954834, 0.17593969404697418, -0.09280254691839218, 0.1018604040145874, -0.5044703483581543, -0.10670269280672073, 0.8412858843803406, -0.19043882191181183], "max": [-0.11968090385198593, -0.06542056798934937, 0.12129142135381699, 0.43336254358291626, 0.23784063756465912, 0.37171682715415955, 0.7858805060386658, 0.1816365271806717, -0.08388545364141464, 0.11504718661308289, -0.4217491149902344, 0.04736964777112007, 0.8910362124443054, -0.1492404192686081], "mean": [-0.11968144029378891, -0.06542080640792847, 0.12129103392362595, 0.4333546459674835, 0.23782433569431305, 0.37160295248031616, 0.7858465909957886, 0.17819471657276154, -0.0889141857624054, 0.10780108720064163, -0.4701140522956848, -0.029977580532431602, 0.8639857172966003, -0.16617561876773834], "std": [5.261812248136266e-07, 1.673316916139811e-07, 2.7052905693381035e-07, 5.6868052524805535e-06, 1.7312666386715136e-05, 8.504402649123222e-05, 3.814673254964873e-05, 0.002036627382040024, 0.002553757280111313, 0.0046093156561255455, 0.028655126690864563, 0.05245455354452133, 0.01727861911058426, 0.011726658791303635], "count": [162]}, "timestamp": {"min": [0.0], "max": [5.366666666666666], "mean": [2.683333333333333], "std": [1.5588160274411498], "count": [162]}, "frame_index": {"min": [0], "max": [161], "mean": [80.5], "std": [46.76448082323449], "count": [162]}, "episode_index": {"min": [455], "max": [455], "mean": [455.0], "std": [0.0], "count": [162]}, "index": {"min": [212038], "max": [212199], "mean": [212118.5], "std": [46.76448082323449], "count": [162]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [162]}}} +{"episode_index": 456, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.721720895969499]], [[0.6946631236383443]], [[0.6452673284313726]]], "std": [[[0.2405365020379962]], [[0.22578233732591912]], [[0.24921160796963066]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.721720895969499]], [[0.6946631236383443]], [[0.6452673284313726]]], "std": [[[0.2405365020379962]], [[0.22578233732591912]], [[0.24921160796963066]]], "count": [100]}, "observation.state": {"min": [0.5253157615661621, 0.022782059386372566, 0.1152220293879509, 2.292959451675415, -0.05930024012923241, -0.325406551361084, -0.18485906720161438, -0.17805533111095428, 0.1398385763168335, -1.209072232246399, -0.6767605543136597, -0.7717600464820862], "max": [0.5253620743751526, 0.022797510027885437, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3250798285007477, -0.10400976985692978, -0.1362212896347046, 0.15979884564876556, -0.7156717777252197, -0.03620867058634758, -0.4338655173778534], "mean": [0.5253342986106873, 0.02279074862599373, 0.11522247642278671, 2.293123722076416, -0.05921899899840355, -0.3253016769886017, -0.15834125876426697, -0.15411347150802612, 0.1510133296251297, -0.9900140762329102, -0.2405514121055603, -0.5882706046104431], "std": [5.954957487119827e-06, 7.525360615545651e-06, 4.470348358154297e-07, 0.00018718426872510463, 0.00012490246444940567, 0.00012745405547320843, 0.017366735264658928, 0.010475227609276772, 0.006596091669052839, 0.14252878725528717, 0.15409375727176666, 0.10164107382297516], "count": [296]}, "action": {"min": [-0.11968424171209335, -0.06542181968688965, 0.12128972262144089, 0.4332125186920166, 0.23766162991523743, 0.37152138352394104, 0.7857932448387146, 0.17202454805374146, -0.09440475702285767, 0.09914163500070572, -0.4659450650215149, -0.15861015021800995, 0.8697353601455688, -0.22009843587875366], "max": [-0.11967772990465164, -0.06541790068149567, 0.12129353731870651, 0.4333742558956146, 0.23785223066806793, 0.3717576265335083, 0.7859564423561096, 0.18150922656059265, -0.08365850150585175, 0.11897870153188705, -0.251537561416626, 0.04641510918736458, 0.9603786468505859, -0.03455335274338722], "mean": [-0.11968197673559189, -0.06542012840509415, 0.12129170447587967, 0.4333260953426361, 0.2377699315547943, 0.3716084361076355, 0.7858752608299255, 0.17571024596691132, -0.09017599374055862, 0.10980112850666046, -0.3294566571712494, -0.054135967046022415, 0.9279035329818726, -0.12741942703723907], "std": [1.0979294984281296e-06, 9.326749932370149e-07, 7.643792514500092e-07, 5.86279493290931e-05, 6.259787187445909e-05, 8.504364814143628e-05, 4.730166619992815e-05, 0.0028125527314841747, 0.003040539799258113, 0.005950594786554575, 0.05585997551679611, 0.0601763091981411, 0.023689407855272293, 0.06312370300292969], "count": [296]}, "timestamp": {"min": [0.0], "max": [9.833333333333334], "mean": [4.916666666666666], "std": [2.8482450737252227], "count": [296]}, "frame_index": {"min": [0], "max": [295], "mean": [147.5], "std": [85.44735221175668], "count": [296]}, "episode_index": {"min": [456], "max": [456], "mean": [456.0], "std": [0.0], "count": [296]}, "index": {"min": [212200], "max": [212495], "mean": [212347.5], "std": [85.44735221175668], "count": [296]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [296]}}} +{"episode_index": 457, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7278456835511983]], [[0.6937661165577341]], [[0.6429587309368191]]], "std": [[[0.23355345589058588]], [[0.21998267364494373]], [[0.24061934197381307]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7278456835511983]], [[0.6937661165577341]], [[0.6429587309368191]]], "std": [[[0.23355345589058588]], [[0.21998267364494373]], [[0.24061934197381307]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05916360020637512, -0.3256293833255768, -0.21075338125228882, -0.20035086572170258, 0.13360083103179932, -1.4154070615768433, -0.4768613874912262, -0.7046234011650085], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.32527291774749756, -0.09826405346393585, -0.15715761482715607, 0.15484313666820526, -0.9215872883796692, 0.23023250699043274, -0.18992707133293152], "mean": [0.5253876447677612, 0.022851312533020973, 0.11522220075130463, 2.2931113243103027, -0.05911221727728844, -0.32548993825912476, -0.1768832802772522, -0.1737511157989502, 0.14313802123069763, -1.0175940990447998, -0.0849207192659378, -0.591777503490448], "std": [6.059874976926949e-06, 1.2676422329604975e-06, 1.7136335372924805e-07, 0.00018973671831190586, 6.616945756832138e-05, 0.00012828012404497713, 0.037676192820072174, 0.012669321149587631, 0.0072015379555523396, 0.06839562207460403, 0.2051214575767517, 0.10380701720714569], "count": [181]}, "action": {"min": [-0.11967737227678299, -0.06541234254837036, 0.12129192054271698, 0.4333001971244812, 0.23774567246437073, 0.37148869037628174, 0.7857599258422852, 0.17109514772891998, -0.09162531793117523, 0.09298466891050339, -0.3624098598957062, -0.26359909772872925, 0.9083682894706726, -0.22958724200725555], "max": [-0.11967435479164124, -0.06540966033935547, 0.12129366397857666, 0.4334854483604431, 0.2378361076116562, 0.371730774641037, 0.7859171628952026, 0.18485279381275177, -0.08068244159221649, 0.11314237117767334, -0.16643916070461273, 0.05556856840848923, 0.9642404913902283, 0.04944233596324921], "mean": [-0.11967533826828003, -0.0654103010892868, 0.12129273265600204, 0.43340200185775757, 0.2377922087907791, 0.37158119678497314, 0.7858403921127319, 0.17553165555000305, -0.08668991923332214, 0.10237423330545425, -0.27242621779441833, -0.03679598495364189, 0.9419791102409363, -0.15528486669063568], "std": [9.719316267364775e-07, 6.080005618969153e-07, 4.4765494067178224e-07, 6.316271174000576e-05, 2.385813968430739e-05, 8.689596870681271e-05, 4.5704997319262475e-05, 0.004444967955350876, 0.003325136611238122, 0.006510133855044842, 0.05948900431394577, 0.08114251494407654, 0.016800161451101303, 0.050857629626989365], "count": [181]}, "timestamp": {"min": [0.0], "max": [6.0], "mean": [3.0], "std": [1.7416467303484175], "count": [181]}, "frame_index": {"min": [0], "max": [180], "mean": [90.0], "std": [52.24940191045253], "count": [181]}, "episode_index": {"min": [457], "max": [457], "mean": [457.0], "std": [0.0], "count": [181]}, "index": {"min": [212496], "max": [212676], "mean": [212586.0], "std": [52.24940191045253], "count": [181]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [181]}}} +{"episode_index": 458, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.730349044117647]], [[0.6967829302832245]], [[0.6471568899782135]]], "std": [[[0.23125989725679005]], [[0.2201204762353176]], [[0.24222622976687028]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.730349044117647]], [[0.6967829302832245]], [[0.6471568899782135]]], "std": [[[0.23125989725679005]], [[0.2201204762353176]], [[0.24222622976687028]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05930024012923241, -0.325406551361084, -0.19689880311489105, -0.20639775693416595, 0.13422176241874695, -1.064805507659912, -0.3980221152305603, -0.6203352212905884], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3250798285007477, -0.09972365200519562, -0.14432242512702942, 0.15263685584068298, -0.8916016221046448, -0.03771166875958443, -0.44972479343414307], "mean": [0.5253867506980896, 0.022851010784506798, 0.1152220293879509, 2.293123722076416, -0.059247877448797226, -0.3252567648887634, -0.16078977286815643, -0.16737553477287292, 0.14256785809993744, -0.9619956612586975, -0.22635699808597565, -0.5364713072776794], "std": [5.949284059170168e-06, 1.9527371932781534e-06, 0.0, 0.00018283078679814935, 0.00010758634016383439, 0.00014698314771521837, 0.02990170381963253, 0.02082718163728714, 0.006063014734536409, 0.04605808109045029, 0.10644342005252838, 0.048061553388834], "count": [146]}, "action": {"min": [-0.11967737227678299, -0.06541203707456589, 0.12129171937704086, 0.4331950843334198, 0.23769088089466095, 0.37152761220932007, 0.7857925891876221, 0.1729319840669632, -0.09031819552183151, 0.09398851543664932, -0.37263157963752747, -0.16688980162143707, 0.9083273410797119, -0.20791131258010864], "max": [-0.11967357993125916, -0.06540867686271667, 0.12129366397857666, 0.43335866928100586, 0.23787574470043182, 0.3717646300792694, 0.7859517335891724, 0.18474942445755005, -0.08044406771659851, 0.11212123930454254, -0.26403796672821045, -0.015855906531214714, 0.9468367099761963, -0.08550043404102325], "mean": [-0.11967481672763824, -0.06540942937135696, 0.12129277735948563, 0.4332818388938904, 0.23780710995197296, 0.3716249465942383, 0.785881519317627, 0.17684391140937805, -0.08631614595651627, 0.10215121507644653, -0.327923446893692, -0.08336278051137924, 0.927013635635376, -0.14953196048736572], "std": [1.0283796427756897e-06, 8.704446941010247e-07, 4.6779217655057437e-07, 6.57824202789925e-05, 5.325651727616787e-05, 8.389162394450977e-05, 4.938087658956647e-05, 0.0038760679308325052, 0.0028020020108669996, 0.0060748630203306675, 0.03351442888379097, 0.04191674292087555, 0.012767343781888485, 0.027562903240323067], "count": [146]}, "timestamp": {"min": [0.0], "max": [4.833333333333333], "mean": [2.4166666666666665], "std": [1.4048527008591012], "count": [146]}, "frame_index": {"min": [0], "max": [145], "mean": [72.5], "std": [42.14558102577303], "count": [146]}, "episode_index": {"min": [458], "max": [458], "mean": [458.0], "std": [0.0], "count": [146]}, "index": {"min": [212677], "max": [212822], "mean": [212749.5], "std": [42.14558102577303], "count": [146]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [146]}}} +{"episode_index": 459, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7254591367102396]], [[0.69242674291939]], [[0.6420498692810457]]], "std": [[[0.23566355077050577]], [[0.22336885320265637]], [[0.24469817687674617]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7254591367102396]], [[0.69242674291939]], [[0.6420498692810457]]], "std": [[[0.23566355077050577]], [[0.22336885320265637]], [[0.24469817687674617]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05916360020637512, -0.3256293833255768, -0.19522295892238617, -0.19890670478343964, 0.13616877794265747, -1.0360779762268066, -0.4127788841724396, -0.6338822245597839], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3251912593841553, -0.1292862743139267, -0.1465388536453247, 0.15208593010902405, -0.8851012587547302, -0.012843829579651356, -0.4022492468357086], "mean": [0.5253881216049194, 0.02285076305270195, 0.11522205173969269, 2.293137311935425, -0.059050723910331726, -0.32554617524147034, -0.17221078276634216, -0.16498354077339172, 0.14474408328533173, -0.958487868309021, -0.2161143273115158, -0.5382715463638306], "std": [6.4509558796999045e-06, 2.319235136383213e-06, 2.2351741790771484e-08, 0.00018557083967607468, 5.171877273824066e-05, 0.00013325002510100603, 0.018744798377156258, 0.012374656274914742, 0.0053067514672875404, 0.04564819112420082, 0.11785826086997986, 0.0725548192858696], "count": [150]}, "action": {"min": [-0.11967737227678299, -0.06541234254837036, 0.12129184603691101, 0.4332696795463562, 0.23769088089466095, 0.3714887499809265, 0.7857588529586792, 0.17268820106983185, -0.09092144668102264, 0.09576648473739624, -0.38798588514328003, -0.166036456823349, 0.9096457958221436, -0.22600406408309937], "max": [-0.11967435479164124, -0.06540966033935547, 0.12129366397857666, 0.43348702788352966, 0.2378361076116562, 0.37173953652381897, 0.7859318256378174, 0.18039686977863312, -0.07972418516874313, 0.11088591068983078, -0.266036719083786, -0.013169953599572182, 0.9461764693260193, -0.08763213455677032], "mean": [-0.11967567354440689, -0.06541083008050919, 0.12129271030426025, 0.4334383010864258, 0.23777300119400024, 0.3715810775756836, 0.7858259677886963, 0.17510171234607697, -0.08734411001205444, 0.10384665429592133, -0.330091267824173, -0.07726184278726578, 0.9256528615951538, -0.15185651183128357], "std": [9.127795124186378e-07, 4.831830437979079e-07, 5.164017693459755e-07, 5.644623524858616e-05, 3.291146640549414e-05, 8.605245966464281e-05, 4.508046549744904e-05, 0.0021321838721632957, 0.003247639164328575, 0.004706227220594883, 0.03270263224840164, 0.050701823085546494, 0.011087289080023766, 0.03760484233498573], "count": [150]}, "timestamp": {"min": [0.0], "max": [4.966666666666667], "mean": [2.483333333333333], "std": [1.4433435976027125], "count": [150]}, "frame_index": {"min": [0], "max": [149], "mean": [74.5], "std": [43.300307928081374], "count": [150]}, "episode_index": {"min": [459], "max": [459], "mean": [459.0], "std": [0.0], "count": [150]}, "index": {"min": [212823], "max": [212972], "mean": [212897.5], "std": [43.300307928081374], "count": [150]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [150]}}} +{"episode_index": 460, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7246611192810458]], [[0.6928207489106754]], [[0.6419414324618736]]], "std": [[[0.23642858174978357]], [[0.22136161141924585]], [[0.24228595346653878]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7246611192810458]], [[0.6928207489106754]], [[0.6419414324618736]]], "std": [[[0.23642858174978357]], [[0.22136161141924585]], [[0.24228595346653878]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05916360020637512, -0.3256293833255768, -0.21340228617191315, -0.18329906463623047, 0.14031560719013214, -1.0939524173736572, -0.4746752083301544, -0.6964213252067566], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3251912593841553, -0.13290050625801086, -0.14036066830158234, 0.158391073346138, -0.8047900199890137, 0.15057341754436493, -0.3784758746623993], "mean": [0.5253867506980896, 0.02284993790090084, 0.11522232741117477, 2.29312801361084, -0.0590413473546505, -0.3254165053367615, -0.1882038712501526, -0.16029079258441925, 0.1495693475008011, -0.8873161673545837, -0.0789235308766365, -0.5652993321418762], "std": [7.102823019522475e-06, 3.1236079394147964e-06, 2.980232238769531e-07, 0.00018538387666922063, 4.188799357507378e-05, 0.0001511283335275948, 0.016837116330862045, 0.011659284122288227, 0.006257199682295322, 0.06543416529893875, 0.1582736223936081, 0.08018616586923599], "count": [219]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129178643226624, 0.4332696795463562, 0.23768965899944305, 0.37148863077163696, 0.7857588529586792, 0.1705836057662964, -0.09365656971931458, 0.09933055937290192, -0.37955138087272644, -0.18045055866241455, 0.9087892770767212, -0.29540589451789856], "max": [-0.11967433989048004, -0.06540966033935547, 0.12129366397857666, 0.43348702788352966, 0.2378361076116562, 0.3717404901981354, 0.7859318256378174, 0.1786811649799347, -0.08408703655004501, 0.1172211766242981, -0.22586095333099365, 0.04593958705663681, 0.9369215369224548, -0.06048178672790527], "mean": [-0.11967576295137405, -0.0654110237956047, 0.12129269540309906, 0.4333893954753876, 0.23774519562721252, 0.37159112095832825, 0.7858565449714661, 0.173002690076828, -0.08924248069524765, 0.10831627994775772, -0.3054884076118469, -0.035295065492391586, 0.9239195585250854, -0.20979617536067963], "std": [9.791777983991778e-07, 5.389615012063587e-07, 5.750717946284567e-07, 5.896913353353739e-05, 4.002127388957888e-05, 8.609117503510788e-05, 4.767247082781978e-05, 0.0020847192499786615, 0.0026881506200879812, 0.005759593565016985, 0.03935631737112999, 0.05846763774752617, 0.0067409188486635685, 0.05269256979227066], "count": [219]}, "timestamp": {"min": [0.0], "max": [7.266666666666667], "mean": [3.6333333333333337], "std": [2.1073065132392914], "count": [219]}, "frame_index": {"min": [0], "max": [218], "mean": [109.0], "std": [63.219195397178744], "count": [219]}, "episode_index": {"min": [460], "max": [460], "mean": [460.0], "std": [0.0], "count": [219]}, "index": {"min": [212973], "max": [213191], "mean": [213082.0], "std": [63.219195397178744], "count": [219]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [219]}}} +{"episode_index": 461, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7234467401960784]], [[0.6911717265795206]], [[0.6409458605664489]]], "std": [[[0.2381849465800807]], [[0.22595963952018358]], [[0.24809024543202998]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7234467401960784]], [[0.6911717265795206]], [[0.6409458605664489]]], "std": [[[0.2381849465800807]], [[0.22595963952018358]], [[0.24809024543202998]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05902697145938873, -0.3253026604652405, -0.19057388603687286, -0.17848007380962372, 0.13863950967788696, -0.9381527900695801, -0.5577501654624939, -0.8535652756690979], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.08152888715267181, -0.15137329697608948, 0.1534937024116516, -0.752996563911438, 0.11532121151685715, -0.49421027302742004], "mean": [0.5253856778144836, 0.02284937910735607, 0.11522211134433746, 2.293118953704834, -0.05902701988816261, -0.3253023624420166, -0.16168388724327087, -0.16457325220108032, 0.14640682935714722, -0.8475046753883362, -0.16522665321826935, -0.6698189377784729], "std": [7.356978130701464e-06, 3.4689951462496538e-06, 8.195638656616211e-08, 0.00018220579659100622, 4.842877388000488e-08, 2.980232238769531e-07, 0.033787380903959274, 0.0076124356128275394, 0.005223521962761879, 0.0541105642914772, 0.1913229376077652, 0.10095158964395523], "count": [161]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129184603691101, 0.4333411455154419, 0.23768965899944305, 0.37152746319770813, 0.7858296632766724, 0.1729893833398819, -0.09174396842718124, 0.09967772662639618, -0.4227351248264313, -0.1584959328174591, 0.8879992365837097, -0.2880932688713074], "max": [-0.11967509984970093, -0.06541064381599426, 0.12129366397857666, 0.43335866928100586, 0.237735778093338, 0.37171635031700134, 0.7859179973602295, 0.1854533553123474, -0.08199296146631241, 0.11175496876239777, -0.27462857961654663, 0.09341924637556076, 0.9275882840156555, -0.09124890714883804], "mean": [-0.1196761429309845, -0.065411277115345, 0.12129275500774384, 0.4333476126194, 0.23771774768829346, 0.3715994358062744, 0.785883903503418, 0.1766297072172165, -0.08837635070085526, 0.10549517720937729, -0.34735533595085144, -0.007856854237616062, 0.9123599529266357, -0.18978574872016907], "std": [1.012314214676735e-06, 5.517677550415101e-07, 5.969207563794043e-07, 5.847980901307892e-06, 1.661438545852434e-05, 8.157623233273625e-05, 3.676209962577559e-05, 0.0038295546546578407, 0.003074759617447853, 0.004315406549721956, 0.04165082052350044, 0.07715465128421783, 0.011186889372766018, 0.05522674694657326], "count": [161]}, "timestamp": {"min": [0.0], "max": [5.333333333333333], "mean": [2.666666666666666], "std": [1.5491933384829668], "count": [161]}, "frame_index": {"min": [0], "max": [160], "mean": [80.0], "std": [46.475800154489], "count": [161]}, "episode_index": {"min": [461], "max": [461], "mean": [461.0], "std": [0.0], "count": [161]}, "index": {"min": [213192], "max": [213352], "mean": [213272.0], "std": [46.475800154489], "count": [161]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [161]}}} +{"episode_index": 462, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7288590631808279]], [[0.6983135021786493]], [[0.6487531209150327]]], "std": [[[0.234105471308275]], [[0.2210814749264032]], [[0.24377826340876216]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7288590631808279]], [[0.6983135021786493]], [[0.6487531209150327]]], "std": [[[0.234105471308275]], [[0.2210814749264032]], [[0.24377826340876216]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05902697145938873, -0.3253026604652405, -0.19811898469924927, -0.1829824298620224, 0.138980433344841, -1.1816028356552124, -0.6968461275100708, -0.7978469729423523], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.07589130103588104, -0.1550261378288269, 0.15309573709964752, -0.7922086119651794, 0.20509138703346252, -0.3274577558040619], "mean": [0.5253888368606567, 0.022849582135677338, 0.11522209644317627, 2.29311466217041, -0.05902702733874321, -0.3253023624420166, -0.1551428586244583, -0.16546614468097687, 0.14552868902683258, -0.8814525604248047, -0.15262643992900848, -0.6492214798927307], "std": [5.992861133563565e-06, 3.3613234791118884e-06, 6.705522537231445e-08, 0.0001814959105104208, 5.587935447692871e-08, 2.980232238769531e-07, 0.039712097495794296, 0.0065357740968465805, 0.0047887577675282955, 0.07415950298309326, 0.24688701331615448, 0.09925217926502228], "count": [158]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129184603691101, 0.4333411455154419, 0.23768965899944305, 0.37152746319770813, 0.7858296632766724, 0.17281512916088104, -0.09220074862241745, 0.0994807556271553, -0.419101744890213, -0.2221992164850235, 0.8821983337402344, -0.2773255705833435], "max": [-0.11967509984970093, -0.06541064381599426, 0.12129366397857666, 0.43335866928100586, 0.237735778093338, 0.37171635031700134, 0.7859179973602295, 0.1853184551000595, -0.08290032297372818, 0.11073926836252213, -0.2271546870470047, 0.09647519141435623, 0.9374759197235107, 0.013237380422651768], "mean": [-0.11967571079730988, -0.06541113555431366, 0.12129256129264832, 0.4333477318286896, 0.23771944642066956, 0.3715978264808655, 0.7858841419219971, 0.17768695950508118, -0.08783305436372757, 0.10489755868911743, -0.3303033113479614, -0.01565532572567463, 0.9170007109642029, -0.18573187291622162], "std": [8.235952009272296e-07, 5.284406938699249e-07, 5.008892571822798e-07, 5.6910184866865166e-06, 1.638701360207051e-05, 8.129131310852244e-05, 3.658070636447519e-05, 0.0043392181396484375, 0.002641286700963974, 0.003788759233430028, 0.0601235069334507, 0.08399495482444763, 0.013587020337581635, 0.06643311679363251], "count": [158]}, "timestamp": {"min": [0.0], "max": [5.233333333333333], "mean": [2.6166666666666667], "std": [1.5203252575974948], "count": [158]}, "frame_index": {"min": [0], "max": [157], "mean": [78.5], "std": [45.609757727924844], "count": [158]}, "episode_index": {"min": [462], "max": [462], "mean": [462.0], "std": [0.0], "count": [158]}, "index": {"min": [213353], "max": [213510], "mean": [213431.5], "std": [45.609757727924844], "count": [158]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [158]}}} +{"episode_index": 463, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7280380038126362]], [[0.6981393491285404]], [[0.6491109340958605]]], "std": [[[0.2349604876278577]], [[0.22319854124407582]], [[0.24671319559858162]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7280380038126362]], [[0.6981393491285404]], [[0.6491109340958605]]], "std": [[[0.2349604876278577]], [[0.22319854124407582]], [[0.24671319559858162]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05902697145938873, -0.32538434863090515, -0.17451831698417664, -0.1757076233625412, 0.13877302408218384, -0.8832140564918518, -0.41195905208587646, -0.7788447141647339], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.10838855803012848, -0.14307135343551636, 0.1519070416688919, -0.7297210097312927, 0.12201639264822006, -0.5645915269851685], "mean": [0.5253892540931702, 0.02284880541265011, 0.11522209644317627, 2.293118715286255, -0.05902702733874321, -0.3253028690814972, -0.14818580448627472, -0.16291430592536926, 0.14489269256591797, -0.8068521022796631, -0.17430320382118225, -0.6868517994880676], "std": [5.603817498922581e-06, 3.697640067912289e-06, 6.705522537231445e-08, 0.00018641108181327581, 5.587935447692871e-08, 6.485499852715293e-06, 0.02409522794187069, 0.009456462226808071, 0.0047781337052583694, 0.04621797427535057, 0.1860351711511612, 0.06410820782184601], "count": [158]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129184603691101, 0.4333411455154419, 0.23768965899944305, 0.37152746319770813, 0.7858119606971741, 0.17559221386909485, -0.09206756204366684, 0.09860268235206604, -0.42459380626678467, -0.10649975389242172, 0.8849692344665527, -0.2771322429180145], "max": [-0.11967509984970093, -0.06541064381599426, 0.12129366397857666, 0.433390736579895, 0.237735778093338, 0.37171635031700134, 0.7859179973602295, 0.18375246226787567, -0.08264908194541931, 0.11122649908065796, -0.2677747309207916, 0.09356138110160828, 0.929826557636261, -0.13443216681480408], "mean": [-0.11967561393976212, -0.06541120260953903, 0.12129246443510056, 0.43334829807281494, 0.23771916329860687, 0.37160012125968933, 0.7858824133872986, 0.17869023978710175, -0.08751759678125381, 0.10466857254505157, -0.3570946156978607, -0.005166282411664724, 0.9065021276473999, -0.20312900841236115], "std": [7.739280363239232e-07, 5.60496118851006e-07, 4.896110112895258e-07, 6.947631845832802e-06, 1.701124529063236e-05, 8.38286432554014e-05, 3.80126730306074e-05, 0.002830879995599389, 0.0028058888856321573, 0.004109482746571302, 0.05073601379990578, 0.06751333922147751, 0.013851878233253956, 0.04609837383031845], "count": [158]}, "timestamp": {"min": [0.0], "max": [5.233333333333333], "mean": [2.6166666666666667], "std": [1.5203252575974948], "count": [158]}, "frame_index": {"min": [0], "max": [157], "mean": [78.5], "std": [45.609757727924844], "count": [158]}, "episode_index": {"min": [463], "max": [463], "mean": [463.0], "std": [0.0], "count": [158]}, "index": {"min": [213511], "max": [213668], "mean": [213589.5], "std": [45.609757727924844], "count": [158]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [158]}}} +{"episode_index": 464, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7328961846405229]], [[0.7008890332244009]], [[0.6514478540305011]]], "std": [[[0.23129333665040872]], [[0.2195572782583013]], [[0.24242607922742312]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7328961846405229]], [[0.7008890332244009]], [[0.6514478540305011]]], "std": [[[0.23129333665040872]], [[0.2195572782583013]], [[0.24242607922742312]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05916360020637512, -0.3256293833255768, -0.18159234523773193, -0.16603103280067444, 0.138980433344841, -0.9607993364334106, -0.5975114107131958, -0.733963668346405], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.08107324689626694, -0.1385226547718048, 0.153357595205307, -0.7544644474983215, 0.043177131563425064, -0.4357283413410187], "mean": [0.525389552116394, 0.02284805104136467, 0.11522204428911209, 2.2931249141693115, -0.05905104801058769, -0.3255521357059479, -0.14945101737976074, -0.15213017165660858, 0.14567504823207855, -0.855176568031311, -0.275251567363739, -0.5717033743858337], "std": [5.973151473881444e-06, 3.847706011583796e-06, 1.4901161193847656e-08, 0.0001860510528786108, 5.199337829253636e-05, 0.0001216103119077161, 0.03353850170969963, 0.007723110727965832, 0.004932560957968235, 0.05108210816979408, 0.22303052246570587, 0.09470006823539734], "count": [148]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129178643226624, 0.43334269523620605, 0.2376965880393982, 0.37148863077163696, 0.7857588529586792, 0.17424525320529938, -0.09143155068159103, 0.09953121840953827, -0.45938748121261597, -0.19604745507240295, 0.850490391254425, -0.2665339708328247], "max": [-0.11967433989048004, -0.06540966033935547, 0.12129366397857666, 0.43348702788352966, 0.2378361076116562, 0.37171635031700134, 0.7859154343605042, 0.18582507967948914, -0.08186071366071701, 0.1122126430273056, -0.27314233779907227, 0.04160536825656891, 0.9408195614814758, -0.10884575545787811], "mean": [-0.11967547982931137, -0.06541115045547485, 0.12129244953393936, 0.43344151973724365, 0.23777559399604797, 0.37157490849494934, 0.7858260273933411, 0.17776554822921753, -0.0870504230260849, 0.10554755479097366, -0.3679957091808319, -0.07049138098955154, 0.9020929932594299, -0.17908062040805817], "std": [7.829718242646777e-07, 6.692465603919118e-07, 5.247879926173482e-07, 5.100699854665436e-05, 3.285913771833293e-05, 8.40400971355848e-05, 4.676942990045063e-05, 0.003735506674274802, 0.0030470655765384436, 0.004037670325487852, 0.06516937166452408, 0.08392126113176346, 0.02995973639190197, 0.0397595539689064], "count": [148]}, "timestamp": {"min": [0.0], "max": [4.9], "mean": [2.4499999999999997], "std": [1.424098155168932], "count": [148]}, "frame_index": {"min": [0], "max": [147], "mean": [73.5], "std": [42.72294465506796], "count": [148]}, "episode_index": {"min": [464], "max": [464], "mean": [464.0], "std": [0.0], "count": [148]}, "index": {"min": [213669], "max": [213816], "mean": [213742.5], "std": [42.72294465506796], "count": [148]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [148]}}} +{"episode_index": 465, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7334971704793029]], [[0.6993512418300654]], [[0.6496180255991285]]], "std": [[[0.22924772792026438]], [[0.21865206300227247]], [[0.24083728412792252]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7334971704793029]], [[0.6993512418300654]], [[0.6496180255991285]]], "std": [[[0.22924772792026438]], [[0.21865206300227247]], [[0.24083728412792252]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05916360020637512, -0.3255179524421692, -0.18360796570777893, -0.1579298973083496, 0.14006543159484863, -1.0394330024719238, -0.6503897309303284, -0.7325981855392456], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3251912593841553, -0.08929795771837234, -0.1381751447916031, 0.1509322226047516, -0.6892508268356323, 0.07474017143249512, -0.3719558119773865], "mean": [0.5253867506980896, 0.022847730666399002, 0.11522207409143448, 2.2931418418884277, -0.05905637517571449, -0.3253297805786133, -0.15694460272789001, -0.14894327521324158, 0.1450631469488144, -0.7754018902778625, -0.23150739073753357, -0.6240466237068176], "std": [5.613499070022954e-06, 3.864739028358599e-06, 4.470348358154297e-08, 0.00018770887982100248, 5.606246122624725e-05, 8.341253123944625e-05, 0.025931574404239655, 0.0050909919664263725, 0.003936619497835636, 0.070738784968853, 0.18189199268817902, 0.06740819662809372], "count": [154]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129178643226624, 0.43326810002326965, 0.23768965899944305, 0.3715127408504486, 0.7857757210731506, 0.17428851127624512, -0.0891999825835228, 0.10114118456840515, -0.4494149386882782, -0.20784200727939606, 0.8639135956764221, -0.2987564206123352], "max": [-0.11967433989048004, -0.06540966033935547, 0.12129366397857666, 0.4334139823913574, 0.2378349006175995, 0.3717404305934906, 0.7859348654747009, 0.18354752659797668, -0.08141755312681198, 0.11118095368146896, -0.29504647850990295, 0.06480896472930908, 0.9300429821014404, -0.05065467953681946], "mean": [-0.11967591196298599, -0.06541125476360321, 0.12129254639148712, 0.43335363268852234, 0.2377336174249649, 0.3716087341308594, 0.7858719229698181, 0.17719654738903046, -0.08625687658786774, 0.10549915581941605, -0.3801567554473877, -0.0370127409696579, 0.8945401906967163, -0.21013322472572327], "std": [7.90577416864835e-07, 6.971109769438044e-07, 5.139417567079363e-07, 2.7927746486966498e-05, 3.965688665630296e-05, 8.412259194301441e-05, 4.342218380770646e-05, 0.002913464792072773, 0.0022575261536985636, 0.0035439799539744854, 0.05139467865228653, 0.06774597615003586, 0.020013172179460526, 0.04605287313461304], "count": [154]}, "timestamp": {"min": [0.0], "max": [5.1], "mean": [2.55], "std": [1.4818344486930155], "count": [154]}, "frame_index": {"min": [0], "max": [153], "mean": [76.5], "std": [44.45503346079047], "count": [154]}, "episode_index": {"min": [465], "max": [465], "mean": [465.0], "std": [0.0], "count": [154]}, "index": {"min": [213817], "max": [213970], "mean": [213893.5], "std": [44.45503346079047], "count": [154]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [154]}}} +{"episode_index": 466, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7325318327886711]], [[0.6984858660130719]], [[0.6486128622004357]]], "std": [[[0.2291012772144557]], [[0.21813014998941643]], [[0.24011766192898512]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7325318327886711]], [[0.6984858660130719]], [[0.6486128622004357]]], "std": [[[0.2291012772144557]], [[0.21813014998941643]], [[0.24011766192898512]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05902697145938873, -0.3253026604652405, -0.176518514752388, -0.16144372522830963, 0.14090153574943542, -0.8528090119361877, -0.48615267872810364, -0.56150221824646], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.12779578566551208, -0.12116196006536484, 0.15310999751091003, -0.7225915789604187, -0.2872099280357361, -0.49437737464904785], "mean": [0.5253922939300537, 0.022846799343824387, 0.11522198468446732, 2.2931296825408936, -0.05902706831693649, -0.3253024220466614, -0.15785309672355652, -0.1391647309064865, 0.1462828367948532, -0.770078718662262, -0.39411529898643494, -0.5407711863517761], "std": [3.994492999481736e-06, 3.7595464164041914e-06, 4.470348358154297e-08, 0.00018827649182640016, 9.685754776000977e-08, 2.384185791015625e-07, 0.017405260354280472, 0.013179533183574677, 0.004513794556260109, 0.040149301290512085, 0.06459982693195343, 0.01462660450488329], "count": [125]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129184603691101, 0.4333411455154419, 0.23768965899944305, 0.37152746319770813, 0.7858296632766724, 0.1737007200717926, -0.08956529945135117, 0.10006110370159149, -0.4579370617866516, -0.129373699426651, 0.8634844422340393, -0.23162208497524261], "max": [-0.11967509984970093, -0.06541064381599426, 0.12129366397857666, 0.43335866928100586, 0.237735778093338, 0.37171635031700134, 0.7859179973602295, 0.18041959404945374, -0.08179660141468048, 0.11258701980113983, -0.39747074246406555, -0.0749543085694313, 0.8989725708961487, -0.16441255807876587], "mean": [-0.11967533826828003, -0.06541141867637634, 0.12129221856594086, 0.4333495497703552, 0.23771877586841583, 0.37160447239875793, 0.7858801484107971, 0.1759651154279709, -0.08645223826169968, 0.10626182705163956, -0.42973482608795166, -0.10204719752073288, 0.8770098090171814, -0.1853661686182022], "std": [5.514102099368756e-07, 5.3892949836154e-07, 4.216454669858649e-07, 5.896191851206822e-06, 1.7231777746928856e-05, 8.430480374954641e-05, 3.7803780287504196e-05, 0.0025446349754929543, 0.002394666662439704, 0.004319635219871998, 0.02274934947490692, 0.01849633827805519, 0.012107834219932556, 0.02002711407840252], "count": [125]}, "timestamp": {"min": [0.0], "max": [4.133333333333334], "mean": [2.0666666666666664], "std": [1.2027745701779144], "count": [125]}, "frame_index": {"min": [0], "max": [124], "mean": [62.0], "std": [36.08323710533743], "count": [125]}, "episode_index": {"min": [466], "max": [466], "mean": [466.0], "std": [0.0], "count": [125]}, "index": {"min": [213971], "max": [214095], "mean": [214033.0], "std": [36.08323710533743], "count": [125]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [125]}}} +{"episode_index": 467, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7350178567538126]], [[0.7012692647058824]], [[0.6520031072984749]]], "std": [[[0.2275620345690892]], [[0.2168443995272826]], [[0.23879118109426878]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7350178567538126]], [[0.7012692647058824]], [[0.6520031072984749]]], "std": [[[0.2275620345690892]], [[0.2168443995272826]], [[0.23879118109426878]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05902697145938873, -0.3253026604652405, -0.18265807628631592, -0.16144372522830963, 0.13689729571342468, -0.8874078392982483, -0.5132066607475281, -0.6446607708930969], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.11589504778385162, -0.12124691158533096, 0.1530075967311859, -0.7020419239997864, -0.2346048653125763, -0.44597527384757996], "mean": [0.5253891944885254, 0.022846469655632973, 0.11522206664085388, 2.2931268215179443, -0.059027038514614105, -0.3253023624420166, -0.15240152180194855, -0.14135761559009552, 0.14515845477581024, -0.7778369188308716, -0.3859497010707855, -0.5521128177642822], "std": [6.067646154406248e-06, 3.6672399801318534e-06, 3.725290298461914e-08, 0.00018528950749896467, 6.705522537231445e-08, 2.980232238769531e-07, 0.02452242560684681, 0.012178609147667885, 0.005615765694528818, 0.05076601728796959, 0.09399372339248657, 0.04963689297437668], "count": [152]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129184603691101, 0.4333411455154419, 0.23768965899944305, 0.37152746319770813, 0.7858296632766724, 0.17347684502601624, -0.08931481093168259, 0.09777193516492844, -0.45798805356025696, -0.16451501846313477, 0.8630576729774475, -0.2371695190668106], "max": [-0.11967509984970093, -0.06541064381599426, 0.12129366397857666, 0.43335866928100586, 0.237735778093338, 0.37171635031700134, 0.7859179973602295, 0.18222513794898987, -0.08094961196184158, 0.11291924118995667, -0.3940272629261017, -0.02539295144379139, 0.9085037708282471, -0.1335223913192749], "mean": [-0.11967569589614868, -0.06541155278682709, 0.1212923526763916, 0.43334946036338806, 0.2377181351184845, 0.3716026842594147, 0.7858813405036926, 0.17684631049633026, -0.08599111437797546, 0.10535704344511032, -0.42445096373558044, -0.0962824895977974, 0.8794487118721008, -0.18283911049365997], "std": [8.316151820508821e-07, 5.847438160344609e-07, 5.01808472108678e-07, 5.674832209479064e-06, 1.660879388509784e-05, 8.303725917357951e-05, 3.7323934520827606e-05, 0.003422577865421772, 0.0028836780693382025, 0.005159927066415548, 0.02052863873541355, 0.04633091017603874, 0.013167987577617168, 0.031151942908763885], "count": [152]}, "timestamp": {"min": [0.0], "max": [5.033333333333333], "mean": [2.5166666666666666], "std": [1.4625890286292547], "count": [152]}, "frame_index": {"min": [0], "max": [151], "mean": [75.5], "std": [43.877670858877636], "count": [152]}, "episode_index": {"min": [467], "max": [467], "mean": [467.0], "std": [0.0], "count": [152]}, "index": {"min": [214096], "max": [214247], "mean": [214171.5], "std": [43.877670858877636], "count": [152]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [152]}}} +{"episode_index": 468, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7309269798474946]], [[0.6988833251633987]], [[0.6490568600217864]]], "std": [[[0.23176901987799922]], [[0.21927152924913215]], [[0.24132065026423932]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7309269798474946]], [[0.6988833251633987]], [[0.6490568600217864]]], "std": [[[0.23176901987799922]], [[0.21927152924913215]], [[0.24132065026423932]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05902697145938873, -0.3256293833255768, -0.18572400510311127, -0.17898206412792206, 0.13754154741764069, -0.8607771992683411, -0.5372546911239624, -0.6906229257583618], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.11647426337003708, -0.13115516304969788, 0.1544036865234375, -0.6722659468650818, -0.13608995079994202, -0.44836661219596863], "mean": [0.5253913402557373, 0.02284657396376133, 0.11522212624549866, 2.2931149005889893, -0.059027016162872314, -0.32539448142051697, -0.16347108781337738, -0.1500271111726761, 0.14556074142456055, -0.761570155620575, -0.25285542011260986, -0.593655526638031], "std": [4.174732566752937e-06, 3.700865818245802e-06, 9.685754776000977e-08, 0.00019376415002625436, 4.470348358154297e-08, 0.00014621242007706314, 0.019659020006656647, 0.015717914327979088, 0.005985526368021965, 0.052755970507860184, 0.1013416051864624, 0.06626876443624496], "count": [163]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129184603691101, 0.4333411455154419, 0.23768965899944305, 0.37148869037628174, 0.7857588529586792, 0.17357248067855835, -0.09052573889493942, 0.09744937717914581, -0.4464632570743561, -0.17664575576782227, 0.8653112649917603, -0.24103406071662903], "max": [-0.11967509984970093, -0.06541064381599426, 0.12129366397857666, 0.43348702788352966, 0.23779647052288055, 0.37171635031700134, 0.7859179973602295, 0.18188701570034027, -0.08293717354536057, 0.11405397951602936, -0.35190871357917786, 0.018088575452566147, 0.914599597454071, -0.14126043021678925], "mean": [-0.11967525631189346, -0.06541144847869873, 0.12129221111536026, 0.43338528275489807, 0.23773731291294098, 0.3715866804122925, 0.7858627438545227, 0.17610329389572144, -0.08669009059667587, 0.10561405122280121, -0.39162054657936096, -0.05455930903553963, 0.8910619616508484, -0.21420808136463165], "std": [5.917655698794988e-07, 5.252666710475751e-07, 4.254498264799622e-07, 5.774208329967223e-05, 3.228635614505038e-05, 8.820756920613348e-05, 5.051313200965524e-05, 0.002982406411319971, 0.0024289016146212816, 0.005685871001332998, 0.02593986690044403, 0.04746415838599205, 0.013482194393873215, 0.025931281968951225], "count": [163]}, "timestamp": {"min": [0.0], "max": [5.4], "mean": [2.6999999999999993], "std": [1.5684387141358123], "count": [163]}, "frame_index": {"min": [0], "max": [162], "mean": [81.0], "std": [47.05316142407437], "count": [163]}, "episode_index": {"min": [468], "max": [468], "mean": [468.0], "std": [0.0], "count": [163]}, "index": {"min": [214248], "max": [214410], "mean": [214329.0], "std": [47.05316142407437], "count": [163]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [163]}}} +{"episode_index": 469, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7302977777777777]], [[0.6980709831154683]], [[0.6492826715686274]]], "std": [[[0.22953989732028124]], [[0.2201026600508046]], [[0.2432905019928897]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7302977777777777]], [[0.6980709831154683]], [[0.6492826715686274]]], "std": [[[0.22953989732028124]], [[0.2201026600508046]], [[0.2432905019928897]]], "count": [100]}, "observation.state": {"min": [0.5253620743751526, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05916360020637512, -0.3256293833255768, -0.1685640960931778, -0.1642548143863678, 0.13913598656654358, -0.8379210233688354, -0.6077591776847839, -0.88529372215271], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3251912593841553, -0.08089563250541687, -0.1279425173997879, 0.15538498759269714, -0.5168856978416443, -0.08717408776283264, -0.6646968722343445], "mean": [0.5253830552101135, 0.022845862433314323, 0.11522216349840164, 2.2931275367736816, -0.059057362377643585, -0.3255198001861572, -0.14024634659290314, -0.1462169736623764, 0.14667096734046936, -0.6038827896118164, -0.3345175087451935, -0.7917830944061279], "std": [6.34016805634019e-06, 3.4038930607493967e-06, 1.341104507446289e-07, 0.00018922043091151863, 5.680197864421643e-05, 0.00013687220052815974, 0.030809495598077774, 0.01124571356922388, 0.005954266991466284, 0.06485715508460999, 0.1804456114768982, 0.05002925172448158], "count": [171]}, "action": {"min": [-0.11967860907316208, -0.06541276723146439, 0.12129178643226624, 0.4332822263240814, 0.23768965899944305, 0.3714885413646698, 0.7857588529586792, 0.17581592500209808, -0.09213826805353165, 0.09861496835947037, -0.5411633849143982, -0.09951107949018478, 0.8156952857971191, -0.2728925943374634], "max": [-0.11967433989048004, -0.06540966033935547, 0.1212945282459259, 0.43348702788352966, 0.2378361076116562, 0.3717404901981354, 0.7859179973602295, 0.18704171478748322, -0.0817003846168518, 0.11466074734926224, -0.3987249433994293, 0.09171094745397568, 0.8752482533454895, -0.07193935662508011], "mean": [-0.11967629939317703, -0.06541170924901962, 0.12129265069961548, 0.43342795968055725, 0.23776908218860626, 0.37158000469207764, 0.7858335375785828, 0.17899645864963531, -0.08768083155155182, 0.10645374655723572, -0.4665966331958771, 0.005166469141840935, 0.8531041741371155, -0.21216270327568054], "std": [1.0116135626958567e-06, 7.598786737617047e-07, 5.223895982453541e-07, 5.6454977311659604e-05, 3.96486502722837e-05, 8.605872426414862e-05, 4.89512640342582e-05, 0.004068520851433277, 0.0031799485441297293, 0.005642252042889595, 0.04619920998811722, 0.06993100047111511, 0.02100500836968422, 0.04467475414276123], "count": [171]}, "timestamp": {"min": [0.0], "max": [5.666666666666667], "mean": [2.8333333333333335], "std": [1.6454201309718464], "count": [171]}, "frame_index": {"min": [0], "max": [170], "mean": [85.0], "std": [49.362603929155384], "count": [171]}, "episode_index": {"min": [469], "max": [469], "mean": [469.0], "std": [0.0], "count": [171]}, "index": {"min": [214411], "max": [214581], "mean": [214496.0], "std": [49.362603929155384], "count": [171]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [171]}}} +{"episode_index": 470, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7337581427015251]], [[0.703057410130719]], [[0.6543467347494554]]], "std": [[[0.2291119563546332]], [[0.2184746275433994]], [[0.24256829326718637]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7337581427015251]], [[0.703057410130719]], [[0.6543467347494554]]], "std": [[[0.2291119563546332]], [[0.2184746275433994]], [[0.24256829326718637]]], "count": [100]}, "observation.state": {"min": [0.5253697633743286, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05902697145938873, -0.3256293833255768, -0.16093403100967407, -0.15539683401584625, 0.1407070904970169, -0.7899020314216614, -0.5714138150215149, -0.7969998121261597], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.058793168514966965, -0.12923993170261383, 0.1555003672838211, -0.5764376521110535, -0.11122211068868637, -0.6660360097885132], "mean": [0.5253809094429016, 0.02284512110054493, 0.11522198468446732, 2.2931201457977295, -0.05902707204222679, -0.3253686726093292, -0.13350120186805725, -0.14141027629375458, 0.14798496663570404, -0.6520248055458069, -0.2931358814239502, -0.7361190319061279], "std": [5.229836006037658e-06, 2.880800366256153e-06, 4.470348358154297e-08, 0.00018254724272992462, 1.0058283805847168e-07, 0.00013028582907281816, 0.03685174137353897, 0.007348694838583469, 0.005035880953073502, 0.0618184469640255, 0.15183153748512268, 0.0374404639005661], "count": [138]}, "action": {"min": [-0.11967835575342178, -0.06541276723146439, 0.12129184603691101, 0.4333411455154419, 0.23768965899944305, 0.3714885413646698, 0.7857588529586792, 0.17571941018104553, -0.0918240174651146, 0.10247772932052612, -0.49074384570121765, -0.09933978319168091, 0.842065691947937, -0.2718605101108551], "max": [-0.11967509984970093, -0.06541075557470322, 0.12129366397857666, 0.43348702788352966, 0.23779526352882385, 0.3717162013053894, 0.7859179973602295, 0.18979094922542572, -0.08244165033102036, 0.11509951949119568, -0.3811934292316437, 0.05605555325746536, 0.9039676189422607, -0.13508912920951843], "mean": [-0.11967694759368896, -0.06541214883327484, 0.12129288911819458, 0.4333752393722534, 0.23772704601287842, 0.3715918958187103, 0.7858701944351196, 0.1797855794429779, -0.08788978308439255, 0.10832687467336655, -0.4329923689365387, -0.0061393724754452705, 0.8699820637702942, -0.22204478085041046], "std": [7.31690420252562e-07, 4.4446744595916243e-07, 4.468903966881044e-07, 5.1448922022245824e-05, 3.0165387215674855e-05, 8.351631549885496e-05, 4.582513793138787e-05, 0.004847213625907898, 0.0031924876384437084, 0.0039696600288152695, 0.03892754018306732, 0.05776304751634598, 0.018352990970015526, 0.03344293311238289], "count": [138]}, "timestamp": {"min": [0.0], "max": [4.566666666666666], "mean": [2.283333333333333], "std": [1.327870754531758], "count": [138]}, "frame_index": {"min": [0], "max": [137], "mean": [68.5], "std": [39.83612263595275], "count": [138]}, "episode_index": {"min": [470], "max": [470], "mean": [470.0], "std": [0.0], "count": [138]}, "index": {"min": [214582], "max": [214719], "mean": [214650.5], "std": [39.83612263595275], "count": [138]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [138]}}} +{"episode_index": 471, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7350018082788671]], [[0.7039123229847495]], [[0.654886568627451]]], "std": [[[0.2300614708639223]], [[0.21856986511636972]], [[0.2422237585842708]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7350018082788671]], [[0.7039123229847495]], [[0.654886568627451]]], "std": [[[0.2300614708639223]], [[0.21856986511636972]], [[0.2422237585842708]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05902697145938873, -0.3256293833255768, -0.17475000023841858, -0.16443243622779846, 0.13817544281482697, -0.742302417755127, -0.6446509957313538, -0.8297852873802185], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.05987434834241867, -0.13350288569927216, 0.1555820256471634, -0.5820992588996887, 0.02828375995159149, -0.5191576480865479], "mean": [0.5253784656524658, 0.022845083847641945, 0.11522211134433746, 2.2931323051452637, -0.05902702361345291, -0.32538753747940063, -0.13536551594734192, -0.14735110104084015, 0.14714083075523376, -0.6687690019607544, -0.27119606733322144, -0.6832231283187866], "std": [2.916058519986109e-06, 2.8516806196421385e-06, 8.195638656616211e-08, 0.00019125464314129204, 5.21540641784668e-08, 0.00014245862257666886, 0.04336429387331009, 0.009334571659564972, 0.006805759854614735, 0.04230591282248497, 0.24529869854450226, 0.09427103400230408], "count": [160]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129184603691101, 0.4333411455154419, 0.23768965899944305, 0.37148863077163696, 0.7857618927955627, 0.17495346069335938, -0.09248611330986023, 0.09945815801620483, -0.4883551001548767, -0.17798128724098206, 0.8375108242034912, -0.30368396639823914], "max": [-0.11967509984970093, -0.06541095674037933, 0.12129366397857666, 0.4334854483604431, 0.23779179155826569, 0.37171629071235657, 0.7859179973602295, 0.1888926476240158, -0.08244504779577255, 0.11450597643852234, -0.33289802074432373, 0.0942521020770073, 0.8962134122848511, -0.14696528017520905], "mean": [-0.11967714875936508, -0.065412238240242, 0.12129294872283936, 0.4333827495574951, 0.2377285212278366, 0.3715951144695282, 0.7858641743659973, 0.17967624962329865, -0.08773285150527954, 0.10720266401767731, -0.4182632565498352, -0.02309718169271946, 0.8691989779472351, -0.23236222565174103], "std": [4.064614529397659e-07, 4.142692091591016e-07, 3.1957529245119076e-07, 5.5937001889105886e-05, 3.252027090638876e-05, 8.84614564711228e-05, 4.755195550387725e-05, 0.005141686648130417, 0.0037324554286897182, 0.00575129734352231, 0.05166637524962425, 0.09632593393325806, 0.01784774661064148, 0.052503570914268494], "count": [160]}, "timestamp": {"min": [0.0], "max": [5.3], "mean": [2.6499999999999995], "std": [1.5395706472188204], "count": [160]}, "frame_index": {"min": [0], "max": [159], "mean": [79.5], "std": [46.18711941656461], "count": [160]}, "episode_index": {"min": [471], "max": [471], "mean": [471.0], "std": [0.0], "count": [160]}, "index": {"min": [214720], "max": [214879], "mean": [214799.5], "std": [46.18711941656461], "count": [160]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [160]}}} +{"episode_index": 472, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7252348720043573]], [[0.6910598284313726]], [[0.6407355582788671]]], "std": [[[0.23661838681071107]], [[0.22600782910263217]], [[0.24836216231144642]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7252348720043573]], [[0.6910598284313726]], [[0.6407355582788671]]], "std": [[[0.23661838681071107]], [[0.22600782910263217]], [[0.24836216231144642]]], "count": [100]}, "observation.state": {"min": [0.5253697633743286, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05902697145938873, -0.3256293833255768, -0.18248817324638367, -0.1728733777999878, 0.13691414892673492, -0.8922306895256042, -0.681132972240448, -0.8818520307540894], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.07443170249462128, -0.14345748722553253, 0.15172426402568817, -0.6993159651756287, 0.12433920800685883, -0.4086359143257141], "mean": [0.5253800749778748, 0.022845067083835602, 0.1152220144867897, 2.293123722076416, -0.0590270571410656, -0.3253806233406067, -0.15327142179012299, -0.1602495014667511, 0.1459418535232544, -0.8125412464141846, -0.18416135013103485, -0.7067773938179016], "std": [4.385615739010973e-06, 2.8318736440269276e-06, 1.4901161193847656e-08, 0.0001868438848759979, 8.568167686462402e-08, 0.0001377837616018951, 0.03720272332429886, 0.008440444245934486, 0.005098674446344376, 0.0384097546339035, 0.2796919643878937, 0.15954379737377167], "count": [144]}, "action": {"min": [-0.1196783110499382, -0.06541245430707932, 0.12129184603691101, 0.4333403408527374, 0.23768965899944305, 0.37148863077163696, 0.7857618927955627, 0.17434847354888916, -0.09109482169151306, 0.09932032227516174, -0.4840226173400879, -0.2236180603504181, 0.8352322578430176, -0.2778122127056122], "max": [-0.11967509984970093, -0.06541070342063904, 0.1212940514087677, 0.4334854483604431, 0.23779179155826569, 0.37171629071235657, 0.7859194874763489, 0.18618515133857727, -0.08108307421207428, 0.110423244535923, -0.2706860303878784, 0.14161215722560883, 0.9235638380050659, -0.09691856056451797], "mean": [-0.1196770966053009, -0.06541215628385544, 0.12129289656877518, 0.43338000774383545, 0.23772867023944855, 0.37159210443496704, 0.7858667969703674, 0.177839994430542, -0.08773943036794662, 0.10541751235723495, -0.36322739720344543, 0.00586308166384697, 0.8976531624794006, -0.19679133594036102], "std": [6.141009976090572e-07, 4.4213317096364335e-07, 3.675388882129482e-07, 5.450814205687493e-05, 3.0109280487522483e-05, 8.506066660629585e-05, 4.8227851948468015e-05, 0.0038797990418970585, 0.0032338909804821014, 0.004053703509271145, 0.06971446424722672, 0.12343712896108627, 0.02951914444565773, 0.050550468266010284], "count": [144]}, "timestamp": {"min": [0.0], "max": [4.766666666666667], "mean": [2.3833333333333333], "std": [1.3856072341783612], "count": [144]}, "frame_index": {"min": [0], "max": [143], "mean": [71.5], "std": [41.56821702535083], "count": [144]}, "episode_index": {"min": [472], "max": [472], "mean": [472.0], "std": [0.0], "count": [144]}, "index": {"min": [214880], "max": [215023], "mean": [214951.5], "std": [41.56821702535083], "count": [144]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [144]}}} +{"episode_index": 473, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7247645915032679]], [[0.6930082924836601]], [[0.6427231781045751]]], "std": [[[0.23570783681437588]], [[0.22290370300243842]], [[0.24477687477068286]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7247645915032679]], [[0.6930082924836601]], [[0.6427231781045751]]], "std": [[[0.23570783681437588]], [[0.22290370300243842]], [[0.24477687477068286]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.1152220293879509, 2.292959451675415, -0.05916360020637512, -0.3256293833255768, -0.19076694548130035, -0.1703248769044876, 0.13837118446826935, -0.6806535720825195, -0.408816397190094, -0.7765535116195679], "max": [0.5253929495811462, 0.022851569578051567, 0.1152220293879509, 2.2933788299560547, -0.05902697145938873, -0.3251912593841553, -0.12057503312826157, -0.14145730435848236, 0.1532512903213501, -0.5053527355194092, -0.08895035833120346, -0.6734097599983215], "mean": [0.5253780484199524, 0.022844666615128517, 0.11522214114665985, 2.293121814727783, -0.05906054750084877, -0.3255210816860199, -0.16845975816249847, -0.15496036410331726, 0.146309956908226, -0.5646085143089294, -0.17352350056171417, -0.7206586003303528], "std": [2.3940031042002374e-06, 2.397134721832117e-06, 1.1175870895385742e-07, 0.00018312051543034613, 5.880356548004784e-05, 0.00013893897994421422, 0.02066827565431595, 0.00811175536364317, 0.005799185484647751, 0.04521758481860161, 0.09617076069116592, 0.02326456643640995], "count": [167]}, "action": {"min": [-0.11967737227678299, -0.06541245430707932, 0.12129178643226624, 0.43327149748802185, 0.23768965899944305, 0.37148863077163696, 0.7857604026794434, 0.17319649457931519, -0.09265969693660736, 0.09840890020132065, -0.4737696349620819, -0.0753132775425911, 0.8431844115257263, -0.3215213418006897], "max": [-0.11967433989048004, -0.06541002541780472, 0.12129366397857666, 0.4334862232208252, 0.2378349006175995, 0.37171533703804016, 0.785933792591095, 0.18224690854549408, -0.08227080851793289, 0.11219337582588196, -0.3904903829097748, 0.057461995631456375, 0.8849252462387085, -0.21948784589767456], "mean": [-0.11967697739601135, -0.06541209667921066, 0.12129291146993637, 0.4334275424480438, 0.2377689778804779, 0.3715772032737732, 0.7858352065086365, 0.17600493133068085, -0.08758872747421265, 0.10603895783424377, -0.42997947335243225, 0.015427946113049984, 0.8558663725852966, -0.28189611434936523], "std": [5.094792641102686e-07, 5.841581014465191e-07, 2.5637055500737915e-07, 5.8747940784087405e-05, 3.748019298654981e-05, 8.271606202470139e-05, 4.8504800361115485e-05, 0.0030659178737550974, 0.0030702624935656786, 0.004988728556782007, 0.025510890409350395, 0.036481428891420364, 0.01168995350599289, 0.028086811304092407], "count": [167]}, "timestamp": {"min": [0.0], "max": [5.533333333333333], "mean": [2.766666666666666], "std": [1.6069294390925266], "count": [167]}, "frame_index": {"min": [0], "max": [166], "mean": [83.0], "std": [48.2078831727758], "count": [167]}, "episode_index": {"min": [473], "max": [473], "mean": [473.0], "std": [0.0], "count": [167]}, "index": {"min": [215024], "max": [215190], "mean": [215107.0], "std": [48.2078831727758], "count": [167]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [167]}}} +{"episode_index": 474, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.727480552832244]], [[0.6974341067538126]], [[0.648566195533769]]], "std": [[[0.23220598618283758]], [[0.2213003652143974]], [[0.24474037611913782]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.727480552832244]], [[0.6974341067538126]], [[0.648566195533769]]], "std": [[[0.23220598618283758]], [[0.2213003652143974]], [[0.24474037611913782]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.11521943658590317, 2.292959451675415, -0.05916360020637512, -0.3256293833255768, -0.1668728142976761, -0.17110486328601837, 0.13613897562026978, -0.7374795079231262, -0.5065115094184875, -0.7697368860244751], "max": [0.5253929495811462, 0.022851569578051567, 0.11521943658590317, 2.2933788299560547, -0.05902697145938873, -0.3251912593841553, -0.09663455933332443, -0.13934898376464844, 0.15453851222991943, -0.6431190371513367, -0.22326403856277466, -0.6960108280181885], "mean": [0.5253785252571106, 0.022844549268484116, 0.11521928012371063, 2.29313325881958, -0.05907079204916954, -0.3254271447658539, -0.14423637092113495, -0.15191249549388885, 0.14607927203178406, -0.6818704605102539, -0.34437981247901917, -0.7268025875091553], "std": [3.3403428005840397e-06, 2.2406256903195754e-06, 1.564621925354004e-07, 0.0001828379463404417, 6.378592661349103e-05, 0.0001542155514471233, 0.02607269585132599, 0.008685980923473835, 0.006156879477202892, 0.027292605489492416, 0.09786460548639297, 0.019193826243281364], "count": [162]}, "action": {"min": [-0.11967867612838745, -0.06541138887405396, 0.12128987908363342, 0.43326810002326965, 0.23768965899944305, 0.37148863077163696, 0.7857588529586792, 0.1745101362466812, -0.09189268201589584, 0.09666584432125092, -0.4888975918292999, -0.08142434060573578, 0.8521521091461182, -0.2136516571044922], "max": [-0.11967640370130539, -0.06540932506322861, 0.12129168957471848, 0.43348702788352966, 0.23783144354820251, 0.3717394173145294, 0.7859348654747009, 0.18515843152999878, -0.08329109102487564, 0.11299622803926468, -0.4113578200340271, 0.024881714954972267, 0.8864340782165527, -0.16757681965827942], "mean": [-0.1196780726313591, -0.06541091203689575, 0.12129095941781998, 0.4333886504173279, 0.23775503039360046, 0.3715941607952118, 0.78585284948349, 0.17827017605304718, -0.08787751942873001, 0.10547579079866409, -0.44709858298301697, -0.022936992347240448, 0.8714784383773804, -0.19393326342105865], "std": [5.549801471715909e-07, 5.363102104638529e-07, 2.9097037668179837e-07, 6.280652451096103e-05, 4.225365773891099e-05, 8.297510066768155e-05, 5.155643884791061e-05, 0.00380325922742486, 0.0031317442189902067, 0.0054010143503546715, 0.025966616347432137, 0.03732271119952202, 0.01211312972009182, 0.01668917015194893], "count": [162]}, "timestamp": {"min": [0.0], "max": [5.366666666666666], "mean": [2.683333333333333], "std": [1.5588160274411498], "count": [162]}, "frame_index": {"min": [0], "max": [161], "mean": [80.5], "std": [46.76448082323449], "count": [162]}, "episode_index": {"min": [474], "max": [474], "mean": [474.0], "std": [0.0], "count": [162]}, "index": {"min": [215191], "max": [215352], "mean": [215271.5], "std": [46.76448082323449], "count": [162]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [162]}}} +{"episode_index": 475, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7356208523965142]], [[0.7009188371459695]], [[0.6507621595860567]]], "std": [[[0.22827652338551555]], [[0.21678520655186845]], [[0.23890226015042648]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7356208523965142]], [[0.7009188371459695]], [[0.6507621595860567]]], "std": [[[0.22827652338551555]], [[0.21678520655186845]], [[0.23890226015042648]]], "count": [100]}, "observation.state": {"min": [0.5253697633743286, 0.02284383960068226, 0.11521943658590317, 2.292959451675415, -0.05916360020637512, -0.3255179524421692, -0.19722315669059753, -0.17068783938884735, 0.1316615790128708, -0.8916016221046448, -0.3298405110836029, -0.6570679545402527], "max": [0.525400698184967, 0.022851569578051567, 0.11521943658590317, 2.2933788299560547, -0.05902697145938873, -0.3251912593841553, -0.09456486254930496, -0.1468632072210312, 0.15258759260177612, -0.7399958372116089, 0.01789937913417816, -0.5680375099182129], "mean": [0.5253819823265076, 0.022844647988677025, 0.11521930247545242, 2.2931249141693115, -0.059039510786533356, -0.32530033588409424, -0.16050726175308228, -0.15993604063987732, 0.1425313949584961, -0.7841202616691589, -0.14478591084480286, -0.6120284199714661], "std": [5.7661304708744865e-06, 2.3686045551585266e-06, 1.341104507446289e-07, 0.00019024628272745758, 3.927818397642113e-05, 3.857419505948201e-05, 0.03735104203224182, 0.007341381628066301, 0.006694361567497253, 0.0422077514231205, 0.10539086908102036, 0.02224791795015335], "count": [143]}, "action": {"min": [-0.11967965960502625, -0.06541164219379425, 0.12128941714763641, 0.43327149748802185, 0.23768965899944305, 0.3715127408504486, 0.7857787609100342, 0.1727531999349594, -0.09069914370775223, 0.0942341536283493, -0.3928421139717102, -0.0877709612250328, 0.8909230828285217, -0.2757992744445801], "max": [-0.1196754053235054, -0.06540988385677338, 0.12129208445549011, 0.43341243267059326, 0.23782797157764435, 0.3717394173145294, 0.785933792591095, 0.18665711581707, -0.08075325191020966, 0.11131374537944794, -0.29552796483039856, 0.011733201332390308, 0.9290457963943481, -0.16998007893562317], "mean": [-0.11967795342206955, -0.06541100889444351, 0.12129075080156326, 0.4333461821079254, 0.23771990835666656, 0.37160301208496094, 0.7858833074569702, 0.17747800052165985, -0.0855267271399498, 0.10307628661394119, -0.34837448596954346, -0.030883869156241417, 0.9067358374595642, -0.23003101348876953], "std": [7.744617391836073e-07, 4.348934510289837e-07, 4.4557054934557527e-07, 1.9631728719105013e-05, 2.4656923415022902e-05, 8.523572614649311e-05, 3.917935464414768e-05, 0.0051465327851474285, 0.0032662057783454657, 0.005502445623278618, 0.03027714230120182, 0.028765082359313965, 0.010180015116930008, 0.027377938851714134], "count": [143]}, "timestamp": {"min": [0.0], "max": [4.733333333333333], "mean": [2.3666666666666667], "std": [1.3759844960366863], "count": [143]}, "frame_index": {"min": [0], "max": [142], "mean": [71.0], "std": [41.27953488110059], "count": [143]}, "episode_index": {"min": [475], "max": [475], "mean": [475.0], "std": [0.0], "count": [143]}, "index": {"min": [215353], "max": [215495], "mean": [215424.0], "std": [41.27953488110059], "count": [143]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [143]}}} +{"episode_index": 476, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7337524673202614]], [[0.6990898175381264]], [[0.6496764978213508]]], "std": [[[0.22925544151345403]], [[0.21991425395056532]], [[0.2430342084688346]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.00392156862745098]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7337524673202614]], [[0.6990898175381264]], [[0.6496764978213508]]], "std": [[[0.22925544151345403]], [[0.21991425395056532]], [[0.2430342084688346]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.11521943658590317, 2.292959451675415, -0.05902697145938873, -0.3253026604652405, -0.1732131838798523, -0.18543826043605804, 0.13422176241874695, -0.9696062803268433, -0.5595264434814453, -0.6769000291824341], "max": [0.5253929495811462, 0.022851569578051567, 0.11521943658590317, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.05554189160466194, -0.13873116672039032, 0.15195630490779877, -0.8215652108192444, -0.07173416018486023, -0.3901645243167877], "mean": [0.5253785252571106, 0.022844456136226654, 0.11521930992603302, 2.2931134700775146, -0.05902707204222679, -0.325302392244339, -0.13860256969928741, -0.15513919293880463, 0.14334183931350708, -0.9038214087486267, -0.27315038442611694, -0.5821848511695862], "std": [2.679273165995255e-06, 2.1005839698773343e-06, 1.2665987014770508e-07, 0.00019005524518433958, 1.0058283805847168e-07, 2.682209014892578e-07, 0.045840661972761154, 0.011613910086452961, 0.006037672981619835, 0.034934237599372864, 0.18281936645507812, 0.11518417298793793], "count": [137]}, "action": {"min": [-0.11967867612838745, -0.06541138887405396, 0.12128987908363342, 0.4333411455154419, 0.23768965899944305, 0.37152746319770813, 0.7858296632766724, 0.17473268508911133, -0.09042806178331375, 0.09652535617351532, -0.43142586946487427, -0.20482032001018524, 0.8724996447563171, -0.19951295852661133], "max": [-0.11967640370130539, -0.06540999561548233, 0.12129168957471848, 0.43335866928100586, 0.2377345710992813, 0.3717162013053894, 0.7859179973602295, 0.18937154114246368, -0.0811140239238739, 0.11109495162963867, -0.30426087975502014, 0.013236873783171177, 0.9374387264251709, -0.11904028803110123], "mean": [-0.11967843025922775, -0.06541123986244202, 0.12129110097885132, 0.4333491921424866, 0.2377142310142517, 0.371597021818161, 0.7858862280845642, 0.17930923402309418, -0.08593025803565979, 0.10375082492828369, -0.3539116680622101, -0.06621816009283066, 0.9134513735771179, -0.15964797139167786], "std": [3.7506285366362135e-07, 3.1157028956840804e-07, 2.63340865558348e-07, 5.891200999030843e-06, 1.7300699255429208e-05, 8.50803917273879e-05, 3.820948404609226e-05, 0.005535298492759466, 0.0035400879569351673, 0.004926532506942749, 0.041435521095991135, 0.08589421957731247, 0.02126139961183071, 0.030565453693270683], "count": [137]}, "timestamp": {"min": [0.0], "max": [4.533333333333333], "mean": [2.2666666666666666], "std": [1.3182479955523458], "count": [137]}, "frame_index": {"min": [0], "max": [136], "mean": [68.0], "std": [39.54743986657038], "count": [137]}, "episode_index": {"min": [476], "max": [476], "mean": [476.0], "std": [0.0], "count": [137]}, "index": {"min": [215496], "max": [215632], "mean": [215564.0], "std": [39.54743986657038], "count": [137]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [137]}}} +{"episode_index": 477, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7336999918300654]], [[0.6985544362745099]], [[0.648024188453159]]], "std": [[[0.22759341824860518]], [[0.21565839449222288]], [[0.2367215978080665]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7336999918300654]], [[0.6985544362745099]], [[0.648024188453159]]], "std": [[[0.22759341824860518]], [[0.21565839449222288]], [[0.2367215978080665]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.11521943658590317, 2.292959451675415, -0.05902697145938873, -0.3253026604652405, -0.20520846545696259, -0.16381460428237915, 0.13611434400081635, -0.8024834394454956, -0.3590807318687439, -0.6541982889175415], "max": [0.5253929495811462, 0.022851569578051567, 0.11521943658590317, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.10437273234128952, -0.14738835394382477, 0.1528092622756958, -0.6819117069244385, -0.062442880123853683, -0.4854287803173065], "mean": [0.5253787636756897, 0.022844281047582626, 0.11521930992603302, 2.293119430541992, -0.05902706831693649, -0.325302392244339, -0.17211748659610748, -0.1538659930229187, 0.14503352344036102, -0.7448190450668335, -0.19832244515419006, -0.5517454147338867], "std": [3.240927526348969e-06, 1.800299173737585e-06, 1.2665987014770508e-07, 0.0001892058935482055, 9.685754776000977e-08, 2.682209014892578e-07, 0.036400698125362396, 0.004835489206016064, 0.005693681072443724, 0.039934590458869934, 0.11226200312376022, 0.050526995211839676], "count": [139]}, "action": {"min": [-0.11967867612838745, -0.06541138887405396, 0.12128987908363342, 0.4333411455154419, 0.23768965899944305, 0.37152746319770813, 0.7858296632766724, 0.17081740498542786, -0.09034256637096405, 0.09757470339536667, -0.424030601978302, -0.13735710084438324, 0.8734990358352661, -0.29089394211769104], "max": [-0.11967640370130539, -0.06540999561548233, 0.12129168957471848, 0.43335866928100586, 0.2377345710992813, 0.3717162013053894, 0.7859179973602295, 0.1845148205757141, -0.08300340175628662, 0.11147739738225937, -0.3479001224040985, 0.010747764259576797, 0.9059975147247314, -0.19296634197235107], "mean": [-0.11967841535806656, -0.06541126221418381, 0.12129101902246475, 0.4333493709564209, 0.23771384358406067, 0.3715992569923401, 0.7858849167823792, 0.17526458203792572, -0.08651484549045563, 0.10495346784591675, -0.37472620606422424, -0.0618133619427681, 0.8910197019577026, -0.24060171842575073], "std": [4.487534681629768e-07, 2.888772030473774e-07, 2.721460248267249e-07, 5.746541773987701e-06, 1.7179030692204833e-05, 8.473117486573756e-05, 3.8015608879504725e-05, 0.004912912845611572, 0.00267642829567194, 0.004691508132964373, 0.01953517459332943, 0.05044461414217949, 0.007519149221479893, 0.03115946240723133], "count": [139]}, "timestamp": {"min": [0.0], "max": [4.6], "mean": [2.3], "std": [1.3374935098492586], "count": [139]}, "frame_index": {"min": [0], "max": [138], "mean": [69.0], "std": [40.124805295477756], "count": [139]}, "episode_index": {"min": [477], "max": [477], "mean": [477.0], "std": [0.0], "count": [139]}, "index": {"min": [215633], "max": [215771], "mean": [215702.0], "std": [40.124805295477756], "count": [139]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [139]}}} +{"episode_index": 478, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7243331454248366]], [[0.6878596623093681]], [[0.6363615958605664]]], "std": [[[0.23374284600864106]], [[0.22152157794821983]], [[0.24118263530890335]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.7243331454248366]], [[0.6878596623093681]], [[0.6363615958605664]]], "std": [[[0.23374284600864106]], [[0.22152157794821983]], [[0.24118263530890335]]], "count": [100]}, "observation.state": {"min": [0.5253775119781494, 0.02284383960068226, 0.11521943658590317, 2.292959451675415, -0.05902697145938873, -0.3253026604652405, -0.21204307675361633, -0.18335312604904175, 0.13800950348377228, -1.0081892013549805, -0.2295493185520172, -0.7115588188171387], "max": [0.5253929495811462, 0.022851569578051567, 0.11521943658590317, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.16026215255260468, -0.16475677490234375, 0.15231147408485413, -0.6915574073791504, 0.12215302884578705, -0.5262040495872498], "mean": [0.5253790020942688, 0.022844497114419937, 0.11521929502487183, 2.2931151390075684, -0.059027038514614105, -0.3253023624420166, -0.1920716017484665, -0.17299401760101318, 0.14440207183361053, -0.8444677591323853, -0.0613308846950531, -0.604485034942627], "std": [3.7408397020044504e-06, 2.1617934180540033e-06, 1.4156103134155273e-07, 0.00019015438738279045, 6.705522537231445e-08, 2.980232238769531e-07, 0.019977668300271034, 0.005173062905669212, 0.00471034599468112, 0.0626859962940216, 0.1252843141555786, 0.05320073291659355], "count": [152]}, "action": {"min": [-0.11967867612838745, -0.06541138887405396, 0.12128987908363342, 0.4333411455154419, 0.23768965899944305, 0.37152746319770813, 0.7858296632766724, 0.17085017263889313, -0.09117726236581802, 0.09895625710487366, -0.391173779964447, -0.08386855572462082, 0.8837012052536011, -0.2752721309661865], "max": [-0.11967640370130539, -0.06541019678115845, 0.12129168957471848, 0.43335866928100586, 0.2377345710992813, 0.3717162013053894, 0.7859179973602295, 0.17761120200157166, -0.08216375857591629, 0.10998765379190445, -0.23998752236366272, 0.04232334345579147, 0.9393417239189148, -0.14416714012622833], "mean": [-0.11967834830284119, -0.06541123241186142, 0.12129095941781998, 0.43334922194480896, 0.23771443963050842, 0.371597558259964, 0.7858859300613403, 0.17367398738861084, -0.08742411434650421, 0.10321173816919327, -0.3155457675457001, -0.021138394251465797, 0.9194326996803284, -0.22277994453907013], "std": [5.210947620071238e-07, 3.308346379071736e-07, 3.318365600080142e-07, 5.742009307141416e-06, 1.729153882479295e-05, 8.517163223586977e-05, 3.818213372142054e-05, 0.002411232329905033, 0.0027126572094857693, 0.0038608447648584843, 0.05070682615041733, 0.03549470007419586, 0.015803109854459763, 0.03026074916124344], "count": [152]}, "timestamp": {"min": [0.0], "max": [5.033333333333333], "mean": [2.5166666666666666], "std": [1.4625890286292547], "count": [152]}, "frame_index": {"min": [0], "max": [151], "mean": [75.5], "std": [43.877670858877636], "count": [152]}, "episode_index": {"min": [478], "max": [478], "mean": [478.0], "std": [0.0], "count": [152]}, "index": {"min": [215772], "max": [215923], "mean": [215847.5], "std": [43.877670858877636], "count": [152]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [152]}}} +{"episode_index": 479, "stats": {"observation.images.endoscope.left": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.729568052832244]], [[0.6918939433551199]], [[0.64125897875817]]], "std": [[[0.2293887539399395]], [[0.21978820080012682]], [[0.24053165408648453]]], "count": [100]}, "observation.images.endoscope.right": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.729568052832244]], [[0.6918939433551199]], [[0.64125897875817]]], "std": [[[0.2293887539399395]], [[0.21978820080012682]], [[0.24053165408648453]]], "count": [100]}, "observation.state": {"min": [0.5253697633743286, 0.02284383960068226, 0.11521943658590317, 2.292959451675415, -0.05902697145938873, -0.3253026604652405, -0.20792685449123383, -0.19533108174800873, 0.1365213692188263, -0.7733365297317505, -0.27081355452537537, -0.7273836731910706], "max": [0.5253929495811462, 0.022851569578051567, 0.11521943658590317, 2.2933788299560547, -0.05902697145938873, -0.3253026604652405, -0.08999300748109818, -0.15128061175346375, 0.15216371417045593, -0.596987247467041, 0.08020562678575516, -0.5391791462898254], "mean": [0.5253795385360718, 0.02284468151628971, 0.11521930247545242, 2.293109893798828, -0.059027049690485, -0.325302392244339, -0.16858993470668793, -0.16799765825271606, 0.14375874400138855, -0.7029555439949036, -0.10652589797973633, -0.6234663128852844], "std": [3.956680757255526e-06, 2.4146711439243518e-06, 1.341104507446289e-07, 0.0001897002657642588, 7.82310962677002e-08, 2.682209014892578e-07, 0.04441741481423378, 0.013405466452240944, 0.005480438470840454, 0.04718872159719467, 0.11622206121683121, 0.053362730890512466], "count": [146]}, "action": {"min": [-0.11967960745096207, -0.06541138887405396, 0.12128987908363342, 0.4333403408527374, 0.23768965899944305, 0.37152746319770813, 0.7858296632766724, 0.17184239625930786, -0.09086167812347412, 0.09810038655996323, -0.4265722334384918, -0.09601394087076187, 0.8613423705101013, -0.29501160979270935], "max": [-0.11967640370130539, -0.06540963053703308, 0.12129208445549011, 0.43335866928100586, 0.2377345710992813, 0.37171629071235657, 0.7859194874763489, 0.18689961731433868, -0.08018236607313156, 0.11108960956335068, -0.2964450418949127, 0.050834063440561295, 0.9088664054870605, -0.22730764746665955], "mean": [-0.11967827379703522, -0.06541117280721664, 0.12129093706607819, 0.43334901332855225, 0.23771515488624573, 0.37159526348114014, 0.7858865261077881, 0.17664353549480438, -0.08694609254598618, 0.10329917818307877, -0.360595703125, -0.019531138241291046, 0.8910694122314453, -0.266399085521698], "std": [5.375035243559978e-07, 3.892029099006322e-07, 3.184352408425184e-07, 5.86195892537944e-06, 1.6916692402446643e-05, 8.49627613206394e-05, 3.826268948614597e-05, 0.00577639602124691, 0.003082742216065526, 0.004810858517885208, 0.037540510296821594, 0.05146930739283562, 0.014389011077582836, 0.018724145367741585], "count": [146]}, "timestamp": {"min": [0.0], "max": [4.833333333333333], "mean": [2.4166666666666665], "std": [1.4048527008591012], "count": [146]}, "frame_index": {"min": [0], "max": [145], "mean": [72.5], "std": [42.14558102577303], "count": [146]}, "episode_index": {"min": [479], "max": [479], "mean": [479.0], "std": [0.0], "count": [146]}, "index": {"min": [215924], "max": [216069], "mean": [215996.5], "std": [42.14558102577303], "count": [146]}, "task_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [146]}}} diff --git a/Surgical/turin/mitic_lerobot_plastic_tube/meta/info.json b/Surgical/turin/mitic_lerobot_plastic_tube/meta/info.json new file mode 100644 index 0000000000000000000000000000000000000000..60a53dc13218f2a38e73a2b513256af8fd337aa7 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_tube/meta/info.json @@ -0,0 +1,176 @@ +{ + "codebase_version": "v2.1", + "robot_type": "dvrk", + "total_episodes": 480, + "total_frames": 216070, + "total_tasks": 6, + "total_videos": 960, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 30, + "splits": { + "train": "0:384", + "val": "384:432", + "test": "432:480", + "perfect": "0:7,8:10,11:14,15:17,18:26,27:28,29:31,32:38,39:42,43:46,47:50,60:61,62:64,67:68,72:76,77:81,83:85,86:97,98:110,120:123,124:128,129:130,131:132,134:135,137:138,139:140,141:142,143:160,162:222,223:247,249:250,252:259,261:266,267:320,321:323,324:340,341:344,345:346,347:351,352:355,357:360,362:370,380:383,384:390,391:395,396:399,403:405,406:415,416:422,423:427,429:480", + "recovery": "7:8,10:11,14:15,17:18,26:27,28:29,31:32,38:39,42:43,46:47,61:62,64:67,68:72,76:77,81:83,85:86,97:98,128:129,130:131,132:134,135:137,138:139,160:162,222:223,247:249,250:252,259:261,266:267,320:321,323:324,340:341,344:345,346:347,351:352,355:357,360:362,383:384,390:391,395:396,399:403,405:406,415:416,422:423,427:429", + "failure": "50:60,110:120,123:124,140:141,142:143,370:380" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "observation.images.endoscope.left": { + "dtype": "video", + "shape": [ + 1080, + 1920, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 1080, + "video.width": 1920, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.endoscope.right": { + "dtype": "video", + "shape": [ + 1080, + 1920, + 3 + ], + "names": [ + "height", + "width", + "channel" + ], + "info": { + "video.height": 1080, + "video.width": 1920, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.state": { + "dtype": "float32", + "shape": [ + 12 + ], + "names": [ + "PSM1_js_outer_yaw", + "PSM1_js_outer_pitch", + "PSM1_js_outer_insertion", + "PSM1_js_outer_roll", + "PSM1_js_outer_wrist_pitch", + "PSM1_js_outer_wrist_yaw", + "PSM2_js_outer_yaw", + "PSM2_js_outer_pitch", + "PSM2_js_outer_insertion", + "PSM2_js_outer_roll", + "PSM2_js_outer_wrist_pitch", + "PSM2_js_outer_wrist_yaw" + ] + }, + "action": { + "dtype": "float32", + "shape": [ + 14 + ], + "names": [ + "PSM1_pos_x", + "PSM1_pos_y", + "PSM1_pos_z", + "PSM1_ori_x", + "PSM1_ori_y", + "PSM1_ori_z", + "PSM1_ori_w", + "PSM2_pos_x", + "PSM2_pos_y", + "PSM2_pos_z", + "PSM2_ori_x", + "PSM2_ori_y", + "PSM2_ori_z", + "PSM2_ori_w" + ] + }, + "instruction.text": { + "dtype": "string", + "shape": [ + 1 + ], + "description": "Natural language task description" + }, + "observation.meta.demo_type": { + "dtype": "string", + "shape": [ + 1 + ], + "names": [ + "value" + ] + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + }, + "task_prompts": { + "Knot_tying_base": "Perform base knot tying on the plastic phantom", + "Knot_tying_final": "Finish the knot tying on the plastic phantom", + "Needle_extraction": "Extract the needle from the plastic phantom", + "Needle_insertion": "Insert the needle into the plastic phantom", + "Needle_positioning": "Position the needle for suturing", + "Tissue_lift": "Lift the plastic phantom to expose the workspace" + }, + "source_path": "/mnt/mitic-nas/Open_H_Embodiment/MITIC_UNITO/Plastic_tube", + "labels_used": { + "perfect": 385, + "recovery": 62, + "failure": 33 + } +} \ No newline at end of file diff --git a/Surgical/turin/mitic_lerobot_plastic_tube/meta/modality.json b/Surgical/turin/mitic_lerobot_plastic_tube/meta/modality.json new file mode 100644 index 0000000000000000000000000000000000000000..57c4beb7fd4fc3ff4d217048c756e5abf0052134 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_tube/meta/modality.json @@ -0,0 +1,46 @@ +{ + "video": { + "endoscope_left": { + "original_key": "observation.images.endoscope.left" + }, + "endoscope_right": { + "original_key": "observation.images.endoscope.right" + } + }, + "state": { + "psm1_joints": { + "start": 0, + "end": 6 + }, + "psm2_joints": { + "start": 6, + "end": 12 + }, + "psm1_pose": { + "start": 0, + "end": 7, + "original_key": "action" + }, + "psm2_pose": { + "start": 7, + "end": 14, + "original_key": "action" + } + }, + "action": { + "psm1_pose": { + "start": 0, + "end": 7 + }, + "psm2_pose": { + "start": 7, + "end": 14 + } + }, + "annotation": { + "instruction": { + "original_key": "instruction.text", + "is_text": true + } + } +} diff --git a/Surgical/turin/mitic_lerobot_plastic_tube/meta/percentile_stats.json b/Surgical/turin/mitic_lerobot_plastic_tube/meta/percentile_stats.json new file mode 100644 index 0000000000000000000000000000000000000000..e07892116b4c1c37e74eed10eb7c1426882f2f62 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_tube/meta/percentile_stats.json @@ -0,0 +1,4322 @@ +{ + "state": { + "psm1_joints": { + "q01": [ + 0.15554117292165756, + -0.23814057677984238, + 0.09109678119421005, + -1.918243646621704, + -1.2310948371887207, + -1.1340808546543122 + ], + "q02": [ + 0.17008068919181824, + -0.22671626508235931, + 0.09317621111869812, + -1.7620246410369873, + -1.158677577972412, + -1.0282677102088928 + ], + "q98": [ + 0.8518560528755188, + 0.1307690441608429, + 0.15285932004451752, + 2.8410890102386475, + 0.8343024849891663, + 0.9372819340229034 + ], + "q99": [ + 0.8740999096632004, + 0.14480124413967133, + 0.15659353092312814, + 2.963612985610961, + 0.902936329245567, + 1.0115113675594327 + ], + "mean": [ + 0.5754876732826233, + -0.04165094345808029, + 0.12628620862960815, + 0.6029157042503357, + -0.1867004632949829, + 0.07060106843709946 + ], + "std": [ + 0.20066633820533752, + 0.1048799380660057, + 0.01581219583749771, + 1.499972939491272, + 0.5547322034835815, + 0.5024656057357788 + ], + "min": [ + 0.06833846122026443, + -0.2994180917739868, + 0.08231441676616669, + -2.924126148223877, + -1.409268856048584, + -1.4232555627822876 + ], + "max": [ + 0.9514638781547546, + 0.22578181326389313, + 0.1701432466506958, + 4.383568286895752, + 1.4154175519943237, + 1.403022050857544 + ] + }, + "psm2_joints": { + "q01": [ + -0.7128029048442841, + -0.5787802338600159, + 0.11655292190611362, + -3.292471716403961, + -1.0072842836380005, + -1.3715638279914857 + ], + "q02": [ + -0.6955575096607208, + -0.5716801047325134, + 0.12038953229784966, + -2.278700590133667, + -0.9416987895965576, + -1.1600390577316284 + ], + "q98": [ + -0.061472948640584946, + 0.05507081001996994, + 0.22294016003608702, + 3.0486023378372185, + 1.01288640499115, + 1.0043686246871935 + ], + "q99": [ + -0.04649857059121132, + 0.07399149984121323, + 0.225790783315897, + 3.588799393177028, + 1.120598264932632, + 1.2684643292427062 + ], + "mean": [ + -0.5122882723808289, + -0.28779783844947815, + 0.1596599966287613, + 0.6034455299377441, + 0.1642926037311554, + 0.0035026944242417812 + ], + "std": [ + 0.16002389788627625, + 0.18507610261440277, + 0.028377797454595566, + 1.2269943952560425, + 0.46624207496643066, + 0.5332365036010742 + ], + "min": [ + -0.7945070266723633, + -0.6272557973861694, + 0.1058589294552803, + -4.53873872756958, + -1.3916428089141846, + -1.8311450481414795 + ], + "max": [ + -0.016356749460101128, + 0.2040732204914093, + 0.23975661396980286, + 4.555723667144775, + 1.421976089477539, + 1.4134080410003662 + ] + }, + "psm1_pose": { + "q01": [ + -0.17054908379912376, + -0.11089507281780243, + 0.07865754544734954, + -0.49776564568281173, + -0.5548047035932541, + -0.5331117784976959, + -0.5413869285583496 + ], + "q02": [ + -0.1677406558394432, + -0.10885102838277817, + 0.08020187720656395, + -0.39514171361923217, + -0.5338355028629302, + -0.4449963814020157, + -0.508051495552063 + ], + "q98": [ + -0.05519436858594418, + -0.04263098113238812, + 0.14465497195720672, + 0.729530838727951, + 0.7573638010025024, + 0.891879426240921, + 0.8984344637393952 + ], + "q99": [ + -0.05238916698843242, + -0.038808032087981705, + 0.14876114055514336, + 0.7573962199687958, + 0.7818528705835341, + 0.9177441316843032, + 0.917990260720253 + ], + "mean": [ + -0.10702090710401535, + -0.07286383956670761, + 0.11508321762084961, + 0.35010242462158203, + 0.1611258089542389, + 0.3631148934364319, + 0.3592953681945801 + ], + "std": [ + 0.03260262683033943, + 0.01742088980972767, + 0.01773054711520672, + 0.2357507199048996, + 0.4275672733783722, + 0.3491515815258026, + 0.47978392243385315 + ], + "min": [ + -0.1900283247232437, + -0.11874212324619293, + 0.06852523237466812, + -0.6388782262802124, + -0.6623910069465637, + -0.6698468327522278, + -0.6457532048225403 + ], + "max": [ + -0.03659258782863617, + -0.02560380846261978, + 0.16123828291893005, + 0.8521320223808289, + 0.8839892745018005, + 0.9971170425415039, + 0.96208256483078 + ] + }, + "psm2_pose": { + "q01": [ + 0.09318424396216869, + -0.15814473941922189, + 0.04870401650667191, + -0.6282706362009048, + -0.6147541731595993, + -0.6348338270187378, + -0.5982398521900177 + ], + "q02": [ + 0.09543473646044731, + -0.15478241980075835, + 0.04991971410810948, + -0.6031493043899536, + -0.5853130352497101, + -0.6185546290874481, + -0.5614588177204132 + ], + "q98": [ + 0.1867920160293579, + -0.04476980961859227, + 0.11622687324881553, + 0.7522638249397278, + 0.6573750066757199, + 0.9115811359882354, + 0.9535806012153626 + ], + "q99": [ + 0.1879846155643463, + -0.04201741755008698, + 0.11965391896665095, + 0.7898342430591583, + 0.7156709975004195, + 0.9290932297706603, + 0.9681164187192917 + ], + "mean": [ + 0.12887270748615265, + -0.09965220838785172, + 0.08366493880748749, + 0.15776881575584412, + -0.21241389214992523, + -0.08296409994363785, + 0.5258191823959351 + ], + "std": [ + 0.022367315366864204, + 0.03308173641562462, + 0.019310686737298965, + 0.37180542945861816, + 0.26964816451072693, + 0.48888644576072693, + 0.4434069097042084 + ], + "min": [ + 0.07726409286260605, + -0.1755223125219345, + 0.0418471060693264, + -0.7035261392593384, + -0.7027087807655334, + -0.703624963760376, + -0.703039824962616 + ], + "max": [ + 0.1960676908493042, + -0.028872666880488396, + 0.13016195595264435, + 0.9409063458442688, + 0.866590678691864, + 0.9906736612319946, + 0.9992529153823853 + ] + } + }, + "action": { + "psm1_pose": { + "q01": [ + [ + -0.0007085584104061127, + -0.0007640526443719864, + -0.0008920004218816758 + ], + [ + -0.001389864906668663, + -0.0014881627634167672, + -0.00175737202167511 + ], + [ + -0.0020593850687146186, + -0.002183043360710144, + -0.0025997623801231385 + ], + [ + -0.0027119756489992143, + -0.002845907583832741, + -0.0034220051020383835 + ], + [ + -0.003345450460910797, + -0.0034681422263383864, + -0.004216087758541107 + ], + [ + -0.003958207443356514, + -0.0040645811334252355, + -0.0050096531212329865 + ], + [ + -0.004547977596521377, + -0.004636752270162105, + -0.005720353722572327 + ], + [ + -0.005122550204396248, + -0.0051888091862201694, + -0.0064345975220203395 + ], + [ + -0.005664934441447258, + -0.005711016319692135, + -0.007112026214599609 + ], + [ + -0.006198552027344703, + -0.006208933107554913, + -0.0077663173526525495 + ], + [ + -0.00671066664159298, + -0.006660198681056499, + -0.008381839990615845 + ], + [ + -0.0072212332859635355, + -0.007105609700083733, + -0.008919315487146378 + ], + [ + -0.007697722874581814, + -0.007516122013330459, + -0.009474857598543168 + ], + [ + -0.008164196982979774, + -0.00790785789489746, + -0.009979233294725418 + ], + [ + -0.008634782135486603, + -0.008296895399689674, + -0.010420243516564369 + ], + [ + -0.009034068137407304, + -0.008660869486629964, + -0.010862452685832977 + ], + [ + -0.009423908442258835, + -0.009038852006196975, + -0.011259476616978644 + ], + [ + -0.00983093999326229, + -0.0093616733700037, + -0.01166722759604454 + ], + [ + -0.01020519845187664, + -0.009713298603892325, + -0.012055128812789917 + ], + [ + -0.010567297190427781, + -0.010008054375648499, + -0.012444331422448158 + ], + [ + -0.010917880237102509, + -0.010322725623846054, + -0.012812564596533776 + ], + [ + -0.011266759335994721, + -0.010581088662147521, + -0.013165900930762291 + ], + [ + -0.011623275689780712, + -0.010823603570461273, + -0.01355477750301361 + ], + [ + -0.011942023113369941, + -0.01107690565288067, + -0.013863722681999206 + ], + [ + -0.012197349518537522, + -0.0112763512134552, + -0.014205920100212098 + ], + [ + -0.012532021552324295, + -0.01146759007126093, + -0.014485753700137138 + ], + [ + -0.01285994078963995, + -0.011659758649766445, + -0.014760938361287118 + ], + [ + -0.013182131424546242, + -0.01184762042015791, + -0.015048851892352104 + ], + [ + -0.013488856479525566, + -0.012035634443163872, + -0.015308984071016312 + ], + [ + -0.013740946017205715, + -0.012191621288657188, + -0.01555853359401226 + ], + [ + -0.014068693295121193, + -0.012335011214017868, + -0.015808587595820427 + ], + [ + -0.014316958636045455, + -0.012476800940930843, + -0.01605196572840214 + ], + [ + -0.014533360749483108, + -0.012638886086642742, + -0.01631743147969246 + ], + [ + -0.014761737138032914, + -0.012740114107728004, + -0.01657389260828495 + ], + [ + -0.015002199187874795, + -0.012885976433753967, + -0.016843900680541993 + ], + [ + -0.015187615305185318, + -0.013045314475893974, + -0.01706960842013359 + ], + [ + -0.015393942818045616, + -0.01317321851849556, + -0.0173228457570076 + ], + [ + -0.015585944429039954, + -0.013283762373030186, + -0.017557833716273306 + ], + [ + -0.01576209917664528, + -0.013426941707730294, + -0.017884039580821992 + ], + [ + -0.015903344079852104, + -0.01354321964085102, + -0.01812724269926548 + ], + [ + -0.016077473163604736, + -0.013603126779198647, + -0.018377178981900215 + ], + [ + -0.01625208381563425, + -0.013704817071557044, + -0.018616081923246385 + ], + [ + -0.016434147134423257, + -0.013790353685617446, + -0.018896261379122734 + ], + [ + -0.016619423404335976, + -0.013880726732313633, + -0.019149089604616164 + ], + [ + -0.016822648346424104, + -0.013978533670306206, + -0.019383671581745147 + ], + [ + -0.01705798029899597, + -0.014020068235695363, + -0.019660038873553276 + ], + [ + -0.017260466516017915, + -0.0140683638677001, + -0.019862105846405027 + ], + [ + -0.01739349089562893, + -0.014125085733830929, + -0.02013417936861515 + ], + [ + -0.017587644197046757, + -0.014206942357122897, + -0.020367708206176758 + ], + [ + -0.0177076455950737, + -0.014277834370732307, + -0.020522118210792542 + ] + ], + "q02": [ + [ + -0.0005527724325656891, + -0.0006058932840824127, + -0.0006947879493236542 + ], + [ + -0.0010899412631988526, + -0.0011863531172275543, + -0.0013705521821975708 + ], + [ + -0.00161368265748024, + -0.001742754578590393, + -0.0020331773161888123 + ], + [ + -0.002124303877353668, + -0.002287070006132126, + -0.0026818984746932984 + ], + [ + -0.0026180638372898103, + -0.002784952223300934, + -0.0033156655728816984 + ], + [ + -0.0030958510935306547, + -0.00327765628695488, + -0.003919517695903778 + ], + [ + -0.003534649237990379, + -0.0037344664335250853, + -0.004517787843942642 + ], + [ + -0.003974700719118119, + -0.0041881433874368665, + -0.005085952132940292 + ], + [ + -0.004406190663576126, + -0.004605819582939148, + -0.005632998794317246 + ], + [ + -0.004818213284015656, + -0.005013922154903412, + -0.006157249212265015 + ], + [ + -0.005233084857463837, + -0.005411312654614448, + -0.006663372963666916 + ], + [ + -0.005615497604012489, + -0.005787839516997338, + -0.007138566225767136 + ], + [ + -0.005991415977478027, + -0.006129567995667457, + -0.007616677582263947 + ], + [ + -0.006352348625659943, + -0.006467839851975441, + -0.008050862103700637 + ], + [ + -0.00669566124677658, + -0.006780649721622467, + -0.008464776277542115 + ], + [ + -0.007033928334712982, + -0.007075309157371521, + -0.008847740143537522 + ], + [ + -0.007372079938650131, + -0.0073645741492509844, + -0.00923985481262207 + ], + [ + -0.007682965099811554, + -0.0076598387956619265, + -0.009599642753601074 + ], + [ + -0.008022800236940384, + -0.007914237156510353, + -0.009939705580472946 + ], + [ + -0.008334833234548568, + -0.008167795315384864, + -0.01026427835226059 + ], + [ + -0.00864053949713707, + -0.00840664878487587, + -0.010568674802780152 + ], + [ + -0.008920940458774567, + -0.008636065945029258, + -0.010880993604660034 + ], + [ + -0.009177716746926308, + -0.008863720744848251, + -0.011142666786909103 + ], + [ + -0.00942576363682747, + -0.009087610468268394, + -0.011428459882736205 + ], + [ + -0.00971166729927063, + -0.009307642802596092, + -0.0116665717959404 + ], + [ + -0.009964276403188706, + -0.009493465796113014, + -0.011892855614423752 + ], + [ + -0.010204872637987137, + -0.009666652083396912, + -0.012115664780139923 + ], + [ + -0.010457032769918441, + -0.009828766733407974, + -0.012350075095891953 + ], + [ + -0.010691502392292022, + -0.009998166933655739, + -0.012551155388355256 + ], + [ + -0.010931565463542937, + -0.01016964353621006, + -0.012762289941310883 + ], + [ + -0.011149382591247559, + -0.010310425758361816, + -0.013003672063350678 + ], + [ + -0.01136716514825821, + -0.01043932043015957, + -0.0132109135389328 + ], + [ + -0.011595561504364013, + -0.010570276752114296, + -0.013411739617586136 + ], + [ + -0.011810087859630584, + -0.01069554954767227, + -0.013588632345199586 + ], + [ + -0.012015863358974456, + -0.01082880049943924, + -0.013772785067558288 + ], + [ + -0.012209927141666412, + -0.010948195010423661, + -0.013962779194116592 + ], + [ + -0.01239885851740837, + -0.011045402735471726, + -0.014161376953125 + ], + [ + -0.012582008838653564, + -0.01114607684314251, + -0.014342326819896698 + ], + [ + -0.012763415575027465, + -0.011236377358436585, + -0.014524264186620712 + ], + [ + -0.012921409979462624, + -0.011334884539246559, + -0.014714587181806564 + ], + [ + -0.013088444024324417, + -0.01143769919872284, + -0.014868729114532471 + ], + [ + -0.013275355398654938, + -0.011531779915094376, + -0.015061935782432556 + ], + [ + -0.013414274305105209, + -0.011623765602707862, + -0.015270281434059143 + ], + [ + -0.013567311465740204, + -0.01172176793217659, + -0.015463667660951615 + ], + [ + -0.013700120896100999, + -0.011799514964222909, + -0.015645118206739427 + ], + [ + -0.013834867924451828, + -0.01188418060541153, + -0.01582039549946785 + ], + [ + -0.013961167931556702, + -0.011985709145665168, + -0.016000475585460663 + ], + [ + -0.014127977043390274, + -0.01206201121211052, + -0.01615225210785866 + ], + [ + -0.014264706894755364, + -0.012112336531281472, + -0.016326528191566467 + ], + [ + -0.014409248679876328, + -0.012162481844425201, + -0.01653350383043289 + ] + ], + "q98": [ + [ + 0.000541381239891052, + 0.0006155349314212796, + 0.0006593111157417297 + ], + [ + 0.0010620796680450434, + 0.0012070885300636287, + 0.0013013887405395504 + ], + [ + 0.001568848192691803, + 0.0017765353620052332, + 0.001930354684591293 + ], + [ + 0.0020640620589256285, + 0.002342511862516403, + 0.002546509504318237 + ], + [ + 0.002527737021446227, + 0.0028753811866044994, + 0.0031552894413471215 + ], + [ + 0.0029830765724182112, + 0.003405765071511267, + 0.00373331606388092 + ], + [ + 0.0034180413186550114, + 0.00389658972620964, + 0.004303720444440841 + ], + [ + 0.003831522464752197, + 0.0043852013349533064, + 0.004850229024887083 + ], + [ + 0.004217781126499171, + 0.004853900223970412, + 0.005392877906560896 + ], + [ + 0.004604322165250775, + 0.005284906700253484, + 0.005910840779542916 + ], + [ + 0.004963963329792022, + 0.005719801336526871, + 0.006402978003025054 + ], + [ + 0.005310652181506155, + 0.006117304936051362, + 0.006869181245565413 + ], + [ + 0.005646131932735441, + 0.006512969359755514, + 0.007328198701143258 + ], + [ + 0.005958297848701477, + 0.006879444420337673, + 0.007778169214725494 + ], + [ + 0.0062587024271488125, + 0.007229226827621459, + 0.008210070133209221 + ], + [ + 0.006516361534595486, + 0.007565484419465064, + 0.008642008304595942 + ], + [ + 0.006784916371107101, + 0.007895836532115936, + 0.00903404206037521 + ], + [ + 0.007061323076486585, + 0.008213497251272198, + 0.009433964192867276 + ], + [ + 0.007318044602870938, + 0.008501794636249527, + 0.009789879471063613 + ], + [ + 0.007571827173233032, + 0.008798620328307147, + 0.010138752907514568 + ], + [ + 0.007827968820929525, + 0.009080916568636892, + 0.010484578758478157 + ], + [ + 0.008075718656182274, + 0.00935433618724346, + 0.010810733139514922 + ], + [ + 0.008318474441766737, + 0.009620111584663383, + 0.011114729791879645 + ], + [ + 0.008550307005643843, + 0.009896321594715117, + 0.01141242876648902 + ], + [ + 0.00878126323223114, + 0.01012252941727638, + 0.011706569194793685 + ], + [ + 0.00902434110641479, + 0.01035998336970806, + 0.01200651973485946 + ], + [ + 0.009243005365133283, + 0.010575857162475583, + 0.012283205091953272 + ], + [ + 0.009453974217176437, + 0.010783784762024877, + 0.012533013373613355 + ], + [ + 0.009664038568735121, + 0.010976153090596191, + 0.012780632823705663 + ], + [ + 0.009866444021463392, + 0.011171874999999996, + 0.013022791892290116 + ], + [ + 0.010055080652236936, + 0.01133945554494857, + 0.013283591121435158 + ], + [ + 0.01025379985570907, + 0.011512021422386167, + 0.013537382036447523 + ], + [ + 0.010435803830623624, + 0.01165431879460811, + 0.013772066235542297 + ], + [ + 0.010622093975543975, + 0.011789291724562645, + 0.014004999846220015 + ], + [ + 0.010796069800853726, + 0.011961809471249578, + 0.01423961296677589 + ], + [ + 0.010980950966477394, + 0.012121534496545783, + 0.014444674551486967 + ], + [ + 0.011148827224969852, + 0.0122503325343132, + 0.014685675203800192 + ], + [ + 0.011339322626590726, + 0.012398068830370894, + 0.014901446104049672 + ], + [ + 0.011512313634157174, + 0.012531393468379962, + 0.01512483328580856 + ], + [ + 0.011676237434148789, + 0.012662655487656584, + 0.015342955440282819 + ], + [ + 0.011810573190450667, + 0.012766280323266977, + 0.015542271584272384 + ], + [ + 0.011989709138870238, + 0.012876778542995451, + 0.015776197165250774 + ], + [ + 0.012126953601837149, + 0.012933582291007042, + 0.015992880314588537 + ], + [ + 0.012280349135398862, + 0.013034424781799312, + 0.016190323680639263 + ], + [ + 0.012443668991327279, + 0.01310698240995407, + 0.016392665952444076 + ], + [ + 0.01259080663323402, + 0.013197334781289087, + 0.016555472612380974 + ], + [ + 0.012721304148435586, + 0.013286528959870324, + 0.016756777465343473 + ], + [ + 0.012854402661323547, + 0.013353273272514343, + 0.016955001950263976 + ], + [ + 0.012978411018848396, + 0.013435750082135187, + 0.017151486575603482 + ], + [ + 0.013087978586554517, + 0.013521279543638225, + 0.017355077862739564 + ] + ], + "q99": [ + [ + 0.0007063278555870054, + 0.0008017696812748908, + 0.0008521001785993568 + ], + [ + 0.0013854153454303736, + 0.001581542044878004, + 0.001669794768095016 + ], + [ + 0.0020414006710052484, + 0.002350465543568132, + 0.0024769220501184457 + ], + [ + 0.0026809777319431296, + 0.0030729682743549326, + 0.0032604082673788055 + ], + [ + 0.0032701632380485474, + 0.0037831836193799955, + 0.004035847857594489 + ], + [ + 0.0038579776138067223, + 0.004441020265221592, + 0.004782459512352942 + ], + [ + 0.004437057971954345, + 0.005087779462337489, + 0.005478319898247718 + ], + [ + 0.004951929971575737, + 0.005695660188794133, + 0.006163739636540407 + ], + [ + 0.00546515166759491, + 0.006264922507107256, + 0.006831401586532591 + ], + [ + 0.00594885408878326, + 0.006813282668590538, + 0.007495163232088088 + ], + [ + 0.006413653194904322, + 0.007333252392709254, + 0.008105117604136465 + ], + [ + 0.0068640235066413854, + 0.007815442234277725, + 0.008718942329287526 + ], + [ + 0.007301988676190375, + 0.008284346796572204, + 0.00928731493651867 + ], + [ + 0.007668094336986538, + 0.008703211545944212, + 0.009829517900943753 + ], + [ + 0.008073570430278771, + 0.009152211509644974, + 0.01036348059773445 + ], + [ + 0.008435049578547476, + 0.009552131071686742, + 0.01086109563708304 + ], + [ + 0.00878473453223705, + 0.009957079030573362, + 0.011341273039579377 + ], + [ + 0.009090471044182775, + 0.01037308584898709, + 0.01181049533188343 + ], + [ + 0.009448455721139906, + 0.010742487981915466, + 0.012271808311343193 + ], + [ + 0.009746265932917593, + 0.011100737079977989, + 0.012693078964948649 + ], + [ + 0.010063719078898418, + 0.011465619169175621, + 0.013134425207972512 + ], + [ + 0.010373134240508078, + 0.011788969114422797, + 0.013605518415570256 + ], + [ + 0.010686117038130756, + 0.012073447816073888, + 0.014028496518731112 + ], + [ + 0.010993730649352072, + 0.012404903713613748, + 0.01445905953645705 + ], + [ + 0.011236763447523106, + 0.012716279439628124, + 0.014834569171071052 + ], + [ + 0.011531143262982367, + 0.012973838970065113, + 0.015210138782858845 + ], + [ + 0.011803315430879587, + 0.013203942514955996, + 0.015570556074380845 + ], + [ + 0.012088685780763622, + 0.013405570350587365, + 0.015966927632689476 + ], + [ + 0.01236751843243837, + 0.013624969292432065, + 0.01629725240170954 + ], + [ + 0.012598630636930466, + 0.013839959725737571, + 0.016655128598213192 + ], + [ + 0.01288036927580833, + 0.014037965387105937, + 0.016989758312702177 + ], + [ + 0.013151712790131567, + 0.014229178726673125, + 0.017364375814795493 + ], + [ + 0.013408061712980267, + 0.014385360963642594, + 0.01768395282328128 + ], + [ + 0.013683643080294131, + 0.0145248632878065, + 0.01800389140844344 + ], + [ + 0.01394216943532227, + 0.014663126096129417, + 0.018379815742373455 + ], + [ + 0.014138860478997223, + 0.014803341217339039, + 0.018692413419485084 + ], + [ + 0.014367847666144368, + 0.014959027953445895, + 0.018990444168448434 + ], + [ + 0.014559481590986249, + 0.015084911100566385, + 0.019203137159347516 + ], + [ + 0.014728491455316534, + 0.015192677304148673, + 0.019407059922814354 + ], + [ + 0.014913505688309668, + 0.015289810933172701, + 0.019679722413420662 + ], + [ + 0.015117148235440253, + 0.015410797595977783, + 0.019983699098229404 + ], + [ + 0.01526031732559204, + 0.01549164295196532, + 0.020248362198472022 + ], + [ + 0.015417035296559332, + 0.01556402586400508, + 0.020549906864762307 + ], + [ + 0.015558788180351248, + 0.015700119249522682, + 0.02083905689418315 + ], + [ + 0.01572374731302261, + 0.015821941643953324, + 0.021109428554773327 + ], + [ + 0.015862594619393346, + 0.015881159380078308, + 0.021337519362568856 + ], + [ + 0.016023431122303, + 0.015946278534829616, + 0.02159002773463726 + ], + [ + 0.01616558201611041, + 0.016017878800630568, + 0.021761731877923008 + ], + [ + 0.01628559004515409, + 0.01606738146394491, + 0.021981546431779856 + ], + [ + 0.01637556381523609, + 0.01612238071858882, + 0.02219235405325889 + ] + ], + "mean": [ + [ + -6.320264674286591e-06, + -4.0951231312647e-06, + 9.973377927963156e-06 + ], + [ + -1.2974806850252207e-05, + -7.84477833803976e-06, + 2.0028697690577246e-05 + ], + [ + -1.9957828044425696e-05, + -1.1235378224228043e-05, + 3.0154225896694697e-05 + ], + [ + -2.7271820727037266e-05, + -1.4278210983320605e-05, + 4.031005300930701e-05 + ], + [ + -3.4899891034001485e-05, + -1.6943111404543743e-05, + 5.048247112426907e-05 + ], + [ + -4.282143709133379e-05, + -1.9231023543397896e-05, + 6.067632421036251e-05 + ], + [ + -5.103824514662847e-05, + -2.1115019990247674e-05, + 7.086872938089073e-05 + ], + [ + -5.9572445024969056e-05, + -2.2577354684472084e-05, + 8.10814744909294e-05 + ], + [ + -6.843588926130906e-05, + -2.36158593907021e-05, + 9.131387923844159e-05 + ], + [ + -7.762923632981256e-05, + -2.421032877464313e-05, + 0.0001015471134451218 + ], + [ + -8.716197771718726e-05, + -2.4359436793019995e-05, + 0.00011178522981936112 + ], + [ + -9.705168486107141e-05, + -2.409950138826389e-05, + 0.00012202344805700704 + ], + [ + -0.00010732653026934713, + -2.3439568394678645e-05, + 0.0001322487078141421 + ], + [ + -0.0001179728569695726, + -2.240980938950088e-05, + 0.00014243558689486235 + ], + [ + -0.00012898113345727324, + -2.101272730214987e-05, + 0.00015258982602972537 + ], + [ + -0.000140349380671978, + -1.925719880091492e-05, + 0.00016270283958874643 + ], + [ + -0.00015207516844384372, + -1.7175685570691712e-05, + 0.00017274329729843885 + ], + [ + -0.00016415676509495825, + -1.4784415725443978e-05, + 0.00018270622240379453 + ], + [ + -0.0001766069617588073, + -1.2108948794775642e-05, + 0.00019258091924712062 + ], + [ + -0.00018940541485790163, + -9.204622074321378e-06, + 0.00020232392125763 + ], + [ + -0.00020252478134352714, + -6.0719607972714584e-06, + 0.00021194107830524445 + ], + [ + -0.00021596955775748938, + -2.7612293251877418e-06, + 0.00022143882233649492 + ], + [ + -0.00022967947006691247, + 6.953030720069364e-07, + 0.00023082316329237074 + ], + [ + -0.00024361375835724175, + 4.2741894503706135e-06, + 0.0002400970843154937 + ], + [ + -0.0002577615960035473, + 7.94417519500712e-06, + 0.00024930061772465706 + ], + [ + -0.0002720777119975537, + 1.1708357305906247e-05, + 0.0002584338071756065 + ], + [ + -0.00028653210029006004, + 1.5567795344395563e-05, + 0.0002675372816156596 + ], + [ + -0.00030112071544863284, + 1.9487024474074133e-05, + 0.00027661677449941635 + ], + [ + -0.00031581526855006814, + 2.3461709133698605e-05, + 0.00028564539388753474 + ], + [ + -0.0003306098806206137, + 2.7484449674375355e-05, + 0.0002946066379081458 + ], + [ + -0.00034549974952824414, + 3.152969657094218e-05, + 0.0003034920373465866 + ], + [ + -0.0003604409284889698, + 3.56277305399999e-05, + 0.0003122933267150074 + ], + [ + -0.0003754457866307348, + 3.9790385926607996e-05, + 0.00032097590155899525 + ], + [ + -0.0003904918266925961, + 4.398858072818257e-05, + 0.00032953344634734094 + ], + [ + -0.00040559310582466424, + 4.823683775612153e-05, + 0.0003379394765943289 + ], + [ + -0.00042070329072885215, + 5.255293217487633e-05, + 0.0003461597370915115 + ], + [ + -0.0004358277074061334, + 5.6896318710641935e-05, + 0.000354205840267241 + ], + [ + -0.0004509913851507008, + 6.126614607637748e-05, + 0.0003620261559262872 + ], + [ + -0.00046619088971056044, + 6.565124203916639e-05, + 0.0003696218191180378 + ], + [ + -0.00048146393964998424, + 7.00556265655905e-05, + 0.0003770008042920381 + ], + [ + -0.0004967887653037906, + 7.448751421179622e-05, + 0.00038415120798163116 + ], + [ + -0.0005121544236317277, + 7.897227624198422e-05, + 0.00039108708733692765 + ], + [ + -0.0005275317234918475, + 8.35171013022773e-05, + 0.00039780454244464636 + ], + [ + -0.0005429441225714982, + 8.812629675958306e-05, + 0.0004043046501465142 + ], + [ + -0.0005583669990301132, + 9.280840458814055e-05, + 0.000410611683037132 + ], + [ + -0.0005737966857850552, + 9.754182246979326e-05, + 0.00041673373198136687 + ], + [ + -0.0005892547778785229, + 0.00010230184852844104, + 0.00042266983655281365 + ], + [ + -0.0006047117640264332, + 0.00010708346962928772, + 0.00042842706898227334 + ], + [ + -0.000620195409283042, + 0.00011187767813680694, + 0.00043399198330007493 + ], + [ + -0.0006356790545396507, + 0.00011667264334391803, + 0.0004393527051433921 + ] + ], + "std": [ + [ + 0.00022911335690878332, + 0.000256577564869076, + 0.00028782064327970147 + ], + [ + 0.00045039417454972863, + 0.0005031884647905827, + 0.0005667253863066435 + ], + [ + 0.0006656248588114977, + 0.0007411791593767703, + 0.000840290798805654 + ], + [ + 0.0008748311083763838, + 0.0009705874836072326, + 0.0011091524502262473 + ], + [ + 0.0010765217011794448, + 0.0011898970697075129, + 0.0013706943718716502 + ], + [ + 0.0012707774294540286, + 0.0013992706080898643, + 0.0016244607977569103 + ], + [ + 0.0014584281016141176, + 0.001599736511707306, + 0.0018707679118961096 + ], + [ + 0.001639603404328227, + 0.001791737275198102, + 0.0021092763636261225 + ], + [ + 0.0018145000794902444, + 0.0019758327398449183, + 0.0023398585617542267 + ], + [ + 0.0019834006670862436, + 0.0021524415351450443, + 0.002562723821029067 + ], + [ + 0.0021462899167090654, + 0.0023217014968395233, + 0.0027778372168540955 + ], + [ + 0.00230308435857296, + 0.002483737887814641, + 0.0029853021260350943 + ], + [ + 0.002453823108226061, + 0.0026388182304799557, + 0.0031852582469582558 + ], + [ + 0.002598806982859969, + 0.002787158126011491, + 0.0033778264187276363 + ], + [ + 0.0027382834814488888, + 0.0029290951788425446, + 0.0035633970983326435 + ], + [ + 0.0028725280426442623, + 0.0030649001710116863, + 0.003742234082892537 + ], + [ + 0.003002000506967306, + 0.0031949186231940985, + 0.003914560191333294 + ], + [ + 0.0031271297484636307, + 0.003319552168250084, + 0.004080639220774174 + ], + [ + 0.0032482193782925606, + 0.003439167980104685, + 0.00424070144072175 + ], + [ + 0.0033656214363873005, + 0.0035539616364985704, + 0.004394941497594118 + ], + [ + 0.00347957294434309, + 0.0036642032209783792, + 0.004543656017631292 + ], + [ + 0.00359029951505363, + 0.003770155366510153, + 0.004686987958848476 + ], + [ + 0.0036979292053729296, + 0.00387172750197351, + 0.004825298674404621 + ], + [ + 0.0038027253467589617, + 0.00396927073597908, + 0.0049589225091040134 + ], + [ + 0.003904798999428749, + 0.004062820691615343, + 0.005088126752525568 + ], + [ + 0.004004279617220163, + 0.0041525899432599545, + 0.005213082768023014 + ], + [ + 0.004101336468011141, + 0.0042387316934764385, + 0.0053340294398367405 + ], + [ + 0.004196115769445896, + 0.0043214368633925915, + 0.0054511697962880135 + ], + [ + 0.0042886980809271336, + 0.004400851204991341, + 0.005564751103520393 + ], + [ + 0.004379198886454105, + 0.004477074835449457, + 0.005674907471984625 + ], + [ + 0.004467677790671587, + 0.004550264682620764, + 0.005781840067356825 + ], + [ + 0.004554206971079111, + 0.0046206084080040455, + 0.005885698366910219 + ], + [ + 0.004638657905161381, + 0.004688235931098461, + 0.005986707750707865 + ], + [ + 0.00472132908180356, + 0.004753407556563616, + 0.006085071247071028 + ], + [ + 0.004802200477570295, + 0.004816124215722084, + 0.006180854514241219 + ], + [ + 0.004881222266703844, + 0.0048766424879431725, + 0.006274276413023472 + ], + [ + 0.004958506673574448, + 0.004935033619403839, + 0.006365600042045116 + ], + [ + 0.005034147296100855, + 0.004991490393877029, + 0.006454767193645239 + ], + [ + 0.00510819349437952, + 0.005045957863330841, + 0.006541906856000423 + ], + [ + 0.005180582869797945, + 0.005098567809909582, + 0.006627207156270742 + ], + [ + 0.0052514527924358845, + 0.0051493896171450615, + 0.006710726302117109 + ], + [ + 0.00532082375138998, + 0.005198467057198286, + 0.006792478263378143 + ], + [ + 0.005388746503740549, + 0.0052459826692938805, + 0.006872627884149551 + ], + [ + 0.005455233622342348, + 0.00529202725738287, + 0.006951081100851297 + ], + [ + 0.005520438309758902, + 0.005336566362529993, + 0.0070280348882079124 + ], + [ + 0.0055843922309577465, + 0.005379792302846909, + 0.007103454787284136 + ], + [ + 0.005647164769470692, + 0.005421664100140333, + 0.007177311461418867 + ], + [ + 0.005708754528313875, + 0.00546233868226409, + 0.007249783258885145 + ], + [ + 0.005769255571067333, + 0.005501879379153252, + 0.0073207076638937 + ], + [ + 0.0058285947889089584, + 0.005540270823985338, + 0.007390119601041079 + ] + ], + "min": [ + [ + -0.003474190831184387, + -0.002765156328678131, + -0.0025823041796684265 + ], + [ + -0.006091997027397156, + -0.004919454455375671, + -0.004699110984802246 + ], + [ + -0.007493600249290466, + -0.0066564083099365234, + -0.006955966353416443 + ], + [ + -0.0082520991563797, + -0.008315052837133408, + -0.008644156157970428 + ], + [ + -0.009837627410888672, + -0.010020066052675247, + -0.010495476424694061 + ], + [ + -0.01138603687286377, + -0.011651892215013504, + -0.01224178820848465 + ], + [ + -0.013100475072860718, + -0.013019315898418427, + -0.014069639146327972 + ], + [ + -0.01468600332736969, + -0.01426408439874649, + -0.015920959413051605 + ], + [ + -0.016223445534706116, + -0.01536426693201065, + -0.017278656363487244 + ], + [ + -0.017732977867126465, + -0.01660173013806343, + -0.018533654510974884 + ], + [ + -0.01879502832889557, + -0.017666518688201904, + -0.019851163029670715 + ], + [ + -0.019687876105308533, + -0.018475241959095, + -0.02092882990837097 + ], + [ + -0.020345374941825867, + -0.019291453063488007, + -0.021975859999656677 + ], + [ + -0.020867690443992615, + -0.01989837735891342, + -0.02279563993215561 + ], + [ + -0.02102905511856079, + -0.020361904054880142, + -0.02369210124015808 + ], + [ + -0.02216227352619171, + -0.020604249089956284, + -0.02469201385974884 + ], + [ + -0.02333112061023712, + -0.02110625058412552, + -0.025431573390960693 + ], + [ + -0.024531826376914978, + -0.02175520360469818, + -0.02608620375394821 + ], + [ + -0.025597870349884033, + -0.0224878191947937, + -0.026553206145763397 + ], + [ + -0.02682150900363922, + -0.023301567882299423, + -0.026989206671714783 + ], + [ + -0.027749359607696533, + -0.023778509348630905, + -0.027234956622123718 + ], + [ + -0.028613582253456116, + -0.024262383580207825, + -0.027416303753852844 + ], + [ + -0.029672548174858093, + -0.024699531495571136, + -0.027422696352005005 + ], + [ + -0.03042520582675934, + -0.02527252584695816, + -0.027937322854995728 + ], + [ + -0.031173646450042725, + -0.025716416537761688, + -0.028531424701213837 + ], + [ + -0.0319458544254303, + -0.026208952069282532, + -0.029027990996837616 + ], + [ + -0.032694295048713684, + -0.02670234441757202, + -0.02947409451007843 + ], + [ + -0.033346280455589294, + -0.027103155851364136, + -0.029889166355133057 + ], + [ + -0.033920302987098694, + -0.027277588844299316, + -0.030296802520751953 + ], + [ + -0.03445284068584442, + -0.027300991117954254, + -0.03054826706647873 + ], + [ + -0.035079196095466614, + -0.027540482580661774, + -0.030744872987270355 + ], + [ + -0.03561173379421234, + -0.02776748687028885, + -0.030881918966770172 + ], + [ + -0.03615325689315796, + -0.027967512607574463, + -0.03104282170534134 + ], + [ + -0.036644503474235535, + -0.02807554602622986, + -0.031166039407253265 + ], + [ + -0.03717704117298126, + -0.028151672333478928, + -0.031312040984630585 + ], + [ + -0.03771856427192688, + -0.028187289834022522, + -0.03150623291730881 + ], + [ + -0.03812962770462036, + -0.028755268082022667, + -0.03177032619714737 + ], + [ + -0.03854036331176758, + -0.029230857267975807, + -0.03201364725828171 + ], + [ + -0.03904971480369568, + -0.029650555923581123, + -0.0321086123585701 + ], + [ + -0.039352238178253174, + -0.030079228803515434, + -0.03220357745885849 + ], + [ + -0.03965441882610321, + -0.030321449041366577, + -0.03238078951835632 + ], + [ + -0.03993603587150574, + -0.030522938817739487, + -0.03269036114215851 + ], + [ + -0.04019266366958618, + -0.03061773255467415, + -0.03288005292415619 + ], + [ + -0.04063771665096283, + -0.030644826591014862, + -0.033060893416404724 + ], + [ + -0.041184693574905396, + -0.030630026012659073, + -0.033202365040779114 + ], + [ + -0.04178871214389801, + -0.030630838125944138, + -0.03336028754711151 + ], + [ + -0.04227618873119354, + -0.030652359127998352, + -0.03346604108810425 + ], + [ + -0.04272158443927765, + -0.030687686055898666, + -0.033577144145965576 + ], + [ + -0.04313628375530243, + -0.030735265463590622, + -0.033727437257766724 + ], + [ + -0.04353354871273041, + -0.030796028673648834, + -0.03381754457950592 + ] + ], + "max": [ + [ + 0.004753176122903824, + 0.002817779779434204, + 0.003062888979911804 + ], + [ + 0.008272029459476471, + 0.005141787230968475, + 0.005134232342243195 + ], + [ + 0.011859200894832611, + 0.007425427436828613, + 0.007618121802806854 + ], + [ + 0.015317402780056, + 0.009694218635559082, + 0.010369725525379181 + ], + [ + 0.0188269205391407, + 0.011488258838653564, + 0.01229841262102127 + ], + [ + 0.02228512242436409, + 0.012814328074455261, + 0.014403343200683594 + ], + [ + 0.025348220020532608, + 0.014039747416973114, + 0.01687590777873993 + ], + [ + 0.02890271320939064, + 0.015784483402967453, + 0.018855810165405273 + ], + [ + 0.031130194664001465, + 0.01723437011241913, + 0.020682647824287415 + ], + [ + 0.03334011882543564, + 0.01845376566052437, + 0.02269873023033142 + ], + [ + 0.035261575132608414, + 0.01967388391494751, + 0.02419143170118332 + ], + [ + 0.03713468834757805, + 0.02089327946305275, + 0.02542271465063095 + ], + [ + 0.03890873119235039, + 0.02197665348649025, + 0.02659275382757187 + ], + [ + 0.040732841938734055, + 0.02320890501141548, + 0.028066672384738922 + ], + [ + 0.04173479229211807, + 0.024106238037347794, + 0.029143638908863068 + ], + [ + 0.04265756905078888, + 0.025373753160238266, + 0.03009873628616333 + ], + [ + 0.04321984574198723, + 0.026807613670825958, + 0.03102782368659973 + ], + [ + 0.043667327612638474, + 0.028278730809688568, + 0.031852155923843384 + ], + [ + 0.04387630894780159, + 0.02963242679834366, + 0.032691940665245056 + ], + [ + 0.04398486018180847, + 0.03092992678284645, + 0.03315451741218567 + ], + [ + 0.04399076849222183, + 0.03221937641501427, + 0.03357170522212982 + ], + [ + 0.0437687523663044, + 0.03309701383113861, + 0.03401617705821991 + ], + [ + 0.04342871531844139, + 0.03373624384403229, + 0.03476518392562866 + ], + [ + 0.04276871681213379, + 0.034266967326402664, + 0.035394638776779175 + ], + [ + 0.041803594678640366, + 0.034781564027071, + 0.036013975739479065 + ], + [ + 0.04134582355618477, + 0.0352727510035038, + 0.036808714270591736 + ], + [ + 0.04068582504987717, + 0.0354602225124836, + 0.03739982843399048 + ], + [ + 0.03950413316488266, + 0.03561856970191002, + 0.03815372288227081 + ], + [ + 0.03822702169418335, + 0.03577150031924248, + 0.038652047514915466 + ], + [ + 0.03704532980918884, + 0.03582482412457466, + 0.03928133100271225 + ], + [ + 0.03584469109773636, + 0.035840991884469986, + 0.04035808891057968 + ], + [ + 0.03557778522372246, + 0.03581416979432106, + 0.04122985154390335 + ], + [ + 0.035667162388563156, + 0.035743337124586105, + 0.04203537851572037 + ], + [ + 0.03567434847354889, + 0.035644177347421646, + 0.04290129989385605 + ], + [ + 0.03568025678396225, + 0.03554248437285423, + 0.043661922216415405 + ], + [ + 0.035653047263622284, + 0.035425182431936264, + 0.04423099756240845 + ], + [ + 0.03562106192111969, + 0.03538421168923378, + 0.04476006329059601 + ], + [ + 0.035612668842077255, + 0.03541570529341698, + 0.045332491397857666 + ], + [ + 0.035618577152490616, + 0.035561513155698776, + 0.04604947566986084 + ], + [ + 0.03561767563223839, + 0.035704951733350754, + 0.04659132659435272 + ], + [ + 0.03561866655945778, + 0.03580602630972862, + 0.04714648425579071 + ], + [ + 0.03561777248978615, + 0.035945650190114975, + 0.04785294830799103 + ], + [ + 0.035612814128398895, + 0.036037806421518326, + 0.04835836589336395 + ], + [ + 0.035616930574178696, + 0.036097098141908646, + 0.04882928729057312 + ], + [ + 0.03561697155237198, + 0.036120522767305374, + 0.049271851778030396 + ], + [ + 0.035617079585790634, + 0.036107610911130905, + 0.04977630078792572 + ], + [ + 0.03561710938811302, + 0.03607987239956856, + 0.05009663105010986 + ], + [ + 0.03561592474579811, + 0.03601318225264549, + 0.05036604404449463 + ], + [ + 0.0356183685362339, + 0.03594638779759407, + 0.050625577569007874 + ], + [ + 0.03561859950423241, + 0.03586423024535179, + 0.05071146786212921 + ] + ] + }, + "psm2_pose": { + "q01": [ + [ + -0.000797455906867981, + -0.0008284588158130646, + -0.0010895872861146926 + ], + [ + -0.0015721976011991501, + -0.0016437856107950212, + -0.0021378623694181444 + ], + [ + -0.002310899868607521, + -0.002421787530183792, + -0.0031680091470479965 + ], + [ + -0.003030397817492485, + -0.003175813555717468, + -0.004175921678543091 + ], + [ + -0.0037292611598968507, + -0.0039043045789003373, + -0.005158710777759552 + ], + [ + -0.004387760758399964, + -0.004578903168439865, + -0.006099514439702034 + ], + [ + -0.005015150159597397, + -0.005219404883682728, + -0.0069845782965421675 + ], + [ + -0.0056309463083744045, + -0.005840598344802856, + -0.00781489335000515 + ], + [ + -0.0062077176570892335, + -0.006421403288841248, + -0.008624527901411057 + ], + [ + -0.006748066246509552, + -0.0069402121007442474, + -0.009388296455144883 + ], + [ + -0.007272755056619644, + -0.0074263173341751094, + -0.010171332210302354 + ], + [ + -0.007777468636631966, + -0.007920770458877086, + -0.01087336964905262 + ], + [ + -0.00822966143488884, + -0.008376289457082749, + -0.011571072265505791 + ], + [ + -0.008674256503582, + -0.00876026026904583, + -0.012224137410521507 + ], + [ + -0.009083048403263091, + -0.00914126768708229, + -0.012867034524679183 + ], + [ + -0.009508671909570695, + -0.009472844153642654, + -0.013417134284973145 + ], + [ + -0.009934777766466141, + -0.009787599071860314, + -0.013977064564824105 + ], + [ + -0.010305000990629197, + -0.010107257813215255, + -0.014487880691885948 + ], + [ + -0.010685999095439911, + -0.010415321961045266, + -0.0149650277197361 + ], + [ + -0.011034250408411026, + -0.010734670609235764, + -0.015424721688032151 + ], + [ + -0.011352191865444183, + -0.011029290184378624, + -0.01589194029569626 + ], + [ + -0.011667907983064652, + -0.01132678911089897, + -0.01631288431584835 + ], + [ + -0.012016051709651946, + -0.011598278582096099, + -0.01673843801021576 + ], + [ + -0.012290838807821274, + -0.01182885143905878, + -0.01710329473018646 + ], + [ + -0.012606174647808076, + -0.012048268467187881, + -0.017513354197144507 + ], + [ + -0.012945282086730004, + -0.012285405173897743, + -0.017893935814499856 + ], + [ + -0.013256208151578902, + -0.012513173297047615, + -0.018194287419319152 + ], + [ + -0.013557626530528069, + -0.012745322212576866, + -0.01854424625635147 + ], + [ + -0.013844096213579177, + -0.01296352930366993, + -0.018908682763576507 + ], + [ + -0.014153241366147994, + -0.013177480399608612, + -0.01925271175801754 + ], + [ + -0.01448179468512535, + -0.013399725630879402, + -0.019571311622858047 + ], + [ + -0.01481395348906517, + -0.013597266227006912, + -0.019884002804756166 + ], + [ + -0.015083889961242675, + -0.013813762441277504, + -0.020157258063554763 + ], + [ + -0.015363241434097289, + -0.014015907421708107, + -0.020457139387726784 + ], + [ + -0.015619092285633088, + -0.014232435449957847, + -0.02075298275798559 + ], + [ + -0.015844254940748214, + -0.014426899999380112, + -0.021070983931422232 + ], + [ + -0.016097450479865074, + -0.014610764533281325, + -0.021338641494512558 + ], + [ + -0.016350801810622213, + -0.014732322543859483, + -0.021624807566404343 + ], + [ + -0.016639106795191764, + -0.014817030727863311, + -0.021872084960341452 + ], + [ + -0.01688295856118202, + -0.014967443831264972, + -0.022125017046928406 + ], + [ + -0.017144615054130553, + -0.01511427242308855, + -0.02236145332455635 + ], + [ + -0.017424003407359123, + -0.015200308375060558, + -0.0226320219039917 + ], + [ + -0.017690701335668562, + -0.015304514914751053, + -0.022857796400785446 + ], + [ + -0.017946203500032426, + -0.01537184130400419, + -0.023076565489172935 + ], + [ + -0.01818039484322071, + -0.015465680547058581, + -0.023341404236853124 + ], + [ + -0.01838997773826122, + -0.015605230256915093, + -0.023542290702462196 + ], + [ + -0.01869715079665184, + -0.01574045658111572, + -0.023807359635829927 + ], + [ + -0.01892505906522274, + -0.015911178290843965, + -0.024013077840209007 + ], + [ + -0.019096035435795786, + -0.01606362756341696, + -0.024216486252844335 + ], + [ + -0.019290501326322554, + -0.01616485357284546, + -0.024451090022921562 + ] + ], + "q02": [ + [ + -0.0006048686802387238, + -0.0006184145808219909, + -0.0008241552114486695 + ], + [ + -0.0011838547885417937, + -0.0012153437733650207, + -0.001635252833366394 + ], + [ + -0.001751095950603485, + -0.0018050771951675414, + -0.0024416828155517578 + ], + [ + -0.0022939662635326386, + -0.0023572978377342222, + -0.00322243332862854 + ], + [ + -0.0028281188011169433, + -0.0028944888710975645, + -0.003991872519254684 + ], + [ + -0.0033196306228637693, + -0.0033997943997383117, + -0.004743693023920059 + ], + [ + -0.003803909420967102, + -0.003892117664217949, + -0.005459966361522675 + ], + [ + -0.004277316480875015, + -0.00434782326221466, + -0.006153785586357117 + ], + [ + -0.004722856432199478, + -0.0047830606997013095, + -0.006835720092058181 + ], + [ + -0.005130750834941864, + -0.005194462835788727, + -0.007489388585090637 + ], + [ + -0.005541812181472778, + -0.005590225979685784, + -0.008067592978477478 + ], + [ + -0.005922657400369644, + -0.0059696388244628905, + -0.008681252896785736 + ], + [ + -0.006280056983232498, + -0.006324785798788071, + -0.009247698485851288 + ], + [ + -0.0066062922775745395, + -0.006643525958061218, + -0.009791809171438216 + ], + [ + -0.006935608386993408, + -0.006975003629922867, + -0.010312659293413162 + ], + [ + -0.007254925668239594, + -0.00729496568441391, + -0.010806522071361542 + ], + [ + -0.00755960002541542, + -0.007600356489419937, + -0.011303364783525467 + ], + [ + -0.007862977385520935, + -0.007888704910874367, + -0.011727548986673355 + ], + [ + -0.00814717024564743, + -0.008167691230773926, + -0.012152562737464906 + ], + [ + -0.008418411612510682, + -0.008442182987928391, + -0.012545684278011322 + ], + [ + -0.008690707385540009, + -0.008664840087294578, + -0.012932029366493224 + ], + [ + -0.008952521234750748, + -0.008876287937164306, + -0.013330844193696975 + ], + [ + -0.009193186908960342, + -0.00908994197845459, + -0.013649668395519256 + ], + [ + -0.009445966184139253, + -0.009284209012985229, + -0.013964498341083527 + ], + [ + -0.00969875991344452, + -0.009459018558263779, + -0.014316694736480713 + ], + [ + -0.009930851310491562, + -0.009621708020567894, + -0.014649908691644668 + ], + [ + -0.010151286274194718, + -0.009822805523872375, + -0.014980110675096511 + ], + [ + -0.010373637527227402, + -0.010002802610397338, + -0.01529952347278595 + ], + [ + -0.010571880638599396, + -0.010178623795509338, + -0.015621009767055511 + ], + [ + -0.010750214904546737, + -0.010322194024920463, + -0.015891328230500223 + ], + [ + -0.010951290875673293, + -0.010486729890108109, + -0.016157750934362412 + ], + [ + -0.011154292076826096, + -0.010632230639457703, + -0.016404435932636262 + ], + [ + -0.011375899910926818, + -0.010797439366579056, + -0.016662594377994538 + ], + [ + -0.011582477539777756, + -0.010929490849375724, + -0.016921025961637498 + ], + [ + -0.011772569119930267, + -0.01107294589281082, + -0.01718439072370529 + ], + [ + -0.011953833401203156, + -0.011228010952472686, + -0.017447323799133302 + ], + [ + -0.012164633274078369, + -0.011374269127845765, + -0.017658661231398583 + ], + [ + -0.012331974506378175, + -0.01150563582777977, + -0.01790614753961563 + ], + [ + -0.012496034502983092, + -0.011613214015960693, + -0.01810689374804497 + ], + [ + -0.012662800550460816, + -0.011702000573277473, + -0.018340695649385452 + ], + [ + -0.012855110317468643, + -0.011798472702503204, + -0.01855915293097496 + ], + [ + -0.012990739047527313, + -0.011890472173690795, + -0.01881131052970886 + ], + [ + -0.013183396011590957, + -0.012005170583724975, + -0.019013931751251222 + ], + [ + -0.0133257856965065, + -0.012115284502506256, + -0.019193416833877562 + ], + [ + -0.01350522682070732, + -0.012222788631916046, + -0.019359349757432937 + ], + [ + -0.0136455936729908, + -0.012320990785956382, + -0.01955736681818962 + ], + [ + -0.013803340345621109, + -0.012429401874542237, + -0.019730184376239777 + ], + [ + -0.01397073283791542, + -0.012523676455020904, + -0.01988991141319275 + ], + [ + -0.014134194552898407, + -0.012626429945230484, + -0.020059103965759276 + ], + [ + -0.014294051229953766, + -0.01267399974167347, + -0.020229995399713516 + ] + ], + "q98": [ + [ + 0.0007123062014579764, + 0.000655755549669265, + 0.0007203434407711028 + ], + [ + 0.0014049492776393889, + 0.0012977948784828174, + 0.0014280211925506558 + ], + [ + 0.0020868548750877357, + 0.0019105127453803977, + 0.0021203832328319542 + ], + [ + 0.0027560698986053463, + 0.002505122050642967, + 0.0027993907034397124 + ], + [ + 0.0033820509910583475, + 0.00308682605624198, + 0.003467782139778136 + ], + [ + 0.00401004076004028, + 0.0036261410266160946, + 0.0041055391728878005 + ], + [ + 0.004607540220022201, + 0.00416121572256088, + 0.004722674936056136 + ], + [ + 0.005204677879810328, + 0.004656336158514021, + 0.0053161635994911135 + ], + [ + 0.005768495798110961, + 0.00514298796653747, + 0.0059026795625686645 + ], + [ + 0.006341388672590255, + 0.005590832680463791, + 0.00646059155464172 + ], + [ + 0.00686731338500976, + 0.006031908243894576, + 0.007007262408733367 + ], + [ + 0.0073915010690689086, + 0.006415408551692961, + 0.00755322054028511 + ], + [ + 0.007880705147981632, + 0.006798838675022125, + 0.00806445240974426 + ], + [ + 0.008354984968900681, + 0.00716179385781288, + 0.008554904460906981 + ], + [ + 0.008812801837921134, + 0.007515345215797421, + 0.009041626006364819 + ], + [ + 0.009299626797437666, + 0.007835122495889659, + 0.009507930427789687 + ], + [ + 0.009755472838878626, + 0.008149540796875953, + 0.009947682619094848 + ], + [ + 0.010236210078001021, + 0.008436928391456603, + 0.010347607880830764 + ], + [ + 0.010640178769826883, + 0.008726049363613127, + 0.010742226243019102 + ], + [ + 0.011083942800760267, + 0.009009385704994197, + 0.011128475368022913 + ], + [ + 0.01153410270810127, + 0.009275309741497038, + 0.011496253460645672 + ], + [ + 0.011930770277976985, + 0.009547994807362554, + 0.01186224803328514 + ], + [ + 0.012298803329467763, + 0.009754154458642004, + 0.012191604375839228 + ], + [ + 0.012677205651998515, + 0.010039218589663503, + 0.012538536787033077 + ], + [ + 0.013041864335536944, + 0.010322882309556008, + 0.012840572595596312 + ], + [ + 0.01342643544077872, + 0.010577384978532792, + 0.013134198784828185 + ], + [ + 0.013751316070556605, + 0.010860268771648406, + 0.013427933901548384 + ], + [ + 0.014082952737808225, + 0.011128443628549568, + 0.013726309090852738 + ], + [ + 0.014432849586009962, + 0.011374132186174384, + 0.01399593949317931 + ], + [ + 0.014781673252582546, + 0.011647508591413478, + 0.014255650341510773 + ], + [ + 0.015134243071079247, + 0.011921676993370055, + 0.014498368054628369 + ], + [ + 0.015480454713106145, + 0.012190740182995792, + 0.014729017764329902 + ], + [ + 0.01579989641904831, + 0.012454270645976059, + 0.014937113374471664 + ], + [ + 0.016133855283260324, + 0.012732312604784963, + 0.015152568370103797 + ], + [ + 0.016472800523042667, + 0.012995152920484539, + 0.015344099998474118 + ], + [ + 0.01680836156010627, + 0.013231204748153678, + 0.015565105229616155 + ], + [ + 0.017104304134845733, + 0.013470934480428694, + 0.015746694952249483 + ], + [ + 0.0173965074121952, + 0.013690066337585445, + 0.0159097822010517 + ], + [ + 0.01770081028342247, + 0.013899016678333273, + 0.01607241392135618 + ], + [ + 0.01797216951847075, + 0.014127183556556702, + 0.016240575462579725 + ], + [ + 0.018233854174613942, + 0.014331979602575297, + 0.016399512290954585 + ], + [ + 0.018509972989559163, + 0.014511670768260937, + 0.01658058494329452 + ], + [ + 0.01880007892847061, + 0.014676354527473448, + 0.01669804856181144 + ], + [ + 0.019135294854640945, + 0.014846122264862056, + 0.016870138645172103 + ], + [ + 0.019463087171316097, + 0.015015563368797294, + 0.017016017436981185 + ], + [ + 0.01976552292704581, + 0.015215071141719815, + 0.017158952653408048 + ], + [ + 0.020055343657731997, + 0.015397859215736387, + 0.017296250015497203 + ], + [ + 0.0203370688855648, + 0.015578030198812477, + 0.01745580032467842 + ], + [ + 0.020610466301441165, + 0.01575102046132087, + 0.017595134973526 + ], + [ + 0.02089386552572249, + 0.015906780064105987, + 0.0177492806315422 + ] + ], + "q99": [ + [ + 0.0009431514889001844, + 0.0008435376361012458, + 0.0009347986429929732 + ], + [ + 0.001871741488575935, + 0.001649737805128097, + 0.0018430747836828232 + ], + [ + 0.0027681962400674808, + 0.0024391505122184753, + 0.0027326266467571246 + ], + [ + 0.003648391440510747, + 0.0032018939405679685, + 0.003593005016446112 + ], + [ + 0.004503513276576995, + 0.003924272656440735, + 0.004431529119610785 + ], + [ + 0.005339570045471191, + 0.004623692184686656, + 0.005252077504992484 + ], + [ + 0.006150867342948906, + 0.005298000425100326, + 0.006054996997117993 + ], + [ + 0.006940685436129565, + 0.005918487831950182, + 0.006823153197765348 + ], + [ + 0.0076880411058664316, + 0.006510013341903686, + 0.007580886334180832 + ], + [ + 0.008455558717250821, + 0.007085129022598266, + 0.008323592841625212 + ], + [ + 0.009163298010826108, + 0.007606752887368194, + 0.009040537849068638 + ], + [ + 0.009861242473125453, + 0.008109195455908767, + 0.009714857339858999 + ], + [ + 0.010485846847295761, + 0.008605438694357872, + 0.010364761129021629 + ], + [ + 0.01108593627810477, + 0.009044860005378717, + 0.010954181626439094 + ], + [ + 0.011715125739574431, + 0.009480561017990111, + 0.011543069481849664 + ], + [ + 0.01229722432792186, + 0.009898409917950626, + 0.012076736241579053 + ], + [ + 0.01284337282180786, + 0.010335969850420951, + 0.01261395677924156 + ], + [ + 0.013392402455210683, + 0.010734771415591239, + 0.013144027516245832 + ], + [ + 0.013954478576779365, + 0.011127581521868704, + 0.013662999719381331 + ], + [ + 0.014498703777790068, + 0.011508480012416835, + 0.014157543182373045 + ], + [ + 0.015016392618417737, + 0.011889622360467905, + 0.0146445371210575 + ], + [ + 0.015531999915838236, + 0.012229838185012335, + 0.015130008980631824 + ], + [ + 0.016028903201222418, + 0.012591650709509846, + 0.015548091679811464 + ], + [ + 0.01654613047838211, + 0.01288597971200942, + 0.016008704826235766 + ], + [ + 0.01700920835137367, + 0.01320321626961231, + 0.016413628086447713 + ], + [ + 0.017505597323179245, + 0.013514165207743645, + 0.01682668458670376 + ], + [ + 0.017990073859691605, + 0.013860225975513457, + 0.01723586320877075 + ], + [ + 0.018480141609907134, + 0.014164295643568029, + 0.017609282508492467 + ], + [ + 0.018894724249839782, + 0.014481277987360954, + 0.0180159543454647 + ], + [ + 0.019380571767687794, + 0.014763738811016081, + 0.018393631279468525 + ], + [ + 0.019889499619603148, + 0.01506795741617679, + 0.01880402423441409 + ], + [ + 0.020329433232545845, + 0.015320398584008209, + 0.019169972985982886 + ], + [ + 0.020782289206981643, + 0.015583725385367867, + 0.01949929237365721 + ], + [ + 0.021183128282427764, + 0.015827807039022444, + 0.019807555750012397 + ], + [ + 0.021642626821994755, + 0.016050728633999818, + 0.020102979764342308 + ], + [ + 0.022110497057437895, + 0.0162987694889307, + 0.02038458473980426 + ], + [ + 0.02253964520990846, + 0.016526877433061585, + 0.020716274827718734 + ], + [ + 0.022921904549002635, + 0.016784819588065145, + 0.020959310159087155 + ], + [ + 0.023310097455978392, + 0.017029463499784462, + 0.021279558837413785 + ], + [ + 0.02373431451618671, + 0.017298437878489486, + 0.021501486338675012 + ], + [ + 0.024109650328755377, + 0.017563652694225308, + 0.021739655882120106 + ], + [ + 0.024453485012054434, + 0.017835631258785723, + 0.021908571496605852 + ], + [ + 0.02475118495523928, + 0.018091600537300086, + 0.022147553637623777 + ], + [ + 0.025137933865189546, + 0.01833427749574184, + 0.02236989706754683 + ], + [ + 0.025485916882753364, + 0.018577798828482626, + 0.022614890262484543 + ], + [ + 0.025789312571287134, + 0.0187662750482559, + 0.02284080266952513 + ], + [ + 0.026122796982526775, + 0.01895982265472412, + 0.02307237230241298 + ], + [ + 0.026412816122174238, + 0.019178803712129554, + 0.023292668610811227 + ], + [ + 0.02674897849559783, + 0.019403624460101125, + 0.02350189857184886 + ], + [ + 0.026941585242748256, + 0.019581134393811223, + 0.023769030645489686 + ] + ], + "mean": [ + [ + 3.007468194482499e-06, + 5.774758847110206e-06, + 1.0392055855845683e-06 + ], + [ + 6.455636594182579e-06, + 1.1776721294154413e-05, + 1.778302589627856e-06 + ], + [ + 1.0342688256059773e-05, + 1.8021857613348402e-05, + 2.1962014216114767e-06 + ], + [ + 1.4648708202003036e-05, + 2.4564171326346695e-05, + 2.297238097526133e-06 + ], + [ + 1.9364837498869747e-05, + 3.137488238280639e-05, + 2.0875982045254204e-06 + ], + [ + 2.4502704036422074e-05, + 3.846277832053602e-05, + 1.5327058235925506e-06 + ], + [ + 3.004907921422273e-05, + 4.582816472975537e-05, + 5.878884508092597e-07 + ], + [ + 3.6003686545882374e-05, + 5.346688340068795e-05, + -7.977454288266017e-07 + ], + [ + 4.240346606820822e-05, + 6.135157309472561e-05, + -2.6717298169387504e-06 + ], + [ + 4.925559915136546e-05, + 6.949264206923544e-05, + -5.056149348092731e-06 + ], + [ + 5.6575889175292104e-05, + 7.788234506733716e-05, + -7.998310138646048e-06 + ], + [ + 6.438660784624517e-05, + 8.650188101455569e-05, + -1.1555867786228191e-05 + ], + [ + 7.269119669217616e-05, + 9.53322378336452e-05, + -1.5741761671961285e-05 + ], + [ + 8.149210771080106e-05, + 0.00010440198093419895, + -2.055439654213842e-05 + ], + [ + 9.078773291548714e-05, + 0.00011370491120032966, + -2.5998328055720776e-05 + ], + [ + 0.00010057606414193287, + 0.00012325750140007585, + -3.2089203159557655e-05 + ], + [ + 0.00011087116581620649, + 0.00013308435154613107, + -3.88485386793036e-05 + ], + [ + 0.00012164664804004133, + 0.0001431793934898451, + -4.62538591818884e-05 + ], + [ + 0.0001328896323684603, + 0.00015357628581114113, + -5.4293643188429996e-05 + ], + [ + 0.0001445783709641546, + 0.00016429957759100944, + -6.295877392403781e-05 + ], + [ + 0.00015664634702261537, + 0.00017538467363920063, + -7.222616841318086e-05 + ], + [ + 0.0001690342032816261, + 0.00018681988876778632, + -8.204978803405538e-05 + ], + [ + 0.0001816866861190647, + 0.00019863387569785118, + -9.238458005711436e-05 + ], + [ + 0.00019457355665508658, + 0.00021080515580251813, + -0.00010316984844394028 + ], + [ + 0.00020766881061717868, + 0.00022331597574520856, + -0.00011434132466092706 + ], + [ + 0.00022094330051913857, + 0.0002361498336540535, + -0.000125823455164209 + ], + [ + 0.00023439765209332108, + 0.00024929610663093626, + -0.00013756852422375232 + ], + [ + 0.00024800619576126337, + 0.0002627288340590894, + -0.00014955003280192614 + ], + [ + 0.00026174369850195944, + 0.00027642599889077246, + -0.00016170386516023427 + ], + [ + 0.00027561368187889457, + 0.00029037962667644024, + -0.0001740566367516294 + ], + [ + 0.00028959393966943026, + 0.0003045550547540188, + -0.00018653816368896514 + ], + [ + 0.0003036466077901423, + 0.00031894585117697716, + -0.00019913373398594558 + ], + [ + 0.0003177712787874043, + 0.00033351630554534495, + -0.00021184771321713924 + ], + [ + 0.00033196411095559597, + 0.00034822034649550915, + -0.00022464290668722242 + ], + [ + 0.0003462123277131468, + 0.00036304202512837946, + -0.00023749907268211246 + ], + [ + 0.00036048778565600514, + 0.00037797106779180467, + -0.0002503797586541623 + ], + [ + 0.0003748272138182074, + 0.0003929825033992529, + -0.00026328349485993385 + ], + [ + 0.0003892389067914337, + 0.0004080622165929526, + -0.00027621263870969415 + ], + [ + 0.00040371844079345465, + 0.00042321201181039214, + -0.0002891578187700361 + ], + [ + 0.00041825248626992106, + 0.0004384492349345237, + -0.0003021014272235334 + ], + [ + 0.0004328009963501245, + 0.0004537390486802906, + -0.00031507445964962244 + ], + [ + 0.00044736513518728316, + 0.0004690923378802836, + -0.0003280743258073926 + ], + [ + 0.00046192866284400225, + 0.0004844845097977668, + -0.00034107794635929167 + ], + [ + 0.00047648331383243203, + 0.0004998950753360987, + -0.00035403092624619603 + ], + [ + 0.0004910380812361836, + 0.0005152859957888722, + -0.00036693242145702243 + ], + [ + 0.000505531788803637, + 0.0005306688253767788, + -0.00037977780448272824 + ], + [ + 0.0005199737497605383, + 0.0005460049724206328, + -0.000392541493056342 + ], + [ + 0.0005343524971976876, + 0.000561312772333622, + -0.00040522939525544643 + ], + [ + 0.0005486219306476414, + 0.0005766121321357787, + -0.0004178296367172152 + ], + [ + 0.0005627811187878251, + 0.000591890886425972, + -0.000430335639975965 + ] + ], + "std": [ + [ + 0.00027054999372921884, + 0.00026955766952596605, + 0.00031222100369632244 + ], + [ + 0.0005324088269844651, + 0.0005294765578582883, + 0.0006150579429231584 + ], + [ + 0.000787592027336359, + 0.0007816479774191976, + 0.0009106952929869294 + ], + [ + 0.001036658650264144, + 0.001026109210215509, + 0.0011994115775451064 + ], + [ + 0.0012779207900166512, + 0.0012607305543497205, + 0.0014791113790124655 + ], + [ + 0.0015116274589672685, + 0.0014854974579066038, + 0.0017495498759672046 + ], + [ + 0.0017383632948622108, + 0.0017011254094541073, + 0.0020117689855396748 + ], + [ + 0.001958059147000313, + 0.0019079279154539108, + 0.0022654940839856863 + ], + [ + 0.0021705864928662777, + 0.0021061610896140337, + 0.0025105075910687447 + ], + [ + 0.0023760818876326084, + 0.0022960652131587267, + 0.002747566672042012 + ], + [ + 0.0025746957398951054, + 0.0024777876678854227, + 0.0029765565413981676 + ], + [ + 0.002766671357676387, + 0.002651828108355403, + 0.0031974995508790016 + ], + [ + 0.002952150534838438, + 0.00281821982935071, + 0.0034104513470083475 + ], + [ + 0.0031315383967012167, + 0.0029773786664009094, + 0.0036162645556032658 + ], + [ + 0.0033051485661417246, + 0.003129670163616538, + 0.0038148544263094664 + ], + [ + 0.0034732853528112173, + 0.0032756999135017395, + 0.004006591159850359 + ], + [ + 0.003636621870100498, + 0.00341582577675581, + 0.004191885702311993 + ], + [ + 0.0037954123690724373, + 0.0035506365820765495, + 0.004370871931314468 + ], + [ + 0.0039500086568295956, + 0.003680633381009102, + 0.004543853458017111 + ], + [ + 0.00410071574151516, + 0.00380619871430099, + 0.0047107418067753315 + ], + [ + 0.004247856326401234, + 0.00392762990668416, + 0.004872102756053209 + ], + [ + 0.004391551483422518, + 0.004045344423502684, + 0.005028087645769119 + ], + [ + 0.0045321364887058735, + 0.004159440286457539, + 0.005178683903068304 + ], + [ + 0.004669675137847662, + 0.00427023833617568, + 0.005324040539562702 + ], + [ + 0.004804420284926891, + 0.004378051031380892, + 0.0054643405601382256 + ], + [ + 0.004936632234603167, + 0.004482808988541365, + 0.0055998023599386215 + ], + [ + 0.005066053010523319, + 0.0045848265290260315, + 0.005730537232011557 + ], + [ + 0.005192848388105631, + 0.004684210754930973, + 0.005856694187968969 + ], + [ + 0.005317013245075941, + 0.004781144671142101, + 0.005978408269584179 + ], + [ + 0.005439089145511389, + 0.004875874612480402, + 0.006095901597291231 + ], + [ + 0.005558738950639963, + 0.004968889057636261, + 0.006209207233041525 + ], + [ + 0.005676258821040392, + 0.005059761926531792, + 0.006318636238574982 + ], + [ + 0.005791595205664635, + 0.005148771218955517, + 0.0064242384396493435 + ], + [ + 0.005905075930058956, + 0.005236114840954542, + 0.006526004057377577 + ], + [ + 0.006016560364514589, + 0.005321539472788572, + 0.006624456960707903 + ], + [ + 0.006126032210886478, + 0.005405324976891279, + 0.006719991564750671 + ], + [ + 0.0062336730770766735, + 0.005487593822181225, + 0.0068120951764285564 + ], + [ + 0.0063394238241016865, + 0.005567874759435654, + 0.006901278626173735 + ], + [ + 0.006443371064960957, + 0.005646463483572006, + 0.006987469270825386 + ], + [ + 0.006545293144881725, + 0.005723472218960524, + 0.007070845924317837 + ], + [ + 0.006645492743700743, + 0.005798947997391224, + 0.007151663303375244 + ], + [ + 0.006743868347257376, + 0.005873269401490688, + 0.007229914423078299 + ], + [ + 0.00684068538248539, + 0.005945779848843813, + 0.007305813953280449 + ], + [ + 0.0069357180036604404, + 0.006017039064317942, + 0.007379868999123573 + ], + [ + 0.007029228378087282, + 0.006086467765271664, + 0.00745116313919425 + ], + [ + 0.007120806723833084, + 0.006154589354991913, + 0.007520305924117565 + ], + [ + 0.007210986688733101, + 0.006221035495400429, + 0.007587448228150606 + ], + [ + 0.007299367804080248, + 0.006286034360527992, + 0.007652561645954847 + ], + [ + 0.00738620525225997, + 0.006349853705614805, + 0.0077157714404165745 + ], + [ + 0.00747144129127264, + 0.006412027403712273, + 0.007777210790663958 + ] + ], + "min": [ + [ + -0.0053626298904418945, + -0.0058281272649765015, + -0.005774319171905518 + ], + [ + -0.00910806655883789, + -0.009739324450492859, + -0.009364590048789978 + ], + [ + -0.010497510433197021, + -0.011894628405570984, + -0.011994801461696625 + ], + [ + -0.011727988719940186, + -0.014294706284999847, + -0.013646230101585388 + ], + [ + -0.013236522674560547, + -0.01657164841890335, + -0.015184223651885986 + ], + [ + -0.01619836688041687, + -0.018393531441688538, + -0.016544170677661896 + ], + [ + -0.018466711044311523, + -0.020976468920707703, + -0.018816128373146057 + ], + [ + -0.020104408264160156, + -0.022496402263641357, + -0.02135467529296875 + ], + [ + -0.02165481448173523, + -0.023714035749435425, + -0.022879712283611298 + ], + [ + -0.02304425835609436, + -0.024777397513389587, + -0.024295784533023834 + ], + [ + -0.023909851908683777, + -0.02572653442621231, + -0.02599848061800003 + ], + [ + -0.024374932050704956, + -0.027134232223033905, + -0.027414552867412567 + ], + [ + -0.025487147271633148, + -0.02857636660337448, + -0.028748147189617157 + ], + [ + -0.02699001133441925, + -0.02928110957145691, + -0.029827497899532318 + ], + [ + -0.027977854013442993, + -0.0308900848031044, + -0.030667617917060852 + ], + [ + -0.028950989246368408, + -0.032564155757427216, + -0.031635865569114685 + ], + [ + -0.030064940452575684, + -0.03449692577123642, + -0.03281271457672119 + ], + [ + -0.0310380756855011, + -0.035904623568058014, + -0.034047044813632965 + ], + [ + -0.031879693269729614, + -0.03734675794839859, + -0.035106971859931946 + ], + [ + -0.032770052552223206, + -0.038628749549388885, + -0.03594046086072922 + ], + [ + -0.03361167013645172, + -0.03966396301984787, + -0.03650137782096863 + ], + [ + -0.03425443172454834, + -0.040707893669605255, + -0.03677006810903549 + ], + [ + -0.03478783369064331, + -0.041424043476581573, + -0.03700707107782364 + ], + [ + -0.0364546999335289, + -0.04218881577253342, + -0.03742434084415436 + ], + [ + -0.03809239715337753, + -0.0431692972779274, + -0.03840687870979309 + ], + [ + -0.039642803370952606, + -0.04387404024600983, + -0.03977247327566147 + ], + [ + -0.04067951440811157, + -0.044380173087120056, + -0.04058219492435455 + ], + [ + -0.04154510796070099, + -0.044660329818725586, + -0.04132384806871414 + ], + [ + -0.04233034700155258, + -0.044860027730464935, + -0.04203017055988312 + ], + [ + -0.042969509959220886, + -0.04496332257986069, + -0.043051011860370636 + ], + [ + -0.04354441165924072, + -0.04496970772743225, + -0.0437408909201622 + ], + [ + -0.0440094918012619, + -0.044953957200050354, + -0.044424623250961304 + ], + [ + -0.04423494637012482, + -0.045098625123500824, + -0.04509732127189636 + ], + [ + -0.04434733837842941, + -0.045508138835430145, + -0.04578720033168793 + ], + [ + -0.044433459639549255, + -0.04581030458211899, + -0.046204209327697754 + ], + [ + -0.04449049383401871, + -0.04603644460439682, + -0.04654724895954132 + ], + [ + -0.04458632320165634, + -0.046195439994335175, + -0.04682168364524841 + ], + [ + -0.04481711983680725, + -0.04634702950716019, + -0.04716024547815323 + ], + [ + -0.04507744312286377, + -0.04648742079734802, + -0.04740367829799652 + ], + [ + -0.04539094865322113, + -0.046639010310173035, + -0.0476272776722908 + ], + [ + -0.04607872664928436, + -0.04677435755729675, + -0.04777572304010391 + ], + [ + -0.046977698802948, + -0.04679776728153229, + -0.04783058911561966 + ], + [ + -0.047843292355537415, + -0.046796709299087524, + -0.047865353524684906 + ], + [ + -0.04867252707481384, + -0.04674852639436722, + -0.047883540391922 + ], + [ + -0.049465857446193695, + -0.04668580740690231, + -0.04782535880804062 + ], + [ + -0.05019349604845047, + -0.04662031680345535, + -0.04771649092435837 + ], + [ + -0.05100453644990921, + -0.04654858261346817, + -0.04758002609014511 + ], + [ + -0.05146961659193039, + -0.04647363722324371, + -0.04740110784769058 + ], + [ + -0.05188138782978058, + -0.04638296365737915, + -0.04718475043773651 + ], + [ + -0.05197775363922119, + -0.04656700789928436, + -0.04684550315141678 + ] + ], + "max": [ + [ + 0.0029090046882629395, + 0.003670334815979004, + 0.004783615469932556 + ], + [ + 0.005131267011165619, + 0.006834894418716431, + 0.008301660418510437 + ], + [ + 0.007348082959651947, + 0.009069859981536865, + 0.01099783182144165 + ], + [ + 0.009962394833564758, + 0.010826453566551208, + 0.01428530365228653 + ], + [ + 0.012028887867927551, + 0.013286419212818146, + 0.017036758363246918 + ], + [ + 0.014055639505386353, + 0.016057170927524567, + 0.01947958767414093 + ], + [ + 0.01606157422065735, + 0.018566951155662537, + 0.02221054583787918 + ], + [ + 0.01805245131254196, + 0.021343037486076355, + 0.024449065327644348 + ], + [ + 0.020058386027812958, + 0.022923260927200317, + 0.02617061138153076 + ], + [ + 0.021839089691638947, + 0.024502351880073547, + 0.02785065770149231 + ], + [ + 0.023763395845890045, + 0.02588765323162079, + 0.029491879045963287 + ], + [ + 0.025364257395267487, + 0.027337059378623962, + 0.03076808899641037 + ], + [ + 0.026836834847927094, + 0.028484337031841278, + 0.03185515105724335 + ], + [ + 0.02860312908887863, + 0.029377534985542297, + 0.033228471875190735 + ], + [ + 0.03007570654153824, + 0.03022027015686035, + 0.03436094522476196 + ], + [ + 0.03150027245283127, + 0.03067365288734436, + 0.03534403443336487 + ], + [ + 0.03302338719367981, + 0.03130246698856354, + 0.0363897830247879 + ], + [ + 0.034181758761405945, + 0.03179502487182617, + 0.03689616918563843 + ], + [ + 0.03515221178531647, + 0.03227625787258148, + 0.03720659762620926 + ], + [ + 0.03610554337501526, + 0.03271651268005371, + 0.03748206049203873 + ], + [ + 0.03704176843166351, + 0.03319856524467468, + 0.03784620761871338 + ], + [ + 0.03773404657840729, + 0.03362561762332916, + 0.03863599896430969 + ], + [ + 0.0384470671415329, + 0.03418492525815964, + 0.039296358823776245 + ], + [ + 0.03890787810087204, + 0.035163067281246185, + 0.039855316281318665 + ], + [ + 0.03935111314058304, + 0.03583558648824692, + 0.04036170244216919 + ], + [ + 0.039793796837329865, + 0.036490581929683685, + 0.04077740013599396 + ], + [ + 0.04022068530321121, + 0.03700792044401169, + 0.04121071845293045 + ], + [ + 0.04067618399858475, + 0.037595123052597046, + 0.04152114689350128 + ], + [ + 0.0413532480597496, + 0.03800229728221893, + 0.041675932705402374 + ], + [ + 0.041795022785663605, + 0.038794323801994324, + 0.0417187437415123 + ], + [ + 0.04220326989889145, + 0.03997799754142761, + 0.041569069027900696 + ], + [ + 0.04259803146123886, + 0.04107183218002319, + 0.0414133220911026 + ], + [ + 0.043116502463817596, + 0.042425304651260376, + 0.04122947156429291 + ], + [ + 0.043570272624492645, + 0.043263182044029236, + 0.041775863617658615 + ], + [ + 0.04395768791437149, + 0.04388512670993805, + 0.04270007088780403 + ], + [ + 0.04457706958055496, + 0.044431135058403015, + 0.04321737959980965 + ], + [ + 0.04503384977579117, + 0.044714584946632385, + 0.04361458867788315 + ], + [ + 0.04558824747800827, + 0.04495704174041748, + 0.04441674053668976 + ], + [ + 0.04628302901983261, + 0.04522222280502319, + 0.04513818025588989 + ], + [ + 0.04680905491113663, + 0.04540097713470459, + 0.04588450491428375 + ], + [ + 0.047330327332019806, + 0.04557497054338455, + 0.04660594463348389 + ], + [ + 0.04791099578142166, + 0.04580467939376831, + 0.04725159704685211 + ], + [ + 0.04823445528745651, + 0.045988038182258606, + 0.04786073416471481 + ], + [ + 0.04854977875947952, + 0.046187594532966614, + 0.048516832292079926 + ], + [ + 0.04875897616147995, + 0.04642147570848465, + 0.04916248470544815 + ], + [ + 0.04891156405210495, + 0.04660826921463013, + 0.049716465175151825 + ], + [ + 0.04903194308280945, + 0.04680222272872925, + 0.0503934770822525 + ], + [ + 0.04913516342639923, + 0.04769685119390488, + 0.05103912949562073 + ], + [ + 0.04919467121362686, + 0.04892442375421524, + 0.05148071050643921 + ], + [ + 0.04922742396593094, + 0.04973669350147247, + 0.05183391273021698 + ] + ] + } + } +} \ No newline at end of file diff --git a/Surgical/turin/mitic_lerobot_plastic_tube/meta/relative_stats.json b/Surgical/turin/mitic_lerobot_plastic_tube/meta/relative_stats.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_tube/meta/relative_stats.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/Surgical/turin/mitic_lerobot_plastic_tube/meta/stats.json b/Surgical/turin/mitic_lerobot_plastic_tube/meta/stats.json new file mode 100644 index 0000000000000000000000000000000000000000..d4b55d70e1de707e25fc7bc2e6ff46764dd5b7af --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_tube/meta/stats.json @@ -0,0 +1,206 @@ +{ + "observation.state": { + "mean": [ + 0.5650577545166016, + -0.037585336714982986, + 0.12624742090702057, + 0.6735547184944153, + -0.1875969022512436, + 0.04284432530403137, + -0.49803629517555237, + -0.28298962116241455, + 0.1595190316438675, + 0.5390158295631409, + 0.15556885302066803, + 0.018102841451764107 + ], + "std": [ + 0.2021481841802597, + 0.10492951422929764, + 0.015327142551541328, + 1.511726975440979, + 0.5434716939926147, + 0.5105965733528137, + 0.17201271653175354, + 0.1828000545501709, + 0.028648698702454567, + 1.2849799394607544, + 0.47132694721221924, + 0.5516689419746399 + ], + "min": [ + 0.06833846122026443, + -0.2994180917739868, + 0.08231441676616669, + -2.924126148223877, + -1.409268856048584, + -1.4232555627822876, + -0.7945070266723633, + -0.6451030373573303, + 0.1058589294552803, + -4.53873872756958, + -1.4278514385223389, + -1.8311450481414795 + ], + "max": [ + 0.9514638781547546, + 0.22578181326389313, + 0.1701432466506958, + 4.544610023498535, + 1.4154175519943237, + 1.403022050857544, + 0.09207814186811447, + 0.2040732204914093, + 0.23975661396980286, + 4.555723667144775, + 1.421976089477539, + 1.4141372442245483 + ], + "q01": [ + 0.14998852342367172, + -0.2361427913606167, + 0.09135273322463036, + -1.9190027213096619, + -1.2217516696453095, + -1.1566547513008119, + -0.7113022804260254, + -0.5786412358283997, + 0.11664375096559525, + -3.356991243362427, + -1.0072842836380005, + -1.3524952018260956 + ], + "q99": [ + 0.8704393500089646, + 0.1485747271776199, + 0.15653130367398263, + 2.9721453189849854, + 0.8938759565353394, + 1.0048037648200985, + -0.03358617052435875, + 0.0758265773952007, + 0.22554449692368508, + 3.762242264747618, + 1.1271568846702573, + 1.371984760761261 + ] + }, + "action": { + "mean": [ + -0.10858380794525146, + -0.07282018661499023, + 0.11630348861217499, + 0.35120996832847595, + 0.1674986481666565, + 0.36243388056755066, + 0.37284910678863525, + 0.13045698404312134, + -0.09945690631866455, + 0.08462857455015182, + 0.1404532641172409, + -0.20063209533691406, + -0.06721507757902145, + 0.5073379278182983 + ], + "std": [ + 0.03261152654886246, + 0.01779044046998024, + 0.017493493854999542, + 0.23448212444782257, + 0.4181707501411438, + 0.3472806513309479, + 0.47736334800720215, + 0.024272197857499123, + 0.03301379084587097, + 0.01900685764849186, + 0.37356001138687134, + 0.2884258031845093, + 0.4997802674770355, + 0.4534204602241516 + ], + "min": [ + -0.1900283247232437, + -0.11874212324619293, + 0.06852523237466812, + -0.6388782262802124, + -0.6623910069465637, + -0.6698468327522278, + -0.6457532048225403, + 0.07726409286260605, + -0.1755223125219345, + 0.0418471060693264, + -0.7035261392593384, + -0.7027087807655334, + -0.703624963760376, + -0.703039824962616 + ], + "max": [ + -0.03659258782863617, + -0.02560380846261978, + 0.16123828291893005, + 0.8521320223808289, + 0.8839892745018005, + 0.9971170425415039, + 0.96208256483078, + 0.2112055867910385, + -0.028872666880488396, + 0.13503460586071014, + 0.9409063458442688, + 0.898385226726532, + 0.9906736612319946, + 0.9992529153823853 + ], + "q01": [ + -0.17113611862063408, + -0.11104942016303539, + 0.07884640358388424, + -0.49128465354442596, + -0.5521923768520355, + -0.542279778122902, + -0.5447470265626907, + 0.09262542992830276, + -0.15773666664958, + 0.04893256582319736, + -0.6267550724744797, + -0.6126466935873032, + -0.6330966204404831, + -0.5969780933856964 + ], + "q99": [ + -0.052801582701504236, + -0.03834657002240419, + 0.1492360018193722, + 0.7540754455327987, + 0.7820195263624191, + 0.9137278085947037, + 0.9179851418733597, + 0.18940357863903046, + -0.041749635562300685, + 0.11981212981045246, + 0.7867720794677734, + 0.8187918210029602, + 0.9294139331579208, + 0.9674996668100357 + ] + }, + "timestamp": { + "mean": [ + 11.875579833984375 + ], + "std": [ + 10.657408714294434 + ], + "min": [ + 0.0 + ], + "max": [ + 66.53333282470703 + ], + "q01": [ + 0.13333334028720856 + ], + "q99": [ + 43.79999923706055 + ] + } +} \ No newline at end of file diff --git a/Surgical/turin/mitic_lerobot_plastic_tube/meta/tasks.jsonl b/Surgical/turin/mitic_lerobot_plastic_tube/meta/tasks.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..48d4ddfa04fad5113615436efa7dd8013beaf6ec --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_tube/meta/tasks.jsonl @@ -0,0 +1,6 @@ +{"task_index": 0, "task": "Knot_tying_base"} +{"task_index": 1, "task": "Knot_tying_final"} +{"task_index": 2, "task": "Needle_extraction"} +{"task_index": 3, "task": "Needle_insertion"} +{"task_index": 4, "task": "Needle_positioning"} +{"task_index": 5, "task": "Tissue_lift"} diff --git a/Surgical/turin/mitic_lerobot_plastic_tube/meta/temporal_stats.json b/Surgical/turin/mitic_lerobot_plastic_tube/meta/temporal_stats.json new file mode 100644 index 0000000000000000000000000000000000000000..cd32bf1503a715d0169750bc838b97d96abd4bf8 --- /dev/null +++ b/Surgical/turin/mitic_lerobot_plastic_tube/meta/temporal_stats.json @@ -0,0 +1,4322 @@ +{ + "state": { + "psm1_joints": { + "q01": [ + 0.15554117292165756, + -0.23814057677984238, + 0.09109678119421005, + -1.918243646621704, + -1.2310948371887207, + -1.1340808546543122 + ], + "q02": [ + 0.17008068919181824, + -0.22671626508235931, + 0.09317621111869812, + -1.7620246410369873, + -1.158677577972412, + -1.0282677102088928 + ], + "q98": [ + 0.8518560528755188, + 0.1307690441608429, + 0.15285932004451752, + 2.8410890102386475, + 0.8343024849891663, + 0.9372819340229034 + ], + "q99": [ + 0.8740999096632004, + 0.14480124413967133, + 0.15659353092312814, + 2.963612985610961, + 0.902936329245567, + 1.0115113675594327 + ], + "mean": [ + 0.5754839777946472, + -0.04165027290582657, + 0.12628233432769775, + 0.6029418706893921, + -0.18669523298740387, + 0.07059876620769501 + ], + "std": [ + 0.20066305994987488, + 0.10487952828407288, + 0.015812082216143608, + 1.4998801946640015, + 0.5547133088111877, + 0.5024532079696655 + ], + "min": [ + 0.06833846122026443, + -0.2994180917739868, + 0.08231441676616669, + -2.924126148223877, + -1.409268856048584, + -1.4232555627822876 + ], + "max": [ + 0.9514638781547546, + 0.22578181326389313, + 0.1701432466506958, + 4.383568286895752, + 1.4154175519943237, + 1.403022050857544 + ] + }, + "psm2_joints": { + "q01": [ + -0.7128029048442841, + -0.5787802338600159, + 0.11655292190611362, + -3.292471716403961, + -1.0072842836380005, + -1.3715638279914857 + ], + "q02": [ + -0.6955575096607208, + -0.5716801047325134, + 0.12038953229784966, + -2.278700590133667, + -0.9416987895965576, + -1.1600390577316284 + ], + "q98": [ + -0.061472948640584946, + 0.05507081001996994, + 0.22294016003608702, + 3.0486023378372185, + 1.01288640499115, + 1.0043686246871935 + ], + "q99": [ + -0.04649857059121132, + 0.07399149984121323, + 0.225790783315897, + 3.588799393177028, + 1.120598264932632, + 1.2684643292427062 + ], + "mean": [ + -0.5123053789138794, + -0.2877955138683319, + 0.1596657782793045, + 0.6034486293792725, + 0.16429084539413452, + 0.003502886975184083 + ], + "std": [ + 0.160027876496315, + 0.1850782334804535, + 0.028377478942275047, + 1.2270258665084839, + 0.4662386476993561, + 0.5332464575767517 + ], + "min": [ + -0.7945070266723633, + -0.6272557973861694, + 0.1058589294552803, + -4.53873872756958, + -1.3916428089141846, + -1.8311450481414795 + ], + "max": [ + -0.016356749460101128, + 0.2040732204914093, + 0.23975661396980286, + 4.555723667144775, + 1.421976089477539, + 1.4134080410003662 + ] + }, + "psm1_pose": { + "q01": [ + -0.17054908379912376, + -0.11089507281780243, + 0.07865754544734954, + -0.49776564568281173, + -0.5548047035932541, + -0.5331117784976959, + -0.5413869285583496 + ], + "q02": [ + -0.1677406558394432, + -0.10885102838277817, + 0.08020187720656395, + -0.39514171361923217, + -0.5338355028629302, + -0.4449963814020157, + -0.508051495552063 + ], + "q98": [ + -0.05519436858594418, + -0.04263098113238812, + 0.14465497195720672, + 0.729530838727951, + 0.7573638010025024, + 0.891879426240921, + 0.8984344637393952 + ], + "q99": [ + -0.05238916698843242, + -0.038808032087981705, + 0.14876114055514336, + 0.7573962199687958, + 0.7818528705835341, + 0.9177441316843032, + 0.917990260720253 + ], + "mean": [ + -0.10702779144048691, + -0.07286505401134491, + 0.11509000509977341, + 0.35011184215545654, + 0.16113190352916718, + 0.36315104365348816, + 0.3593004047870636 + ], + "std": [ + 0.03260185196995735, + 0.017422372475266457, + 0.017731238156557083, + 0.23574821650981903, + 0.42756426334381104, + 0.3491435647010803, + 0.4798261225223541 + ], + "min": [ + -0.1900283247232437, + -0.11874212324619293, + 0.06852523237466812, + -0.6388782262802124, + -0.6623910069465637, + -0.6698468327522278, + -0.6457532048225403 + ], + "max": [ + -0.03659258782863617, + -0.02560380846261978, + 0.16123828291893005, + 0.8521320223808289, + 0.8839892745018005, + 0.9971170425415039, + 0.96208256483078 + ] + }, + "psm2_pose": { + "q01": [ + 0.09318424396216869, + -0.15814473941922189, + 0.04870401650667191, + -0.6282706362009048, + -0.6147541731595993, + -0.6348338270187378, + -0.5982398521900177 + ], + "q02": [ + 0.09543473646044731, + -0.15478241980075835, + 0.04991971410810948, + -0.6031493043899536, + -0.5853130352497101, + -0.6185546290874481, + -0.5614588177204132 + ], + "q98": [ + 0.1867920160293579, + -0.04476980961859227, + 0.11622687324881553, + 0.7522638249397278, + 0.6573750066757199, + 0.9115811359882354, + 0.9535806012153626 + ], + "q99": [ + 0.1879846155643463, + -0.04201741755008698, + 0.11965391896665095, + 0.7898342430591583, + 0.7156709975004195, + 0.9290932297706603, + 0.9681164187192917 + ], + "mean": [ + 0.12886901199817657, + -0.0996587872505188, + 0.0836648941040039, + 0.15776735544204712, + -0.21241608262062073, + -0.08296532183885574, + 0.5258433818817139 + ], + "std": [ + 0.0223679319024086, + 0.03308246657252312, + 0.019310588017106056, + 0.371814101934433, + 0.26964518427848816, + 0.4888823628425598, + 0.44341206550598145 + ], + "min": [ + 0.07726409286260605, + -0.1755223125219345, + 0.0418471060693264, + -0.7035261392593384, + -0.7027087807655334, + -0.703624963760376, + -0.703039824962616 + ], + "max": [ + 0.1960676908493042, + -0.028872666880488396, + 0.13016195595264435, + 0.9409063458442688, + 0.866590678691864, + 0.9906736612319946, + 0.9992529153823853 + ] + } + }, + "action": { + "psm1_pose": { + "q01": [ + [ + -0.0007085584104061127, + -0.0007640526443719864, + -0.0008920004218816758 + ], + [ + -0.001389864906668663, + -0.0014881627634167672, + -0.00175737202167511 + ], + [ + -0.0020593850687146186, + -0.002183043360710144, + -0.0025997623801231385 + ], + [ + -0.0027119756489992143, + -0.002845907583832741, + -0.0034220051020383835 + ], + [ + -0.003345450460910797, + -0.0034681422263383864, + -0.004216087758541107 + ], + [ + -0.003958207443356514, + -0.0040645811334252355, + -0.0050096531212329865 + ], + [ + -0.004547977596521377, + -0.004636752270162105, + -0.005720353722572327 + ], + [ + -0.005122550204396248, + -0.0051888091862201694, + -0.0064345975220203395 + ], + [ + -0.005664934441447258, + -0.005711016319692135, + -0.007112026214599609 + ], + [ + -0.006198552027344703, + -0.006208933107554913, + -0.0077663173526525495 + ], + [ + -0.00671066664159298, + -0.006660198681056499, + -0.008381839990615845 + ], + [ + -0.0072212332859635355, + -0.007105609700083733, + -0.008919315487146378 + ], + [ + -0.007697722874581814, + -0.007516122013330459, + -0.009474857598543168 + ], + [ + -0.008164196982979774, + -0.00790785789489746, + -0.009979233294725418 + ], + [ + -0.008634782135486603, + -0.008296895399689674, + -0.010420243516564369 + ], + [ + -0.009034068137407304, + -0.008660869486629964, + -0.010862452685832977 + ], + [ + -0.009423908442258835, + -0.009038852006196975, + -0.011259476616978644 + ], + [ + -0.00983093999326229, + -0.0093616733700037, + -0.01166722759604454 + ], + [ + -0.01020519845187664, + -0.009713298603892325, + -0.012055128812789917 + ], + [ + -0.010567297190427781, + -0.010008054375648499, + -0.012444331422448158 + ], + [ + -0.010917880237102509, + -0.010322725623846054, + -0.012812564596533776 + ], + [ + -0.011266759335994721, + -0.010581088662147521, + -0.013165900930762291 + ], + [ + -0.011623275689780712, + -0.010823603570461273, + -0.01355477750301361 + ], + [ + -0.011942023113369941, + -0.01107690565288067, + -0.013863722681999206 + ], + [ + -0.012197349518537522, + -0.0112763512134552, + -0.014205920100212098 + ], + [ + -0.012532021552324295, + -0.01146759007126093, + -0.014485753700137138 + ], + [ + -0.01285994078963995, + -0.011659758649766445, + -0.014760938361287118 + ], + [ + -0.013182131424546242, + -0.01184762042015791, + -0.015048851892352104 + ], + [ + -0.013488856479525566, + -0.012035634443163872, + -0.015308984071016312 + ], + [ + -0.013740946017205715, + -0.012191621288657188, + -0.01555853359401226 + ], + [ + -0.014068693295121193, + -0.012335011214017868, + -0.015808587595820427 + ], + [ + -0.014316958636045455, + -0.012476800940930843, + -0.01605196572840214 + ], + [ + -0.014533360749483108, + -0.012638886086642742, + -0.01631743147969246 + ], + [ + -0.014761737138032914, + -0.012740114107728004, + -0.01657389260828495 + ], + [ + -0.015002199187874795, + -0.012885976433753967, + -0.016843900680541993 + ], + [ + -0.015187615305185318, + -0.013045314475893974, + -0.01706960842013359 + ], + [ + -0.015393942818045616, + -0.01317321851849556, + -0.0173228457570076 + ], + [ + -0.015585944429039954, + -0.013283762373030186, + -0.017557833716273306 + ], + [ + -0.01576209917664528, + -0.013426941707730294, + -0.017884039580821992 + ], + [ + -0.015903344079852104, + -0.01354321964085102, + -0.01812724269926548 + ], + [ + -0.016077473163604736, + -0.013603126779198647, + -0.018377178981900215 + ], + [ + -0.01625208381563425, + -0.013704817071557044, + -0.018616081923246385 + ], + [ + -0.016434147134423257, + -0.013790353685617446, + -0.018896261379122734 + ], + [ + -0.016619423404335976, + -0.013880726732313633, + -0.019149089604616164 + ], + [ + -0.016822648346424104, + -0.013978533670306206, + -0.019383671581745147 + ], + [ + -0.01705798029899597, + -0.014020068235695363, + -0.019660038873553276 + ], + [ + -0.017260466516017915, + -0.0140683638677001, + -0.019862105846405027 + ], + [ + -0.01739349089562893, + -0.014125085733830929, + -0.02013417936861515 + ], + [ + -0.017587644197046757, + -0.014206942357122897, + -0.020367708206176758 + ], + [ + -0.0177076455950737, + -0.014277834370732307, + -0.020522118210792542 + ] + ], + "q02": [ + [ + -0.0005527724325656891, + -0.0006058932840824127, + -0.0006947879493236542 + ], + [ + -0.0010899412631988526, + -0.0011863531172275543, + -0.0013705521821975708 + ], + [ + -0.00161368265748024, + -0.001742754578590393, + -0.0020331773161888123 + ], + [ + -0.002124303877353668, + -0.002287070006132126, + -0.0026818984746932984 + ], + [ + -0.0026180638372898103, + -0.002784952223300934, + -0.0033156655728816984 + ], + [ + -0.0030958510935306547, + -0.00327765628695488, + -0.003919517695903778 + ], + [ + -0.003534649237990379, + -0.0037344664335250853, + -0.004517787843942642 + ], + [ + -0.003974700719118119, + -0.0041881433874368665, + -0.005085952132940292 + ], + [ + -0.004406190663576126, + -0.004605819582939148, + -0.005632998794317246 + ], + [ + -0.004818213284015656, + -0.005013922154903412, + -0.006157249212265015 + ], + [ + -0.005233084857463837, + -0.005411312654614448, + -0.006663372963666916 + ], + [ + -0.005615497604012489, + -0.005787839516997338, + -0.007138566225767136 + ], + [ + -0.005991415977478027, + -0.006129567995667457, + -0.007616677582263947 + ], + [ + -0.006352348625659943, + -0.006467839851975441, + -0.008050862103700637 + ], + [ + -0.00669566124677658, + -0.006780649721622467, + -0.008464776277542115 + ], + [ + -0.007033928334712982, + -0.007075309157371521, + -0.008847740143537522 + ], + [ + -0.007372079938650131, + -0.0073645741492509844, + -0.00923985481262207 + ], + [ + -0.007682965099811554, + -0.0076598387956619265, + -0.009599642753601074 + ], + [ + -0.008022800236940384, + -0.007914237156510353, + -0.009939705580472946 + ], + [ + -0.008334833234548568, + -0.008167795315384864, + -0.01026427835226059 + ], + [ + -0.00864053949713707, + -0.00840664878487587, + -0.010568674802780152 + ], + [ + -0.008920940458774567, + -0.008636065945029258, + -0.010880993604660034 + ], + [ + -0.009177716746926308, + -0.008863720744848251, + -0.011142666786909103 + ], + [ + -0.00942576363682747, + -0.009087610468268394, + -0.011428459882736205 + ], + [ + -0.00971166729927063, + -0.009307642802596092, + -0.0116665717959404 + ], + [ + -0.009964276403188706, + -0.009493465796113014, + -0.011892855614423752 + ], + [ + -0.010204872637987137, + -0.009666652083396912, + -0.012115664780139923 + ], + [ + -0.010457032769918441, + -0.009828766733407974, + -0.012350075095891953 + ], + [ + -0.010691502392292022, + -0.009998166933655739, + -0.012551155388355256 + ], + [ + -0.010931565463542937, + -0.01016964353621006, + -0.012762289941310883 + ], + [ + -0.011149382591247559, + -0.010310425758361816, + -0.013003672063350678 + ], + [ + -0.01136716514825821, + -0.01043932043015957, + -0.0132109135389328 + ], + [ + -0.011595561504364013, + -0.010570276752114296, + -0.013411739617586136 + ], + [ + -0.011810087859630584, + -0.01069554954767227, + -0.013588632345199586 + ], + [ + -0.012015863358974456, + -0.01082880049943924, + -0.013772785067558288 + ], + [ + -0.012209927141666412, + -0.010948195010423661, + -0.013962779194116592 + ], + [ + -0.01239885851740837, + -0.011045402735471726, + -0.014161376953125 + ], + [ + -0.012582008838653564, + -0.01114607684314251, + -0.014342326819896698 + ], + [ + -0.012763415575027465, + -0.011236377358436585, + -0.014524264186620712 + ], + [ + -0.012921409979462624, + -0.011334884539246559, + -0.014714587181806564 + ], + [ + -0.013088444024324417, + -0.01143769919872284, + -0.014868729114532471 + ], + [ + -0.013275355398654938, + -0.011531779915094376, + -0.015061935782432556 + ], + [ + -0.013414274305105209, + -0.011623765602707862, + -0.015270281434059143 + ], + [ + -0.013567311465740204, + -0.01172176793217659, + -0.015463667660951615 + ], + [ + -0.013700120896100999, + -0.011799514964222909, + -0.015645118206739427 + ], + [ + -0.013834867924451828, + -0.01188418060541153, + -0.01582039549946785 + ], + [ + -0.013961167931556702, + -0.011985709145665168, + -0.016000475585460663 + ], + [ + -0.014127977043390274, + -0.01206201121211052, + -0.01615225210785866 + ], + [ + -0.014264706894755364, + -0.012112336531281472, + -0.016326528191566467 + ], + [ + -0.014409248679876328, + -0.012162481844425201, + -0.01653350383043289 + ] + ], + "q98": [ + [ + 0.000541381239891052, + 0.0006155349314212796, + 0.0006593111157417297 + ], + [ + 0.0010620796680450434, + 0.0012070885300636287, + 0.0013013887405395504 + ], + [ + 0.001568848192691803, + 0.0017765353620052332, + 0.001930354684591293 + ], + [ + 0.0020640620589256285, + 0.002342511862516403, + 0.002546509504318237 + ], + [ + 0.002527737021446227, + 0.0028753811866044994, + 0.0031552894413471215 + ], + [ + 0.0029830765724182112, + 0.003405765071511267, + 0.00373331606388092 + ], + [ + 0.0034180413186550114, + 0.00389658972620964, + 0.004303720444440841 + ], + [ + 0.003831522464752197, + 0.0043852013349533064, + 0.004850229024887083 + ], + [ + 0.004217781126499171, + 0.004853900223970412, + 0.005392877906560896 + ], + [ + 0.004604322165250775, + 0.005284906700253484, + 0.005910840779542916 + ], + [ + 0.004963963329792022, + 0.005719801336526871, + 0.006402978003025054 + ], + [ + 0.005310652181506155, + 0.006117304936051362, + 0.006869181245565413 + ], + [ + 0.005646131932735441, + 0.006512969359755514, + 0.007328198701143258 + ], + [ + 0.005958297848701477, + 0.006879444420337673, + 0.007778169214725494 + ], + [ + 0.0062587024271488125, + 0.007229226827621459, + 0.008210070133209221 + ], + [ + 0.006516361534595486, + 0.007565484419465064, + 0.008642008304595942 + ], + [ + 0.006784916371107101, + 0.007895836532115936, + 0.00903404206037521 + ], + [ + 0.007061323076486585, + 0.008213497251272198, + 0.009433964192867276 + ], + [ + 0.007318044602870938, + 0.008501794636249527, + 0.009789879471063613 + ], + [ + 0.007571827173233032, + 0.008798620328307147, + 0.010138752907514568 + ], + [ + 0.007827968820929525, + 0.009080916568636892, + 0.010484578758478157 + ], + [ + 0.008075718656182274, + 0.00935433618724346, + 0.010810733139514922 + ], + [ + 0.008318474441766737, + 0.009620111584663383, + 0.011114729791879645 + ], + [ + 0.008550307005643843, + 0.009896321594715117, + 0.01141242876648902 + ], + [ + 0.00878126323223114, + 0.01012252941727638, + 0.011706569194793685 + ], + [ + 0.00902434110641479, + 0.01035998336970806, + 0.01200651973485946 + ], + [ + 0.009243005365133283, + 0.010575857162475583, + 0.012283205091953272 + ], + [ + 0.009453974217176437, + 0.010783784762024877, + 0.012533013373613355 + ], + [ + 0.009664038568735121, + 0.010976153090596191, + 0.012780632823705663 + ], + [ + 0.009866444021463392, + 0.011171874999999996, + 0.013022791892290116 + ], + [ + 0.010055080652236936, + 0.01133945554494857, + 0.013283591121435158 + ], + [ + 0.01025379985570907, + 0.011512021422386167, + 0.013537382036447523 + ], + [ + 0.010435803830623624, + 0.01165431879460811, + 0.013772066235542297 + ], + [ + 0.010622093975543975, + 0.011789291724562645, + 0.014004999846220015 + ], + [ + 0.010796069800853726, + 0.011961809471249578, + 0.01423961296677589 + ], + [ + 0.010980950966477394, + 0.012121534496545783, + 0.014444674551486967 + ], + [ + 0.011148827224969852, + 0.0122503325343132, + 0.014685675203800192 + ], + [ + 0.011339322626590726, + 0.012398068830370894, + 0.014901446104049672 + ], + [ + 0.011512313634157174, + 0.012531393468379962, + 0.01512483328580856 + ], + [ + 0.011676237434148789, + 0.012662655487656584, + 0.015342955440282819 + ], + [ + 0.011810573190450667, + 0.012766280323266977, + 0.015542271584272384 + ], + [ + 0.011989709138870238, + 0.012876778542995451, + 0.015776197165250774 + ], + [ + 0.012126953601837149, + 0.012933582291007042, + 0.015992880314588537 + ], + [ + 0.012280349135398862, + 0.013034424781799312, + 0.016190323680639263 + ], + [ + 0.012443668991327279, + 0.01310698240995407, + 0.016392665952444076 + ], + [ + 0.01259080663323402, + 0.013197334781289087, + 0.016555472612380974 + ], + [ + 0.012721304148435586, + 0.013286528959870324, + 0.016756777465343473 + ], + [ + 0.012854402661323547, + 0.013353273272514343, + 0.016955001950263976 + ], + [ + 0.012978411018848396, + 0.013435750082135187, + 0.017151486575603482 + ], + [ + 0.013087978586554517, + 0.013521279543638225, + 0.017355077862739564 + ] + ], + "q99": [ + [ + 0.0007063278555870054, + 0.0008017696812748908, + 0.0008521001785993568 + ], + [ + 0.0013854153454303736, + 0.001581542044878004, + 0.001669794768095016 + ], + [ + 0.0020414006710052484, + 0.002350465543568132, + 0.0024769220501184457 + ], + [ + 0.0026809777319431296, + 0.0030729682743549326, + 0.0032604082673788055 + ], + [ + 0.0032701632380485474, + 0.0037831836193799955, + 0.004035847857594489 + ], + [ + 0.0038579776138067223, + 0.004441020265221592, + 0.004782459512352942 + ], + [ + 0.004437057971954345, + 0.005087779462337489, + 0.005478319898247718 + ], + [ + 0.004951929971575737, + 0.005695660188794133, + 0.006163739636540407 + ], + [ + 0.00546515166759491, + 0.006264922507107256, + 0.006831401586532591 + ], + [ + 0.00594885408878326, + 0.006813282668590538, + 0.007495163232088088 + ], + [ + 0.006413653194904322, + 0.007333252392709254, + 0.008105117604136465 + ], + [ + 0.0068640235066413854, + 0.007815442234277725, + 0.008718942329287526 + ], + [ + 0.007301988676190375, + 0.008284346796572204, + 0.00928731493651867 + ], + [ + 0.007668094336986538, + 0.008703211545944212, + 0.009829517900943753 + ], + [ + 0.008073570430278771, + 0.009152211509644974, + 0.01036348059773445 + ], + [ + 0.008435049578547476, + 0.009552131071686742, + 0.01086109563708304 + ], + [ + 0.00878473453223705, + 0.009957079030573362, + 0.011341273039579377 + ], + [ + 0.009090471044182775, + 0.01037308584898709, + 0.01181049533188343 + ], + [ + 0.009448455721139906, + 0.010742487981915466, + 0.012271808311343193 + ], + [ + 0.009746265932917593, + 0.011100737079977989, + 0.012693078964948649 + ], + [ + 0.010063719078898418, + 0.011465619169175621, + 0.013134425207972512 + ], + [ + 0.010373134240508078, + 0.011788969114422797, + 0.013605518415570256 + ], + [ + 0.010686117038130756, + 0.012073447816073888, + 0.014028496518731112 + ], + [ + 0.010993730649352072, + 0.012404903713613748, + 0.01445905953645705 + ], + [ + 0.011236763447523106, + 0.012716279439628124, + 0.014834569171071052 + ], + [ + 0.011531143262982367, + 0.012973838970065113, + 0.015210138782858845 + ], + [ + 0.011803315430879587, + 0.013203942514955996, + 0.015570556074380845 + ], + [ + 0.012088685780763622, + 0.013405570350587365, + 0.015966927632689476 + ], + [ + 0.01236751843243837, + 0.013624969292432065, + 0.01629725240170954 + ], + [ + 0.012598630636930466, + 0.013839959725737571, + 0.016655128598213192 + ], + [ + 0.01288036927580833, + 0.014037965387105937, + 0.016989758312702177 + ], + [ + 0.013151712790131567, + 0.014229178726673125, + 0.017364375814795493 + ], + [ + 0.013408061712980267, + 0.014385360963642594, + 0.01768395282328128 + ], + [ + 0.013683643080294131, + 0.0145248632878065, + 0.01800389140844344 + ], + [ + 0.01394216943532227, + 0.014663126096129417, + 0.018379815742373455 + ], + [ + 0.014138860478997223, + 0.014803341217339039, + 0.018692413419485084 + ], + [ + 0.014367847666144368, + 0.014959027953445895, + 0.018990444168448434 + ], + [ + 0.014559481590986249, + 0.015084911100566385, + 0.019203137159347516 + ], + [ + 0.014728491455316534, + 0.015192677304148673, + 0.019407059922814354 + ], + [ + 0.014913505688309668, + 0.015289810933172701, + 0.019679722413420662 + ], + [ + 0.015117148235440253, + 0.015410797595977783, + 0.019983699098229404 + ], + [ + 0.01526031732559204, + 0.01549164295196532, + 0.020248362198472022 + ], + [ + 0.015417035296559332, + 0.01556402586400508, + 0.020549906864762307 + ], + [ + 0.015558788180351248, + 0.015700119249522682, + 0.02083905689418315 + ], + [ + 0.01572374731302261, + 0.015821941643953324, + 0.021109428554773327 + ], + [ + 0.015862594619393346, + 0.015881159380078308, + 0.021337519362568856 + ], + [ + 0.016023431122303, + 0.015946278534829616, + 0.02159002773463726 + ], + [ + 0.01616558201611041, + 0.016017878800630568, + 0.021761731877923008 + ], + [ + 0.01628559004515409, + 0.01606738146394491, + 0.021981546431779856 + ], + [ + 0.01637556381523609, + 0.01612238071858882, + 0.02219235405325889 + ] + ], + "mean": [ + [ + -6.320256034086924e-06, + -4.095128133485559e-06, + 9.973341548175085e-06 + ], + [ + -1.2974824130651541e-05, + -7.844864740036428e-06, + 2.0028677681693807e-05 + ], + [ + -1.995759885176085e-05, + -1.1235409147047903e-05, + 3.0154144042171538e-05 + ], + [ + -2.7271949875284918e-05, + -1.4278158232627902e-05, + 4.031006756122224e-05 + ], + [ + -3.490033486741595e-05, + -1.6943267837632447e-05, + 5.048221646575257e-05 + ], + [ + -4.282140071154572e-05, + -1.923067611642182e-05, + 6.067638605600223e-05 + ], + [ + -5.103814328322187e-05, + -2.1115129129611887e-05, + 7.086811092449352e-05 + ], + [ + -5.9572623285930604e-05, + -2.2576976334676147e-05, + 8.108137990348041e-05 + ], + [ + -6.843585288152099e-05, + -2.361613223911263e-05, + 9.131375554716215e-05 + ], + [ + -7.762829045532271e-05, + -2.421003046038095e-05, + 0.00010154730989597738 + ], + [ + -8.716144657228142e-05, + -2.435946953482926e-05, + 0.00011178550630575046 + ], + [ + -9.705253614811227e-05, + -2.4099355869111605e-05, + 0.00012202426296425983 + ], + [ + -0.00010732620285125449, + -2.344068889215123e-05, + 0.00013224867871031165 + ], + [ + -0.00011797284241765738, + -2.2409987650462426e-05, + 0.00014243538316804916 + ], + [ + -0.00012898113345727324, + -2.1012579964008182e-05, + 0.0001525898405816406 + ], + [ + -0.00014034906052984297, + -1.925737342389766e-05, + 0.00016270244668703526 + ], + [ + -0.00015207414980977774, + -1.717557097435929e-05, + 0.00017274377751164138 + ], + [ + -0.00016415891877841204, + -1.4785009625484236e-05, + 0.0001827071828301996 + ], + [ + -0.00017660652520135045, + -1.2108938790333923e-05, + 0.00019258042448200285 + ], + [ + -0.00018940363952424377, + -9.204583875543904e-06, + 0.00020232502720318735 + ], + [ + -0.00020252443209756166, + -6.0723809838236775e-06, + 0.00021194340661168098 + ], + [ + -0.00021597070735879242, + -2.761573114185012e-06, + 0.00022143959358800203 + ], + [ + -0.00022967875702306628, + 6.953488878025382e-07, + 0.00023082259576767683 + ], + [ + -0.00024361223040614277, + 4.27377744927071e-06, + 0.00024009669141378254 + ], + [ + -0.0002577596460469067, + 7.944495337142143e-06, + 0.00024929927894845605 + ], + [ + -0.00027207608218304813, + 1.1708262718457263e-05, + 0.0002584351459518075 + ], + [ + -0.00028653195477090776, + 1.5566723959636874e-05, + 0.0002675367286428809 + ], + [ + -0.00030112129752524197, + 1.948692079167813e-05, + 0.00027661683270707726 + ], + [ + -0.0003158132894895971, + 2.346249129914213e-05, + 0.0002856449573300779 + ], + [ + -0.0003306147991679609, + 2.7484471502248198e-05, + 0.00029460826772265136 + ], + [ + -0.00034549584961496294, + 3.152999124722555e-05, + 0.00030349104781635106 + ], + [ + -0.00036044264561496675, + 3.5627828765427694e-05, + 0.00031229385058395565 + ], + [ + -0.00037544345832429826, + 3.979061511927284e-05, + 0.00032097549410536885 + ], + [ + -0.0003904928744304925, + 4.398791497806087e-05, + 0.00032953391200862825 + ], + [ + -0.0004055896424688399, + 4.8237572627840564e-05, + 0.00033794023329392076 + ], + [ + -0.00042070276685990393, + 5.255268843029626e-05, + 0.00034616090124472976 + ], + [ + -0.00043583067599684, + 5.689643876394257e-05, + 0.0003542075864970684 + ], + [ + -0.00045099062845110893, + 6.126590596977621e-05, + 0.0003620274947024882 + ], + [ + -0.00046619155909866095, + 6.565159856108949e-05, + 0.00036962341982871294 + ], + [ + -0.00048146501649171114, + 7.005587394814938e-05, + 0.00037699996028095484 + ], + [ + -0.0004967931308783591, + 7.448772521456704e-05, + 0.0003841512661892921 + ], + [ + -0.0005121532012708485, + 7.897198520367965e-05, + 0.00039108554483391345 + ], + [ + -0.000527532713022083, + 8.351747237611562e-05, + 0.000397803756641224 + ], + [ + -0.0005429444718174636, + 8.812555461190641e-05, + 0.00040430555236525834 + ], + [ + -0.0005583656020462513, + 9.280840458814055e-05, + 0.000410608685342595 + ], + [ + -0.0005737978499382734, + 9.754106577020139e-05, + 0.00041673422674648464 + ], + [ + -0.0005892523913644254, + 0.00010230282350676134, + 0.00042266960372217 + ], + [ + -0.0006047126953490078, + 0.00010708333866205066, + 0.0004284221795387566 + ], + [ + -0.0006201975047588348, + 0.00011187740892637521, + 0.00043399055721238256 + ], + [ + -0.0006356770172715187, + 0.00011667193757602945, + 0.00043935811845585704 + ] + ], + "std": [ + [ + 0.00022911398264113814, + 0.00025657712831161916, + 0.0002878234372474253 + ], + [ + 0.00045039475662633777, + 0.0005031868349760771, + 0.0005667269579134881 + ], + [ + 0.0006656279438175261, + 0.0007411777041852474, + 0.0008402918465435505 + ], + [ + 0.0008748410618864, + 0.0009705825941637158, + 0.0011091561755165458 + ], + [ + 0.0010765232145786285, + 0.0011898914817720652, + 0.001370703335851431 + ], + [ + 0.0012707802234217525, + 0.0013992669992148876, + 0.0016244723228737712 + ], + [ + 0.0014584239106625319, + 0.0015997347654774785, + 0.0018707625567913055 + ], + [ + 0.0016396119026467204, + 0.001791728544048965, + 0.002109284047037363 + ], + [ + 0.001814499613828957, + 0.0019758278504014015, + 0.0023398608900606632 + ], + [ + 0.0019833988044410944, + 0.0021524413023144007, + 0.002562730573117733 + ], + [ + 0.002146289683878422, + 0.0023217257112264633, + 0.0027778425719588995 + ], + [ + 0.0023031020537018776, + 0.0024837693199515343, + 0.002985299564898014 + ], + [ + 0.0024538494180887938, + 0.002638824051246047, + 0.003185260109603405 + ], + [ + 0.0025988202542066574, + 0.0027871602214872837, + 0.0033778485376387835 + ], + [ + 0.0027382876724004745, + 0.002929095411673188, + 0.0035634117666631937 + ], + [ + 0.0028725238516926765, + 0.003064891789108515, + 0.003742245025932789 + ], + [ + 0.003002006560564041, + 0.0031949288677424192, + 0.003914566710591316 + ], + [ + 0.0031271229963749647, + 0.003319581039249897, + 0.004080651793628931 + ], + [ + 0.0032482556998729706, + 0.003439194755628705, + 0.004240705631673336 + ], + [ + 0.0033656153827905655, + 0.0035539697855710983, + 0.00439494801685214 + ], + [ + 0.0034796083346009254, + 0.0036642218474298716, + 0.004543655551970005 + ], + [ + 0.003590329783037305, + 0.0037701500114053488, + 0.004687007050961256 + ], + [ + 0.003697949228808284, + 0.0038717284332960844, + 0.004825335927307606 + ], + [ + 0.0038027409464120865, + 0.0039692590944468975, + 0.004958936478942633 + ], + [ + 0.0039047934114933014, + 0.004062817431986332, + 0.005088093690574169 + ], + [ + 0.004004277754575014, + 0.004152592271566391, + 0.005213072057813406 + ], + [ + 0.004101346246898174, + 0.004238730762153864, + 0.005334022920578718 + ], + [ + 0.0041961283423006535, + 0.0043214475736021996, + 0.0054512228816747665 + ], + [ + 0.0042887055315077305, + 0.004400847014039755, + 0.005564780905842781 + ], + [ + 0.00437920494005084, + 0.004477078095078468, + 0.005674904678016901 + ], + [ + 0.004467695020139217, + 0.004550257697701454, + 0.005781839601695538 + ], + [ + 0.0045542046427726746, + 0.004620638210326433, + 0.0058857230469584465 + ], + [ + 0.004638715647161007, + 0.004688249435275793, + 0.005986708216369152 + ], + [ + 0.004721333738416433, + 0.004753366112709045, + 0.006085080560296774 + ], + [ + 0.004802166949957609, + 0.004816129337996244, + 0.006180858705192804 + ], + [ + 0.004881224129348993, + 0.0048766713589429855, + 0.006274276413023472 + ], + [ + 0.004958507604897022, + 0.004935059230774641, + 0.00636559072881937 + ], + [ + 0.005034161731600761, + 0.004991499707102776, + 0.006454767193645239 + ], + [ + 0.005108202341943979, + 0.005045935977250338, + 0.006541958078742027 + ], + [ + 0.0051805973052978516, + 0.005098567809909582, + 0.006627194117754698 + ], + [ + 0.005251452326774597, + 0.005149373784661293, + 0.006710712797939777 + ], + [ + 0.005320820026099682, + 0.0051984828896820545, + 0.0067925057373940945 + ], + [ + 0.005388730205595493, + 0.005245976150035858, + 0.006872646044939756 + ], + [ + 0.005455215461552143, + 0.005292021203786135, + 0.006951120216399431 + ], + [ + 0.0055204420350492, + 0.005336548201739788, + 0.007028082385659218 + ], + [ + 0.0055843922309577465, + 0.00537978857755661, + 0.007103472948074341 + ], + [ + 0.005647174082696438, + 0.005421627778559923, + 0.007177336141467094 + ], + [ + 0.005708763375878334, + 0.005462329369038343, + 0.007249786052852869 + ], + [ + 0.005769255571067333, + 0.005501836538314819, + 0.007320711854845285 + ], + [ + 0.005828600376844406, + 0.005540250800549984, + 0.007390148006379604 + ] + ], + "min": [ + [ + -0.003474190831184387, + -0.002765156328678131, + -0.0025823041796684265 + ], + [ + -0.006091997027397156, + -0.004919454455375671, + -0.004699110984802246 + ], + [ + -0.007493600249290466, + -0.0066564083099365234, + -0.006955966353416443 + ], + [ + -0.0082520991563797, + -0.008315052837133408, + -0.008644156157970428 + ], + [ + -0.009837627410888672, + -0.010020066052675247, + -0.010495476424694061 + ], + [ + -0.01138603687286377, + -0.011651892215013504, + -0.01224178820848465 + ], + [ + -0.013100475072860718, + -0.013019315898418427, + -0.014069639146327972 + ], + [ + -0.01468600332736969, + -0.01426408439874649, + -0.015920959413051605 + ], + [ + -0.016223445534706116, + -0.01536426693201065, + -0.017278656363487244 + ], + [ + -0.017732977867126465, + -0.01660173013806343, + -0.018533654510974884 + ], + [ + -0.01879502832889557, + -0.017666518688201904, + -0.019851163029670715 + ], + [ + -0.019687876105308533, + -0.018475241959095, + -0.02092882990837097 + ], + [ + -0.020345374941825867, + -0.019291453063488007, + -0.021975859999656677 + ], + [ + -0.020867690443992615, + -0.01989837735891342, + -0.02279563993215561 + ], + [ + -0.02102905511856079, + -0.020361904054880142, + -0.02369210124015808 + ], + [ + -0.02216227352619171, + -0.020604249089956284, + -0.02469201385974884 + ], + [ + -0.02333112061023712, + -0.02110625058412552, + -0.025431573390960693 + ], + [ + -0.024531826376914978, + -0.02175520360469818, + -0.02608620375394821 + ], + [ + -0.025597870349884033, + -0.0224878191947937, + -0.026553206145763397 + ], + [ + -0.02682150900363922, + -0.023301567882299423, + -0.026989206671714783 + ], + [ + -0.027749359607696533, + -0.023778509348630905, + -0.027234956622123718 + ], + [ + -0.028613582253456116, + -0.024262383580207825, + -0.027416303753852844 + ], + [ + -0.029672548174858093, + -0.024699531495571136, + -0.027422696352005005 + ], + [ + -0.03042520582675934, + -0.02527252584695816, + -0.027937322854995728 + ], + [ + -0.031173646450042725, + -0.025716416537761688, + -0.028531424701213837 + ], + [ + -0.0319458544254303, + -0.026208952069282532, + -0.029027990996837616 + ], + [ + -0.032694295048713684, + -0.02670234441757202, + -0.02947409451007843 + ], + [ + -0.033346280455589294, + -0.027103155851364136, + -0.029889166355133057 + ], + [ + -0.033920302987098694, + -0.027277588844299316, + -0.030296802520751953 + ], + [ + -0.03445284068584442, + -0.027300991117954254, + -0.03054826706647873 + ], + [ + -0.035079196095466614, + -0.027540482580661774, + -0.030744872987270355 + ], + [ + -0.03561173379421234, + -0.02776748687028885, + -0.030881918966770172 + ], + [ + -0.03615325689315796, + -0.027967512607574463, + -0.03104282170534134 + ], + [ + -0.036644503474235535, + -0.02807554602622986, + -0.031166039407253265 + ], + [ + -0.03717704117298126, + -0.028151672333478928, + -0.031312040984630585 + ], + [ + -0.03771856427192688, + -0.028187289834022522, + -0.03150623291730881 + ], + [ + -0.03812962770462036, + -0.028755268082022667, + -0.03177032619714737 + ], + [ + -0.03854036331176758, + -0.029230857267975807, + -0.03201364725828171 + ], + [ + -0.03904971480369568, + -0.029650555923581123, + -0.0321086123585701 + ], + [ + -0.039352238178253174, + -0.030079228803515434, + -0.03220357745885849 + ], + [ + -0.03965441882610321, + -0.030321449041366577, + -0.03238078951835632 + ], + [ + -0.03993603587150574, + -0.030522938817739487, + -0.03269036114215851 + ], + [ + -0.04019266366958618, + -0.03061773255467415, + -0.03288005292415619 + ], + [ + -0.04063771665096283, + -0.030644826591014862, + -0.033060893416404724 + ], + [ + -0.041184693574905396, + -0.030630026012659073, + -0.033202365040779114 + ], + [ + -0.04178871214389801, + -0.030630838125944138, + -0.03336028754711151 + ], + [ + -0.04227618873119354, + -0.030652359127998352, + -0.03346604108810425 + ], + [ + -0.04272158443927765, + -0.030687686055898666, + -0.033577144145965576 + ], + [ + -0.04313628375530243, + -0.030735265463590622, + -0.033727437257766724 + ], + [ + -0.04353354871273041, + -0.030796028673648834, + -0.03381754457950592 + ] + ], + "max": [ + [ + 0.004753176122903824, + 0.002817779779434204, + 0.003062888979911804 + ], + [ + 0.008272029459476471, + 0.005141787230968475, + 0.005134232342243195 + ], + [ + 0.011859200894832611, + 0.007425427436828613, + 0.007618121802806854 + ], + [ + 0.015317402780056, + 0.009694218635559082, + 0.010369725525379181 + ], + [ + 0.0188269205391407, + 0.011488258838653564, + 0.01229841262102127 + ], + [ + 0.02228512242436409, + 0.012814328074455261, + 0.014403343200683594 + ], + [ + 0.025348220020532608, + 0.014039747416973114, + 0.01687590777873993 + ], + [ + 0.02890271320939064, + 0.015784483402967453, + 0.018855810165405273 + ], + [ + 0.031130194664001465, + 0.01723437011241913, + 0.020682647824287415 + ], + [ + 0.03334011882543564, + 0.01845376566052437, + 0.02269873023033142 + ], + [ + 0.035261575132608414, + 0.01967388391494751, + 0.02419143170118332 + ], + [ + 0.03713468834757805, + 0.02089327946305275, + 0.02542271465063095 + ], + [ + 0.03890873119235039, + 0.02197665348649025, + 0.02659275382757187 + ], + [ + 0.040732841938734055, + 0.02320890501141548, + 0.028066672384738922 + ], + [ + 0.04173479229211807, + 0.024106238037347794, + 0.029143638908863068 + ], + [ + 0.04265756905078888, + 0.025373753160238266, + 0.03009873628616333 + ], + [ + 0.04321984574198723, + 0.026807613670825958, + 0.03102782368659973 + ], + [ + 0.043667327612638474, + 0.028278730809688568, + 0.031852155923843384 + ], + [ + 0.04387630894780159, + 0.02963242679834366, + 0.032691940665245056 + ], + [ + 0.04398486018180847, + 0.03092992678284645, + 0.03315451741218567 + ], + [ + 0.04399076849222183, + 0.03221937641501427, + 0.03357170522212982 + ], + [ + 0.0437687523663044, + 0.03309701383113861, + 0.03401617705821991 + ], + [ + 0.04342871531844139, + 0.03373624384403229, + 0.03476518392562866 + ], + [ + 0.04276871681213379, + 0.034266967326402664, + 0.035394638776779175 + ], + [ + 0.041803594678640366, + 0.034781564027071, + 0.036013975739479065 + ], + [ + 0.04134582355618477, + 0.0352727510035038, + 0.036808714270591736 + ], + [ + 0.04068582504987717, + 0.0354602225124836, + 0.03739982843399048 + ], + [ + 0.03950413316488266, + 0.03561856970191002, + 0.03815372288227081 + ], + [ + 0.03822702169418335, + 0.03577150031924248, + 0.038652047514915466 + ], + [ + 0.03704532980918884, + 0.03582482412457466, + 0.03928133100271225 + ], + [ + 0.03584469109773636, + 0.035840991884469986, + 0.04035808891057968 + ], + [ + 0.03557778522372246, + 0.03581416979432106, + 0.04122985154390335 + ], + [ + 0.035667162388563156, + 0.035743337124586105, + 0.04203537851572037 + ], + [ + 0.03567434847354889, + 0.035644177347421646, + 0.04290129989385605 + ], + [ + 0.03568025678396225, + 0.03554248437285423, + 0.043661922216415405 + ], + [ + 0.035653047263622284, + 0.035425182431936264, + 0.04423099756240845 + ], + [ + 0.03562106192111969, + 0.03538421168923378, + 0.04476006329059601 + ], + [ + 0.035612668842077255, + 0.03541570529341698, + 0.045332491397857666 + ], + [ + 0.035618577152490616, + 0.035561513155698776, + 0.04604947566986084 + ], + [ + 0.03561767563223839, + 0.035704951733350754, + 0.04659132659435272 + ], + [ + 0.03561866655945778, + 0.03580602630972862, + 0.04714648425579071 + ], + [ + 0.03561777248978615, + 0.035945650190114975, + 0.04785294830799103 + ], + [ + 0.035612814128398895, + 0.036037806421518326, + 0.04835836589336395 + ], + [ + 0.035616930574178696, + 0.036097098141908646, + 0.04882928729057312 + ], + [ + 0.03561697155237198, + 0.036120522767305374, + 0.049271851778030396 + ], + [ + 0.035617079585790634, + 0.036107610911130905, + 0.04977630078792572 + ], + [ + 0.03561710938811302, + 0.03607987239956856, + 0.05009663105010986 + ], + [ + 0.03561592474579811, + 0.03601318225264549, + 0.05036604404449463 + ], + [ + 0.0356183685362339, + 0.03594638779759407, + 0.050625577569007874 + ], + [ + 0.03561859950423241, + 0.03586423024535179, + 0.05071146786212921 + ] + ] + }, + "psm2_pose": { + "q01": [ + [ + -0.000797455906867981, + -0.0008284588158130646, + -0.0010895872861146926 + ], + [ + -0.0015721976011991501, + -0.0016437856107950212, + -0.0021378623694181444 + ], + [ + -0.002310899868607521, + -0.002421787530183792, + -0.0031680091470479965 + ], + [ + -0.003030397817492485, + -0.003175813555717468, + -0.004175921678543091 + ], + [ + -0.0037292611598968507, + -0.0039043045789003373, + -0.005158710777759552 + ], + [ + -0.004387760758399964, + -0.004578903168439865, + -0.006099514439702034 + ], + [ + -0.005015150159597397, + -0.005219404883682728, + -0.0069845782965421675 + ], + [ + -0.0056309463083744045, + -0.005840598344802856, + -0.00781489335000515 + ], + [ + -0.0062077176570892335, + -0.006421403288841248, + -0.008624527901411057 + ], + [ + -0.006748066246509552, + -0.0069402121007442474, + -0.009388296455144883 + ], + [ + -0.007272755056619644, + -0.0074263173341751094, + -0.010171332210302354 + ], + [ + -0.007777468636631966, + -0.007920770458877086, + -0.01087336964905262 + ], + [ + -0.00822966143488884, + -0.008376289457082749, + -0.011571072265505791 + ], + [ + -0.008674256503582, + -0.00876026026904583, + -0.012224137410521507 + ], + [ + -0.009083048403263091, + -0.00914126768708229, + -0.012867034524679183 + ], + [ + -0.009508671909570695, + -0.009472844153642654, + -0.013417134284973145 + ], + [ + -0.009934777766466141, + -0.009787599071860314, + -0.013977064564824105 + ], + [ + -0.010305000990629197, + -0.010107257813215255, + -0.014487880691885948 + ], + [ + -0.010685999095439911, + -0.010415321961045266, + -0.0149650277197361 + ], + [ + -0.011034250408411026, + -0.010734670609235764, + -0.015424721688032151 + ], + [ + -0.011352191865444183, + -0.011029290184378624, + -0.01589194029569626 + ], + [ + -0.011667907983064652, + -0.01132678911089897, + -0.01631288431584835 + ], + [ + -0.012016051709651946, + -0.011598278582096099, + -0.01673843801021576 + ], + [ + -0.012290838807821274, + -0.01182885143905878, + -0.01710329473018646 + ], + [ + -0.012606174647808076, + -0.012048268467187881, + -0.017513354197144507 + ], + [ + -0.012945282086730004, + -0.012285405173897743, + -0.017893935814499856 + ], + [ + -0.013256208151578902, + -0.012513173297047615, + -0.018194287419319152 + ], + [ + -0.013557626530528069, + -0.012745322212576866, + -0.01854424625635147 + ], + [ + -0.013844096213579177, + -0.01296352930366993, + -0.018908682763576507 + ], + [ + -0.014153241366147994, + -0.013177480399608612, + -0.01925271175801754 + ], + [ + -0.01448179468512535, + -0.013399725630879402, + -0.019571311622858047 + ], + [ + -0.01481395348906517, + -0.013597266227006912, + -0.019884002804756166 + ], + [ + -0.015083889961242675, + -0.013813762441277504, + -0.020157258063554763 + ], + [ + -0.015363241434097289, + -0.014015907421708107, + -0.020457139387726784 + ], + [ + -0.015619092285633088, + -0.014232435449957847, + -0.02075298275798559 + ], + [ + -0.015844254940748214, + -0.014426899999380112, + -0.021070983931422232 + ], + [ + -0.016097450479865074, + -0.014610764533281325, + -0.021338641494512558 + ], + [ + -0.016350801810622213, + -0.014732322543859483, + -0.021624807566404343 + ], + [ + -0.016639106795191764, + -0.014817030727863311, + -0.021872084960341452 + ], + [ + -0.01688295856118202, + -0.014967443831264972, + -0.022125017046928406 + ], + [ + -0.017144615054130553, + -0.01511427242308855, + -0.02236145332455635 + ], + [ + -0.017424003407359123, + -0.015200308375060558, + -0.0226320219039917 + ], + [ + -0.017690701335668562, + -0.015304514914751053, + -0.022857796400785446 + ], + [ + -0.017946203500032426, + -0.01537184130400419, + -0.023076565489172935 + ], + [ + -0.01818039484322071, + -0.015465680547058581, + -0.023341404236853124 + ], + [ + -0.01838997773826122, + -0.015605230256915093, + -0.023542290702462196 + ], + [ + -0.01869715079665184, + -0.01574045658111572, + -0.023807359635829927 + ], + [ + -0.01892505906522274, + -0.015911178290843965, + -0.024013077840209007 + ], + [ + -0.019096035435795786, + -0.01606362756341696, + -0.024216486252844335 + ], + [ + -0.019290501326322554, + -0.01616485357284546, + -0.024451090022921562 + ] + ], + "q02": [ + [ + -0.0006048686802387238, + -0.0006184145808219909, + -0.0008241552114486695 + ], + [ + -0.0011838547885417937, + -0.0012153437733650207, + -0.001635252833366394 + ], + [ + -0.001751095950603485, + -0.0018050771951675414, + -0.0024416828155517578 + ], + [ + -0.0022939662635326386, + -0.0023572978377342222, + -0.00322243332862854 + ], + [ + -0.0028281188011169433, + -0.0028944888710975645, + -0.003991872519254684 + ], + [ + -0.0033196306228637693, + -0.0033997943997383117, + -0.004743693023920059 + ], + [ + -0.003803909420967102, + -0.003892117664217949, + -0.005459966361522675 + ], + [ + -0.004277316480875015, + -0.00434782326221466, + -0.006153785586357117 + ], + [ + -0.004722856432199478, + -0.0047830606997013095, + -0.006835720092058181 + ], + [ + -0.005130750834941864, + -0.005194462835788727, + -0.007489388585090637 + ], + [ + -0.005541812181472778, + -0.005590225979685784, + -0.008067592978477478 + ], + [ + -0.005922657400369644, + -0.0059696388244628905, + -0.008681252896785736 + ], + [ + -0.006280056983232498, + -0.006324785798788071, + -0.009247698485851288 + ], + [ + -0.0066062922775745395, + -0.006643525958061218, + -0.009791809171438216 + ], + [ + -0.006935608386993408, + -0.006975003629922867, + -0.010312659293413162 + ], + [ + -0.007254925668239594, + -0.00729496568441391, + -0.010806522071361542 + ], + [ + -0.00755960002541542, + -0.007600356489419937, + -0.011303364783525467 + ], + [ + -0.007862977385520935, + -0.007888704910874367, + -0.011727548986673355 + ], + [ + -0.00814717024564743, + -0.008167691230773926, + -0.012152562737464906 + ], + [ + -0.008418411612510682, + -0.008442182987928391, + -0.012545684278011322 + ], + [ + -0.008690707385540009, + -0.008664840087294578, + -0.012932029366493224 + ], + [ + -0.008952521234750748, + -0.008876287937164306, + -0.013330844193696975 + ], + [ + -0.009193186908960342, + -0.00908994197845459, + -0.013649668395519256 + ], + [ + -0.009445966184139253, + -0.009284209012985229, + -0.013964498341083527 + ], + [ + -0.00969875991344452, + -0.009459018558263779, + -0.014316694736480713 + ], + [ + -0.009930851310491562, + -0.009621708020567894, + -0.014649908691644668 + ], + [ + -0.010151286274194718, + -0.009822805523872375, + -0.014980110675096511 + ], + [ + -0.010373637527227402, + -0.010002802610397338, + -0.01529952347278595 + ], + [ + -0.010571880638599396, + -0.010178623795509338, + -0.015621009767055511 + ], + [ + -0.010750214904546737, + -0.010322194024920463, + -0.015891328230500223 + ], + [ + -0.010951290875673293, + -0.010486729890108109, + -0.016157750934362412 + ], + [ + -0.011154292076826096, + -0.010632230639457703, + -0.016404435932636262 + ], + [ + -0.011375899910926818, + -0.010797439366579056, + -0.016662594377994538 + ], + [ + -0.011582477539777756, + -0.010929490849375724, + -0.016921025961637498 + ], + [ + -0.011772569119930267, + -0.01107294589281082, + -0.01718439072370529 + ], + [ + -0.011953833401203156, + -0.011228010952472686, + -0.017447323799133302 + ], + [ + -0.012164633274078369, + -0.011374269127845765, + -0.017658661231398583 + ], + [ + -0.012331974506378175, + -0.01150563582777977, + -0.01790614753961563 + ], + [ + -0.012496034502983092, + -0.011613214015960693, + -0.01810689374804497 + ], + [ + -0.012662800550460816, + -0.011702000573277473, + -0.018340695649385452 + ], + [ + -0.012855110317468643, + -0.011798472702503204, + -0.01855915293097496 + ], + [ + -0.012990739047527313, + -0.011890472173690795, + -0.01881131052970886 + ], + [ + -0.013183396011590957, + -0.012005170583724975, + -0.019013931751251222 + ], + [ + -0.0133257856965065, + -0.012115284502506256, + -0.019193416833877562 + ], + [ + -0.01350522682070732, + -0.012222788631916046, + -0.019359349757432937 + ], + [ + -0.0136455936729908, + -0.012320990785956382, + -0.01955736681818962 + ], + [ + -0.013803340345621109, + -0.012429401874542237, + -0.019730184376239777 + ], + [ + -0.01397073283791542, + -0.012523676455020904, + -0.01988991141319275 + ], + [ + -0.014134194552898407, + -0.012626429945230484, + -0.020059103965759276 + ], + [ + -0.014294051229953766, + -0.01267399974167347, + -0.020229995399713516 + ] + ], + "q98": [ + [ + 0.0007123062014579764, + 0.000655755549669265, + 0.0007203434407711028 + ], + [ + 0.0014049492776393889, + 0.0012977948784828174, + 0.0014280211925506558 + ], + [ + 0.0020868548750877357, + 0.0019105127453803977, + 0.0021203832328319542 + ], + [ + 0.0027560698986053463, + 0.002505122050642967, + 0.0027993907034397124 + ], + [ + 0.0033820509910583475, + 0.00308682605624198, + 0.003467782139778136 + ], + [ + 0.00401004076004028, + 0.0036261410266160946, + 0.0041055391728878005 + ], + [ + 0.004607540220022201, + 0.00416121572256088, + 0.004722674936056136 + ], + [ + 0.005204677879810328, + 0.004656336158514021, + 0.0053161635994911135 + ], + [ + 0.005768495798110961, + 0.00514298796653747, + 0.0059026795625686645 + ], + [ + 0.006341388672590255, + 0.005590832680463791, + 0.00646059155464172 + ], + [ + 0.00686731338500976, + 0.006031908243894576, + 0.007007262408733367 + ], + [ + 0.0073915010690689086, + 0.006415408551692961, + 0.00755322054028511 + ], + [ + 0.007880705147981632, + 0.006798838675022125, + 0.00806445240974426 + ], + [ + 0.008354984968900681, + 0.00716179385781288, + 0.008554904460906981 + ], + [ + 0.008812801837921134, + 0.007515345215797421, + 0.009041626006364819 + ], + [ + 0.009299626797437666, + 0.007835122495889659, + 0.009507930427789687 + ], + [ + 0.009755472838878626, + 0.008149540796875953, + 0.009947682619094848 + ], + [ + 0.010236210078001021, + 0.008436928391456603, + 0.010347607880830764 + ], + [ + 0.010640178769826883, + 0.008726049363613127, + 0.010742226243019102 + ], + [ + 0.011083942800760267, + 0.009009385704994197, + 0.011128475368022913 + ], + [ + 0.01153410270810127, + 0.009275309741497038, + 0.011496253460645672 + ], + [ + 0.011930770277976985, + 0.009547994807362554, + 0.01186224803328514 + ], + [ + 0.012298803329467763, + 0.009754154458642004, + 0.012191604375839228 + ], + [ + 0.012677205651998515, + 0.010039218589663503, + 0.012538536787033077 + ], + [ + 0.013041864335536944, + 0.010322882309556008, + 0.012840572595596312 + ], + [ + 0.01342643544077872, + 0.010577384978532792, + 0.013134198784828185 + ], + [ + 0.013751316070556605, + 0.010860268771648406, + 0.013427933901548384 + ], + [ + 0.014082952737808225, + 0.011128443628549568, + 0.013726309090852738 + ], + [ + 0.014432849586009962, + 0.011374132186174384, + 0.01399593949317931 + ], + [ + 0.014781673252582546, + 0.011647508591413478, + 0.014255650341510773 + ], + [ + 0.015134243071079247, + 0.011921676993370055, + 0.014498368054628369 + ], + [ + 0.015480454713106145, + 0.012190740182995792, + 0.014729017764329902 + ], + [ + 0.01579989641904831, + 0.012454270645976059, + 0.014937113374471664 + ], + [ + 0.016133855283260324, + 0.012732312604784963, + 0.015152568370103797 + ], + [ + 0.016472800523042667, + 0.012995152920484539, + 0.015344099998474118 + ], + [ + 0.01680836156010627, + 0.013231204748153678, + 0.015565105229616155 + ], + [ + 0.017104304134845733, + 0.013470934480428694, + 0.015746694952249483 + ], + [ + 0.0173965074121952, + 0.013690066337585445, + 0.0159097822010517 + ], + [ + 0.01770081028342247, + 0.013899016678333273, + 0.01607241392135618 + ], + [ + 0.01797216951847075, + 0.014127183556556702, + 0.016240575462579725 + ], + [ + 0.018233854174613942, + 0.014331979602575297, + 0.016399512290954585 + ], + [ + 0.018509972989559163, + 0.014511670768260937, + 0.01658058494329452 + ], + [ + 0.01880007892847061, + 0.014676354527473448, + 0.01669804856181144 + ], + [ + 0.019135294854640945, + 0.014846122264862056, + 0.016870138645172103 + ], + [ + 0.019463087171316097, + 0.015015563368797294, + 0.017016017436981185 + ], + [ + 0.01976552292704581, + 0.015215071141719815, + 0.017158952653408048 + ], + [ + 0.020055343657731997, + 0.015397859215736387, + 0.017296250015497203 + ], + [ + 0.0203370688855648, + 0.015578030198812477, + 0.01745580032467842 + ], + [ + 0.020610466301441165, + 0.01575102046132087, + 0.017595134973526 + ], + [ + 0.02089386552572249, + 0.015906780064105987, + 0.0177492806315422 + ] + ], + "q99": [ + [ + 0.0009431514889001844, + 0.0008435376361012458, + 0.0009347986429929732 + ], + [ + 0.001871741488575935, + 0.001649737805128097, + 0.0018430747836828232 + ], + [ + 0.0027681962400674808, + 0.0024391505122184753, + 0.0027326266467571246 + ], + [ + 0.003648391440510747, + 0.0032018939405679685, + 0.003593005016446112 + ], + [ + 0.004503513276576995, + 0.003924272656440735, + 0.004431529119610785 + ], + [ + 0.005339570045471191, + 0.004623692184686656, + 0.005252077504992484 + ], + [ + 0.006150867342948906, + 0.005298000425100326, + 0.006054996997117993 + ], + [ + 0.006940685436129565, + 0.005918487831950182, + 0.006823153197765348 + ], + [ + 0.0076880411058664316, + 0.006510013341903686, + 0.007580886334180832 + ], + [ + 0.008455558717250821, + 0.007085129022598266, + 0.008323592841625212 + ], + [ + 0.009163298010826108, + 0.007606752887368194, + 0.009040537849068638 + ], + [ + 0.009861242473125453, + 0.008109195455908767, + 0.009714857339858999 + ], + [ + 0.010485846847295761, + 0.008605438694357872, + 0.010364761129021629 + ], + [ + 0.01108593627810477, + 0.009044860005378717, + 0.010954181626439094 + ], + [ + 0.011715125739574431, + 0.009480561017990111, + 0.011543069481849664 + ], + [ + 0.01229722432792186, + 0.009898409917950626, + 0.012076736241579053 + ], + [ + 0.01284337282180786, + 0.010335969850420951, + 0.01261395677924156 + ], + [ + 0.013392402455210683, + 0.010734771415591239, + 0.013144027516245832 + ], + [ + 0.013954478576779365, + 0.011127581521868704, + 0.013662999719381331 + ], + [ + 0.014498703777790068, + 0.011508480012416835, + 0.014157543182373045 + ], + [ + 0.015016392618417737, + 0.011889622360467905, + 0.0146445371210575 + ], + [ + 0.015531999915838236, + 0.012229838185012335, + 0.015130008980631824 + ], + [ + 0.016028903201222418, + 0.012591650709509846, + 0.015548091679811464 + ], + [ + 0.01654613047838211, + 0.01288597971200942, + 0.016008704826235766 + ], + [ + 0.01700920835137367, + 0.01320321626961231, + 0.016413628086447713 + ], + [ + 0.017505597323179245, + 0.013514165207743645, + 0.01682668458670376 + ], + [ + 0.017990073859691605, + 0.013860225975513457, + 0.01723586320877075 + ], + [ + 0.018480141609907134, + 0.014164295643568029, + 0.017609282508492467 + ], + [ + 0.018894724249839782, + 0.014481277987360954, + 0.0180159543454647 + ], + [ + 0.019380571767687794, + 0.014763738811016081, + 0.018393631279468525 + ], + [ + 0.019889499619603148, + 0.01506795741617679, + 0.01880402423441409 + ], + [ + 0.020329433232545845, + 0.015320398584008209, + 0.019169972985982886 + ], + [ + 0.020782289206981643, + 0.015583725385367867, + 0.01949929237365721 + ], + [ + 0.021183128282427764, + 0.015827807039022444, + 0.019807555750012397 + ], + [ + 0.021642626821994755, + 0.016050728633999818, + 0.020102979764342308 + ], + [ + 0.022110497057437895, + 0.0162987694889307, + 0.02038458473980426 + ], + [ + 0.02253964520990846, + 0.016526877433061585, + 0.020716274827718734 + ], + [ + 0.022921904549002635, + 0.016784819588065145, + 0.020959310159087155 + ], + [ + 0.023310097455978392, + 0.017029463499784462, + 0.021279558837413785 + ], + [ + 0.02373431451618671, + 0.017298437878489486, + 0.021501486338675012 + ], + [ + 0.024109650328755377, + 0.017563652694225308, + 0.021739655882120106 + ], + [ + 0.024453485012054434, + 0.017835631258785723, + 0.021908571496605852 + ], + [ + 0.02475118495523928, + 0.018091600537300086, + 0.022147553637623777 + ], + [ + 0.025137933865189546, + 0.01833427749574184, + 0.02236989706754683 + ], + [ + 0.025485916882753364, + 0.018577798828482626, + 0.022614890262484543 + ], + [ + 0.025789312571287134, + 0.0187662750482559, + 0.02284080266952513 + ], + [ + 0.026122796982526775, + 0.01895982265472412, + 0.02307237230241298 + ], + [ + 0.026412816122174238, + 0.019178803712129554, + 0.023292668610811227 + ], + [ + 0.02674897849559783, + 0.019403624460101125, + 0.02350189857184886 + ], + [ + 0.026941585242748256, + 0.019581134393811223, + 0.023769030645489686 + ] + ], + "mean": [ + [ + 3.007464101756341e-06, + 5.774757482868154e-06, + 1.0392005833637086e-06 + ], + [ + 6.455756192735862e-06, + 1.17767149276915e-05, + 1.7783332850740408e-06 + ], + [ + 1.0342577297706157e-05, + 1.8021823052549735e-05, + 2.1961843685858184e-06 + ], + [ + 1.4648162505181972e-05, + 2.4564038540120237e-05, + 2.297239007020835e-06 + ], + [ + 1.9364793843124062e-05, + 3.1374976970255375e-05, + 2.087577968268306e-06 + ], + [ + 2.4502500309608877e-05, + 3.846294930553995e-05, + 1.5326459106290713e-06 + ], + [ + 3.0048908229218796e-05, + 4.5828222937416285e-05, + 5.87785393690865e-07 + ], + [ + 3.6003610148327425e-05, + 5.346727994037792e-05, + -7.979073188835173e-07 + ], + [ + 4.240362977725454e-05, + 6.135175499366596e-05, + -2.671906031537219e-06 + ], + [ + 4.925563916913234e-05, + 6.949223461560905e-05, + -5.055880137661006e-06 + ], + [ + 5.657583460561e-05, + 7.788251241436228e-05, + -7.998878572834656e-06 + ], + [ + 6.438562559196725e-05, + 8.650180825497955e-05, + -1.1555957826203667e-05 + ], + [ + 7.269037450896576e-05, + 9.533201227895916e-05, + -1.57418198796222e-05 + ], + [ + 8.149177301675081e-05, + 0.00010440176265547052, + -2.0554592992994003e-05 + ], + [ + 9.078704169951379e-05, + 0.00011370475112926215, + -2.599794606794603e-05 + ], + [ + 0.0001005757148959674, + 0.0001232580398209393, + -3.2089890737552196e-05 + ], + [ + 0.00011087103484896943, + 0.00013308413326740265, + -3.8847407267894596e-05 + ], + [ + 0.00012164675717940554, + 0.00014317884051706642, + -4.625238580047153e-05 + ], + [ + 0.00013289094204083085, + 0.00015357696975115687, + -5.429339216789231e-05 + ], + [ + 0.00014457781799137592, + 0.00016429967945441604, + -6.296005449257791e-05 + ], + [ + 0.00015664563397876918, + 0.00017538710380904377, + -7.222482236102223e-05 + ], + [ + 0.0001690351782599464, + 0.0001868198305601254, + -8.205202175304294e-05 + ], + [ + 0.00018168434326071292, + 0.0001986327115446329, + -9.238246275344864e-05 + ], + [ + 0.00019457285816315562, + 0.00021080521401017904, + -0.0001031703213811852 + ], + [ + 0.00020766904344782233, + 0.00022331734362524003, + -0.00011434244515839964 + ], + [ + 0.00022094318410381675, + 0.00023614965903107077, + -0.00012582297495100647 + ], + [ + 0.00023439936921931803, + 0.00024929657229222357, + -0.0001375703577650711 + ], + [ + 0.0002480075927451253, + 0.0002627295325510204, + -0.00014954869402572513 + ], + [ + 0.00026174294180236757, + 0.000276426988421008, + -0.00016170380695257336 + ], + [ + 0.00027561356546357274, + 0.00029037974309176207, + -0.0001740572915878147 + ], + [ + 0.0002895901270676404, + 0.00030455744126811624, + -0.00018653555889613926 + ], + [ + 0.0003036504494957626, + 0.0003189463459420949, + -0.0001991343015106395 + ], + [ + 0.0003177737526129931, + 0.00033351528691127896, + -0.00021184360957704484 + ], + [ + 0.0003319632960483432, + 0.0003482238098513335, + -0.00022464888752438128 + ], + [ + 0.00034621229860931635, + 0.000363038619980216, + -0.0002375038602622226 + ], + [ + 0.00036048912443220615, + 0.0003779665275942534, + -0.00025038112653419375 + ], + [ + 0.0003748233721125871, + 0.00039298401679843664, + -0.00026328887906856835 + ], + [ + 0.00038923704414628446, + 0.0004080602084286511, + -0.00027621688786894083 + ], + [ + 0.00040371710201725364, + 0.00042321073124185205, + -0.0002891535114031285 + ], + [ + 0.0004182462871540338, + 0.00043844844913110137, + -0.0003021019510924816 + ], + [ + 0.0004327962815295905, + 0.0004537430650088936, + -0.0003150762931909412 + ], + [ + 0.0004473629523999989, + 0.00046909324009902775, + -0.0003280742384959012 + ], + [ + 0.0004619233659468591, + 0.0004844869836233556, + -0.00034107710234820843 + ], + [ + 0.00047648316831327975, + 0.0004998967633582652, + -0.0003540312754921615 + ], + [ + 0.0004910364514216781, + 0.0005152868689037859, + -0.00036693346919491887 + ], + [ + 0.0005055336514487863, + 0.0005306724924594164, + -0.00037977745523676276 + ], + [ + 0.0005199749721214175, + 0.0005460058455355465, + -0.00039254079456441104 + ], + [ + 0.0005343508091755211, + 0.000561313412617892, + -0.0004052263975609094 + ], + [ + 0.0005486177979037166, + 0.0005766109097748995, + -0.00041782885091379285 + ], + [ + 0.0005627844366244972, + 0.0005918933893553913, + -0.0004303347959648818 + ] + ], + "std": [ + [ + 0.0002705494116526097, + 0.0002695572329685092, + 0.0003122237103525549 + ], + [ + 0.0005324063240550458, + 0.0005294770235195756, + 0.0006150673725642264 + ], + [ + 0.0007875910378061235, + 0.0007816493744030595, + 0.0009106967481784523 + ], + [ + 0.0010366578353568912, + 0.0010261093266308308, + 0.0011994371889159083 + ], + [ + 0.0012779271928593516, + 0.0012607418466359377, + 0.0014791132416576147 + ], + [ + 0.0015116253634914756, + 0.001485498738475144, + 0.0017495639622211456 + ], + [ + 0.0017383720260113478, + 0.0017011468298733234, + 0.0020117692183703184 + ], + [ + 0.001958047039806843, + 0.0019079323392361403, + 0.0022654947824776173 + ], + [ + 0.002170582301914692, + 0.002106134546920657, + 0.002510526217520237 + ], + [ + 0.002376074669882655, + 0.0022960950154811144, + 0.0027475643437355757 + ], + [ + 0.0025747050531208515, + 0.002477830508723855, + 0.0029765525832772255 + ], + [ + 0.0027666434179991484, + 0.0026517834048718214, + 0.0031975056044757366 + ], + [ + 0.0029521011747419834, + 0.002818190725520253, + 0.003410563338547945 + ], + [ + 0.003131503239274025, + 0.002977324416860938, + 0.0036162773612886667 + ], + [ + 0.003305086400359869, + 0.003129666903987527, + 0.003814863273873925 + ], + [ + 0.003473257413133979, + 0.0032756912987679243, + 0.004006582777947187 + ], + [ + 0.0036365727428346872, + 0.0034157754853367805, + 0.004191885236650705 + ], + [ + 0.0037953814025968313, + 0.0035505846608430147, + 0.004370856564491987 + ], + [ + 0.003949969541281462, + 0.0036805414129048586, + 0.00454385532066226 + ], + [ + 0.004100693389773369, + 0.0038061002269387245, + 0.00471078883856535 + ], + [ + 0.00424780510365963, + 0.003927694167941809, + 0.004872201010584831 + ], + [ + 0.004391488153487444, + 0.004045313224196434, + 0.005028121639043093 + ], + [ + 0.004532192833721638, + 0.004159396514296532, + 0.005178714636713266 + ], + [ + 0.004669710528105497, + 0.004270228557288647, + 0.0053240470588207245 + ], + [ + 0.0048044538125395775, + 0.0043779946863651276, + 0.005464351736009121 + ], + [ + 0.00493666110560298, + 0.004482734017074108, + 0.005599814932793379 + ], + [ + 0.005066054407507181, + 0.0045849173329770565, + 0.005730529315769672 + ], + [ + 0.005192884244024754, + 0.004684277810156345, + 0.005856693722307682 + ], + [ + 0.0053170849569141865, + 0.004781212192028761, + 0.005978400353342295 + ], + [ + 0.005439036525785923, + 0.004876045510172844, + 0.006095885764807463 + ], + [ + 0.0055586653761565685, + 0.00496896356344223, + 0.006209156010299921 + ], + [ + 0.0056762308813631535, + 0.005059791263192892, + 0.0063185915350914 + ], + [ + 0.005791596136987209, + 0.005148820113390684, + 0.006424235180020332 + ], + [ + 0.005904998630285263, + 0.005236176773905754, + 0.006526040844619274 + ], + [ + 0.006016496103256941, + 0.005321559961885214, + 0.006624478846788406 + ], + [ + 0.0061259800568223, + 0.005405315198004246, + 0.006719924509525299 + ], + [ + 0.006233495660126209, + 0.005487419199198484, + 0.006812142673879862 + ], + [ + 0.006339255720376968, + 0.00556774390861392, + 0.006901287939399481 + ], + [ + 0.006443142890930176, + 0.005646425299346447, + 0.006987401749938726 + ], + [ + 0.006545093841850758, + 0.005723539274185896, + 0.007070751395076513 + ], + [ + 0.006645455025136471, + 0.0057990276254713535, + 0.0071515790186822414 + ], + [ + 0.006743866018950939, + 0.00587314972653985, + 0.007229795679450035 + ], + [ + 0.006840677000582218, + 0.005945733282715082, + 0.007305660750716925 + ], + [ + 0.006935752462595701, + 0.006017063278704882, + 0.007379719987511635 + ], + [ + 0.007029327563941479, + 0.006086500361561775, + 0.007450996432453394 + ], + [ + 0.007121001835912466, + 0.0061544920317828655, + 0.007520159240812063 + ], + [ + 0.007211009040474892, + 0.006221065763384104, + 0.007587232626974583 + ], + [ + 0.0072993445210158825, + 0.006286138668656349, + 0.007652380969375372 + ], + [ + 0.007386379409581423, + 0.006349790375679731, + 0.007715537678450346 + ], + [ + 0.007471607532352209, + 0.006411951966583729, + 0.007777016144245863 + ] + ], + "min": [ + [ + -0.0053626298904418945, + -0.0058281272649765015, + -0.005774319171905518 + ], + [ + -0.00910806655883789, + -0.009739324450492859, + -0.009364590048789978 + ], + [ + -0.010497510433197021, + -0.011894628405570984, + -0.011994801461696625 + ], + [ + -0.011727988719940186, + -0.014294706284999847, + -0.013646230101585388 + ], + [ + -0.013236522674560547, + -0.01657164841890335, + -0.015184223651885986 + ], + [ + -0.01619836688041687, + -0.018393531441688538, + -0.016544170677661896 + ], + [ + -0.018466711044311523, + -0.020976468920707703, + -0.018816128373146057 + ], + [ + -0.020104408264160156, + -0.022496402263641357, + -0.02135467529296875 + ], + [ + -0.02165481448173523, + -0.023714035749435425, + -0.022879712283611298 + ], + [ + -0.02304425835609436, + -0.024777397513389587, + -0.024295784533023834 + ], + [ + -0.023909851908683777, + -0.02572653442621231, + -0.02599848061800003 + ], + [ + -0.024374932050704956, + -0.027134232223033905, + -0.027414552867412567 + ], + [ + -0.025487147271633148, + -0.02857636660337448, + -0.028748147189617157 + ], + [ + -0.02699001133441925, + -0.02928110957145691, + -0.029827497899532318 + ], + [ + -0.027977854013442993, + -0.0308900848031044, + -0.030667617917060852 + ], + [ + -0.028950989246368408, + -0.032564155757427216, + -0.031635865569114685 + ], + [ + -0.030064940452575684, + -0.03449692577123642, + -0.03281271457672119 + ], + [ + -0.0310380756855011, + -0.035904623568058014, + -0.034047044813632965 + ], + [ + -0.031879693269729614, + -0.03734675794839859, + -0.035106971859931946 + ], + [ + -0.032770052552223206, + -0.038628749549388885, + -0.03594046086072922 + ], + [ + -0.03361167013645172, + -0.03966396301984787, + -0.03650137782096863 + ], + [ + -0.03425443172454834, + -0.040707893669605255, + -0.03677006810903549 + ], + [ + -0.03478783369064331, + -0.041424043476581573, + -0.03700707107782364 + ], + [ + -0.0364546999335289, + -0.04218881577253342, + -0.03742434084415436 + ], + [ + -0.03809239715337753, + -0.0431692972779274, + -0.03840687870979309 + ], + [ + -0.039642803370952606, + -0.04387404024600983, + -0.03977247327566147 + ], + [ + -0.04067951440811157, + -0.044380173087120056, + -0.04058219492435455 + ], + [ + -0.04154510796070099, + -0.044660329818725586, + -0.04132384806871414 + ], + [ + -0.04233034700155258, + -0.044860027730464935, + -0.04203017055988312 + ], + [ + -0.042969509959220886, + -0.04496332257986069, + -0.043051011860370636 + ], + [ + -0.04354441165924072, + -0.04496970772743225, + -0.0437408909201622 + ], + [ + -0.0440094918012619, + -0.044953957200050354, + -0.044424623250961304 + ], + [ + -0.04423494637012482, + -0.045098625123500824, + -0.04509732127189636 + ], + [ + -0.04434733837842941, + -0.045508138835430145, + -0.04578720033168793 + ], + [ + -0.044433459639549255, + -0.04581030458211899, + -0.046204209327697754 + ], + [ + -0.04449049383401871, + -0.04603644460439682, + -0.04654724895954132 + ], + [ + -0.04458632320165634, + -0.046195439994335175, + -0.04682168364524841 + ], + [ + -0.04481711983680725, + -0.04634702950716019, + -0.04716024547815323 + ], + [ + -0.04507744312286377, + -0.04648742079734802, + -0.04740367829799652 + ], + [ + -0.04539094865322113, + -0.046639010310173035, + -0.0476272776722908 + ], + [ + -0.04607872664928436, + -0.04677435755729675, + -0.04777572304010391 + ], + [ + -0.046977698802948, + -0.04679776728153229, + -0.04783058911561966 + ], + [ + -0.047843292355537415, + -0.046796709299087524, + -0.047865353524684906 + ], + [ + -0.04867252707481384, + -0.04674852639436722, + -0.047883540391922 + ], + [ + -0.049465857446193695, + -0.04668580740690231, + -0.04782535880804062 + ], + [ + -0.05019349604845047, + -0.04662031680345535, + -0.04771649092435837 + ], + [ + -0.05100453644990921, + -0.04654858261346817, + -0.04758002609014511 + ], + [ + -0.05146961659193039, + -0.04647363722324371, + -0.04740110784769058 + ], + [ + -0.05188138782978058, + -0.04638296365737915, + -0.04718475043773651 + ], + [ + -0.05197775363922119, + -0.04656700789928436, + -0.04684550315141678 + ] + ], + "max": [ + [ + 0.0029090046882629395, + 0.003670334815979004, + 0.004783615469932556 + ], + [ + 0.005131267011165619, + 0.006834894418716431, + 0.008301660418510437 + ], + [ + 0.007348082959651947, + 0.009069859981536865, + 0.01099783182144165 + ], + [ + 0.009962394833564758, + 0.010826453566551208, + 0.01428530365228653 + ], + [ + 0.012028887867927551, + 0.013286419212818146, + 0.017036758363246918 + ], + [ + 0.014055639505386353, + 0.016057170927524567, + 0.01947958767414093 + ], + [ + 0.01606157422065735, + 0.018566951155662537, + 0.02221054583787918 + ], + [ + 0.01805245131254196, + 0.021343037486076355, + 0.024449065327644348 + ], + [ + 0.020058386027812958, + 0.022923260927200317, + 0.02617061138153076 + ], + [ + 0.021839089691638947, + 0.024502351880073547, + 0.02785065770149231 + ], + [ + 0.023763395845890045, + 0.02588765323162079, + 0.029491879045963287 + ], + [ + 0.025364257395267487, + 0.027337059378623962, + 0.03076808899641037 + ], + [ + 0.026836834847927094, + 0.028484337031841278, + 0.03185515105724335 + ], + [ + 0.02860312908887863, + 0.029377534985542297, + 0.033228471875190735 + ], + [ + 0.03007570654153824, + 0.03022027015686035, + 0.03436094522476196 + ], + [ + 0.03150027245283127, + 0.03067365288734436, + 0.03534403443336487 + ], + [ + 0.03302338719367981, + 0.03130246698856354, + 0.0363897830247879 + ], + [ + 0.034181758761405945, + 0.03179502487182617, + 0.03689616918563843 + ], + [ + 0.03515221178531647, + 0.03227625787258148, + 0.03720659762620926 + ], + [ + 0.03610554337501526, + 0.03271651268005371, + 0.03748206049203873 + ], + [ + 0.03704176843166351, + 0.03319856524467468, + 0.03784620761871338 + ], + [ + 0.03773404657840729, + 0.03362561762332916, + 0.03863599896430969 + ], + [ + 0.0384470671415329, + 0.03418492525815964, + 0.039296358823776245 + ], + [ + 0.03890787810087204, + 0.035163067281246185, + 0.039855316281318665 + ], + [ + 0.03935111314058304, + 0.03583558648824692, + 0.04036170244216919 + ], + [ + 0.039793796837329865, + 0.036490581929683685, + 0.04077740013599396 + ], + [ + 0.04022068530321121, + 0.03700792044401169, + 0.04121071845293045 + ], + [ + 0.04067618399858475, + 0.037595123052597046, + 0.04152114689350128 + ], + [ + 0.0413532480597496, + 0.03800229728221893, + 0.041675932705402374 + ], + [ + 0.041795022785663605, + 0.038794323801994324, + 0.0417187437415123 + ], + [ + 0.04220326989889145, + 0.03997799754142761, + 0.041569069027900696 + ], + [ + 0.04259803146123886, + 0.04107183218002319, + 0.0414133220911026 + ], + [ + 0.043116502463817596, + 0.042425304651260376, + 0.04122947156429291 + ], + [ + 0.043570272624492645, + 0.043263182044029236, + 0.041775863617658615 + ], + [ + 0.04395768791437149, + 0.04388512670993805, + 0.04270007088780403 + ], + [ + 0.04457706958055496, + 0.044431135058403015, + 0.04321737959980965 + ], + [ + 0.04503384977579117, + 0.044714584946632385, + 0.04361458867788315 + ], + [ + 0.04558824747800827, + 0.04495704174041748, + 0.04441674053668976 + ], + [ + 0.04628302901983261, + 0.04522222280502319, + 0.04513818025588989 + ], + [ + 0.04680905491113663, + 0.04540097713470459, + 0.04588450491428375 + ], + [ + 0.047330327332019806, + 0.04557497054338455, + 0.04660594463348389 + ], + [ + 0.04791099578142166, + 0.04580467939376831, + 0.04725159704685211 + ], + [ + 0.04823445528745651, + 0.045988038182258606, + 0.04786073416471481 + ], + [ + 0.04854977875947952, + 0.046187594532966614, + 0.048516832292079926 + ], + [ + 0.04875897616147995, + 0.04642147570848465, + 0.04916248470544815 + ], + [ + 0.04891156405210495, + 0.04660826921463013, + 0.049716465175151825 + ], + [ + 0.04903194308280945, + 0.04680222272872925, + 0.0503934770822525 + ], + [ + 0.04913516342639923, + 0.04769685119390488, + 0.05103912949562073 + ], + [ + 0.04919467121362686, + 0.04892442375421524, + 0.05148071050643921 + ], + [ + 0.04922742396593094, + 0.04973669350147247, + 0.05183391273021698 + ] + ] + } + } +} \ No newline at end of file