Compare commits
66 Commits
uncertaint
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8bbc14ebab | ||
|
|
7992fa193e | ||
|
|
7ec6bc83a8 | ||
|
|
38b31a5d72 | ||
|
|
7942e9082b | ||
|
|
eece80123d | ||
|
|
38f853efc4 | ||
|
|
62be41ab58 | ||
|
|
c95b755655 | ||
|
|
81eb17068e | ||
|
|
add30b5a74 | ||
|
|
0a914570dc | ||
|
|
55bde9745f | ||
|
|
5ced6dfeb4 | ||
|
|
dddc226d25 | ||
|
|
ae4238946f | ||
|
|
a19f91c0b5 | ||
|
|
e452ca7539 | ||
|
|
db1865334e | ||
|
|
804f9b3949 | ||
|
|
66f8c21f58 | ||
|
|
9cac7c5775 | ||
|
|
df8a465c8e | ||
|
|
2e27fbb6f4 | ||
|
|
6117bc427d | ||
|
|
32fc2bdf93 | ||
|
|
0a79c8bd38 | ||
|
|
1bfbcb7794 | ||
|
|
0c3fcc4619 | ||
|
|
fb07cdac3f | ||
|
|
c694d286f0 | ||
|
|
1a77207646 | ||
|
|
b7725e74a5 | ||
|
|
d477619f8d | ||
|
|
c1dd0c0338 | ||
|
|
c0d3faac77 | ||
|
|
3b5f67592c | ||
|
|
fad0d1be03 | ||
|
|
836547d76f | ||
|
|
970792e2b6 | ||
|
|
c3a912e10d | ||
|
|
38eb46df04 | ||
|
|
8b731819a6 | ||
|
|
a7890b6985 | ||
|
|
603b67ce66 | ||
|
|
88095e7899 | ||
|
|
3789fcd5b8 | ||
|
|
d51feb0e9f | ||
|
|
2dc668ecaf | ||
|
|
39be86fc52 | ||
|
|
f0af4b6b27 | ||
|
|
a2d9d0c8ff | ||
|
|
ab43880945 | ||
|
|
5f6fadec0f | ||
|
|
57158282b4 | ||
|
|
718966c28d | ||
|
|
01cdf0f799 | ||
|
|
02b18a48b1 | ||
|
|
e8f1ed6785 | ||
|
|
8b6fe61bed | ||
|
|
aa9c6f33f5 | ||
|
|
ff02f41e73 | ||
|
|
e86c343a67 | ||
|
|
cc62c4c9ce | ||
|
|
fabf01a5ec | ||
|
|
26c72119cd |
59
README.md
59
README.md
@@ -2,23 +2,30 @@
|
||||
|
||||
Official implementation of
|
||||
|
||||
[TD-MPC2: Scalable, Robust World Models for Continuous Control](https://nicklashansen.github.io/td-mpc2) by
|
||||
[TD-MPC2: Scalable, Robust World Models for Continuous Control](https://www.tdmpc2.com) by
|
||||
|
||||
[Nicklas Hansen](https://nicklashansen.github.io/), [Hao Su](https://cseweb.ucsd.edu/~haosu/)\*, [Xiaolong Wang](https://xiaolonw.github.io/)\* (UC San Diego)</br>
|
||||
[Nicklas Hansen](https://nicklashansen.github.io), [Hao Su](https://cseweb.ucsd.edu/~haosu)\*, [Xiaolong Wang](https://xiaolonw.github.io)\* (UC San Diego)</br>
|
||||
|
||||
<img src="assets/0.gif" width="12.5%"><img src="assets/1.gif" width="12.5%"><img src="assets/2.gif" width="12.5%"><img src="assets/3.gif" width="12.5%"><img src="assets/4.gif" width="12.5%"><img src="assets/5.gif" width="12.5%"><img src="assets/6.gif" width="12.5%"><img src="assets/7.gif" width="12.5%"></br>
|
||||
|
||||
[[Website]](https://nicklashansen.github.io/td-mpc2) [[Paper]](https://arxiv.org/abs/2310.16828) [[Models]](https://nicklashansen.github.io/td-mpc2/models) [[Dataset]](https://nicklashansen.github.io/td-mpc2/dataset)
|
||||
[[Website]](https://www.tdmpc2.com) [[Paper]](https://arxiv.org/abs/2310.16828) [[Models]](https://www.tdmpc2.com/models) [[Dataset]](https://www.tdmpc2.com/dataset)
|
||||
|
||||
----
|
||||
|
||||
**Announcement (Apr 2025): support for episodic tasks!**
|
||||
|
||||
We have added support for episodic RL (tasks with terminations) in the latest release. This functionality can be enabled with `episodic=true` but remains disabled by default to ensure reproducibility of results across releases.
|
||||
|
||||
----
|
||||
|
||||
|
||||
## Overview
|
||||
|
||||
TD-MPC**2** is a scalable, robust model-based reinforcement learning algorithm. It compares favorably to existing model-free and model-based methods across **104** continuous control tasks spanning multiple domains, with a *single* set of hyperparameters (*right*). We further demonstrate the scalability of TD-MPC**2** by training a single 317M parameter agent to perform **80** tasks across multiple domains, embodiments, and action spaces (*left*).
|
||||
|
||||
<img src="assets/8.png" width="100%" style="max-width: 640px"><br/>
|
||||
|
||||
This repository contains code for training and evaluating both single-task online RL and multi-task offline RL TD-MPC**2** agents. We additionally open-source **300+** [model checkpoints](https://nicklashansen.github.io/td-mpc2/models) (including 12 multi-task models) across 4 task domains: [DMControl](https://arxiv.org/abs/1801.00690), [Meta-World](https://meta-world.github.io/), [ManiSkill2](https://maniskill2.github.io/), and [MyoSuite](https://sites.google.com/view/myosuite), as well as our [30-task and 80-task datasets](https://nicklashansen.github.io/td-mpc2/dataset) used to train the multi-task models. Our codebase supports both state and pixel observations. We hope that this repository will serve as a useful community resource for future research on model-based RL.
|
||||
This repository contains code for training and evaluating both single-task online RL and multi-task offline RL TD-MPC**2** agents. We additionally open-source **300+** [model checkpoints](https://www.tdmpc2.com/models) (including 12 multi-task models) across 4 task domains: [DMControl](https://arxiv.org/abs/1801.00690), [Meta-World](https://meta-world.github.io/), [ManiSkill2](https://maniskill2.github.io/), and [MyoSuite](https://sites.google.com/view/myosuite), as well as our [30-task and 80-task datasets](https://www.tdmpc2.com/dataset) used to train the multi-task models. Our codebase supports both state and pixel observations. We hope that this repository will serve as a useful community resource for future research on model-based RL.
|
||||
|
||||
----
|
||||
|
||||
@@ -29,17 +36,18 @@ You will need a machine with a GPU and at least 12 GB of RAM for single-task onl
|
||||
We provide a `Dockerfile` for easy installation. You can build the docker image by running
|
||||
|
||||
```
|
||||
cd docker && docker build . -t <user>/tdmpc2:0.1.0
|
||||
cd docker && docker build . -t <user>/tdmpc2:1.0.1
|
||||
```
|
||||
|
||||
If you prefer to install dependencies manually, start by installing dependencies via `conda` by running one of the following commands:
|
||||
This docker image contains all dependencies needed for running DMControl. We also provide a pre-built docker image [here](https://hub.docker.com/repository/docker/nicklashansen/tdmpc2/tags/1.0.1/sha256-b07d4e04d4b28ffd9a63ac18ec1541950e874bb51d276c7d09b36135f170dd93).
|
||||
|
||||
If you prefer to use `conda` rather than docker, start by running the following command:
|
||||
|
||||
```
|
||||
conda env create -f docker/environment.yaml
|
||||
conda env create -f docker/environment_minimal.yaml
|
||||
```
|
||||
|
||||
The `environment.yaml` file installs dependencies required for all environments, whereas `environment_minimal.yaml` only installs dependencies for training on DMControl tasks.
|
||||
The `docker/environment.yaml` file installs dependencies required for training on DMControl tasks. Other domains can be installed by following the instructions in `docker/environment.yaml`.
|
||||
|
||||
If you want to run ManiSkill2, you will additionally need to download and link the necessary assets by running
|
||||
|
||||
@@ -53,19 +61,19 @@ which downloads assets to `./data`. You may move these assets to any location. T
|
||||
export MS2_ASSET_DIR=<path>/<to>/<data>
|
||||
```
|
||||
|
||||
and restart your terminal. Meta-World additionally requires MuJoCo 2.1.0. We host the unrestricted MuJoCo 2.1.0 license (courtesy of Google DeepMind) at [https://www.tdmpc2.com/files/mjkey.txt](https://www.tdmpc2.com/files/mjkey.txt). You can download the license by running
|
||||
and restart your terminal. Note that Meta-World requires MuJoCo 2.1.0 and `gym==0.21.0` which is becoming increasingly difficult to install. We host the unrestricted MuJoCo 2.1.0 license (courtesy of Google DeepMind) at [https://www.tdmpc2.com/files/mjkey.txt](https://www.tdmpc2.com/files/mjkey.txt). You can download the license by running
|
||||
|
||||
```
|
||||
wget https://www.tdmpc2.com/files/mjkey.txt -O ~/.mujoco/mjkey.txt
|
||||
```
|
||||
|
||||
See `docker/Dockerfile` for installation instructions if you do not already have MuJoCo 2.1.0 installed. MyoSuite requires `gym==0.13.0` which is incompatible with Meta-World and ManiSkill2. Install separately with `pip install myosuite` if desired. Depending on your existing system packages, you may need to install other dependencies. See `docker/Dockerfile` for a list of recommended system packages.
|
||||
Depending on your existing system packages, you may need to install other dependencies. See `docker/Dockerfile` for a list of recommended system packages.
|
||||
|
||||
----
|
||||
|
||||
## Supported tasks
|
||||
|
||||
This codebase currently supports **104** continuous control tasks from **DMControl**, **Meta-World**, **ManiSkill2**, and **MyoSuite**. Specifically, it supports 39 tasks from DMControl (including 11 custom tasks), 50 tasks from Meta-World, 5 tasks from ManiSkill2, and 10 tasks from MyoSuite, and covers all tasks used in the paper. See below table for expected name formatting for each task domain:
|
||||
This codebase provides support for all **104** continuous control tasks from **DMControl**, **Meta-World**, **ManiSkill2**, and **MyoSuite** used in our paper. Specifically, it supports 39 tasks from DMControl (including 11 custom tasks), 50 tasks from Meta-World, 5 tasks from ManiSkill2, and 10 tasks from MyoSuite, and covers all tasks used in the paper. See below table for expected name formatting for each task domain:
|
||||
|
||||
| domain | task
|
||||
| --- | --- |
|
||||
@@ -78,9 +86,9 @@ This codebase currently supports **104** continuous control tasks from **DMContr
|
||||
| myosuite | myo-key-turn
|
||||
| myosuite | myo-key-turn-hard
|
||||
|
||||
which can be run by specifying the `task` argument for `evaluation.py`. Multi-task training and evaluation is specified by setting `task=mt80` or `task=mt30` for the 80-task and 30-task sets, respectively.
|
||||
which can be run by specifying the `task` argument for `evaluation.py`. Multi-task training and evaluation is specified by setting `task=mt80` or `task=mt30` for the 80-task and 30-task sets, respectively. While you generally do not need to access the underlying task IDs or embeddings during training or evaluation of our multi-task models, the mapping from task name to task embedding used in our work can be found [here](https://github.com/nicklashansen/tdmpc2/blob/7ec6bc83a82a5188ca3faddc59aea83f430ab570/tdmpc2/common/__init__.py#L26). As of April 2025, our codebase also provides basic support for other MuJoCo/Box2d Gymnasium tasks; refer to the `envs` directory for a list of tasks. It should be relatively straightforward to add support for custom tasks by following the examples in `envs`.
|
||||
|
||||
**As of Dec 27, 2023 the TD-MPC2 codebase also supports pixel observations for DMControl tasks**; use argument `obs=rgb` if you wish to train visual policies.
|
||||
**Note:** we also provide support for image observations in the DMControl tasks. Use argument `obs=rgb` if you wish to train visual policies.
|
||||
|
||||
|
||||
## Example usage
|
||||
@@ -112,22 +120,27 @@ $ python train.py task=walker-walk obs=rgb
|
||||
|
||||
We recommend using default hyperparameters for single-task online RL, including the default model size of 5M parameters (`model_size=5`). Multi-task offline RL benefits from a larger model size, but larger models are also increasingly costly to train and evaluate. Available arguments are `model_size={1, 5, 19, 48, 317}`. See `config.yaml` for a full list of arguments.
|
||||
|
||||
**As of Jan 7, 2024 the TD-MPC2 codebase also supports multi-GPU training for multi-task offline RL experiments**; use branch `distributed` and argument `world_size=N` to train on `N` GPUs. We cannot guarantee that distributed training will yield the same results, but they appear to be similar based on our limited testing.
|
||||
|
||||
----
|
||||
|
||||
## Citation
|
||||
|
||||
If you find our work useful, please consider citing the paper as follows:
|
||||
If you find our work useful, please consider citing our paper as follows:
|
||||
|
||||
```
|
||||
@misc{hansen2023tdmpc2,
|
||||
title={TD-MPC2: Scalable, Robust World Models for Continuous Control},
|
||||
author={Nicklas Hansen and Hao Su and Xiaolong Wang},
|
||||
year={2023},
|
||||
eprint={2310.16828},
|
||||
archivePrefix={arXiv},
|
||||
primaryClass={cs.LG}
|
||||
@inproceedings{hansen2024tdmpc2,
|
||||
title={TD-MPC2: Scalable, Robust World Models for Continuous Control},
|
||||
author={Nicklas Hansen and Hao Su and Xiaolong Wang},
|
||||
booktitle={International Conference on Learning Representations (ICLR)},
|
||||
year={2024}
|
||||
}
|
||||
```
|
||||
as well as the original TD-MPC paper:
|
||||
```
|
||||
@inproceedings{hansen2022tdmpc,
|
||||
title={Temporal Difference Learning for Model Predictive Control},
|
||||
author={Nicklas Hansen and Xiaolong Wang and Hao Su},
|
||||
booktitle={International Conference on Machine Learning (ICML)},
|
||||
year={2022}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
1
datasets/download_mt30.sh
Normal file
1
datasets/download_mt30.sh
Normal file
@@ -0,0 +1 @@
|
||||
for i in {0..3}; do wget https://huggingface.co/datasets/nicklashansen/tdmpc2/resolve/main/mt30/chunk_${i}.pt?download=true && mv chunk_${i}.pt'?download=true' chunk_${i}.pt; done
|
||||
1
datasets/download_mt80.sh
Normal file
1
datasets/download_mt80.sh
Normal file
@@ -0,0 +1 @@
|
||||
for i in {0..19}; do wget https://huggingface.co/datasets/nicklashansen/tdmpc2/resolve/main/mt80/chunk_${i}.pt?download=true && mv chunk_${i}.pt'?download=true' chunk_${i}.pt; done
|
||||
@@ -1,59 +1,49 @@
|
||||
##########################################
|
||||
# Dockerfile for TD-MPC2 #
|
||||
# TD-MPC2 Anonymous Authors, 2023 (c) #
|
||||
# Nicklas Hansen, 2023 (c) #
|
||||
# https://www.tdmpc2.com #
|
||||
# -------------------------------------- #
|
||||
# Instructions: #
|
||||
# docker build . -t <user>/tdmpc2:0.1.0 #
|
||||
# docker push <user>/tdmpc2:0.1.0 #
|
||||
# Build instructions: #
|
||||
# docker build . -t <user>/tdmpc2:1.0.1 #
|
||||
# docker push <user>/tdmpc2:1.0.1 #
|
||||
# -------------------------------------- #
|
||||
# Run: #
|
||||
# docker run -i \ #
|
||||
# -v <path>/<to>/tdmpc2:/tdmpc2 \ #
|
||||
# --gpus all \ #
|
||||
# -t <user>/tdmpc2:1.0.1 \ #
|
||||
# /bin/bash #
|
||||
##########################################
|
||||
|
||||
# base image
|
||||
FROM nvidia/cudagl:11.3.1-devel-ubuntu20.04
|
||||
FROM pytorch/pytorch:2.5.1-cuda12.4-cudnn9-runtime
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# packages
|
||||
RUN apt-get -y update && \
|
||||
apt-get install -y --no-install-recommends build-essential git nano rsync vim tree curl \
|
||||
wget unzip htop tmux xvfb patchelf ca-certificates bash-completion libjpeg-dev libpng-dev \
|
||||
ffmpeg cmake swig libssl-dev libcurl4-openssl-dev libopenmpi-dev python3-dev zlib1g-dev \
|
||||
qtbase5-dev qtdeclarative5-dev libglib2.0-0 libglu1-mesa-dev libgl1-mesa-dev libvulkan1 \
|
||||
libgl1-mesa-glx libosmesa6 libosmesa6-dev libglew-dev mesa-utils && \
|
||||
apt-get install -y --no-install-recommends build-essential git nano rsync vim tree curl wget \
|
||||
swig ffmpeg unzip htop tmux xvfb ca-certificates bash-completion libjpeg-dev libpng-dev \
|
||||
libssl-dev libcurl4-openssl-dev libopenmpi-dev zlib1g-dev qtbase5-dev qtdeclarative5-dev \
|
||||
libglib2.0-0 libglu1-mesa-dev libgl1-mesa-dev libvulkan1 libgl1-mesa-glx libosmesa6 \
|
||||
libosmesa6-dev libglew-dev mesa-utils && \
|
||||
apt-get clean && \
|
||||
apt-get autoremove -y && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
mkdir /root/.ssh
|
||||
|
||||
# miniconda
|
||||
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh && \
|
||||
/bin/bash ~/miniconda.sh -b -p /opt/conda && \
|
||||
rm ~/miniconda.sh && \
|
||||
. /opt/conda/etc/profile.d/conda.sh && \
|
||||
conda init && \
|
||||
conda clean -ya
|
||||
ENV PATH /opt/conda/bin:$PATH
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
|
||||
# conda environment
|
||||
COPY nvidia_icd.json /usr/share/vulkan/icd.d/nvidia_icd.json
|
||||
COPY environment.yaml /root
|
||||
RUN conda env update -n base -f /root/environment.yaml && \
|
||||
RUN conda update conda && \
|
||||
conda env update -n base -f /root/environment.yaml && \
|
||||
rm /root/environment.yaml && \
|
||||
cd /root && \
|
||||
python -m mani_skill2.utils.download_asset all -y && \
|
||||
conda clean -ya && \
|
||||
pip cache purge
|
||||
pip cache purge && \
|
||||
conda init
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
RUN echo "cd /root" >> /root/.bashrc
|
||||
# image does not include metaworld, maniskill, myosuite
|
||||
# these can be installed separately; see environment.yaml for details
|
||||
|
||||
# environment variables
|
||||
ENV MUJOCO_GL egl
|
||||
ENV MS2_ASSET_DIR /root/data
|
||||
ENV LD_LIBRARY_PATH /root/.mujoco/mujoco210/bin:${LD_LIBRARY_PATH}
|
||||
|
||||
# mujoco (required for metaworld)
|
||||
RUN mkdir -p /root/.mujoco && \
|
||||
wget https://www.tdmpc2.com/files/mjkey.txt && \
|
||||
wget https://github.com/deepmind/mujoco/releases/download/2.1.0/mujoco210-linux-x86_64.tar.gz && \
|
||||
tar -xzf mujoco210-linux-x86_64.tar.gz && \
|
||||
rm mujoco210-linux-x86_64.tar.gz && \
|
||||
mv mujoco210 /root/.mujoco/mujoco210 && \
|
||||
mv mjkey.txt /root/.mujoco/mjkey.txt && \
|
||||
python -c "import mujoco_py"
|
||||
# success!
|
||||
RUN echo "Successfully built TD-MPC2 Docker image!"
|
||||
|
||||
@@ -5,49 +5,57 @@ channels:
|
||||
- conda-forge
|
||||
- defaults
|
||||
dependencies:
|
||||
- python=3.9.0
|
||||
- pytorch
|
||||
- torchvision
|
||||
- cudatoolkit=11.7
|
||||
- glew
|
||||
- glib
|
||||
- pip==21
|
||||
- glew=2.2.0
|
||||
- glib=2.78.4
|
||||
- pip=24.0
|
||||
- python=3.9
|
||||
- pytorch=2.6.0.dev20241112
|
||||
- pytorch-cuda=12.4
|
||||
- torchvision=0.15.2
|
||||
- pip:
|
||||
- absl-py
|
||||
- glfw
|
||||
- kornia
|
||||
- termcolor
|
||||
- gym==0.21.0
|
||||
- moviepy
|
||||
- ffmpeg
|
||||
- imageio
|
||||
- imageio-ffmpeg
|
||||
- omegaconf
|
||||
- hydra-core
|
||||
- hydra-submitit-launcher
|
||||
- submitit
|
||||
- pandas
|
||||
- patchelf
|
||||
- protobuf
|
||||
- tqdm
|
||||
- transforms3d
|
||||
- joblib
|
||||
- opencv-python
|
||||
- opencv-contrib-python
|
||||
- filelock
|
||||
- sapien==2.2.1
|
||||
- mani-skill2==0.4.1
|
||||
- trimesh
|
||||
- open3d
|
||||
- setuptools==65.5.0
|
||||
- "cython<3"
|
||||
- mujoco==2.3.1
|
||||
- mujoco-py==2.1.2.14
|
||||
- dm-control
|
||||
- pillow
|
||||
- pyquaternion
|
||||
- git+https://github.com/Farama-Foundation/Metaworld.git@04be337a12305e393c0caf0cbf5ec7755c7c8feb
|
||||
# - myosuite # MyoSuite requires gym==0.13.0 which conflicts with Meta-World & ManiSkill2, install separately if needed
|
||||
- tensordict-nightly
|
||||
- torchrl-nightly
|
||||
- wandb
|
||||
- dm-control==1.0.16
|
||||
- glfw==2.7.0
|
||||
- gymnasium==0.29.1
|
||||
- ffmpeg==1.4
|
||||
- imageio==2.34.1
|
||||
- imageio-ffmpeg==0.4.9
|
||||
- h5py==3.11.0
|
||||
- hydra-core==1.3.2
|
||||
- hydra-submitit-launcher==1.2.0
|
||||
- submitit==1.5.1
|
||||
- omegaconf==2.3.0
|
||||
- moviepy==1.0.3
|
||||
- mujoco==3.1.2
|
||||
- numpy==1.24.4
|
||||
- tensordict-nightly==2025.1.1
|
||||
- torchrl-nightly==2025.1.1
|
||||
- kornia==0.7.2
|
||||
- termcolor==2.4.0
|
||||
- tqdm==4.66.4
|
||||
- pandas==2.0.3
|
||||
- wandb==0.17.4
|
||||
####################
|
||||
# Gym:
|
||||
# (unmaintained but required for maniskill2/meta-world)
|
||||
# - "cython<3"
|
||||
# - wheel==0.38.0
|
||||
# - setuptools==65.5.0
|
||||
# - mujoco==2.3.1
|
||||
# - mujoco-py==2.1.2.14
|
||||
# - gym==0.21.0
|
||||
####################
|
||||
# ManiSkill2:
|
||||
# (requires gym==0.21.0 which occasionally breaks)
|
||||
# - mani-skill2==0.4.1
|
||||
####################
|
||||
# Meta-World:
|
||||
# (requires gym==0.21.0 which occasionally breaks)
|
||||
# - git+https://github.com/Farama-Foundation/Metaworld.git@04be337a12305e393c0caf0cbf5ec7755c7c8feb
|
||||
####################
|
||||
# MyoSuite:
|
||||
# - myosuite
|
||||
####################
|
||||
# Classic MuJoCo/Box2d:
|
||||
# - swig
|
||||
# - gymnasium[box2d]
|
||||
####################
|
||||
|
||||
@@ -1,39 +0,0 @@
|
||||
name: tdmpc2
|
||||
channels:
|
||||
- pytorch-nightly
|
||||
- nvidia
|
||||
- conda-forge
|
||||
- defaults
|
||||
dependencies:
|
||||
- python=3.9.0
|
||||
- pytorch
|
||||
- torchvision
|
||||
- cudatoolkit=11.7
|
||||
- glew
|
||||
- glib
|
||||
- pip==21
|
||||
- pip:
|
||||
- absl-py
|
||||
- glfw
|
||||
- kornia
|
||||
- termcolor
|
||||
- gym==0.21.0
|
||||
- moviepy
|
||||
- ffmpeg
|
||||
- imageio
|
||||
- imageio-ffmpeg
|
||||
- omegaconf
|
||||
- hydra-core
|
||||
- hydra-submitit-launcher
|
||||
- submitit
|
||||
- pandas
|
||||
- patchelf
|
||||
- protobuf
|
||||
- tqdm
|
||||
- setuptools==65.5.0
|
||||
- "cython<3"
|
||||
- dm-control
|
||||
- pillow
|
||||
- tensordict-nightly
|
||||
- torchrl-nightly
|
||||
- wandb
|
||||
120
results/dreamerv3/acrobot-swingup.csv
Normal file
120
results/dreamerv3/acrobot-swingup.csv
Normal file
@@ -0,0 +1,120 @@
|
||||
step,reward,seed
|
||||
0,0.3,3
|
||||
100000,85.3,3
|
||||
200000,110.7,3
|
||||
300000,230.7,3
|
||||
400000,259.4,3
|
||||
500000,316.0,3
|
||||
600000,381.6,3
|
||||
700000,285.4,3
|
||||
800000,329.3,3
|
||||
900000,330.5,3
|
||||
1000000,339.5,3
|
||||
1100000,336.1,3
|
||||
1200000,361.2,3
|
||||
1300000,341.0,3
|
||||
1400000,347.8,3
|
||||
1500000,340.4,3
|
||||
1600000,397.1,3
|
||||
1700000,374.6,3
|
||||
1800000,338.7,3
|
||||
1900000,330.9,3
|
||||
2000000,365.1,3
|
||||
2100000,304.7,3
|
||||
2200000,364.1,3
|
||||
2300000,370.4,3
|
||||
2400000,346.1,3
|
||||
2500000,374.1,3
|
||||
2600000,375.2,3
|
||||
2700000,372.3,3
|
||||
2800000,357.0,3
|
||||
2900000,314.7,3
|
||||
3000000,354.9,3
|
||||
3100000,348.9,3
|
||||
3200000,385.6,3
|
||||
3300000,398.2,3
|
||||
3400000,336.8,3
|
||||
3500000,366.0,3
|
||||
3600000,342.4,3
|
||||
3700000,304.7,3
|
||||
3800000,400.8,3
|
||||
3900000,340.5,3
|
||||
0,3.6,2
|
||||
100000,91.7,2
|
||||
200000,245.2,2
|
||||
300000,257.1,2
|
||||
400000,305.4,2
|
||||
500000,360.6,2
|
||||
600000,297.6,2
|
||||
700000,274.6,2
|
||||
800000,352.9,2
|
||||
900000,339.8,2
|
||||
1000000,342.8,2
|
||||
1100000,392.1,2
|
||||
1200000,310.0,2
|
||||
1300000,362.7,2
|
||||
1400000,371.3,2
|
||||
1500000,361.2,2
|
||||
1600000,359.0,2
|
||||
1700000,366.7,2
|
||||
1800000,362.9,2
|
||||
1900000,352.7,2
|
||||
2000000,369.8,2
|
||||
2100000,326.1,2
|
||||
2200000,346.2,2
|
||||
2300000,377.6,2
|
||||
2400000,364.8,2
|
||||
2500000,331.6,2
|
||||
2600000,324.9,2
|
||||
2700000,340.7,2
|
||||
2800000,391.8,2
|
||||
2900000,371.9,2
|
||||
3000000,378.2,2
|
||||
3100000,331.9,2
|
||||
3200000,315.5,2
|
||||
3300000,367.1,2
|
||||
3400000,354.2,2
|
||||
3500000,316.5,2
|
||||
3600000,362.0,2
|
||||
3700000,344.0,2
|
||||
3800000,369.0,2
|
||||
0,0.5,1
|
||||
100000,126.8,1
|
||||
200000,177.2,1
|
||||
300000,207.9,1
|
||||
400000,237.6,1
|
||||
500000,289.0,1
|
||||
600000,322.0,1
|
||||
700000,319.4,1
|
||||
800000,349.5,1
|
||||
900000,340.2,1
|
||||
1000000,297.8,1
|
||||
1100000,389.7,1
|
||||
1200000,360.8,1
|
||||
1300000,345.5,1
|
||||
1400000,390.1,1
|
||||
1500000,328.5,1
|
||||
1600000,350.9,1
|
||||
1700000,378.6,1
|
||||
1800000,339.0,1
|
||||
1900000,398.2,1
|
||||
2000000,414.1,1
|
||||
2100000,352.8,1
|
||||
2200000,390.4,1
|
||||
2300000,354.8,1
|
||||
2400000,334.4,1
|
||||
2500000,351.6,1
|
||||
2600000,441.2,1
|
||||
2700000,325.9,1
|
||||
2800000,365.3,1
|
||||
2900000,362.1,1
|
||||
3000000,416.6,1
|
||||
3100000,385.5,1
|
||||
3200000,311.4,1
|
||||
3300000,407.6,1
|
||||
3400000,420.7,1
|
||||
3500000,335.2,1
|
||||
3600000,369.9,1
|
||||
3700000,422.8,1
|
||||
3800000,409.7,1
|
||||
3900000,386.4,1
|
||||
|
119
results/dreamerv3/cartpole-balance-sparse.csv
Normal file
119
results/dreamerv3/cartpole-balance-sparse.csv
Normal file
@@ -0,0 +1,119 @@
|
||||
step,reward,seed
|
||||
0,65.5,2
|
||||
100000,940.1,2
|
||||
200000,945.5,2
|
||||
300000,980.8,2
|
||||
400000,984.0,2
|
||||
500000,981.6,2
|
||||
600000,954.3,2
|
||||
700000,982.4,2
|
||||
800000,992.2,2
|
||||
900000,965.7,2
|
||||
1000000,847.4,2
|
||||
1100000,964.5,2
|
||||
1200000,993.7,2
|
||||
1300000,988.4,2
|
||||
1400000,971.8,2
|
||||
1500000,976.6,2
|
||||
1600000,881.4,2
|
||||
1700000,998.1,2
|
||||
1800000,994.1,2
|
||||
2000000,991.5,2
|
||||
2100000,988.7,2
|
||||
2200000,989.2,2
|
||||
2300000,998.6,2
|
||||
2400000,967.5,2
|
||||
2500000,988.7,2
|
||||
2600000,997.6,2
|
||||
2700000,982.7,2
|
||||
2800000,995.7,2
|
||||
2900000,995.6,2
|
||||
3000000,969.1,2
|
||||
3100000,996.0,2
|
||||
3200000,997.3,2
|
||||
3300000,993.6,2
|
||||
3400000,987.6,2
|
||||
3500000,977.3,2
|
||||
3600000,969.3,2
|
||||
3700000,987.3,2
|
||||
3800000,969.3,2
|
||||
3900000,987.1,2
|
||||
4000000,941.7,2
|
||||
100000,977.6,3
|
||||
200000,944.3,3
|
||||
300000,979.0,3
|
||||
400000,932.2,3
|
||||
500000,929.7,3
|
||||
700000,974.0,3
|
||||
800000,988.3,3
|
||||
900000,996.0,3
|
||||
1000000,976.5,3
|
||||
1100000,974.8,3
|
||||
1200000,987.6,3
|
||||
1300000,993.8,3
|
||||
1400000,990.1,3
|
||||
1500000,995.7,3
|
||||
1600000,976.6,3
|
||||
1700000,977.0,3
|
||||
1800000,991.5,3
|
||||
1900000,989.4,3
|
||||
2000000,990.9,3
|
||||
2100000,990.1,3
|
||||
2200000,999.6,3
|
||||
2300000,997.5,3
|
||||
2400000,999.8,3
|
||||
2500000,998.7,3
|
||||
2600000,1000.0,3
|
||||
2700000,994.4,3
|
||||
2800000,996.6,3
|
||||
2900000,988.8,3
|
||||
3000000,979.0,3
|
||||
3100000,999.8,3
|
||||
3200000,999.1,3
|
||||
3300000,999.3,3
|
||||
3400000,995.2,3
|
||||
3500000,998.3,3
|
||||
3600000,984.4,3
|
||||
3700000,986.5,3
|
||||
3800000,973.7,3
|
||||
3900000,960.5,3
|
||||
0,141.5,1
|
||||
100000,994.0,1
|
||||
200000,984.4,1
|
||||
300000,907.6,1
|
||||
400000,991.0,1
|
||||
500000,990.6,1
|
||||
600000,926.2,1
|
||||
700000,990.4,1
|
||||
800000,995.2,1
|
||||
900000,981.6,1
|
||||
1000000,939.0,1
|
||||
1100000,990.7,1
|
||||
1200000,981.6,1
|
||||
1300000,983.3,1
|
||||
1400000,986.8,1
|
||||
1500000,999.0,1
|
||||
1600000,999.1,1
|
||||
1700000,998.2,1
|
||||
1800000,979.9,1
|
||||
1900000,984.5,1
|
||||
2000000,999.3,1
|
||||
2100000,988.2,1
|
||||
2200000,969.1,1
|
||||
2300000,984.1,1
|
||||
2400000,976.8,1
|
||||
2500000,960.0,1
|
||||
2600000,978.9,1
|
||||
2700000,995.7,1
|
||||
2800000,997.1,1
|
||||
2900000,994.7,1
|
||||
3000000,955.8,1
|
||||
3100000,955.6,1
|
||||
3200000,969.9,1
|
||||
3300000,994.7,1
|
||||
3400000,985.9,1
|
||||
3500000,996.9,1
|
||||
3600000,996.2,1
|
||||
3700000,985.7,1
|
||||
3800000,998.2,1
|
||||
3900000,977.4,1
|
||||
|
117
results/dreamerv3/cartpole-balance.csv
Normal file
117
results/dreamerv3/cartpole-balance.csv
Normal file
@@ -0,0 +1,117 @@
|
||||
step,reward,seed
|
||||
0,305.4,3
|
||||
100000,946.9,3
|
||||
200000,963.6,3
|
||||
300000,933.9,3
|
||||
400000,949.3,3
|
||||
500000,964.8,3
|
||||
600000,966.5,3
|
||||
700000,973.0,3
|
||||
800000,957.7,3
|
||||
900000,951.0,3
|
||||
1000000,954.9,3
|
||||
1100000,976.9,3
|
||||
1200000,975.1,3
|
||||
1300000,976.6,3
|
||||
1400000,962.4,3
|
||||
1500000,960.9,3
|
||||
1600000,962.6,3
|
||||
1700000,978.5,3
|
||||
1800000,968.1,3
|
||||
1900000,963.1,3
|
||||
2000000,944.1,3
|
||||
2100000,958.2,3
|
||||
2200000,952.6,3
|
||||
2300000,962.2,3
|
||||
2500000,950.7,3
|
||||
2600000,955.8,3
|
||||
2700000,959.7,3
|
||||
2800000,981.9,3
|
||||
2900000,959.1,3
|
||||
3000000,945.1,3
|
||||
3100000,953.9,3
|
||||
3200000,956.7,3
|
||||
3300000,966.1,3
|
||||
3400000,945.8,3
|
||||
3500000,964.2,3
|
||||
3600000,959.2,3
|
||||
3700000,974.5,3
|
||||
3800000,957.7,3
|
||||
3900000,943.9,3
|
||||
100000,839.7,1
|
||||
200000,953.2,1
|
||||
300000,936.8,1
|
||||
400000,935.9,1
|
||||
500000,941.0,1
|
||||
600000,959.6,1
|
||||
700000,930.0,1
|
||||
800000,946.3,1
|
||||
900000,943.3,1
|
||||
1000000,945.2,1
|
||||
1100000,960.5,1
|
||||
1200000,957.2,1
|
||||
1400000,949.1,1
|
||||
1500000,973.9,1
|
||||
1600000,936.7,1
|
||||
1700000,958.0,1
|
||||
1800000,957.3,1
|
||||
1900000,950.9,1
|
||||
2000000,968.7,1
|
||||
2100000,954.9,1
|
||||
2200000,964.2,1
|
||||
2300000,971.2,1
|
||||
2400000,962.8,1
|
||||
2500000,958.5,1
|
||||
2600000,966.3,1
|
||||
2700000,978.2,1
|
||||
2800000,978.5,1
|
||||
2900000,980.7,1
|
||||
3000000,964.2,1
|
||||
3100000,950.7,1
|
||||
3200000,928.4,1
|
||||
3300000,960.8,1
|
||||
3400000,958.0,1
|
||||
3500000,946.7,1
|
||||
3600000,947.9,1
|
||||
3700000,972.1,1
|
||||
3800000,979.0,1
|
||||
3900000,979.2,1
|
||||
0,254.9,2
|
||||
100000,951.2,2
|
||||
200000,928.7,2
|
||||
300000,958.8,2
|
||||
400000,929.7,2
|
||||
500000,959.9,2
|
||||
600000,942.4,2
|
||||
700000,951.3,2
|
||||
800000,970.3,2
|
||||
900000,952.7,2
|
||||
1000000,957.3,2
|
||||
1100000,966.4,2
|
||||
1300000,929.8,2
|
||||
1400000,955.2,2
|
||||
1500000,965.0,2
|
||||
1600000,962.2,2
|
||||
1700000,955.4,2
|
||||
1800000,966.7,2
|
||||
1900000,978.5,2
|
||||
2000000,980.8,2
|
||||
2100000,967.2,2
|
||||
2200000,963.5,2
|
||||
2300000,961.2,2
|
||||
2400000,974.0,2
|
||||
2500000,956.9,2
|
||||
2600000,964.2,2
|
||||
2700000,980.0,2
|
||||
2800000,982.8,2
|
||||
2900000,974.0,2
|
||||
3000000,976.4,2
|
||||
3100000,948.3,2
|
||||
3200000,966.2,2
|
||||
3300000,942.0,2
|
||||
3400000,947.5,2
|
||||
3500000,968.3,2
|
||||
3600000,967.8,2
|
||||
3700000,967.7,2
|
||||
3800000,974.6,2
|
||||
3900000,974.8,2
|
||||
|
117
results/dreamerv3/cartpole-swingup-sparse.csv
Normal file
117
results/dreamerv3/cartpole-swingup-sparse.csv
Normal file
@@ -0,0 +1,117 @@
|
||||
step,reward,seed
|
||||
0,0.0,3
|
||||
100000,94.7,3
|
||||
200000,258.6,3
|
||||
300000,735.0,3
|
||||
400000,728.3,3
|
||||
500000,770.2,3
|
||||
600000,753.4,3
|
||||
700000,703.6,3
|
||||
800000,748.0,3
|
||||
900000,782.3,3
|
||||
1000000,754.4,3
|
||||
1100000,760.3,3
|
||||
1200000,687.5,3
|
||||
1300000,780.5,3
|
||||
1400000,763.2,3
|
||||
1500000,785.2,3
|
||||
1600000,769.2,3
|
||||
1700000,787.2,3
|
||||
1800000,725.3,3
|
||||
1900000,792.8,3
|
||||
2000000,790.6,3
|
||||
2100000,759.1,3
|
||||
2200000,791.8,3
|
||||
2300000,778.1,3
|
||||
2400000,770.4,3
|
||||
2500000,792.2,3
|
||||
2600000,781.7,3
|
||||
2700000,770.7,3
|
||||
2800000,777.9,3
|
||||
2900000,790.9,3
|
||||
3000000,765.0,3
|
||||
3100000,780.3,3
|
||||
3200000,784.1,3
|
||||
3300000,779.0,3
|
||||
3400000,772.2,3
|
||||
3500000,766.3,3
|
||||
3600000,774.0,3
|
||||
3700000,773.7,3
|
||||
3800000,693.9,3
|
||||
0,5.0,2
|
||||
100000,435.6,2
|
||||
200000,814.0,2
|
||||
300000,792.3,2
|
||||
400000,753.6,2
|
||||
500000,770.8,2
|
||||
600000,776.7,2
|
||||
700000,743.2,2
|
||||
800000,800.6,2
|
||||
900000,786.3,2
|
||||
1000000,804.5,2
|
||||
1100000,778.6,2
|
||||
1200000,795.6,2
|
||||
1300000,805.7,2
|
||||
1500000,793.8,2
|
||||
1600000,785.0,2
|
||||
1700000,800.3,2
|
||||
1800000,789.2,2
|
||||
1900000,814.0,2
|
||||
2000000,812.9,2
|
||||
2100000,818.4,2
|
||||
2200000,833.7,2
|
||||
2300000,763.3,2
|
||||
2400000,773.9,2
|
||||
2500000,711.6,2
|
||||
2600000,772.6,2
|
||||
2700000,781.6,2
|
||||
2800000,823.9,2
|
||||
2900000,792.2,2
|
||||
3000000,808.3,2
|
||||
3100000,754.2,2
|
||||
3200000,812.3,2
|
||||
3300000,819.2,2
|
||||
3400000,728.4,2
|
||||
3500000,794.6,2
|
||||
3600000,825.7,2
|
||||
3700000,830.5,2
|
||||
3800000,820.6,2
|
||||
3900000,821.6,2
|
||||
0,0.0,1
|
||||
100000,415.5,1
|
||||
200000,772.1,1
|
||||
300000,791.4,1
|
||||
400000,799.4,1
|
||||
500000,779.2,1
|
||||
600000,787.2,1
|
||||
700000,794.4,1
|
||||
800000,785.9,1
|
||||
900000,730.1,1
|
||||
1000000,799.7,1
|
||||
1200000,800.0,1
|
||||
1300000,813.3,1
|
||||
1400000,810.4,1
|
||||
1500000,821.2,1
|
||||
1600000,799.5,1
|
||||
1700000,787.5,1
|
||||
1800000,805.8,1
|
||||
1900000,800.2,1
|
||||
2000000,794.0,1
|
||||
2100000,827.1,1
|
||||
2200000,765.2,1
|
||||
2300000,803.0,1
|
||||
2400000,821.0,1
|
||||
2500000,797.9,1
|
||||
2600000,791.4,1
|
||||
2700000,829.3,1
|
||||
2800000,815.1,1
|
||||
2900000,815.4,1
|
||||
3000000,805.8,1
|
||||
3100000,803.5,1
|
||||
3200000,789.0,1
|
||||
3400000,796.2,1
|
||||
3500000,800.0,1
|
||||
3600000,826.6,1
|
||||
3700000,799.8,1
|
||||
3800000,788.4,1
|
||||
3900000,806.7,1
|
||||
|
113
results/dreamerv3/cartpole-swingup.csv
Normal file
113
results/dreamerv3/cartpole-swingup.csv
Normal file
@@ -0,0 +1,113 @@
|
||||
step,reward,seed
|
||||
0,105.0,3
|
||||
100000,674.4,3
|
||||
200000,774.0,3
|
||||
300000,793.1,3
|
||||
400000,823.6,3
|
||||
500000,811.9,3
|
||||
600000,771.5,3
|
||||
700000,776.0,3
|
||||
800000,813.9,3
|
||||
900000,788.5,3
|
||||
1000000,792.8,3
|
||||
1100000,790.3,3
|
||||
1200000,787.3,3
|
||||
1300000,817.2,3
|
||||
1400000,815.2,3
|
||||
1500000,812.0,3
|
||||
1600000,809.9,3
|
||||
1700000,807.0,3
|
||||
1800000,831.3,3
|
||||
1900000,821.9,3
|
||||
2000000,812.2,3
|
||||
2100000,799.1,3
|
||||
2300000,829.5,3
|
||||
2500000,824.6,3
|
||||
2600000,827.0,3
|
||||
2700000,832.4,3
|
||||
2800000,792.1,3
|
||||
2900000,832.5,3
|
||||
3000000,827.5,3
|
||||
3100000,842.0,3
|
||||
3200000,841.8,3
|
||||
3300000,839.9,3
|
||||
3400000,839.9,3
|
||||
3500000,840.8,3
|
||||
3600000,723.4,3
|
||||
3700000,839.1,3
|
||||
3800000,782.4,3
|
||||
3900000,839.1,3
|
||||
0,151.9,1
|
||||
100000,637.2,1
|
||||
200000,800.8,1
|
||||
300000,838.6,1
|
||||
400000,833.3,1
|
||||
500000,780.6,1
|
||||
600000,821.4,1
|
||||
700000,780.6,1
|
||||
800000,768.6,1
|
||||
900000,760.8,1
|
||||
1000000,755.6,1
|
||||
1100000,764.2,1
|
||||
1200000,794.0,1
|
||||
1300000,777.3,1
|
||||
1400000,781.2,1
|
||||
1600000,821.2,1
|
||||
1700000,807.5,1
|
||||
1800000,803.7,1
|
||||
1900000,798.9,1
|
||||
2000000,808.2,1
|
||||
2100000,808.9,1
|
||||
2200000,823.5,1
|
||||
2400000,813.6,1
|
||||
2600000,808.4,1
|
||||
2700000,810.6,1
|
||||
2800000,808.5,1
|
||||
2900000,806.0,1
|
||||
3000000,810.1,1
|
||||
3100000,819.2,1
|
||||
3200000,797.4,1
|
||||
3300000,819.2,1
|
||||
3400000,817.4,1
|
||||
3500000,830.3,1
|
||||
3600000,841.9,1
|
||||
3700000,841.3,1
|
||||
3800000,825.1,1
|
||||
3900000,830.7,1
|
||||
100000,718.6,2
|
||||
200000,811.9,2
|
||||
300000,793.5,2
|
||||
400000,774.3,2
|
||||
500000,773.8,2
|
||||
600000,799.6,2
|
||||
700000,810.7,2
|
||||
800000,812.1,2
|
||||
900000,771.1,2
|
||||
1000000,791.7,2
|
||||
1100000,786.7,2
|
||||
1200000,828.5,2
|
||||
1300000,821.5,2
|
||||
1400000,813.5,2
|
||||
1500000,811.5,2
|
||||
1600000,831.1,2
|
||||
1700000,812.9,2
|
||||
1800000,820.0,2
|
||||
1900000,820.7,2
|
||||
2000000,821.1,2
|
||||
2100000,835.1,2
|
||||
2200000,817.9,2
|
||||
2300000,822.5,2
|
||||
2400000,819.7,2
|
||||
2500000,810.4,2
|
||||
2600000,807.0,2
|
||||
2700000,823.2,2
|
||||
2900000,820.8,2
|
||||
3000000,818.8,2
|
||||
3100000,818.6,2
|
||||
3200000,818.9,2
|
||||
3300000,839.0,2
|
||||
3400000,838.4,2
|
||||
3500000,812.7,2
|
||||
3600000,827.4,2
|
||||
3800000,818.5,2
|
||||
3900000,820.9,2
|
||||
|
114
results/dreamerv3/cheetah-jump.csv
Normal file
114
results/dreamerv3/cheetah-jump.csv
Normal file
@@ -0,0 +1,114 @@
|
||||
step,reward,seed
|
||||
0,166.0,3
|
||||
100000,314.1,3
|
||||
300000,441.5,3
|
||||
400000,546.6,3
|
||||
500000,538.0,3
|
||||
600000,562.0,3
|
||||
700000,573.6,3
|
||||
800000,595.9,3
|
||||
900000,595.0,3
|
||||
1000000,599.6,3
|
||||
1200000,632.5,3
|
||||
1300000,637.9,3
|
||||
1400000,635.9,3
|
||||
1500000,616.1,3
|
||||
1600000,606.3,3
|
||||
1700000,616.3,3
|
||||
1800000,670.3,3
|
||||
1900000,669.8,3
|
||||
2000000,610.8,3
|
||||
2100000,646.0,3
|
||||
2200000,656.3,3
|
||||
2400000,717.9,3
|
||||
2500000,736.0,3
|
||||
2600000,736.0,3
|
||||
2700000,718.3,3
|
||||
2800000,714.4,3
|
||||
2900000,715.9,3
|
||||
3000000,713.2,3
|
||||
3100000,749.2,3
|
||||
3200000,753.0,3
|
||||
3300000,694.8,3
|
||||
3400000,742.1,3
|
||||
3500000,689.8,3
|
||||
3600000,706.0,3
|
||||
3700000,682.5,3
|
||||
3800000,610.6,3
|
||||
3900000,734.5,3
|
||||
100000,468.0,2
|
||||
200000,297.3,2
|
||||
300000,490.6,2
|
||||
400000,526.1,2
|
||||
500000,435.8,2
|
||||
600000,486.1,2
|
||||
700000,527.8,2
|
||||
800000,597.5,2
|
||||
900000,535.6,2
|
||||
1000000,606.8,2
|
||||
1100000,630.2,2
|
||||
1200000,608.4,2
|
||||
1300000,573.9,2
|
||||
1500000,634.2,2
|
||||
1600000,607.5,2
|
||||
1700000,591.4,2
|
||||
1800000,681.9,2
|
||||
1900000,659.9,2
|
||||
2000000,648.5,2
|
||||
2100000,629.1,2
|
||||
2200000,660.9,2
|
||||
2300000,652.4,2
|
||||
2400000,691.1,2
|
||||
2500000,661.8,2
|
||||
2600000,687.8,2
|
||||
2800000,681.6,2
|
||||
2900000,668.5,2
|
||||
3000000,692.3,2
|
||||
3100000,660.9,2
|
||||
3200000,712.5,2
|
||||
3300000,689.2,2
|
||||
3400000,737.9,2
|
||||
3500000,711.4,2
|
||||
3600000,710.1,2
|
||||
3700000,693.0,2
|
||||
3800000,629.1,2
|
||||
3900000,644.5,2
|
||||
0,183.1,1
|
||||
100000,393.0,1
|
||||
200000,550.3,1
|
||||
300000,571.3,1
|
||||
400000,573.3,1
|
||||
500000,576.9,1
|
||||
600000,610.8,1
|
||||
700000,627.4,1
|
||||
800000,699.2,1
|
||||
900000,618.1,1
|
||||
1000000,631.6,1
|
||||
1100000,707.8,1
|
||||
1200000,596.8,1
|
||||
1300000,631.7,1
|
||||
1400000,614.9,1
|
||||
1500000,626.5,1
|
||||
1600000,676.3,1
|
||||
1700000,630.2,1
|
||||
1800000,639.6,1
|
||||
1900000,628.9,1
|
||||
2000000,652.4,1
|
||||
2100000,637.4,1
|
||||
2200000,625.8,1
|
||||
2300000,677.0,1
|
||||
2400000,657.8,1
|
||||
2500000,731.4,1
|
||||
2600000,722.1,1
|
||||
2700000,664.0,1
|
||||
2800000,654.4,1
|
||||
2900000,656.3,1
|
||||
3000000,695.7,1
|
||||
3100000,649.9,1
|
||||
3200000,650.4,1
|
||||
3400000,717.9,1
|
||||
3500000,681.6,1
|
||||
3600000,692.5,1
|
||||
3700000,704.0,1
|
||||
3800000,686.8,1
|
||||
3900000,741.8,1
|
||||
|
116
results/dreamerv3/cheetah-run-back.csv
Normal file
116
results/dreamerv3/cheetah-run-back.csv
Normal file
@@ -0,0 +1,116 @@
|
||||
step,reward,seed
|
||||
0,6.8,3
|
||||
100000,270.5,3
|
||||
200000,284.3,3
|
||||
300000,392.2,3
|
||||
400000,444.6,3
|
||||
500000,382.2,3
|
||||
600000,453.8,3
|
||||
700000,478.5,3
|
||||
800000,427.2,3
|
||||
1000000,513.7,3
|
||||
1100000,510.8,3
|
||||
1200000,497.0,3
|
||||
1300000,485.6,3
|
||||
1400000,500.1,3
|
||||
1500000,518.1,3
|
||||
1700000,515.4,3
|
||||
1800000,535.2,3
|
||||
1900000,556.9,3
|
||||
2000000,519.5,3
|
||||
2100000,506.8,3
|
||||
2200000,519.7,3
|
||||
2300000,493.7,3
|
||||
2400000,553.4,3
|
||||
2500000,461.3,3
|
||||
2600000,519.6,3
|
||||
2700000,524.4,3
|
||||
2800000,524.6,3
|
||||
2900000,529.8,3
|
||||
3000000,460.5,3
|
||||
3100000,418.6,3
|
||||
3300000,498.3,3
|
||||
3400000,494.1,3
|
||||
3500000,554.5,3
|
||||
3600000,527.2,3
|
||||
3700000,544.4,3
|
||||
3800000,518.6,3
|
||||
3900000,541.1,3
|
||||
0,6.9,2
|
||||
100000,285.5,2
|
||||
200000,277.3,2
|
||||
300000,427.1,2
|
||||
400000,428.8,2
|
||||
500000,481.8,2
|
||||
600000,483.5,2
|
||||
700000,494.4,2
|
||||
800000,490.2,2
|
||||
900000,508.6,2
|
||||
1000000,545.1,2
|
||||
1100000,611.0,2
|
||||
1300000,671.9,2
|
||||
1400000,599.7,2
|
||||
1500000,492.7,2
|
||||
1600000,554.1,2
|
||||
1700000,729.7,2
|
||||
1800000,735.6,2
|
||||
1900000,766.1,2
|
||||
2000000,749.4,2
|
||||
2100000,646.8,2
|
||||
2200000,561.9,2
|
||||
2300000,665.8,2
|
||||
2400000,760.2,2
|
||||
2500000,680.0,2
|
||||
2600000,593.0,2
|
||||
2800000,710.1,2
|
||||
2900000,647.3,2
|
||||
3000000,755.7,2
|
||||
3100000,769.2,2
|
||||
3200000,725.4,2
|
||||
3300000,681.0,2
|
||||
3400000,759.7,2
|
||||
3500000,828.4,2
|
||||
3600000,770.6,2
|
||||
3700000,731.6,2
|
||||
3800000,777.9,2
|
||||
3900000,773.5,2
|
||||
0,16.2,1
|
||||
100000,302.4,1
|
||||
200000,348.0,1
|
||||
300000,306.6,1
|
||||
400000,340.5,1
|
||||
500000,326.2,1
|
||||
600000,373.6,1
|
||||
700000,425.7,1
|
||||
800000,478.6,1
|
||||
900000,438.7,1
|
||||
1000000,412.4,1
|
||||
1100000,490.7,1
|
||||
1200000,504.4,1
|
||||
1300000,508.8,1
|
||||
1400000,453.3,1
|
||||
1500000,416.9,1
|
||||
1600000,534.5,1
|
||||
1700000,555.4,1
|
||||
1800000,546.4,1
|
||||
1900000,646.7,1
|
||||
2000000,567.2,1
|
||||
2100000,562.4,1
|
||||
2200000,659.3,1
|
||||
2300000,717.4,1
|
||||
2400000,654.3,1
|
||||
2500000,777.5,1
|
||||
2600000,704.5,1
|
||||
2700000,596.9,1
|
||||
2800000,652.6,1
|
||||
2900000,454.2,1
|
||||
3000000,623.7,1
|
||||
3100000,756.8,1
|
||||
3200000,670.2,1
|
||||
3300000,664.9,1
|
||||
3400000,429.0,1
|
||||
3500000,680.3,1
|
||||
3600000,545.9,1
|
||||
3700000,742.1,1
|
||||
3800000,447.0,1
|
||||
3900000,617.8,1
|
||||
|
114
results/dreamerv3/cheetah-run-backwards.csv
Normal file
114
results/dreamerv3/cheetah-run-backwards.csv
Normal file
@@ -0,0 +1,114 @@
|
||||
step,reward,seed
|
||||
100000,420.4,3
|
||||
200000,362.1,3
|
||||
300000,522.2,3
|
||||
400000,449.8,3
|
||||
500000,480.2,3
|
||||
600000,588.0,3
|
||||
700000,568.8,3
|
||||
800000,565.2,3
|
||||
900000,564.2,3
|
||||
1000000,629.6,3
|
||||
1100000,598.9,3
|
||||
1200000,609.6,3
|
||||
1300000,660.5,3
|
||||
1400000,334.9,3
|
||||
1500000,578.6,3
|
||||
1600000,647.0,3
|
||||
1800000,587.3,3
|
||||
1900000,603.8,3
|
||||
2000000,690.0,3
|
||||
2100000,684.7,3
|
||||
2200000,626.7,3
|
||||
2300000,652.3,3
|
||||
2400000,628.8,3
|
||||
2500000,647.2,3
|
||||
2600000,647.0,3
|
||||
2700000,666.8,3
|
||||
2800000,636.3,3
|
||||
2900000,632.9,3
|
||||
3000000,630.1,3
|
||||
3100000,593.3,3
|
||||
3200000,581.0,3
|
||||
3300000,694.4,3
|
||||
3400000,693.6,3
|
||||
3500000,664.3,3
|
||||
3600000,639.5,3
|
||||
3700000,586.6,3
|
||||
3800000,595.8,3
|
||||
3900000,617.3,3
|
||||
100000,466.6,1
|
||||
300000,483.0,1
|
||||
400000,543.0,1
|
||||
500000,543.4,1
|
||||
600000,593.4,1
|
||||
700000,567.6,1
|
||||
800000,536.3,1
|
||||
900000,565.3,1
|
||||
1000000,625.5,1
|
||||
1100000,488.9,1
|
||||
1200000,630.0,1
|
||||
1300000,543.2,1
|
||||
1400000,604.9,1
|
||||
1500000,544.4,1
|
||||
1600000,498.2,1
|
||||
1700000,640.8,1
|
||||
1800000,617.1,1
|
||||
1900000,596.1,1
|
||||
2000000,647.4,1
|
||||
2100000,563.1,1
|
||||
2200000,621.0,1
|
||||
2300000,646.9,1
|
||||
2400000,648.5,1
|
||||
2500000,623.3,1
|
||||
2600000,566.9,1
|
||||
2700000,644.7,1
|
||||
2800000,629.6,1
|
||||
2900000,675.2,1
|
||||
3000000,548.5,1
|
||||
3100000,649.2,1
|
||||
3200000,647.2,1
|
||||
3300000,640.5,1
|
||||
3400000,715.7,1
|
||||
3500000,619.8,1
|
||||
3600000,632.6,1
|
||||
3700000,532.3,1
|
||||
3800000,629.9,1
|
||||
3900000,656.3,1
|
||||
0,96.2,2
|
||||
100000,437.7,2
|
||||
200000,351.0,2
|
||||
300000,492.0,2
|
||||
400000,500.7,2
|
||||
500000,480.7,2
|
||||
700000,543.0,2
|
||||
800000,590.4,2
|
||||
900000,519.7,2
|
||||
1000000,541.1,2
|
||||
1100000,562.5,2
|
||||
1200000,590.0,2
|
||||
1300000,615.5,2
|
||||
1400000,589.3,2
|
||||
1500000,623.1,2
|
||||
1700000,590.8,2
|
||||
1800000,591.0,2
|
||||
1900000,615.6,2
|
||||
2000000,529.0,2
|
||||
2100000,618.8,2
|
||||
2200000,632.4,2
|
||||
2300000,666.6,2
|
||||
2400000,568.1,2
|
||||
2500000,609.5,2
|
||||
2600000,647.8,2
|
||||
2700000,625.9,2
|
||||
2800000,601.8,2
|
||||
2900000,653.4,2
|
||||
3000000,672.6,2
|
||||
3100000,670.6,2
|
||||
3200000,670.2,2
|
||||
3400000,626.6,2
|
||||
3500000,676.2,2
|
||||
3600000,643.6,2
|
||||
3700000,672.5,2
|
||||
3800000,710.5,2
|
||||
3900000,735.1,2
|
||||
|
115
results/dreamerv3/cheetah-run-front.csv
Normal file
115
results/dreamerv3/cheetah-run-front.csv
Normal file
@@ -0,0 +1,115 @@
|
||||
step,reward,seed
|
||||
100000,185.8,3
|
||||
200000,313.7,3
|
||||
400000,320.5,3
|
||||
600000,380.7,3
|
||||
700000,388.6,3
|
||||
800000,496.2,3
|
||||
900000,505.2,3
|
||||
1000000,497.7,3
|
||||
1100000,524.9,3
|
||||
1200000,472.7,3
|
||||
1300000,509.9,3
|
||||
1400000,507.6,3
|
||||
1500000,559.6,3
|
||||
1600000,450.4,3
|
||||
1700000,513.0,3
|
||||
1800000,522.8,3
|
||||
1900000,570.3,3
|
||||
2100000,497.5,3
|
||||
2200000,499.6,3
|
||||
2300000,505.3,3
|
||||
2400000,550.1,3
|
||||
2500000,605.1,3
|
||||
2600000,598.6,3
|
||||
2700000,622.1,3
|
||||
2800000,652.1,3
|
||||
2900000,623.8,3
|
||||
3000000,587.9,3
|
||||
3100000,594.0,3
|
||||
3200000,582.8,3
|
||||
3300000,582.0,3
|
||||
3400000,585.3,3
|
||||
3500000,645.7,3
|
||||
3600000,631.9,3
|
||||
3700000,616.6,3
|
||||
3800000,635.5,3
|
||||
3900000,590.2,3
|
||||
0,6.9,2
|
||||
100000,224.1,2
|
||||
200000,285.8,2
|
||||
300000,322.8,2
|
||||
400000,366.8,2
|
||||
500000,387.5,2
|
||||
600000,401.1,2
|
||||
700000,424.8,2
|
||||
800000,444.6,2
|
||||
900000,451.3,2
|
||||
1000000,447.2,2
|
||||
1100000,530.1,2
|
||||
1300000,507.8,2
|
||||
1400000,532.0,2
|
||||
1500000,509.3,2
|
||||
1600000,570.5,2
|
||||
1800000,473.5,2
|
||||
1900000,479.6,2
|
||||
2000000,536.3,2
|
||||
2100000,610.3,2
|
||||
2200000,552.9,2
|
||||
2300000,554.0,2
|
||||
2400000,580.3,2
|
||||
2500000,631.0,2
|
||||
2600000,638.3,2
|
||||
2700000,617.4,2
|
||||
2800000,608.2,2
|
||||
2900000,557.2,2
|
||||
3000000,635.2,2
|
||||
3100000,573.7,2
|
||||
3200000,578.5,2
|
||||
3300000,600.8,2
|
||||
3400000,570.8,2
|
||||
3500000,561.3,2
|
||||
3600000,604.9,2
|
||||
3700000,627.0,2
|
||||
3800000,634.9,2
|
||||
3900000,508.6,2
|
||||
0,5.3,1
|
||||
100000,208.4,1
|
||||
200000,266.6,1
|
||||
300000,300.7,1
|
||||
400000,360.2,1
|
||||
500000,287.4,1
|
||||
600000,412.6,1
|
||||
700000,369.2,1
|
||||
800000,384.9,1
|
||||
900000,391.8,1
|
||||
1000000,405.4,1
|
||||
1100000,439.3,1
|
||||
1200000,356.3,1
|
||||
1300000,407.1,1
|
||||
1400000,440.1,1
|
||||
1500000,430.3,1
|
||||
1600000,416.3,1
|
||||
1700000,388.6,1
|
||||
1800000,410.7,1
|
||||
1900000,431.3,1
|
||||
2000000,425.3,1
|
||||
2100000,453.2,1
|
||||
2200000,476.5,1
|
||||
2300000,503.4,1
|
||||
2400000,532.1,1
|
||||
2500000,509.8,1
|
||||
2600000,470.0,1
|
||||
2700000,488.0,1
|
||||
2800000,533.2,1
|
||||
2900000,530.8,1
|
||||
3000000,550.1,1
|
||||
3100000,542.3,1
|
||||
3200000,549.1,1
|
||||
3300000,471.9,1
|
||||
3400000,446.8,1
|
||||
3500000,364.6,1
|
||||
3600000,534.0,1
|
||||
3700000,459.5,1
|
||||
3800000,518.1,1
|
||||
3900000,523.1,1
|
||||
|
116
results/dreamerv3/cheetah-run.csv
Normal file
116
results/dreamerv3/cheetah-run.csv
Normal file
@@ -0,0 +1,116 @@
|
||||
step,reward,seed
|
||||
0,12.5,3
|
||||
100000,386.0,3
|
||||
200000,236.6,3
|
||||
300000,438.5,3
|
||||
400000,512.2,3
|
||||
500000,495.0,3
|
||||
600000,490.0,3
|
||||
700000,524.4,3
|
||||
800000,603.1,3
|
||||
900000,647.5,3
|
||||
1000000,633.8,3
|
||||
1100000,605.3,3
|
||||
1200000,670.9,3
|
||||
1300000,641.2,3
|
||||
1400000,601.6,3
|
||||
1500000,732.4,3
|
||||
1600000,654.5,3
|
||||
1700000,755.1,3
|
||||
1800000,621.0,3
|
||||
1900000,732.9,3
|
||||
2000000,635.5,3
|
||||
2100000,665.4,3
|
||||
2200000,722.7,3
|
||||
2300000,655.3,3
|
||||
2400000,703.0,3
|
||||
2500000,623.5,3
|
||||
2600000,667.2,3
|
||||
2700000,440.9,3
|
||||
2800000,777.7,3
|
||||
2900000,695.4,3
|
||||
3000000,727.6,3
|
||||
3100000,808.9,3
|
||||
3200000,713.5,3
|
||||
3300000,716.1,3
|
||||
3400000,752.9,3
|
||||
3500000,697.0,3
|
||||
3600000,816.0,3
|
||||
3700000,640.4,3
|
||||
3800000,793.3,3
|
||||
3900000,734.1,3
|
||||
100000,265.1,2
|
||||
200000,449.6,2
|
||||
300000,503.4,2
|
||||
400000,486.3,2
|
||||
500000,534.1,2
|
||||
600000,572.9,2
|
||||
700000,530.4,2
|
||||
800000,603.3,2
|
||||
900000,619.1,2
|
||||
1000000,645.6,2
|
||||
1100000,735.3,2
|
||||
1200000,750.4,2
|
||||
1300000,712.9,2
|
||||
1400000,706.1,2
|
||||
1500000,744.0,2
|
||||
1600000,699.3,2
|
||||
1700000,711.7,2
|
||||
1800000,692.3,2
|
||||
2000000,662.8,2
|
||||
2100000,668.1,2
|
||||
2200000,734.6,2
|
||||
2300000,608.2,2
|
||||
2400000,635.4,2
|
||||
2500000,745.7,2
|
||||
2600000,705.8,2
|
||||
2700000,722.9,2
|
||||
2800000,597.5,2
|
||||
2900000,720.7,2
|
||||
3100000,816.5,2
|
||||
3200000,729.9,2
|
||||
3300000,741.3,2
|
||||
3400000,715.6,2
|
||||
3500000,755.0,2
|
||||
3600000,662.8,2
|
||||
3700000,688.5,2
|
||||
3800000,764.5,2
|
||||
3900000,758.6,2
|
||||
100000,356.1,1
|
||||
200000,374.1,1
|
||||
300000,519.7,1
|
||||
400000,480.8,1
|
||||
500000,452.3,1
|
||||
600000,390.4,1
|
||||
700000,590.5,1
|
||||
800000,570.6,1
|
||||
900000,667.9,1
|
||||
1000000,635.3,1
|
||||
1100000,643.3,1
|
||||
1200000,687.5,1
|
||||
1300000,705.5,1
|
||||
1400000,731.3,1
|
||||
1500000,756.5,1
|
||||
1600000,746.4,1
|
||||
1700000,769.4,1
|
||||
1800000,779.8,1
|
||||
1900000,581.2,1
|
||||
2100000,646.7,1
|
||||
2200000,834.2,1
|
||||
2300000,640.1,1
|
||||
2400000,725.7,1
|
||||
2500000,629.2,1
|
||||
2600000,827.5,1
|
||||
2700000,764.0,1
|
||||
2800000,686.5,1
|
||||
2900000,703.8,1
|
||||
3000000,696.5,1
|
||||
3100000,838.8,1
|
||||
3200000,872.7,1
|
||||
3300000,762.1,1
|
||||
3400000,774.0,1
|
||||
3500000,649.7,1
|
||||
3600000,789.1,1
|
||||
3700000,725.8,1
|
||||
3800000,757.0,1
|
||||
3900000,778.8,1
|
||||
|
117
results/dreamerv3/cup-catch.csv
Normal file
117
results/dreamerv3/cup-catch.csv
Normal file
@@ -0,0 +1,117 @@
|
||||
step,reward,seed
|
||||
100000,923.5,3
|
||||
200000,938.0,3
|
||||
300000,929.9,3
|
||||
400000,938.2,3
|
||||
500000,949.7,3
|
||||
600000,920.8,3
|
||||
700000,945.7,3
|
||||
800000,945.6,3
|
||||
900000,916.0,3
|
||||
1000000,956.1,3
|
||||
1100000,951.5,3
|
||||
1200000,957.7,3
|
||||
1300000,963.2,3
|
||||
1400000,958.3,3
|
||||
1500000,967.3,3
|
||||
1600000,954.3,3
|
||||
1700000,951.7,3
|
||||
1800000,958.9,3
|
||||
1900000,970.9,3
|
||||
2000000,923.0,3
|
||||
2200000,964.4,3
|
||||
2300000,957.6,3
|
||||
2400000,939.6,3
|
||||
2500000,943.0,3
|
||||
2600000,945.6,3
|
||||
2700000,959.4,3
|
||||
2800000,945.0,3
|
||||
2900000,965.3,3
|
||||
3000000,971.4,3
|
||||
3100000,964.7,3
|
||||
3200000,965.6,3
|
||||
3300000,956.2,3
|
||||
3400000,965.2,3
|
||||
3500000,956.3,3
|
||||
3600000,959.5,3
|
||||
3700000,947.5,3
|
||||
3800000,942.2,3
|
||||
3900000,965.3,3
|
||||
100000,731.2,1
|
||||
200000,728.6,1
|
||||
300000,904.9,1
|
||||
400000,928.8,1
|
||||
500000,967.0,1
|
||||
600000,955.6,1
|
||||
700000,933.1,1
|
||||
800000,968.0,1
|
||||
900000,938.9,1
|
||||
1000000,959.4,1
|
||||
1100000,966.9,1
|
||||
1200000,959.8,1
|
||||
1300000,966.1,1
|
||||
1400000,957.3,1
|
||||
1500000,951.4,1
|
||||
1600000,953.2,1
|
||||
1700000,952.8,1
|
||||
1800000,959.4,1
|
||||
1900000,960.4,1
|
||||
2000000,951.1,1
|
||||
2100000,966.4,1
|
||||
2200000,955.6,1
|
||||
2300000,972.5,1
|
||||
2400000,952.6,1
|
||||
2500000,960.2,1
|
||||
2600000,944.2,1
|
||||
2700000,958.2,1
|
||||
2800000,96.3,1
|
||||
2900000,651.7,1
|
||||
3000000,0.0,1
|
||||
3100000,99.7,1
|
||||
3200000,418.2,1
|
||||
3300000,902.5,1
|
||||
3400000,961.4,1
|
||||
3500000,961.4,1
|
||||
3600000,958.4,1
|
||||
3700000,956.4,1
|
||||
3800000,957.2,1
|
||||
3900000,961.8,1
|
||||
0,0.0,2
|
||||
100000,956.8,2
|
||||
200000,931.9,2
|
||||
300000,907.4,2
|
||||
400000,943.4,2
|
||||
500000,955.9,2
|
||||
600000,952.6,2
|
||||
700000,947.0,2
|
||||
800000,946.2,2
|
||||
900000,961.2,2
|
||||
1000000,960.2,2
|
||||
1100000,877.7,2
|
||||
1200000,946.1,2
|
||||
1300000,954.3,2
|
||||
1400000,941.5,2
|
||||
1500000,940.3,2
|
||||
1600000,955.1,2
|
||||
1700000,741.4,2
|
||||
1800000,867.7,2
|
||||
1900000,958.9,2
|
||||
2000000,960.2,2
|
||||
2100000,952.7,2
|
||||
2200000,956.2,2
|
||||
2300000,956.4,2
|
||||
2400000,950.5,2
|
||||
2500000,224.8,2
|
||||
2600000,955.1,2
|
||||
2700000,943.6,2
|
||||
2800000,957.0,2
|
||||
2900000,956.4,2
|
||||
3000000,934.6,2
|
||||
3100000,954.6,2
|
||||
3300000,951.7,2
|
||||
3400000,960.0,2
|
||||
3500000,949.3,2
|
||||
3600000,963.4,2
|
||||
3700000,950.0,2
|
||||
3800000,941.8,2
|
||||
3900000,954.8,2
|
||||
|
113
results/dreamerv3/cup-spin.csv
Normal file
113
results/dreamerv3/cup-spin.csv
Normal file
@@ -0,0 +1,113 @@
|
||||
step,reward,seed
|
||||
0,179.3,3
|
||||
100000,677.4,3
|
||||
200000,685.9,3
|
||||
300000,734.6,3
|
||||
500000,715.5,3
|
||||
600000,746.4,3
|
||||
700000,714.3,3
|
||||
800000,699.4,3
|
||||
900000,748.0,3
|
||||
1000000,736.0,3
|
||||
1100000,757.3,3
|
||||
1200000,702.1,3
|
||||
1300000,709.9,3
|
||||
1400000,735.9,3
|
||||
1500000,775.1,3
|
||||
1700000,755.5,3
|
||||
1800000,774.1,3
|
||||
1900000,763.0,3
|
||||
2000000,784.3,3
|
||||
2100000,776.1,3
|
||||
2200000,778.5,3
|
||||
2300000,747.5,3
|
||||
2400000,789.1,3
|
||||
2500000,798.0,3
|
||||
2700000,760.2,3
|
||||
2800000,739.7,3
|
||||
2900000,764.6,3
|
||||
3000000,809.7,3
|
||||
3100000,776.2,3
|
||||
3200000,767.8,3
|
||||
3300000,781.9,3
|
||||
3400000,758.2,3
|
||||
3500000,790.1,3
|
||||
3600000,790.7,3
|
||||
3700000,794.1,3
|
||||
3800000,802.8,3
|
||||
3900000,796.2,3
|
||||
0,74.1,1
|
||||
100000,752.9,1
|
||||
200000,758.4,1
|
||||
300000,578.9,1
|
||||
400000,772.3,1
|
||||
500000,712.1,1
|
||||
600000,731.4,1
|
||||
700000,774.9,1
|
||||
800000,791.1,1
|
||||
1000000,758.9,1
|
||||
1100000,780.0,1
|
||||
1300000,740.0,1
|
||||
1400000,799.6,1
|
||||
1500000,797.3,1
|
||||
1600000,796.7,1
|
||||
1700000,571.1,1
|
||||
1800000,781.3,1
|
||||
1900000,794.2,1
|
||||
2000000,793.2,1
|
||||
2100000,776.0,1
|
||||
2200000,714.6,1
|
||||
2300000,737.5,1
|
||||
2400000,807.2,1
|
||||
2500000,770.7,1
|
||||
2600000,765.7,1
|
||||
2800000,791.3,1
|
||||
3000000,818.0,1
|
||||
3100000,567.9,1
|
||||
3200000,399.5,1
|
||||
3300000,777.9,1
|
||||
3400000,777.3,1
|
||||
3500000,746.8,1
|
||||
3600000,765.5,1
|
||||
3700000,767.3,1
|
||||
3800000,789.1,1
|
||||
3900000,808.8,1
|
||||
0,403.3,2
|
||||
100000,444.9,2
|
||||
200000,647.2,2
|
||||
300000,628.9,2
|
||||
400000,682.6,2
|
||||
500000,698.8,2
|
||||
600000,742.0,2
|
||||
700000,737.6,2
|
||||
800000,750.3,2
|
||||
900000,731.8,2
|
||||
1000000,783.2,2
|
||||
1100000,609.5,2
|
||||
1200000,658.7,2
|
||||
1300000,600.6,2
|
||||
1400000,768.8,2
|
||||
1500000,756.7,2
|
||||
1600000,742.3,2
|
||||
1700000,746.3,2
|
||||
1800000,794.4,2
|
||||
2000000,619.9,2
|
||||
2100000,623.8,2
|
||||
2200000,747.2,2
|
||||
2300000,789.8,2
|
||||
2400000,743.6,2
|
||||
2500000,681.6,2
|
||||
2600000,772.9,2
|
||||
2700000,773.2,2
|
||||
2800000,798.3,2
|
||||
2900000,677.3,2
|
||||
3000000,805.2,2
|
||||
3100000,764.2,2
|
||||
3200000,796.5,2
|
||||
3300000,742.6,2
|
||||
3400000,755.0,2
|
||||
3500000,702.2,2
|
||||
3600000,682.8,2
|
||||
3700000,747.7,2
|
||||
3800000,689.2,2
|
||||
3900000,796.6,2
|
||||
|
155
results/dreamerv3/dog-run.csv
Normal file
155
results/dreamerv3/dog-run.csv
Normal file
@@ -0,0 +1,155 @@
|
||||
step,reward,seed
|
||||
0,5.2,3
|
||||
200000,5.1,3
|
||||
300000,4.2,3
|
||||
400000,5.8,3
|
||||
700000,6.7,3
|
||||
900000,4.6,3
|
||||
1100000,4.7,3
|
||||
1300000,4.5,3
|
||||
1500000,4.9,3
|
||||
2700000,4.3,3
|
||||
2800000,4.7,3
|
||||
3200000,4.1,3
|
||||
3500000,5.3,3
|
||||
3700000,4.2,3
|
||||
4100000,4.3,3
|
||||
4600000,6.2,3
|
||||
4700000,6.7,3
|
||||
4800000,6.7,3
|
||||
5100000,7.0,3
|
||||
5200000,6.9,3
|
||||
6000000,4.6,3
|
||||
6300000,5.3,3
|
||||
6400000,4.6,3
|
||||
6600000,5.0,3
|
||||
7400000,4.9,3
|
||||
7800000,4.2,3
|
||||
8900000,5.0,3
|
||||
9100000,3.9,3
|
||||
9300000,4.4,3
|
||||
9500000,5.3,3
|
||||
9600000,4.3,3
|
||||
9700000,5.4,3
|
||||
9800000,5.6,3
|
||||
10100000,5.1,3
|
||||
10500000,4.7,3
|
||||
10700000,4.4,3
|
||||
11000000,3.8,3
|
||||
11100000,4.2,3
|
||||
11200000,4.1,3
|
||||
11400000,4.1,3
|
||||
11700000,5.1,3
|
||||
12400000,4.5,3
|
||||
12600000,4.8,3
|
||||
12800000,6.8,3
|
||||
12900000,6.5,3
|
||||
13500000,4.1,3
|
||||
13600000,4.3,3
|
||||
13800000,4.5,3
|
||||
200000,7.8,2
|
||||
400000,5.0,2
|
||||
500000,5.2,2
|
||||
900000,4.1,2
|
||||
1100000,4.7,2
|
||||
1300000,5.0,2
|
||||
1400000,4.3,2
|
||||
1500000,3.9,2
|
||||
1800000,4.9,2
|
||||
2100000,4.7,2
|
||||
2200000,4.6,2
|
||||
2800000,5.4,2
|
||||
3200000,6.3,2
|
||||
3600000,6.7,2
|
||||
3700000,4.2,2
|
||||
3800000,5.1,2
|
||||
4100000,4.7,2
|
||||
4200000,4.9,2
|
||||
5200000,4.7,2
|
||||
5300000,4.4,2
|
||||
5800000,4.6,2
|
||||
6100000,5.0,2
|
||||
6900000,4.5,2
|
||||
7000000,4.1,2
|
||||
7200000,4.1,2
|
||||
7400000,4.5,2
|
||||
7500000,4.1,2
|
||||
8100000,4.3,2
|
||||
8200000,4.4,2
|
||||
8300000,5.8,2
|
||||
8400000,5.8,2
|
||||
8900000,4.9,2
|
||||
9000000,4.8,2
|
||||
9400000,6.9,2
|
||||
9600000,7.0,2
|
||||
9900000,4.3,2
|
||||
10400000,4.8,2
|
||||
10500000,5.3,2
|
||||
10600000,5.4,2
|
||||
10700000,5.1,2
|
||||
11600000,4.9,2
|
||||
11800000,5.4,2
|
||||
12200000,5.0,2
|
||||
12300000,5.2,2
|
||||
12500000,4.1,2
|
||||
13200000,6.1,2
|
||||
13300000,5.6,2
|
||||
13500000,5.4,2
|
||||
13700000,5.0,2
|
||||
13800000,4.7,2
|
||||
100000,0.0,1
|
||||
300000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
900000,0.0,1
|
||||
2000000,0.0,1
|
||||
2100000,0.0,1
|
||||
3100000,0.0,1
|
||||
3200000,0.0,1
|
||||
3400000,0.0,1
|
||||
3700000,0.0,1
|
||||
3800000,0.0,1
|
||||
3900000,0.0,1
|
||||
4100000,0.0,1
|
||||
4400000,0.0,1
|
||||
4700000,0.0,1
|
||||
5200000,0.0,1
|
||||
5600000,0.0,1
|
||||
5700000,0.0,1
|
||||
5900000,0.0,1
|
||||
6400000,0.0,1
|
||||
6800000,0.0,1
|
||||
7000000,0.0,1
|
||||
7100000,0.0,1
|
||||
7200000,0.0,1
|
||||
7400000,0.0,1
|
||||
7500000,0.0,1
|
||||
7600000,0.0,1
|
||||
7700000,0.0,1
|
||||
8000000,0.0,1
|
||||
8300000,0.0,1
|
||||
8500000,0.0,1
|
||||
8600000,0.0,1
|
||||
9100000,0.0,1
|
||||
9200000,0.0,1
|
||||
9400000,0.0,1
|
||||
9700000,0.0,1
|
||||
10100000,0.0,1
|
||||
10200000,0.0,1
|
||||
10400000,0.0,1
|
||||
11100000,0.0,1
|
||||
11200000,0.0,1
|
||||
11300000,0.0,1
|
||||
11500000,0.0,1
|
||||
11600000,0.0,1
|
||||
12200000,0.0,1
|
||||
12300000,0.0,1
|
||||
12400000,0.0,1
|
||||
12700000,0.0,1
|
||||
13000000,0.0,1
|
||||
13100000,0.0,1
|
||||
13200000,0.0,1
|
||||
13300000,0.0,1
|
||||
13600000,0.0,1
|
||||
13700000,0.0,1
|
||||
13800000,0.0,1
|
||||
|
161
results/dreamerv3/dog-stand.csv
Normal file
161
results/dreamerv3/dog-stand.csv
Normal file
@@ -0,0 +1,161 @@
|
||||
step,reward,seed
|
||||
200000,26.6,2
|
||||
400000,21.7,2
|
||||
500000,19.5,2
|
||||
1000000,17.5,2
|
||||
1400000,20.5,2
|
||||
1800000,18.6,2
|
||||
2000000,18.0,2
|
||||
2400000,19.9,2
|
||||
2700000,20.2,2
|
||||
3100000,19.7,2
|
||||
3400000,18.8,2
|
||||
3500000,19.2,2
|
||||
3600000,18.7,2
|
||||
3700000,18.9,2
|
||||
3800000,20.5,2
|
||||
4000000,19.5,2
|
||||
4300000,24.0,2
|
||||
4700000,22.0,2
|
||||
4900000,20.2,2
|
||||
5400000,21.9,2
|
||||
5500000,22.0,2
|
||||
5600000,21.6,2
|
||||
6000000,22.2,2
|
||||
6100000,22.8,2
|
||||
6700000,21.8,2
|
||||
6800000,20.1,2
|
||||
6900000,21.9,2
|
||||
7300000,18.9,2
|
||||
8000000,21.5,2
|
||||
8100000,21.8,2
|
||||
8400000,18.2,2
|
||||
8600000,18.8,2
|
||||
9100000,21.3,2
|
||||
9300000,22.8,2
|
||||
9400000,27.6,2
|
||||
9500000,24.6,2
|
||||
9800000,19.5,2
|
||||
9900000,21.0,2
|
||||
11400000,17.8,2
|
||||
12100000,18.5,2
|
||||
12200000,34.3,2
|
||||
12500000,19.6,2
|
||||
12800000,31.1,2
|
||||
13100000,35.4,2
|
||||
13400000,25.7,2
|
||||
13500000,20.7,2
|
||||
13700000,28.8,2
|
||||
13800000,28.7,2
|
||||
13900000,20.3,2
|
||||
100000,50.6,3
|
||||
400000,34.5,3
|
||||
500000,34.2,3
|
||||
600000,21.2,3
|
||||
800000,27.2,3
|
||||
900000,19.7,3
|
||||
1000000,21.8,3
|
||||
1200000,20.3,3
|
||||
1600000,19.1,3
|
||||
1700000,24.4,3
|
||||
2400000,18.1,3
|
||||
2600000,21.1,3
|
||||
3300000,25.0,3
|
||||
3400000,23.0,3
|
||||
3700000,21.4,3
|
||||
4000000,18.7,3
|
||||
4200000,20.0,3
|
||||
4500000,20.2,3
|
||||
4600000,34.8,3
|
||||
4800000,21.8,3
|
||||
4900000,21.1,3
|
||||
5000000,20.7,3
|
||||
5100000,21.7,3
|
||||
5200000,21.5,3
|
||||
6000000,20.7,3
|
||||
6200000,21.9,3
|
||||
6700000,20.2,3
|
||||
6900000,19.3,3
|
||||
7100000,19.5,3
|
||||
7300000,18.5,3
|
||||
7800000,18.6,3
|
||||
8900000,21.7,3
|
||||
9000000,22.1,3
|
||||
9100000,21.3,3
|
||||
9400000,20.1,3
|
||||
9700000,21.4,3
|
||||
9800000,29.6,3
|
||||
9900000,30.3,3
|
||||
10300000,21.5,3
|
||||
10400000,20.3,3
|
||||
10500000,18.6,3
|
||||
10700000,20.0,3
|
||||
10800000,20.9,3
|
||||
10900000,19.8,3
|
||||
11000000,18.8,3
|
||||
11100000,18.4,3
|
||||
11700000,17.9,3
|
||||
11900000,19.1,3
|
||||
12200000,18.4,3
|
||||
12500000,19.1,3
|
||||
12600000,20.4,3
|
||||
12900000,31.9,3
|
||||
13000000,19.9,3
|
||||
13100000,18.9,3
|
||||
13200000,19.8,3
|
||||
13300000,25.1,3
|
||||
13400000,25.7,3
|
||||
13500000,24.4,3
|
||||
13600000,19.0,3
|
||||
13800000,22.3,3
|
||||
13900000,19.5,3
|
||||
400000,29.0,1
|
||||
600000,22.2,1
|
||||
700000,21.7,1
|
||||
1200000,22.3,1
|
||||
1400000,20.5,1
|
||||
1700000,28.6,1
|
||||
1800000,27.9,1
|
||||
2100000,19.2,1
|
||||
2200000,19.0,1
|
||||
2300000,19.3,1
|
||||
2700000,27.7,1
|
||||
3100000,22.1,1
|
||||
3800000,22.5,1
|
||||
3900000,22.9,1
|
||||
4200000,22.4,1
|
||||
4700000,33.8,1
|
||||
5200000,19.9,1
|
||||
5500000,20.8,1
|
||||
5700000,23.8,1
|
||||
6000000,19.6,1
|
||||
6200000,19.0,1
|
||||
6300000,20.9,1
|
||||
6600000,19.1,1
|
||||
6700000,17.8,1
|
||||
6900000,19.2,1
|
||||
7100000,48.5,1
|
||||
7400000,17.0,1
|
||||
7500000,24.8,1
|
||||
7800000,20.0,1
|
||||
8100000,20.4,1
|
||||
8200000,19.4,1
|
||||
8500000,20.2,1
|
||||
8600000,19.7,1
|
||||
8700000,18.8,1
|
||||
8900000,19.9,1
|
||||
9000000,21.4,1
|
||||
9500000,28.5,1
|
||||
9600000,31.3,1
|
||||
9800000,22.4,1
|
||||
10800000,40.7,1
|
||||
11500000,20.2,1
|
||||
11900000,19.5,1
|
||||
12200000,20.1,1
|
||||
12600000,18.9,1
|
||||
13000000,28.6,1
|
||||
13200000,18.0,1
|
||||
13300000,20.2,1
|
||||
13600000,17.9,1
|
||||
13700000,19.6,1
|
||||
13800000,19.1,1
|
||||
|
167
results/dreamerv3/dog-trot.csv
Normal file
167
results/dreamerv3/dog-trot.csv
Normal file
@@ -0,0 +1,167 @@
|
||||
step,reward,seed
|
||||
0,6.0,3
|
||||
300000,8.5,3
|
||||
400000,7.5,3
|
||||
700000,6.1,3
|
||||
800000,5.7,3
|
||||
1000000,8.3,3
|
||||
1900000,5.8,3
|
||||
2000000,5.1,3
|
||||
2100000,4.1,3
|
||||
2600000,5.0,3
|
||||
2700000,8.5,3
|
||||
2800000,9.7,3
|
||||
3200000,5.7,3
|
||||
3600000,6.8,3
|
||||
4200000,6.2,3
|
||||
4500000,6.0,3
|
||||
4600000,6.4,3
|
||||
4700000,7.0,3
|
||||
4900000,7.7,3
|
||||
5000000,7.9,3
|
||||
5200000,7.0,3
|
||||
5300000,7.0,3
|
||||
5900000,4.6,3
|
||||
6000000,5.8,3
|
||||
6300000,6.3,3
|
||||
6400000,7.3,3
|
||||
6700000,8.5,3
|
||||
6800000,8.3,3
|
||||
6900000,6.2,3
|
||||
7000000,6.6,3
|
||||
7300000,5.3,3
|
||||
7700000,5.6,3
|
||||
7900000,4.9,3
|
||||
8000000,6.4,3
|
||||
8200000,5.6,3
|
||||
8500000,6.1,3
|
||||
8900000,6.2,3
|
||||
9000000,6.1,3
|
||||
9100000,5.8,3
|
||||
9300000,6.0,3
|
||||
9400000,5.5,3
|
||||
9500000,6.0,3
|
||||
9800000,5.9,3
|
||||
9900000,6.8,3
|
||||
10200000,8.1,3
|
||||
10400000,6.7,3
|
||||
10700000,6.1,3
|
||||
10800000,5.0,3
|
||||
11000000,6.7,3
|
||||
11200000,7.6,3
|
||||
11600000,5.2,3
|
||||
11800000,4.7,3
|
||||
11900000,4.7,3
|
||||
12100000,4.8,3
|
||||
12200000,5.0,3
|
||||
12400000,4.8,3
|
||||
12600000,6.6,3
|
||||
12700000,5.9,3
|
||||
13200000,4.1,3
|
||||
13300000,4.1,3
|
||||
13800000,10.1,3
|
||||
300000,3.7,2
|
||||
400000,6.4,2
|
||||
600000,4.7,2
|
||||
800000,5.6,2
|
||||
900000,4.8,2
|
||||
1000000,5.6,2
|
||||
1200000,7.1,2
|
||||
1400000,6.6,2
|
||||
1500000,6.8,2
|
||||
2000000,5.9,2
|
||||
2100000,5.4,2
|
||||
2400000,6.6,2
|
||||
2700000,4.7,2
|
||||
2900000,7.4,2
|
||||
3600000,4.8,2
|
||||
3800000,6.2,2
|
||||
3900000,5.3,2
|
||||
4000000,5.3,2
|
||||
4100000,6.1,2
|
||||
4800000,5.2,2
|
||||
4900000,6.6,2
|
||||
5000000,5.9,2
|
||||
5200000,5.9,2
|
||||
5600000,7.3,2
|
||||
6400000,8.4,2
|
||||
6900000,7.2,2
|
||||
7000000,6.8,2
|
||||
7100000,8.6,2
|
||||
7200000,6.5,2
|
||||
7400000,4.8,2
|
||||
8300000,5.5,2
|
||||
8800000,6.4,2
|
||||
8900000,9.6,2
|
||||
9100000,9.8,2
|
||||
9400000,7.3,2
|
||||
9600000,7.8,2
|
||||
9700000,8.7,2
|
||||
10500000,8.8,2
|
||||
10600000,7.9,2
|
||||
10800000,5.7,2
|
||||
11300000,5.7,2
|
||||
11500000,7.2,2
|
||||
11600000,8.3,2
|
||||
12100000,5.2,2
|
||||
12500000,5.7,2
|
||||
12800000,8.7,2
|
||||
12900000,8.8,2
|
||||
13200000,6.0,2
|
||||
13300000,6.0,2
|
||||
13400000,7.0,2
|
||||
13500000,6.2,2
|
||||
13900000,5.8,2
|
||||
0,6.9,1
|
||||
400000,8.0,1
|
||||
500000,6.4,1
|
||||
900000,8.2,1
|
||||
1200000,8.9,1
|
||||
1800000,4.8,1
|
||||
1900000,5.4,1
|
||||
2000000,8.4,1
|
||||
2100000,9.7,1
|
||||
2500000,8.3,1
|
||||
3000000,6.9,1
|
||||
3200000,5.6,1
|
||||
3300000,5.9,1
|
||||
3500000,6.2,1
|
||||
3600000,5.4,1
|
||||
3700000,6.5,1
|
||||
4000000,7.7,1
|
||||
4200000,4.5,1
|
||||
4800000,6.8,1
|
||||
4900000,5.7,1
|
||||
5200000,4.9,1
|
||||
5500000,5.9,1
|
||||
5700000,6.6,1
|
||||
5900000,6.1,1
|
||||
6200000,4.2,1
|
||||
6500000,7.8,1
|
||||
6600000,7.9,1
|
||||
6700000,7.5,1
|
||||
6900000,6.3,1
|
||||
7500000,7.8,1
|
||||
7700000,7.3,1
|
||||
8000000,10.0,1
|
||||
8500000,6.4,1
|
||||
8600000,6.9,1
|
||||
8900000,7.5,1
|
||||
9200000,5.8,1
|
||||
9600000,8.6,1
|
||||
9700000,7.1,1
|
||||
9900000,9.7,1
|
||||
10000000,9.3,1
|
||||
10200000,7.0,1
|
||||
10500000,7.9,1
|
||||
10600000,7.8,1
|
||||
10700000,7.4,1
|
||||
11200000,6.4,1
|
||||
11600000,6.9,1
|
||||
11700000,6.2,1
|
||||
11800000,5.7,1
|
||||
12000000,5.7,1
|
||||
12800000,5.8,1
|
||||
13000000,6.6,1
|
||||
13300000,6.0,1
|
||||
13700000,7.7,1
|
||||
|
148
results/dreamerv3/dog-walk.csv
Normal file
148
results/dreamerv3/dog-walk.csv
Normal file
@@ -0,0 +1,148 @@
|
||||
step,reward,seed
|
||||
0,9.0,1
|
||||
300000,11.3,1
|
||||
500000,7.3,1
|
||||
900000,7.2,1
|
||||
1100000,4.9,1
|
||||
2600000,7.9,1
|
||||
2900000,6.7,1
|
||||
3100000,8.8,1
|
||||
3200000,8.4,1
|
||||
3500000,6.3,1
|
||||
3800000,8.2,1
|
||||
4400000,6.5,1
|
||||
4600000,6.7,1
|
||||
4700000,6.9,1
|
||||
4800000,6.7,1
|
||||
5200000,8.3,1
|
||||
5400000,6.5,1
|
||||
6000000,8.5,1
|
||||
6300000,6.6,1
|
||||
6400000,5.8,1
|
||||
6500000,8.1,1
|
||||
6700000,7.0,1
|
||||
6800000,7.2,1
|
||||
6900000,7.9,1
|
||||
7300000,7.6,1
|
||||
7400000,5.7,1
|
||||
8000000,10.5,1
|
||||
8100000,9.6,1
|
||||
8400000,6.5,1
|
||||
8800000,5.9,1
|
||||
9500000,6.1,1
|
||||
9700000,11.2,1
|
||||
9800000,11.9,1
|
||||
9900000,10.6,1
|
||||
10200000,5.9,1
|
||||
10700000,6.1,1
|
||||
11200000,7.5,1
|
||||
11300000,9.3,1
|
||||
11500000,7.1,1
|
||||
11600000,4.6,1
|
||||
11700000,5.0,1
|
||||
11900000,9.8,1
|
||||
12000000,9.2,1
|
||||
12100000,8.2,1
|
||||
12400000,8.0,1
|
||||
12600000,8.3,1
|
||||
13100000,10.0,1
|
||||
13200000,10.7,1
|
||||
13400000,10.0,1
|
||||
13700000,9.0,1
|
||||
13800000,11.9,1
|
||||
13900000,9.0,1
|
||||
200000,3.8,2
|
||||
500000,5.5,2
|
||||
800000,6.0,2
|
||||
900000,6.4,2
|
||||
1100000,7.6,2
|
||||
1200000,6.7,2
|
||||
1300000,5.2,2
|
||||
1800000,9.7,2
|
||||
1900000,7.1,2
|
||||
2000000,4.4,2
|
||||
2300000,6.6,2
|
||||
2900000,8.7,2
|
||||
3100000,7.6,2
|
||||
3200000,9.1,2
|
||||
3500000,8.0,2
|
||||
3700000,5.6,2
|
||||
4100000,7.0,2
|
||||
4400000,6.7,2
|
||||
4600000,6.2,2
|
||||
4700000,6.3,2
|
||||
4900000,6.1,2
|
||||
5200000,6.3,2
|
||||
5700000,8.5,2
|
||||
5800000,9.5,2
|
||||
5900000,10.5,2
|
||||
6100000,7.3,2
|
||||
6200000,7.4,2
|
||||
6300000,7.2,2
|
||||
7400000,6.2,2
|
||||
7600000,7.1,2
|
||||
8000000,5.3,2
|
||||
8800000,5.1,2
|
||||
8900000,6.0,2
|
||||
9300000,6.5,2
|
||||
9500000,9.4,2
|
||||
10200000,4.3,2
|
||||
10700000,8.3,2
|
||||
10800000,7.4,2
|
||||
11100000,6.6,2
|
||||
11600000,10.2,2
|
||||
11700000,11.2,2
|
||||
12500000,5.3,2
|
||||
12600000,6.5,2
|
||||
12800000,7.7,2
|
||||
12900000,7.6,2
|
||||
13000000,7.3,2
|
||||
13600000,10.0,2
|
||||
13700000,8.1,2
|
||||
13900000,8.3,2
|
||||
300000,6.4,3
|
||||
500000,6.7,3
|
||||
800000,7.1,3
|
||||
1000000,7.1,3
|
||||
1700000,6.7,3
|
||||
1800000,6.7,3
|
||||
2100000,7.5,3
|
||||
2300000,7.5,3
|
||||
2600000,7.8,3
|
||||
2900000,8.9,3
|
||||
3000000,9.5,3
|
||||
3100000,10.3,3
|
||||
3800000,7.1,3
|
||||
4000000,7.0,3
|
||||
4600000,9.0,3
|
||||
4800000,7.6,3
|
||||
4900000,5.3,3
|
||||
5100000,8.8,3
|
||||
6100000,6.7,3
|
||||
6400000,7.8,3
|
||||
6900000,7.0,3
|
||||
7200000,7.8,3
|
||||
7500000,7.4,3
|
||||
7600000,6.5,3
|
||||
7700000,6.1,3
|
||||
8400000,8.5,3
|
||||
8500000,5.9,3
|
||||
9200000,8.6,3
|
||||
9300000,7.4,3
|
||||
9400000,7.3,3
|
||||
9500000,6.8,3
|
||||
9600000,6.2,3
|
||||
10200000,6.5,3
|
||||
10700000,7.9,3
|
||||
10800000,6.8,3
|
||||
11100000,6.9,3
|
||||
11200000,6.4,3
|
||||
11300000,6.5,3
|
||||
11700000,6.0,3
|
||||
12200000,6.2,3
|
||||
12600000,7.1,3
|
||||
13000000,5.5,3
|
||||
13100000,5.9,3
|
||||
13200000,5.4,3
|
||||
13500000,7.1,3
|
||||
13600000,7.9,3
|
||||
|
119
results/dreamerv3/finger-spin.csv
Normal file
119
results/dreamerv3/finger-spin.csv
Normal file
@@ -0,0 +1,119 @@
|
||||
step,reward,seed
|
||||
0,0.0,3
|
||||
100000,338.4,3
|
||||
200000,609.0,3
|
||||
300000,713.6,3
|
||||
400000,372.7,3
|
||||
500000,797.4,3
|
||||
600000,797.2,3
|
||||
700000,751.4,3
|
||||
800000,828.6,3
|
||||
900000,808.1,3
|
||||
1000000,807.6,3
|
||||
1100000,850.5,3
|
||||
1200000,856.4,3
|
||||
1300000,852.9,3
|
||||
1400000,831.6,3
|
||||
1500000,818.3,3
|
||||
1600000,851.0,3
|
||||
1700000,835.2,3
|
||||
1800000,868.9,3
|
||||
1900000,847.6,3
|
||||
2000000,841.9,3
|
||||
2100000,851.0,3
|
||||
2200000,858.9,3
|
||||
2300000,864.2,3
|
||||
2400000,863.4,3
|
||||
2500000,865.2,3
|
||||
2600000,789.2,3
|
||||
2700000,712.2,3
|
||||
2800000,862.3,3
|
||||
2900000,853.7,3
|
||||
3000000,853.4,3
|
||||
3100000,858.0,3
|
||||
3200000,848.1,3
|
||||
3300000,855.1,3
|
||||
3400000,836.6,3
|
||||
3500000,851.8,3
|
||||
3600000,869.8,3
|
||||
3700000,866.0,3
|
||||
3800000,858.3,3
|
||||
3900000,863.6,3
|
||||
0,20.3,1
|
||||
100000,265.3,1
|
||||
200000,211.5,1
|
||||
300000,283.9,1
|
||||
400000,561.9,1
|
||||
500000,678.2,1
|
||||
600000,774.2,1
|
||||
700000,632.2,1
|
||||
800000,737.0,1
|
||||
900000,791.6,1
|
||||
1000000,779.2,1
|
||||
1100000,841.8,1
|
||||
1200000,740.1,1
|
||||
1300000,740.2,1
|
||||
1400000,707.6,1
|
||||
1500000,753.8,1
|
||||
1600000,806.0,1
|
||||
1700000,816.9,1
|
||||
1800000,764.0,1
|
||||
1900000,756.9,1
|
||||
2000000,732.9,1
|
||||
2100000,755.0,1
|
||||
2200000,760.7,1
|
||||
2300000,670.2,1
|
||||
2400000,629.0,1
|
||||
2500000,797.4,1
|
||||
2600000,743.8,1
|
||||
2700000,833.6,1
|
||||
2800000,772.4,1
|
||||
2900000,758.1,1
|
||||
3000000,744.3,1
|
||||
3100000,600.1,1
|
||||
3200000,598.7,1
|
||||
3300000,743.7,1
|
||||
3400000,703.4,1
|
||||
3500000,680.1,1
|
||||
3600000,648.3,1
|
||||
3700000,683.6,1
|
||||
3800000,718.2,1
|
||||
3900000,617.6,1
|
||||
0,0.7,2
|
||||
100000,381.1,2
|
||||
200000,705.5,2
|
||||
300000,715.3,2
|
||||
400000,740.2,2
|
||||
500000,779.0,2
|
||||
600000,751.2,2
|
||||
700000,717.1,2
|
||||
800000,799.5,2
|
||||
900000,721.6,2
|
||||
1000000,687.3,2
|
||||
1100000,723.1,2
|
||||
1200000,762.8,2
|
||||
1300000,672.4,2
|
||||
1500000,300.2,2
|
||||
1600000,347.7,2
|
||||
1700000,587.1,2
|
||||
1800000,663.4,2
|
||||
1900000,647.4,2
|
||||
2000000,409.3,2
|
||||
2100000,391.5,2
|
||||
2200000,478.2,2
|
||||
2300000,793.4,2
|
||||
2400000,819.6,2
|
||||
2500000,572.7,2
|
||||
2600000,485.2,2
|
||||
2700000,579.9,2
|
||||
2800000,557.3,2
|
||||
2900000,553.3,2
|
||||
3000000,267.6,2
|
||||
3100000,347.7,2
|
||||
3200000,349.0,2
|
||||
3300000,750.4,2
|
||||
3400000,305.4,2
|
||||
3500000,339.8,2
|
||||
3600000,338.6,2
|
||||
3700000,347.6,2
|
||||
3800000,589.3,2
|
||||
|
116
results/dreamerv3/finger-turn-easy.csv
Normal file
116
results/dreamerv3/finger-turn-easy.csv
Normal file
@@ -0,0 +1,116 @@
|
||||
step,reward,seed
|
||||
100000,358.2,3
|
||||
200000,485.0,3
|
||||
300000,590.4,3
|
||||
400000,814.8,3
|
||||
500000,900.2,3
|
||||
600000,878.3,3
|
||||
700000,813.0,3
|
||||
800000,921.3,3
|
||||
900000,943.7,3
|
||||
1000000,922.4,3
|
||||
1100000,924.3,3
|
||||
1200000,955.4,3
|
||||
1300000,897.2,3
|
||||
1400000,931.6,3
|
||||
1500000,933.1,3
|
||||
1600000,869.4,3
|
||||
1700000,960.7,3
|
||||
1800000,920.2,3
|
||||
1900000,918.7,3
|
||||
2000000,922.2,3
|
||||
2100000,917.7,3
|
||||
2200000,961.3,3
|
||||
2300000,942.2,3
|
||||
2400000,943.5,3
|
||||
2500000,932.3,3
|
||||
2600000,912.2,3
|
||||
2700000,970.3,3
|
||||
2800000,891.2,3
|
||||
2900000,852.2,3
|
||||
3000000,936.8,3
|
||||
3100000,913.3,3
|
||||
3200000,930.1,3
|
||||
3300000,878.4,3
|
||||
3400000,918.3,3
|
||||
3500000,935.0,3
|
||||
3600000,962.9,3
|
||||
3700000,934.4,3
|
||||
3800000,955.0,3
|
||||
3900000,823.5,3
|
||||
0,0.0,1
|
||||
100000,204.3,1
|
||||
200000,764.7,1
|
||||
300000,827.7,1
|
||||
400000,863.5,1
|
||||
500000,931.2,1
|
||||
600000,900.0,1
|
||||
700000,900.8,1
|
||||
800000,880.6,1
|
||||
900000,872.5,1
|
||||
1000000,922.9,1
|
||||
1100000,909.7,1
|
||||
1200000,934.5,1
|
||||
1300000,923.1,1
|
||||
1400000,828.5,1
|
||||
1500000,870.5,1
|
||||
1600000,877.0,1
|
||||
1700000,924.7,1
|
||||
1800000,954.9,1
|
||||
1900000,872.4,1
|
||||
2000000,930.4,1
|
||||
2100000,921.9,1
|
||||
2200000,928.4,1
|
||||
2300000,951.1,1
|
||||
2400000,928.6,1
|
||||
2500000,931.6,1
|
||||
2600000,928.6,1
|
||||
2700000,901.4,1
|
||||
2800000,906.8,1
|
||||
2900000,892.4,1
|
||||
3000000,904.8,1
|
||||
3100000,947.8,1
|
||||
3300000,941.8,1
|
||||
3400000,961.8,1
|
||||
3500000,953.3,1
|
||||
3600000,898.3,1
|
||||
3700000,926.8,1
|
||||
3800000,950.0,1
|
||||
3900000,927.7,1
|
||||
0,666.7,2
|
||||
100000,122.5,2
|
||||
200000,376.8,2
|
||||
300000,642.5,2
|
||||
400000,821.8,2
|
||||
500000,910.2,2
|
||||
600000,847.1,2
|
||||
800000,871.6,2
|
||||
900000,911.8,2
|
||||
1000000,892.2,2
|
||||
1100000,939.8,2
|
||||
1300000,857.4,2
|
||||
1400000,900.4,2
|
||||
1500000,965.9,2
|
||||
1600000,943.5,2
|
||||
1700000,940.5,2
|
||||
1800000,894.8,2
|
||||
1900000,935.0,2
|
||||
2000000,910.8,2
|
||||
2100000,898.2,2
|
||||
2200000,934.0,2
|
||||
2300000,898.5,2
|
||||
2400000,943.7,2
|
||||
2500000,931.6,2
|
||||
2600000,922.5,2
|
||||
2700000,898.0,2
|
||||
2800000,907.7,2
|
||||
2900000,935.5,2
|
||||
3000000,938.3,2
|
||||
3200000,940.4,2
|
||||
3300000,800.7,2
|
||||
3400000,937.1,2
|
||||
3500000,936.9,2
|
||||
3600000,902.1,2
|
||||
3700000,916.9,2
|
||||
3800000,942.8,2
|
||||
3900000,921.8,2
|
||||
|
118
results/dreamerv3/finger-turn-hard.csv
Normal file
118
results/dreamerv3/finger-turn-hard.csv
Normal file
@@ -0,0 +1,118 @@
|
||||
step,reward,seed
|
||||
0,84.3,3
|
||||
100000,285.9,3
|
||||
200000,266.5,3
|
||||
300000,467.5,3
|
||||
400000,680.2,3
|
||||
500000,833.9,3
|
||||
700000,895.5,3
|
||||
800000,822.5,3
|
||||
900000,915.8,3
|
||||
1000000,783.5,3
|
||||
1100000,822.6,3
|
||||
1200000,875.5,3
|
||||
1300000,890.2,3
|
||||
1400000,909.1,3
|
||||
1500000,884.0,3
|
||||
1600000,937.0,3
|
||||
1700000,942.6,3
|
||||
1800000,821.6,3
|
||||
1900000,952.5,3
|
||||
2000000,916.7,3
|
||||
2100000,875.8,3
|
||||
2200000,918.6,3
|
||||
2300000,903.3,3
|
||||
2400000,935.4,3
|
||||
2500000,921.2,3
|
||||
2600000,858.2,3
|
||||
2700000,907.9,3
|
||||
2800000,886.6,3
|
||||
2900000,854.6,3
|
||||
3000000,901.7,3
|
||||
3100000,926.5,3
|
||||
3200000,954.5,3
|
||||
3300000,926.6,3
|
||||
3400000,896.3,3
|
||||
3500000,921.4,3
|
||||
3600000,937.4,3
|
||||
3700000,911.4,3
|
||||
3800000,934.3,3
|
||||
3900000,948.9,3
|
||||
0,0.0,1
|
||||
100000,100.3,1
|
||||
200000,310.9,1
|
||||
300000,389.0,1
|
||||
400000,879.2,1
|
||||
500000,836.0,1
|
||||
600000,845.5,1
|
||||
700000,894.7,1
|
||||
800000,814.1,1
|
||||
900000,833.8,1
|
||||
1000000,877.8,1
|
||||
1100000,913.3,1
|
||||
1200000,914.0,1
|
||||
1300000,900.0,1
|
||||
1400000,897.9,1
|
||||
1500000,902.9,1
|
||||
1600000,905.6,1
|
||||
1700000,894.5,1
|
||||
1800000,908.4,1
|
||||
1900000,883.0,1
|
||||
2000000,859.1,1
|
||||
2100000,667.3,1
|
||||
2200000,898.9,1
|
||||
2300000,921.6,1
|
||||
2400000,862.4,1
|
||||
2600000,934.2,1
|
||||
2700000,913.1,1
|
||||
2900000,903.2,1
|
||||
3000000,911.4,1
|
||||
3100000,833.4,1
|
||||
3200000,912.5,1
|
||||
3300000,931.8,1
|
||||
3400000,904.9,1
|
||||
3500000,926.8,1
|
||||
3600000,910.3,1
|
||||
3700000,799.3,1
|
||||
3800000,889.9,1
|
||||
3900000,904.1,1
|
||||
0,0.0,2
|
||||
100000,183.3,2
|
||||
200000,555.6,2
|
||||
300000,844.5,2
|
||||
400000,815.6,2
|
||||
500000,743.1,2
|
||||
600000,736.9,2
|
||||
700000,873.8,2
|
||||
800000,846.4,2
|
||||
900000,887.0,2
|
||||
1000000,794.9,2
|
||||
1100000,868.2,2
|
||||
1200000,906.8,2
|
||||
1300000,869.6,2
|
||||
1400000,923.5,2
|
||||
1500000,892.4,2
|
||||
1600000,896.9,2
|
||||
1700000,909.1,2
|
||||
1800000,912.7,2
|
||||
1900000,900.3,2
|
||||
2000000,917.0,2
|
||||
2100000,830.9,2
|
||||
2200000,958.9,2
|
||||
2300000,895.3,2
|
||||
2400000,820.5,2
|
||||
2500000,803.6,2
|
||||
2600000,873.2,2
|
||||
2700000,896.6,2
|
||||
2800000,876.6,2
|
||||
2900000,917.0,2
|
||||
3000000,902.6,2
|
||||
3100000,916.3,2
|
||||
3200000,918.0,2
|
||||
3300000,939.3,2
|
||||
3400000,939.9,2
|
||||
3500000,932.3,2
|
||||
3600000,911.6,2
|
||||
3700000,907.3,2
|
||||
3800000,912.7,2
|
||||
3900000,927.7,2
|
||||
|
117
results/dreamerv3/fish-swim.csv
Normal file
117
results/dreamerv3/fish-swim.csv
Normal file
@@ -0,0 +1,117 @@
|
||||
step,reward,seed
|
||||
100000,97.8,2
|
||||
200000,115.1,2
|
||||
300000,412.1,2
|
||||
400000,520.1,2
|
||||
500000,654.8,2
|
||||
600000,733.9,2
|
||||
700000,731.7,2
|
||||
800000,637.3,2
|
||||
900000,703.6,2
|
||||
1000000,766.0,2
|
||||
1100000,684.2,2
|
||||
1200000,645.1,2
|
||||
1300000,780.5,2
|
||||
1400000,720.3,2
|
||||
1500000,782.7,2
|
||||
1600000,732.2,2
|
||||
1700000,709.5,2
|
||||
1800000,689.3,2
|
||||
1900000,593.9,2
|
||||
2000000,791.2,2
|
||||
2100000,808.4,2
|
||||
2200000,794.8,2
|
||||
2300000,757.2,2
|
||||
2400000,764.4,2
|
||||
2500000,798.9,2
|
||||
2600000,826.2,2
|
||||
2700000,748.5,2
|
||||
2800000,773.9,2
|
||||
2900000,776.7,2
|
||||
3000000,684.6,2
|
||||
3100000,789.1,2
|
||||
3200000,811.6,2
|
||||
3300000,732.1,2
|
||||
3400000,816.5,2
|
||||
3500000,808.5,2
|
||||
3600000,836.4,2
|
||||
3700000,763.2,2
|
||||
3800000,805.9,2
|
||||
3900000,822.8,2
|
||||
100000,114.7,3
|
||||
200000,281.6,3
|
||||
300000,362.5,3
|
||||
400000,543.3,3
|
||||
500000,589.9,3
|
||||
600000,666.6,3
|
||||
700000,732.4,3
|
||||
800000,744.7,3
|
||||
900000,721.9,3
|
||||
1000000,704.7,3
|
||||
1100000,742.7,3
|
||||
1200000,711.7,3
|
||||
1300000,755.2,3
|
||||
1400000,729.1,3
|
||||
1500000,686.9,3
|
||||
1600000,768.2,3
|
||||
1700000,802.7,3
|
||||
1800000,686.9,3
|
||||
1900000,807.6,3
|
||||
2000000,745.7,3
|
||||
2100000,751.4,3
|
||||
2200000,749.7,3
|
||||
2300000,784.5,3
|
||||
2400000,746.7,3
|
||||
2500000,773.3,3
|
||||
2600000,755.7,3
|
||||
2700000,582.2,3
|
||||
2800000,739.3,3
|
||||
2900000,810.3,3
|
||||
3000000,706.0,3
|
||||
3100000,807.4,3
|
||||
3200000,794.5,3
|
||||
3300000,786.3,3
|
||||
3400000,827.0,3
|
||||
3500000,778.3,3
|
||||
3600000,787.6,3
|
||||
3800000,810.4,3
|
||||
3900000,783.1,3
|
||||
100000,152.3,1
|
||||
200000,154.7,1
|
||||
300000,531.0,1
|
||||
400000,522.8,1
|
||||
500000,561.0,1
|
||||
600000,733.1,1
|
||||
700000,623.0,1
|
||||
800000,704.1,1
|
||||
900000,716.8,1
|
||||
1000000,748.4,1
|
||||
1100000,774.9,1
|
||||
1200000,752.0,1
|
||||
1300000,778.7,1
|
||||
1400000,788.7,1
|
||||
1500000,766.5,1
|
||||
1600000,769.8,1
|
||||
1700000,763.8,1
|
||||
1800000,717.6,1
|
||||
1900000,762.7,1
|
||||
2000000,768.2,1
|
||||
2100000,774.5,1
|
||||
2200000,753.0,1
|
||||
2300000,735.4,1
|
||||
2400000,743.3,1
|
||||
2500000,812.2,1
|
||||
2600000,772.3,1
|
||||
2700000,726.0,1
|
||||
2800000,781.0,1
|
||||
2900000,765.5,1
|
||||
3000000,759.6,1
|
||||
3100000,778.6,1
|
||||
3200000,803.7,1
|
||||
3300000,734.0,1
|
||||
3400000,796.6,1
|
||||
3500000,742.6,1
|
||||
3600000,789.0,1
|
||||
3700000,788.6,1
|
||||
3800000,761.2,1
|
||||
3900000,804.1,1
|
||||
|
114
results/dreamerv3/hopper-hop-backwards.csv
Normal file
114
results/dreamerv3/hopper-hop-backwards.csv
Normal file
@@ -0,0 +1,114 @@
|
||||
step,reward,seed
|
||||
0,0.0,3
|
||||
100000,192.0,3
|
||||
200000,363.3,3
|
||||
300000,442.1,3
|
||||
400000,434.9,3
|
||||
500000,449.0,3
|
||||
600000,469.7,3
|
||||
700000,469.1,3
|
||||
800000,487.8,3
|
||||
900000,500.9,3
|
||||
1000000,472.6,3
|
||||
1100000,499.0,3
|
||||
1200000,545.0,3
|
||||
1300000,599.1,3
|
||||
1400000,664.2,3
|
||||
1500000,554.5,3
|
||||
1600000,678.5,3
|
||||
1700000,703.6,3
|
||||
1800000,596.0,3
|
||||
1900000,615.5,3
|
||||
2000000,670.3,3
|
||||
2100000,576.0,3
|
||||
2200000,524.4,3
|
||||
2300000,634.8,3
|
||||
2400000,641.3,3
|
||||
2500000,693.3,3
|
||||
2600000,494.3,3
|
||||
2700000,642.4,3
|
||||
2800000,659.7,3
|
||||
2900000,652.2,3
|
||||
3000000,560.3,3
|
||||
3100000,639.0,3
|
||||
3200000,650.6,3
|
||||
3300000,671.4,3
|
||||
3400000,663.1,3
|
||||
3500000,597.5,3
|
||||
3600000,652.2,3
|
||||
3700000,664.2,3
|
||||
3800000,620.7,3
|
||||
3900000,712.2,3
|
||||
100000,33.3,1
|
||||
200000,378.9,1
|
||||
400000,374.0,1
|
||||
500000,416.6,1
|
||||
600000,470.5,1
|
||||
700000,403.4,1
|
||||
800000,521.7,1
|
||||
900000,553.5,1
|
||||
1000000,476.6,1
|
||||
1100000,448.0,1
|
||||
1200000,553.7,1
|
||||
1300000,489.4,1
|
||||
1400000,564.0,1
|
||||
1500000,589.3,1
|
||||
1600000,615.9,1
|
||||
1800000,569.8,1
|
||||
1900000,474.2,1
|
||||
2000000,586.0,1
|
||||
2100000,572.5,1
|
||||
2200000,634.0,1
|
||||
2300000,660.6,1
|
||||
2400000,659.6,1
|
||||
2500000,626.0,1
|
||||
2600000,613.2,1
|
||||
2700000,565.2,1
|
||||
2800000,652.4,1
|
||||
2900000,608.0,1
|
||||
3000000,656.6,1
|
||||
3100000,674.2,1
|
||||
3200000,620.7,1
|
||||
3300000,594.0,1
|
||||
3400000,591.2,1
|
||||
3500000,593.5,1
|
||||
3600000,642.3,1
|
||||
3700000,691.4,1
|
||||
3800000,476.1,1
|
||||
3900000,459.2,1
|
||||
0,0.1,2
|
||||
100000,46.0,2
|
||||
200000,76.5,2
|
||||
300000,162.1,2
|
||||
400000,246.1,2
|
||||
500000,263.3,2
|
||||
600000,256.9,2
|
||||
700000,258.9,2
|
||||
1000000,396.1,2
|
||||
1200000,390.2,2
|
||||
1300000,327.4,2
|
||||
1400000,369.9,2
|
||||
1500000,393.7,2
|
||||
1600000,351.4,2
|
||||
1700000,440.9,2
|
||||
1800000,544.8,2
|
||||
1900000,524.8,2
|
||||
2000000,476.1,2
|
||||
2100000,598.9,2
|
||||
2200000,615.7,2
|
||||
2300000,586.9,2
|
||||
2500000,634.6,2
|
||||
2600000,661.7,2
|
||||
2700000,683.5,2
|
||||
2800000,694.1,2
|
||||
2900000,639.7,2
|
||||
3000000,641.1,2
|
||||
3100000,639.9,2
|
||||
3200000,644.1,2
|
||||
3300000,613.9,2
|
||||
3400000,671.2,2
|
||||
3500000,651.1,2
|
||||
3600000,742.6,2
|
||||
3700000,654.0,2
|
||||
3800000,710.4,2
|
||||
3900000,663.5,2
|
||||
|
116
results/dreamerv3/hopper-hop.csv
Normal file
116
results/dreamerv3/hopper-hop.csv
Normal file
@@ -0,0 +1,116 @@
|
||||
step,reward,seed
|
||||
0,0.0,3
|
||||
100000,0.1,3
|
||||
200000,27.1,3
|
||||
300000,57.2,3
|
||||
400000,105.0,3
|
||||
500000,145.3,3
|
||||
600000,166.0,3
|
||||
700000,145.6,3
|
||||
800000,180.4,3
|
||||
900000,219.8,3
|
||||
1000000,234.5,3
|
||||
1200000,277.3,3
|
||||
1300000,218.9,3
|
||||
1400000,185.3,3
|
||||
1500000,270.3,3
|
||||
1600000,296.2,3
|
||||
1700000,315.3,3
|
||||
1800000,334.7,3
|
||||
1900000,303.0,3
|
||||
2100000,304.4,3
|
||||
2200000,279.3,3
|
||||
2300000,299.1,3
|
||||
2400000,318.5,3
|
||||
2500000,308.3,3
|
||||
2600000,233.2,3
|
||||
2700000,275.8,3
|
||||
2800000,312.0,3
|
||||
2900000,317.2,3
|
||||
3000000,381.7,3
|
||||
3100000,292.0,3
|
||||
3200000,358.5,3
|
||||
3300000,335.6,3
|
||||
3400000,393.1,3
|
||||
3500000,278.7,3
|
||||
3600000,381.4,3
|
||||
3700000,399.2,3
|
||||
3800000,385.2,3
|
||||
3900000,397.9,3
|
||||
100000,0.0,2
|
||||
200000,5.1,2
|
||||
300000,42.4,2
|
||||
400000,147.7,2
|
||||
500000,180.9,2
|
||||
600000,170.1,2
|
||||
700000,192.0,2
|
||||
800000,174.8,2
|
||||
900000,196.3,2
|
||||
1000000,168.7,2
|
||||
1100000,182.2,2
|
||||
1300000,177.8,2
|
||||
1400000,207.2,2
|
||||
1500000,213.6,2
|
||||
1600000,193.6,2
|
||||
1700000,204.8,2
|
||||
1800000,216.2,2
|
||||
1900000,208.8,2
|
||||
2000000,246.3,2
|
||||
2100000,271.1,2
|
||||
2200000,277.9,2
|
||||
2300000,266.9,2
|
||||
2400000,271.5,2
|
||||
2500000,238.6,2
|
||||
2600000,260.3,2
|
||||
2700000,248.4,2
|
||||
2800000,255.2,2
|
||||
2900000,259.6,2
|
||||
3000000,245.3,2
|
||||
3100000,222.6,2
|
||||
3200000,219.6,2
|
||||
3300000,202.9,2
|
||||
3400000,254.3,2
|
||||
3500000,245.1,2
|
||||
3600000,198.7,2
|
||||
3700000,133.4,2
|
||||
3800000,267.8,2
|
||||
3900000,246.6,2
|
||||
0,0.0,1
|
||||
100000,28.9,1
|
||||
200000,121.3,1
|
||||
300000,133.1,1
|
||||
400000,148.3,1
|
||||
500000,162.0,1
|
||||
600000,137.9,1
|
||||
700000,177.1,1
|
||||
800000,170.2,1
|
||||
900000,202.6,1
|
||||
1000000,196.5,1
|
||||
1100000,232.7,1
|
||||
1200000,239.3,1
|
||||
1300000,202.1,1
|
||||
1400000,251.2,1
|
||||
1500000,236.6,1
|
||||
1600000,231.3,1
|
||||
1700000,215.4,1
|
||||
1800000,243.7,1
|
||||
1900000,263.1,1
|
||||
2000000,239.4,1
|
||||
2100000,261.4,1
|
||||
2200000,279.8,1
|
||||
2300000,287.6,1
|
||||
2400000,241.9,1
|
||||
2500000,286.7,1
|
||||
2600000,275.8,1
|
||||
2700000,258.4,1
|
||||
2800000,223.8,1
|
||||
2900000,203.8,1
|
||||
3000000,262.8,1
|
||||
3100000,231.0,1
|
||||
3200000,200.8,1
|
||||
3300000,241.8,1
|
||||
3400000,257.3,1
|
||||
3600000,278.9,1
|
||||
3700000,244.0,1
|
||||
3800000,276.4,1
|
||||
3900000,212.1,1
|
||||
|
114
results/dreamerv3/hopper-stand.csv
Normal file
114
results/dreamerv3/hopper-stand.csv
Normal file
@@ -0,0 +1,114 @@
|
||||
step,reward,seed
|
||||
0,7.2,3
|
||||
100000,11.6,3
|
||||
200000,237.2,3
|
||||
300000,362.5,3
|
||||
400000,414.6,3
|
||||
500000,590.4,3
|
||||
600000,701.7,3
|
||||
700000,527.2,3
|
||||
800000,795.9,3
|
||||
900000,769.8,3
|
||||
1000000,841.5,3
|
||||
1100000,858.4,3
|
||||
1300000,868.3,3
|
||||
1400000,719.7,3
|
||||
1500000,810.6,3
|
||||
1600000,800.5,3
|
||||
1700000,799.1,3
|
||||
1800000,742.8,3
|
||||
1900000,876.2,3
|
||||
2000000,859.9,3
|
||||
2100000,845.1,3
|
||||
2200000,854.1,3
|
||||
2300000,778.6,3
|
||||
2400000,850.1,3
|
||||
2500000,843.2,3
|
||||
2600000,801.9,3
|
||||
2700000,831.0,3
|
||||
2800000,769.6,3
|
||||
2900000,831.4,3
|
||||
3000000,887.8,3
|
||||
3200000,888.3,3
|
||||
3300000,866.9,3
|
||||
3400000,849.7,3
|
||||
3500000,875.4,3
|
||||
3600000,841.8,3
|
||||
3700000,876.6,3
|
||||
3800000,842.6,3
|
||||
3900000,819.0,3
|
||||
0,0.0,1
|
||||
100000,394.0,1
|
||||
200000,589.0,1
|
||||
300000,644.8,1
|
||||
400000,804.5,1
|
||||
500000,822.9,1
|
||||
600000,747.8,1
|
||||
700000,825.8,1
|
||||
800000,853.6,1
|
||||
900000,844.9,1
|
||||
1000000,862.1,1
|
||||
1100000,852.3,1
|
||||
1200000,801.9,1
|
||||
1300000,829.4,1
|
||||
1400000,850.2,1
|
||||
1500000,840.3,1
|
||||
1600000,743.0,1
|
||||
1800000,677.2,1
|
||||
1900000,907.7,1
|
||||
2000000,825.3,1
|
||||
2100000,824.9,1
|
||||
2200000,873.9,1
|
||||
2300000,848.9,1
|
||||
2400000,896.4,1
|
||||
2500000,809.5,1
|
||||
2600000,860.2,1
|
||||
2700000,844.7,1
|
||||
2800000,888.7,1
|
||||
2900000,783.3,1
|
||||
3200000,858.7,1
|
||||
3300000,880.6,1
|
||||
3400000,869.8,1
|
||||
3500000,832.0,1
|
||||
3600000,831.2,1
|
||||
3700000,883.3,1
|
||||
3800000,853.3,1
|
||||
3900000,903.4,1
|
||||
100000,45.3,2
|
||||
200000,115.6,2
|
||||
300000,312.4,2
|
||||
400000,357.6,2
|
||||
500000,408.6,2
|
||||
600000,501.3,2
|
||||
700000,786.2,2
|
||||
800000,787.7,2
|
||||
900000,765.3,2
|
||||
1000000,760.3,2
|
||||
1100000,777.6,2
|
||||
1300000,685.2,2
|
||||
1400000,807.6,2
|
||||
1500000,785.2,2
|
||||
1600000,777.0,2
|
||||
1700000,850.7,2
|
||||
1800000,830.5,2
|
||||
1900000,850.6,2
|
||||
2000000,787.5,2
|
||||
2100000,685.3,2
|
||||
2200000,665.3,2
|
||||
2300000,781.9,2
|
||||
2400000,866.5,2
|
||||
2500000,828.0,2
|
||||
2600000,882.5,2
|
||||
2700000,863.4,2
|
||||
2800000,874.2,2
|
||||
2900000,810.6,2
|
||||
3000000,761.6,2
|
||||
3100000,826.5,2
|
||||
3200000,842.9,2
|
||||
3300000,819.0,2
|
||||
3400000,778.8,2
|
||||
3500000,847.6,2
|
||||
3600000,857.1,2
|
||||
3700000,804.4,2
|
||||
3800000,753.2,2
|
||||
3900000,854.7,2
|
||||
|
149
results/dreamerv3/humanoid-run.csv
Normal file
149
results/dreamerv3/humanoid-run.csv
Normal file
@@ -0,0 +1,149 @@
|
||||
step,reward,seed
|
||||
0,1.1,3
|
||||
100000,1.2,3
|
||||
200000,0.9,3
|
||||
300000,0.9,3
|
||||
400000,0.7,3
|
||||
600000,0.7,3
|
||||
1300000,0.3,3
|
||||
1500000,0.4,3
|
||||
1700000,0.7,3
|
||||
1800000,0.7,3
|
||||
1900000,0.4,3
|
||||
2200000,0.9,3
|
||||
3000000,33.8,3
|
||||
3200000,55.1,3
|
||||
3600000,78.3,3
|
||||
4100000,104.2,3
|
||||
4500000,114.6,3
|
||||
4600000,115.5,3
|
||||
4900000,126.6,3
|
||||
5000000,138.0,3
|
||||
5300000,132.1,3
|
||||
5500000,155.5,3
|
||||
5700000,182.4,3
|
||||
5800000,178.2,3
|
||||
6300000,257.8,3
|
||||
6400000,209.6,3
|
||||
6700000,268.0,3
|
||||
6900000,255.4,3
|
||||
7100000,262.5,3
|
||||
7200000,288.1,3
|
||||
7300000,302.5,3
|
||||
7900000,322.2,3
|
||||
8100000,271.2,3
|
||||
8400000,326.4,3
|
||||
9000000,335.7,3
|
||||
9100000,358.2,3
|
||||
9200000,372.6,3
|
||||
10100000,395.5,3
|
||||
10200000,363.6,3
|
||||
10300000,394.6,3
|
||||
10600000,455.5,3
|
||||
10800000,438.1,3
|
||||
11100000,413.9,3
|
||||
11300000,312.9,3
|
||||
11800000,350.1,3
|
||||
12000000,319.7,3
|
||||
12200000,335.0,3
|
||||
12500000,313.5,3
|
||||
12700000,434.7,3
|
||||
12900000,441.3,3
|
||||
13300000,379.6,3
|
||||
13500000,415.2,3
|
||||
13800000,381.3,3
|
||||
13900000,381.0,3
|
||||
300000,0.7,1
|
||||
400000,0.5,1
|
||||
600000,0.7,1
|
||||
800000,0.9,1
|
||||
1000000,0.8,1
|
||||
1400000,1.1,1
|
||||
2000000,0.8,1
|
||||
2200000,0.8,1
|
||||
2600000,1.1,1
|
||||
2700000,1.1,1
|
||||
2800000,0.9,1
|
||||
2900000,0.8,1
|
||||
3000000,0.9,1
|
||||
3300000,0.7,1
|
||||
3800000,33.4,1
|
||||
4700000,83.2,1
|
||||
4900000,95.0,1
|
||||
5000000,101.9,1
|
||||
5500000,117.7,1
|
||||
5800000,118.3,1
|
||||
5900000,118.0,1
|
||||
6400000,119.4,1
|
||||
6500000,114.7,1
|
||||
6600000,128.7,1
|
||||
6700000,145.5,1
|
||||
6900000,148.5,1
|
||||
7000000,138.4,1
|
||||
7400000,173.9,1
|
||||
7500000,182.6,1
|
||||
8400000,212.7,1
|
||||
8600000,260.7,1
|
||||
9100000,326.8,1
|
||||
9500000,320.2,1
|
||||
10200000,370.2,1
|
||||
10300000,337.5,1
|
||||
10400000,296.8,1
|
||||
10600000,373.1,1
|
||||
10700000,355.4,1
|
||||
10800000,372.7,1
|
||||
11200000,262.9,1
|
||||
11300000,239.7,1
|
||||
11500000,320.7,1
|
||||
11700000,373.7,1
|
||||
11800000,364.7,1
|
||||
12000000,399.1,1
|
||||
13000000,406.3,1
|
||||
13700000,339.9,1
|
||||
0,0.6,2
|
||||
300000,0.9,2
|
||||
500000,0.8,2
|
||||
600000,0.7,2
|
||||
1400000,0.5,2
|
||||
2000000,1.0,2
|
||||
2100000,0.7,2
|
||||
2300000,0.6,2
|
||||
2500000,0.8,2
|
||||
3000000,1.0,2
|
||||
3400000,0.9,2
|
||||
3600000,3.8,2
|
||||
4300000,74.3,2
|
||||
4400000,75.8,2
|
||||
4700000,85.2,2
|
||||
4800000,85.0,2
|
||||
5000000,86.8,2
|
||||
5500000,98.8,2
|
||||
5600000,104.0,2
|
||||
5700000,92.7,2
|
||||
6300000,126.5,2
|
||||
6500000,154.3,2
|
||||
6600000,147.2,2
|
||||
6900000,199.1,2
|
||||
7200000,187.9,2
|
||||
7900000,261.6,2
|
||||
8000000,240.2,2
|
||||
8100000,228.9,2
|
||||
8300000,227.3,2
|
||||
8400000,233.8,2
|
||||
8700000,253.0,2
|
||||
8800000,273.7,2
|
||||
8900000,314.9,2
|
||||
10000000,311.7,2
|
||||
10500000,395.9,2
|
||||
10600000,390.8,2
|
||||
10700000,366.0,2
|
||||
11000000,429.6,2
|
||||
11900000,384.5,2
|
||||
12100000,353.5,2
|
||||
12400000,370.7,2
|
||||
12500000,371.1,2
|
||||
12600000,348.6,2
|
||||
12800000,391.9,2
|
||||
13300000,452.4,2
|
||||
13500000,372.7,2
|
||||
13700000,393.6,2
|
||||
|
147
results/dreamerv3/humanoid-stand.csv
Normal file
147
results/dreamerv3/humanoid-stand.csv
Normal file
@@ -0,0 +1,147 @@
|
||||
step,reward,seed
|
||||
200000,5.3,1
|
||||
400000,5.6,1
|
||||
700000,4.2,1
|
||||
800000,4.3,1
|
||||
900000,4.2,1
|
||||
1200000,5.7,1
|
||||
2100000,4.5,1
|
||||
2200000,4.7,1
|
||||
2300000,4.7,1
|
||||
3000000,6.5,1
|
||||
3200000,5.2,1
|
||||
3300000,5.4,1
|
||||
3500000,28.7,1
|
||||
4000000,213.5,1
|
||||
4600000,328.9,1
|
||||
4700000,312.7,1
|
||||
5200000,343.4,1
|
||||
6500000,479.6,1
|
||||
6600000,531.4,1
|
||||
7400000,602.5,1
|
||||
7500000,599.4,1
|
||||
7700000,631.6,1
|
||||
7800000,655.0,1
|
||||
8100000,618.2,1
|
||||
8300000,625.3,1
|
||||
8500000,526.3,1
|
||||
8600000,604.3,1
|
||||
8800000,687.0,1
|
||||
8900000,633.4,1
|
||||
9400000,620.5,1
|
||||
9600000,669.6,1
|
||||
9800000,532.0,1
|
||||
10000000,622.3,1
|
||||
10400000,678.2,1
|
||||
10800000,684.3,1
|
||||
10900000,696.4,1
|
||||
11100000,759.9,1
|
||||
11200000,716.3,1
|
||||
11400000,717.7,1
|
||||
11500000,718.4,1
|
||||
11800000,678.9,1
|
||||
12100000,648.3,1
|
||||
12300000,597.4,1
|
||||
12900000,678.5,1
|
||||
13000000,668.9,1
|
||||
13400000,786.7,1
|
||||
13500000,736.6,1
|
||||
13700000,808.7,1
|
||||
200000,3.7,3
|
||||
700000,6.1,3
|
||||
900000,3.9,3
|
||||
1100000,4.4,3
|
||||
1500000,5.2,3
|
||||
1700000,3.7,3
|
||||
1800000,4.4,3
|
||||
1900000,4.0,3
|
||||
2100000,3.8,3
|
||||
2200000,4.2,3
|
||||
2800000,5.9,3
|
||||
2900000,13.3,3
|
||||
3000000,37.9,3
|
||||
3300000,173.4,3
|
||||
4000000,321.0,3
|
||||
4300000,332.6,3
|
||||
4900000,447.8,3
|
||||
5300000,462.8,3
|
||||
5900000,675.6,3
|
||||
6000000,666.9,3
|
||||
6600000,619.7,3
|
||||
6700000,567.9,3
|
||||
6800000,559.5,3
|
||||
7000000,638.5,3
|
||||
7200000,563.1,3
|
||||
7400000,565.3,3
|
||||
7500000,562.2,3
|
||||
7900000,339.5,3
|
||||
8100000,684.5,3
|
||||
8800000,731.8,3
|
||||
9100000,694.4,3
|
||||
9300000,611.5,3
|
||||
10100000,723.9,3
|
||||
10200000,780.1,3
|
||||
10300000,801.0,3
|
||||
10600000,786.8,3
|
||||
10900000,774.6,3
|
||||
11000000,772.0,3
|
||||
11200000,787.3,3
|
||||
11500000,798.0,3
|
||||
11700000,788.5,3
|
||||
11900000,767.5,3
|
||||
12300000,859.4,3
|
||||
13900000,760.3,3
|
||||
0,7.6,2
|
||||
200000,5.2,2
|
||||
300000,5.0,2
|
||||
500000,4.1,2
|
||||
1200000,5.7,2
|
||||
1300000,5.2,2
|
||||
1700000,4.3,2
|
||||
2100000,5.3,2
|
||||
2500000,5.1,2
|
||||
2600000,4.9,2
|
||||
3200000,18.8,2
|
||||
3600000,181.6,2
|
||||
4200000,297.5,2
|
||||
4400000,277.8,2
|
||||
4500000,353.1,2
|
||||
4600000,365.8,2
|
||||
4700000,424.2,2
|
||||
4900000,386.6,2
|
||||
5000000,390.9,2
|
||||
5200000,385.2,2
|
||||
5300000,404.8,2
|
||||
5900000,493.9,2
|
||||
6000000,591.2,2
|
||||
6100000,561.6,2
|
||||
6400000,589.1,2
|
||||
6900000,492.0,2
|
||||
7600000,700.8,2
|
||||
8100000,639.2,2
|
||||
8300000,649.7,2
|
||||
8500000,751.4,2
|
||||
8800000,732.3,2
|
||||
9100000,729.6,2
|
||||
9200000,718.5,2
|
||||
9700000,681.1,2
|
||||
9800000,721.5,2
|
||||
9900000,728.0,2
|
||||
10000000,680.9,2
|
||||
10200000,643.2,2
|
||||
10300000,643.6,2
|
||||
10700000,674.6,2
|
||||
11000000,671.2,2
|
||||
11300000,694.8,2
|
||||
11500000,565.9,2
|
||||
11600000,669.1,2
|
||||
11900000,717.5,2
|
||||
12100000,723.4,2
|
||||
12300000,780.0,2
|
||||
12500000,748.2,2
|
||||
12600000,660.3,2
|
||||
13000000,673.2,2
|
||||
13200000,680.7,2
|
||||
13300000,719.8,2
|
||||
13600000,549.2,2
|
||||
13700000,621.5,2
|
||||
|
162
results/dreamerv3/humanoid-walk.csv
Normal file
162
results/dreamerv3/humanoid-walk.csv
Normal file
@@ -0,0 +1,162 @@
|
||||
step,reward,seed
|
||||
100000,0.6,2
|
||||
200000,1.3,2
|
||||
300000,1.5,2
|
||||
400000,1.3,2
|
||||
500000,1.0,2
|
||||
600000,0.7,2
|
||||
700000,1.4,2
|
||||
1000000,1.1,2
|
||||
1300000,1.5,2
|
||||
1400000,1.4,2
|
||||
1500000,1.1,2
|
||||
1700000,1.3,2
|
||||
2000000,1.6,2
|
||||
2100000,1.8,2
|
||||
2200000,1.1,2
|
||||
2300000,1.7,2
|
||||
2400000,2.2,2
|
||||
2500000,1.9,2
|
||||
2600000,1.5,2
|
||||
2900000,3.0,2
|
||||
3200000,30.0,2
|
||||
3300000,44.0,2
|
||||
4100000,244.6,2
|
||||
4500000,339.7,2
|
||||
4600000,371.5,2
|
||||
4900000,416.3,2
|
||||
5400000,435.8,2
|
||||
5600000,496.8,2
|
||||
6200000,418.6,2
|
||||
6300000,375.4,2
|
||||
6400000,538.1,2
|
||||
6600000,580.0,2
|
||||
7000000,593.4,2
|
||||
7100000,722.5,2
|
||||
7300000,652.5,2
|
||||
7400000,678.1,2
|
||||
7500000,728.7,2
|
||||
7600000,717.1,2
|
||||
7800000,534.3,2
|
||||
8000000,703.7,2
|
||||
8100000,726.5,2
|
||||
8200000,664.2,2
|
||||
8400000,755.9,2
|
||||
8700000,704.8,2
|
||||
9000000,699.0,2
|
||||
9100000,666.9,2
|
||||
9200000,643.5,2
|
||||
9400000,682.3,2
|
||||
9700000,637.5,2
|
||||
9800000,727.0,2
|
||||
9900000,781.4,2
|
||||
10000000,716.4,2
|
||||
10200000,660.9,2
|
||||
10400000,720.4,2
|
||||
10500000,686.3,2
|
||||
10700000,735.2,2
|
||||
10800000,821.5,2
|
||||
11000000,706.4,2
|
||||
11100000,658.3,2
|
||||
11200000,664.2,2
|
||||
300000,0.1,1
|
||||
1100000,1.9,1
|
||||
1300000,1.7,1
|
||||
1600000,1.2,1
|
||||
1900000,1.8,1
|
||||
2200000,1.7,1
|
||||
2700000,1.7,1
|
||||
2800000,1.2,1
|
||||
3000000,4.0,1
|
||||
3500000,206.1,1
|
||||
3600000,200.2,1
|
||||
3700000,224.6,1
|
||||
4000000,300.5,1
|
||||
4100000,296.2,1
|
||||
4300000,335.6,1
|
||||
4400000,344.2,1
|
||||
4800000,398.3,1
|
||||
5100000,366.2,1
|
||||
5200000,379.3,1
|
||||
5500000,375.4,1
|
||||
5600000,401.3,1
|
||||
5700000,419.8,1
|
||||
6200000,521.9,1
|
||||
6700000,680.5,1
|
||||
6800000,626.4,1
|
||||
6900000,595.3,1
|
||||
7100000,662.8,1
|
||||
7400000,731.5,1
|
||||
7600000,613.1,1
|
||||
7900000,565.3,1
|
||||
8000000,633.7,1
|
||||
8700000,746.6,1
|
||||
8800000,733.0,1
|
||||
9000000,718.0,1
|
||||
9100000,773.7,1
|
||||
9600000,836.1,1
|
||||
10000000,739.9,1
|
||||
10200000,650.3,1
|
||||
10400000,831.2,1
|
||||
11000000,837.4,1
|
||||
11300000,827.9,1
|
||||
11400000,801.5,1
|
||||
11700000,862.8,1
|
||||
12000000,792.4,1
|
||||
12600000,720.5,1
|
||||
12800000,840.4,1
|
||||
13200000,694.5,1
|
||||
13800000,852.9,1
|
||||
500000,0.9,3
|
||||
1700000,0.8,3
|
||||
1900000,1.3,3
|
||||
2000000,1.5,3
|
||||
2100000,1.3,3
|
||||
2400000,1.2,3
|
||||
2500000,1.2,3
|
||||
3000000,5.1,3
|
||||
3100000,39.9,3
|
||||
3200000,75.9,3
|
||||
3300000,92.5,3
|
||||
3700000,234.5,3
|
||||
3900000,221.4,3
|
||||
4500000,299.4,3
|
||||
4600000,300.1,3
|
||||
4800000,355.8,3
|
||||
5200000,283.6,3
|
||||
5600000,387.0,3
|
||||
5900000,436.0,3
|
||||
6000000,497.3,3
|
||||
6300000,386.4,3
|
||||
6500000,504.8,3
|
||||
6600000,534.6,3
|
||||
6700000,564.3,3
|
||||
7100000,608.2,3
|
||||
7200000,659.8,3
|
||||
7600000,639.4,3
|
||||
7800000,626.9,3
|
||||
8000000,742.5,3
|
||||
8400000,697.1,3
|
||||
8600000,734.4,3
|
||||
9700000,727.3,3
|
||||
10100000,715.6,3
|
||||
10200000,653.7,3
|
||||
10300000,635.4,3
|
||||
10400000,706.6,3
|
||||
10500000,705.1,3
|
||||
10600000,717.6,3
|
||||
11100000,557.0,3
|
||||
11300000,636.5,3
|
||||
11700000,842.4,3
|
||||
12000000,725.7,3
|
||||
12100000,735.7,3
|
||||
12400000,728.0,3
|
||||
12600000,803.3,3
|
||||
12700000,838.8,3
|
||||
12800000,753.7,3
|
||||
12900000,754.4,3
|
||||
13200000,736.6,3
|
||||
13600000,829.3,3
|
||||
13700000,789.8,3
|
||||
13800000,740.8,3
|
||||
13900000,796.7,3
|
||||
|
114
results/dreamerv3/lift-cube.csv
Normal file
114
results/dreamerv3/lift-cube.csv
Normal file
@@ -0,0 +1,114 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
300000,0.1,3
|
||||
400000,0.3,3
|
||||
500000,0.5,3
|
||||
600000,0.2,3
|
||||
700000,0.0,3
|
||||
800000,0.1,3
|
||||
900000,0.1,3
|
||||
1000000,0.0,3
|
||||
1100000,0.3,3
|
||||
1300000,0.2,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.1,3
|
||||
1800000,0.0,3
|
||||
1900000,0.1,3
|
||||
2000000,0.0,3
|
||||
2100000,0.1,3
|
||||
2200000,0.2,3
|
||||
2300000,0.2,3
|
||||
2400000,0.4,3
|
||||
2500000,0.1,3
|
||||
2600000,0.1,3
|
||||
2700000,0.3,3
|
||||
2800000,0.0,3
|
||||
2900000,0.3,3
|
||||
3000000,0.5,3
|
||||
3100000,0.0,3
|
||||
3200000,0.03,3
|
||||
3300000,0.0,3
|
||||
3400000,0.0,3
|
||||
3500000,0.1,3
|
||||
3600000,0.0,3
|
||||
3700000,0.0,3
|
||||
3800000,0.0,3
|
||||
4000000,0.2,3
|
||||
100000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.3,2
|
||||
700000,0.1,2
|
||||
800000,0.6,2
|
||||
900000,0.3,2
|
||||
1000000,0.5,2
|
||||
1100000,0.4,2
|
||||
1200000,0.3,2
|
||||
1300000,0.2,2
|
||||
1400000,0.3,2
|
||||
1500000,0.55,2
|
||||
1600000,0.45,2
|
||||
1700000,0.5,2
|
||||
1800000,0.3,2
|
||||
1900000,0.4,2
|
||||
2000000,0.3,2
|
||||
2100000,0.3,2
|
||||
2200000,0.7,2
|
||||
2300000,0.4,2
|
||||
2400000,0.4,2
|
||||
2500000,0.4,2
|
||||
2600000,0.8,2
|
||||
2700000,0.75,2
|
||||
2800000,0.5,2
|
||||
2900000,0.0,2
|
||||
3000000,0.35,2
|
||||
3100000,0.9,2
|
||||
3200000,0.6,2
|
||||
3300000,0.3,2
|
||||
3500000,0.6,2
|
||||
3600000,0.3,2
|
||||
3700000,0.5,2
|
||||
3800000,0.1,2
|
||||
3900000,0.6,2
|
||||
4000000,0.3,2
|
||||
100000,0.0,1
|
||||
200000,0.2,1
|
||||
300000,0.2,1
|
||||
400000,0.4,1
|
||||
500000,0.15,1
|
||||
600000,0.1,1
|
||||
700000,0.0,1
|
||||
800000,0.15,1
|
||||
900000,0.25,1
|
||||
1000000,0.1,1
|
||||
1100000,0.75,1
|
||||
1200000,0.1,1
|
||||
1300000,0.1,1
|
||||
1400000,0.2,1
|
||||
1500000,0.7,1
|
||||
1600000,0.4,1
|
||||
1700000,0.25,1
|
||||
1800000,0.5,1
|
||||
1900000,0.1,1
|
||||
2000000,0.2,1
|
||||
2100000,0.2,1
|
||||
2200000,0.1,1
|
||||
2300000,0.4,1
|
||||
2400000,0.1,1
|
||||
2500000,0.0,1
|
||||
2600000,0.37,1
|
||||
2700000,0.1,1
|
||||
2800000,0.2,1
|
||||
2900000,0.1,1
|
||||
3000000,0.25,1
|
||||
3100000,0.07,1
|
||||
3200000,0.2,1
|
||||
3300000,0.6,1
|
||||
3500000,0.15,1
|
||||
3600000,0.2,1
|
||||
3700000,0.2,1
|
||||
3800000,0.4,1
|
||||
3900000,0.3,1
|
||||
|
64
results/dreamerv3/mw-assembly.csv
Normal file
64
results/dreamerv3/mw-assembly.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.0,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,2
|
||||
100000,0.4,2
|
||||
200000,0.55,2
|
||||
300000,0.1,2
|
||||
400000,0.2,2
|
||||
500000,0.0,2
|
||||
600000,0.55,2
|
||||
700000,0.2,2
|
||||
800000,0.6,2
|
||||
900000,0.1,2
|
||||
1000000,0.0,2
|
||||
1100000,0.2,2
|
||||
1200000,0.6,2
|
||||
1300000,0.2,2
|
||||
1400000,0.55,2
|
||||
1500000,0.0,2
|
||||
1600000,0.13,2
|
||||
1700000,0.35,2
|
||||
1800000,0.35,2
|
||||
1900000,0.0,2
|
||||
2000000,0.35,2
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.0,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1800000,0.0,1
|
||||
1900000,0.0,1
|
||||
2000000,0.0,1
|
||||
|
64
results/dreamerv3/mw-basketball.csv
Normal file
64
results/dreamerv3/mw-basketball.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.0,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.75,1
|
||||
300000,0.27,1
|
||||
400000,0.4,1
|
||||
500000,0.6,1
|
||||
600000,0.6,1
|
||||
700000,0.7,1
|
||||
800000,0.78,1
|
||||
900000,0.8,1
|
||||
1000000,0.9,1
|
||||
1100000,0.85,1
|
||||
1200000,0.85,1
|
||||
1300000,0.6,1
|
||||
1400000,0.9,1
|
||||
1500000,1.0,1
|
||||
1600000,0.83,1
|
||||
1700000,0.7,1
|
||||
1800000,0.7,1
|
||||
1900000,0.88,1
|
||||
2000000,0.9,1
|
||||
0,0.0,2
|
||||
100000,0.2,2
|
||||
200000,0.3,2
|
||||
300000,0.57,2
|
||||
400000,0.55,2
|
||||
500000,0.45,2
|
||||
600000,0.35,2
|
||||
700000,0.8,2
|
||||
800000,0.33,2
|
||||
900000,0.1,2
|
||||
1000000,0.9,2
|
||||
1100000,0.65,2
|
||||
1200000,0.3,2
|
||||
1300000,0.4,2
|
||||
1400000,0.6,2
|
||||
1500000,0.5,2
|
||||
1600000,0.4,2
|
||||
1700000,1.0,2
|
||||
1800000,0.45,2
|
||||
1900000,0.3,2
|
||||
2000000,1.0,2
|
||||
|
64
results/dreamerv3/mw-bin-picking.csv
Normal file
64
results/dreamerv3/mw-bin-picking.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.0,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.0,2
|
||||
1300000,0.0,2
|
||||
1400000,0.0,2
|
||||
1500000,0.0,2
|
||||
1600000,0.0,2
|
||||
1700000,0.0,2
|
||||
1800000,0.0,2
|
||||
1900000,0.0,2
|
||||
2000000,0.0,2
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,1.0,1
|
||||
500000,0.5,1
|
||||
600000,0.7,1
|
||||
700000,0.25,1
|
||||
800000,0.57,1
|
||||
900000,0.65,1
|
||||
1000000,0.63,1
|
||||
1100000,0.82,1
|
||||
1200000,0.77,1
|
||||
1300000,0.55,1
|
||||
1400000,0.53,1
|
||||
1500000,0.2,1
|
||||
1600000,0.45,1
|
||||
1700000,0.6,1
|
||||
1800000,0.75,1
|
||||
1900000,0.8,1
|
||||
2000000,0.73,1
|
||||
|
63
results/dreamerv3/mw-box-close.csv
Normal file
63
results/dreamerv3/mw-box-close.csv
Normal file
@@ -0,0 +1,63 @@
|
||||
step,success,seed
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.0,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.15,1
|
||||
1600000,0.0,1
|
||||
1700000,0.45,1
|
||||
1800000,0.0,1
|
||||
1900000,0.0,1
|
||||
2000000,0.2,1
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.0,2
|
||||
1300000,0.0,2
|
||||
1400000,0.1,2
|
||||
1500000,0.0,2
|
||||
1600000,0.35,2
|
||||
1700000,0.73,2
|
||||
1800000,0.3,2
|
||||
1900000,0.7,2
|
||||
2000000,0.0,2
|
||||
|
63
results/dreamerv3/mw-button-press-topdown-wall.csv
Normal file
63
results/dreamerv3/mw-button-press-topdown-wall.csv
Normal file
@@ -0,0 +1,63 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.6,3
|
||||
300000,0.2,3
|
||||
400000,0.5,3
|
||||
500000,0.15,3
|
||||
600000,0.3,3
|
||||
700000,0.23,3
|
||||
800000,0.3,3
|
||||
900000,0.75,3
|
||||
1000000,0.68,3
|
||||
1100000,0.7,3
|
||||
1200000,0.45,3
|
||||
1300000,0.7,3
|
||||
1400000,0.75,3
|
||||
1500000,0.53,3
|
||||
1600000,0.42,3
|
||||
1700000,0.6,3
|
||||
1800000,0.33,3
|
||||
1900000,0.63,3
|
||||
2000000,0.88,3
|
||||
0,0.0,1
|
||||
100000,0.85,1
|
||||
200000,0.6,1
|
||||
300000,0.13,1
|
||||
400000,0.55,1
|
||||
500000,0.5,1
|
||||
600000,0.1,1
|
||||
700000,0.05,1
|
||||
800000,0.4,1
|
||||
900000,0.2,1
|
||||
1000000,0.5,1
|
||||
1100000,0.1,1
|
||||
1200000,0.28,1
|
||||
1300000,0.37,1
|
||||
1400000,0.5,1
|
||||
1500000,0.15,1
|
||||
1600000,0.6,1
|
||||
1700000,0.16,1
|
||||
1800000,0.65,1
|
||||
1900000,0.3,1
|
||||
2000000,0.33,1
|
||||
100000,0.7,2
|
||||
200000,0.45,2
|
||||
300000,0.55,2
|
||||
400000,0.55,2
|
||||
500000,0.2,2
|
||||
600000,0.35,2
|
||||
700000,0.7,2
|
||||
800000,0.3,2
|
||||
900000,0.45,2
|
||||
1000000,0.8,2
|
||||
1100000,0.6,2
|
||||
1200000,0.33,2
|
||||
1300000,0.1,2
|
||||
1400000,0.35,2
|
||||
1500000,0.6,2
|
||||
1600000,0.57,2
|
||||
1700000,0.43,2
|
||||
1800000,0.03,2
|
||||
1900000,0.4,2
|
||||
2000000,0.9,2
|
||||
|
64
results/dreamerv3/mw-button-press-topdown.csv
Normal file
64
results/dreamerv3/mw-button-press-topdown.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.1,3
|
||||
200000,0.3,3
|
||||
300000,0.1,3
|
||||
400000,0.2,3
|
||||
500000,0.53,3
|
||||
600000,0.25,3
|
||||
700000,0.55,3
|
||||
800000,0.33,3
|
||||
900000,0.2,3
|
||||
1000000,0.53,3
|
||||
1100000,0.7,3
|
||||
1200000,0.15,3
|
||||
1300000,0.3,3
|
||||
1400000,0.0,3
|
||||
1500000,0.1,3
|
||||
1600000,0.02,3
|
||||
1700000,0.3,3
|
||||
1800000,0.5,3
|
||||
1900000,0.57,3
|
||||
2000000,0.57,3
|
||||
0,0.0,1
|
||||
100000,0.9,1
|
||||
200000,0.9,1
|
||||
300000,0.5,1
|
||||
400000,0.3,1
|
||||
500000,0.55,1
|
||||
600000,0.5,1
|
||||
700000,0.7,1
|
||||
800000,0.3,1
|
||||
900000,0.6,1
|
||||
1000000,0.4,1
|
||||
1100000,0.2,1
|
||||
1200000,0.56,1
|
||||
1300000,0.25,1
|
||||
1400000,0.15,1
|
||||
1500000,0.7,1
|
||||
1600000,0.75,1
|
||||
1700000,0.53,1
|
||||
1800000,0.6,1
|
||||
1900000,0.35,1
|
||||
2000000,0.55,1
|
||||
0,0.0,2
|
||||
100000,0.3,2
|
||||
200000,0.2,2
|
||||
300000,0.2,2
|
||||
400000,0.2,2
|
||||
500000,0.5,2
|
||||
600000,0.25,2
|
||||
700000,0.63,2
|
||||
800000,0.25,2
|
||||
900000,0.3,2
|
||||
1000000,0.23,2
|
||||
1100000,0.57,2
|
||||
1200000,0.7,2
|
||||
1300000,0.75,2
|
||||
1400000,0.35,2
|
||||
1500000,0.3,2
|
||||
1600000,0.1,2
|
||||
1700000,0.0,2
|
||||
1800000,0.25,2
|
||||
1900000,0.1,2
|
||||
2000000,0.5,2
|
||||
|
64
results/dreamerv3/mw-button-press-wall.csv
Normal file
64
results/dreamerv3/mw-button-press-wall.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.6,3
|
||||
200000,0.98,3
|
||||
300000,0.55,3
|
||||
400000,0.7,3
|
||||
500000,0.4,3
|
||||
600000,0.55,3
|
||||
700000,0.55,3
|
||||
800000,0.35,3
|
||||
900000,0.7,3
|
||||
1000000,0.35,3
|
||||
1100000,0.55,3
|
||||
1200000,0.7,3
|
||||
1300000,0.57,3
|
||||
1400000,0.45,3
|
||||
1500000,0.7,3
|
||||
1600000,0.45,3
|
||||
1700000,1.0,3
|
||||
1800000,0.6,3
|
||||
1900000,0.8,3
|
||||
2000000,0.7,3
|
||||
0,0.0,2
|
||||
100000,0.7,2
|
||||
200000,1.0,2
|
||||
300000,0.8,2
|
||||
400000,0.8,2
|
||||
500000,0.7,2
|
||||
600000,0.8,2
|
||||
700000,0.75,2
|
||||
800000,0.8,2
|
||||
900000,0.85,2
|
||||
1000000,0.8,2
|
||||
1100000,0.75,2
|
||||
1200000,0.7,2
|
||||
1300000,0.4,2
|
||||
1400000,0.43,2
|
||||
1500000,0.8,2
|
||||
1600000,0.6,2
|
||||
1700000,0.15,2
|
||||
1800000,0.9,2
|
||||
1900000,1.0,2
|
||||
2000000,0.7,2
|
||||
0,0.0,1
|
||||
100000,0.7,1
|
||||
200000,0.9,1
|
||||
300000,0.9,1
|
||||
400000,1.0,1
|
||||
500000,0.7,1
|
||||
600000,0.4,1
|
||||
700000,1.0,1
|
||||
800000,0.6,1
|
||||
900000,0.9,1
|
||||
1000000,0.95,1
|
||||
1100000,0.75,1
|
||||
1200000,0.67,1
|
||||
1300000,0.7,1
|
||||
1400000,0.87,1
|
||||
1500000,0.8,1
|
||||
1600000,0.8,1
|
||||
1700000,0.9,1
|
||||
1800000,0.7,1
|
||||
1900000,0.5,1
|
||||
2000000,0.6,1
|
||||
|
63
results/dreamerv3/mw-button-press.csv
Normal file
63
results/dreamerv3/mw-button-press.csv
Normal file
@@ -0,0 +1,63 @@
|
||||
step,success,seed
|
||||
100000,0.7,3
|
||||
200000,0.4,3
|
||||
300000,0.25,3
|
||||
400000,0.5,3
|
||||
500000,0.15,3
|
||||
600000,0.23,3
|
||||
700000,0.63,3
|
||||
800000,0.8,3
|
||||
900000,0.5,3
|
||||
1000000,0.3,3
|
||||
1100000,0.67,3
|
||||
1200000,0.6,3
|
||||
1300000,0.6,3
|
||||
1400000,0.6,3
|
||||
1500000,0.55,3
|
||||
1600000,0.8,3
|
||||
1700000,0.7,3
|
||||
1800000,0.45,3
|
||||
1900000,0.75,3
|
||||
2000000,0.5,3
|
||||
0,0.5,2
|
||||
100000,0.23,2
|
||||
200000,0.43,2
|
||||
300000,0.3,2
|
||||
400000,0.6,2
|
||||
500000,0.7,2
|
||||
600000,0.75,2
|
||||
700000,0.67,2
|
||||
800000,0.6,2
|
||||
900000,0.6,2
|
||||
1000000,0.97,2
|
||||
1100000,0.77,2
|
||||
1200000,0.8,2
|
||||
1300000,0.53,2
|
||||
1400000,0.7,2
|
||||
1500000,0.4,2
|
||||
1600000,0.75,2
|
||||
1700000,0.6,2
|
||||
1800000,0.77,2
|
||||
1900000,0.7,2
|
||||
2000000,0.75,2
|
||||
0,0.0,1
|
||||
100000,0.35,1
|
||||
200000,0.43,1
|
||||
300000,0.38,1
|
||||
400000,0.62,1
|
||||
500000,0.45,1
|
||||
600000,0.9,1
|
||||
700000,0.7,1
|
||||
800000,0.76,1
|
||||
900000,0.6,1
|
||||
1000000,0.63,1
|
||||
1100000,0.75,1
|
||||
1200000,0.7,1
|
||||
1300000,0.5,1
|
||||
1400000,0.9,1
|
||||
1500000,0.9,1
|
||||
1600000,0.45,1
|
||||
1700000,1.0,1
|
||||
1800000,0.8,1
|
||||
1900000,0.5,1
|
||||
2000000,0.75,1
|
||||
|
61
results/dreamerv3/mw-coffee-button.csv
Normal file
61
results/dreamerv3/mw-coffee-button.csv
Normal file
@@ -0,0 +1,61 @@
|
||||
step,success,seed
|
||||
100000,1.0,3
|
||||
200000,1.0,3
|
||||
300000,1.0,3
|
||||
400000,0.67,3
|
||||
500000,0.9,3
|
||||
600000,1.0,3
|
||||
700000,0.93,3
|
||||
800000,1.0,3
|
||||
900000,0.7,3
|
||||
1000000,1.0,3
|
||||
1100000,1.0,3
|
||||
1200000,1.0,3
|
||||
1300000,0.8,3
|
||||
1400000,0.9,3
|
||||
1500000,1.0,3
|
||||
1600000,1.0,3
|
||||
1700000,0.9,3
|
||||
1800000,1.0,3
|
||||
1900000,0.9,3
|
||||
2000000,1.0,3
|
||||
100000,0.97,1
|
||||
200000,0.8,1
|
||||
300000,0.88,1
|
||||
400000,0.9,1
|
||||
500000,1.0,1
|
||||
600000,1.0,1
|
||||
700000,0.9,1
|
||||
800000,0.8,1
|
||||
900000,1.0,1
|
||||
1000000,1.0,1
|
||||
1100000,0.77,1
|
||||
1200000,1.0,1
|
||||
1300000,1.0,1
|
||||
1400000,0.8,1
|
||||
1500000,0.97,1
|
||||
1600000,1.0,1
|
||||
1700000,1.0,1
|
||||
1800000,1.0,1
|
||||
1900000,0.87,1
|
||||
2000000,0.85,1
|
||||
100000,0.97,2
|
||||
200000,1.0,2
|
||||
300000,0.9,2
|
||||
400000,0.8,2
|
||||
500000,1.0,2
|
||||
600000,1.0,2
|
||||
700000,0.9,2
|
||||
800000,0.65,2
|
||||
900000,1.0,2
|
||||
1000000,1.0,2
|
||||
1100000,0.8,2
|
||||
1200000,1.0,2
|
||||
1300000,0.8,2
|
||||
1400000,1.0,2
|
||||
1500000,0.5,2
|
||||
1600000,0.6,2
|
||||
1700000,0.9,2
|
||||
1800000,0.8,2
|
||||
1900000,0.93,2
|
||||
2000000,1.0,2
|
||||
|
64
results/dreamerv3/mw-coffee-pull.csv
Normal file
64
results/dreamerv3/mw-coffee-pull.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.63,3
|
||||
600000,0.43,3
|
||||
700000,0.23,3
|
||||
800000,0.53,3
|
||||
900000,0.7,3
|
||||
1000000,0.72,3
|
||||
1100000,0.6,3
|
||||
1200000,1.0,3
|
||||
1300000,0.83,3
|
||||
1400000,1.0,3
|
||||
1500000,0.9,3
|
||||
1600000,0.53,3
|
||||
1700000,0.7,3
|
||||
1800000,0.9,3
|
||||
1900000,0.77,3
|
||||
2000000,0.52,3
|
||||
0,0.0,2
|
||||
100000,0.4,2
|
||||
200000,0.55,2
|
||||
300000,0.7,2
|
||||
400000,0.53,2
|
||||
500000,0.8,2
|
||||
600000,0.57,2
|
||||
700000,0.45,2
|
||||
800000,0.6,2
|
||||
900000,1.0,2
|
||||
1000000,0.65,2
|
||||
1100000,0.35,2
|
||||
1200000,0.72,2
|
||||
1300000,0.53,2
|
||||
1400000,0.45,2
|
||||
1500000,0.7,2
|
||||
1600000,0.53,2
|
||||
1700000,0.9,2
|
||||
1800000,0.7,2
|
||||
1900000,0.7,2
|
||||
2000000,0.7,2
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.1,1
|
||||
500000,0.1,1
|
||||
600000,0.0,1
|
||||
700000,0.02,1
|
||||
800000,0.13,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.37,1
|
||||
1200000,0.15,1
|
||||
1300000,0.03,1
|
||||
1400000,0.7,1
|
||||
1500000,0.8,1
|
||||
1600000,0.9,1
|
||||
1700000,0.77,1
|
||||
1800000,0.8,1
|
||||
1900000,0.7,1
|
||||
2000000,0.4,1
|
||||
|
64
results/dreamerv3/mw-coffee-push.csv
Normal file
64
results/dreamerv3/mw-coffee-push.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.25,3
|
||||
200000,0.9,3
|
||||
300000,0.6,3
|
||||
400000,0.8,3
|
||||
500000,0.55,3
|
||||
600000,0.65,3
|
||||
700000,0.55,3
|
||||
800000,0.23,3
|
||||
900000,0.63,3
|
||||
1000000,0.75,3
|
||||
1100000,0.5,3
|
||||
1200000,0.9,3
|
||||
1300000,0.97,3
|
||||
1400000,0.6,3
|
||||
1500000,0.77,3
|
||||
1600000,0.8,3
|
||||
1700000,0.6,3
|
||||
1800000,0.7,3
|
||||
1900000,0.15,3
|
||||
2000000,0.53,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.17,2
|
||||
300000,0.43,2
|
||||
400000,0.77,2
|
||||
500000,0.85,2
|
||||
600000,0.88,2
|
||||
700000,0.83,2
|
||||
800000,0.6,2
|
||||
900000,0.8,2
|
||||
1000000,0.7,2
|
||||
1100000,0.8,2
|
||||
1200000,0.9,2
|
||||
1300000,0.9,2
|
||||
1400000,0.97,2
|
||||
1500000,1.0,2
|
||||
1600000,0.88,2
|
||||
1700000,1.0,2
|
||||
1800000,0.9,2
|
||||
1900000,1.0,2
|
||||
2000000,0.9,2
|
||||
0,0.0,1
|
||||
100000,0.55,1
|
||||
200000,0.4,1
|
||||
300000,0.6,1
|
||||
400000,0.5,1
|
||||
500000,0.7,1
|
||||
600000,0.6,1
|
||||
700000,0.5,1
|
||||
800000,0.47,1
|
||||
900000,0.75,1
|
||||
1000000,0.53,1
|
||||
1100000,0.5,1
|
||||
1200000,0.55,1
|
||||
1300000,0.47,1
|
||||
1400000,0.35,1
|
||||
1500000,0.27,1
|
||||
1600000,0.4,1
|
||||
1700000,0.15,1
|
||||
1800000,0.8,1
|
||||
1900000,0.27,1
|
||||
2000000,0.63,1
|
||||
|
64
results/dreamerv3/mw-dial-turn.csv
Normal file
64
results/dreamerv3/mw-dial-turn.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.1,3
|
||||
200000,0.13,3
|
||||
300000,0.0,3
|
||||
400000,0.05,3
|
||||
500000,0.13,3
|
||||
600000,0.05,3
|
||||
700000,0.1,3
|
||||
800000,0.33,3
|
||||
900000,0.1,3
|
||||
1000000,0.36,3
|
||||
1100000,0.0,3
|
||||
1200000,0.03,3
|
||||
1300000,0.1,3
|
||||
1400000,0.1,3
|
||||
1500000,0.2,3
|
||||
1600000,0.1,3
|
||||
1700000,0.0,3
|
||||
1800000,0.1,3
|
||||
1900000,0.0,3
|
||||
2000000,0.1,3
|
||||
0,0.0,2
|
||||
100000,0.55,2
|
||||
200000,0.3,2
|
||||
300000,0.4,2
|
||||
400000,0.65,2
|
||||
500000,0.3,2
|
||||
600000,0.35,2
|
||||
700000,0.27,2
|
||||
800000,0.3,2
|
||||
900000,0.45,2
|
||||
1000000,0.35,2
|
||||
1100000,0.35,2
|
||||
1200000,0.32,2
|
||||
1300000,0.6,2
|
||||
1400000,0.25,2
|
||||
1500000,0.2,2
|
||||
1600000,0.1,2
|
||||
1700000,0.4,2
|
||||
1800000,0.07,2
|
||||
1900000,0.15,2
|
||||
2000000,0.2,2
|
||||
0,0.0,1
|
||||
100000,0.18,1
|
||||
200000,0.2,1
|
||||
300000,0.1,1
|
||||
400000,0.15,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.15,1
|
||||
900000,0.0,1
|
||||
1000000,0.1,1
|
||||
1100000,0.0,1
|
||||
1200000,0.53,1
|
||||
1300000,0.1,1
|
||||
1400000,0.17,1
|
||||
1500000,0.12,1
|
||||
1600000,0.3,1
|
||||
1700000,0.3,1
|
||||
1800000,0.05,1
|
||||
1900000,0.0,1
|
||||
2000000,0.1,1
|
||||
|
64
results/dreamerv3/mw-disassemble.csv
Normal file
64
results/dreamerv3/mw-disassemble.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.0,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.0,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1800000,0.0,1
|
||||
1900000,0.0,1
|
||||
2000000,0.0,1
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.0,2
|
||||
1300000,0.0,2
|
||||
1400000,0.0,2
|
||||
1500000,0.0,2
|
||||
1600000,0.0,2
|
||||
1700000,0.0,2
|
||||
1800000,0.0,2
|
||||
1900000,0.0,2
|
||||
2000000,0.0,2
|
||||
|
64
results/dreamerv3/mw-door-close.csv
Normal file
64
results/dreamerv3/mw-door-close.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,1.0,3
|
||||
200000,0.1,3
|
||||
300000,0.8,3
|
||||
400000,0.17,3
|
||||
500000,0.55,3
|
||||
600000,0.82,3
|
||||
700000,0.93,3
|
||||
800000,1.0,3
|
||||
900000,0.3,3
|
||||
1000000,0.47,3
|
||||
1100000,0.05,3
|
||||
1200000,0.8,3
|
||||
1300000,0.8,3
|
||||
1400000,0.45,3
|
||||
1500000,0.43,3
|
||||
1600000,0.6,3
|
||||
1700000,0.65,3
|
||||
1800000,0.9,3
|
||||
1900000,1.0,3
|
||||
2000000,1.0,3
|
||||
0,0.0,2
|
||||
100000,1.0,2
|
||||
200000,0.65,2
|
||||
300000,0.97,2
|
||||
400000,1.0,2
|
||||
500000,0.55,2
|
||||
600000,0.7,2
|
||||
700000,1.0,2
|
||||
800000,0.73,2
|
||||
900000,0.67,2
|
||||
1000000,0.9,2
|
||||
1100000,0.4,2
|
||||
1200000,0.6,2
|
||||
1300000,1.0,2
|
||||
1400000,0.8,2
|
||||
1500000,0.83,2
|
||||
1600000,1.0,2
|
||||
1700000,0.8,2
|
||||
1800000,1.0,2
|
||||
1900000,1.0,2
|
||||
2000000,0.8,2
|
||||
0,0.0,1
|
||||
100000,0.9,1
|
||||
200000,1.0,1
|
||||
300000,0.67,1
|
||||
400000,0.97,1
|
||||
500000,0.8,1
|
||||
600000,0.93,1
|
||||
700000,0.9,1
|
||||
800000,0.9,1
|
||||
900000,1.0,1
|
||||
1000000,1.0,1
|
||||
1100000,1.0,1
|
||||
1200000,0.9,1
|
||||
1300000,1.0,1
|
||||
1400000,0.75,1
|
||||
1500000,0.65,1
|
||||
1600000,0.8,1
|
||||
1700000,0.92,1
|
||||
1800000,0.9,1
|
||||
1900000,1.0,1
|
||||
2000000,1.0,1
|
||||
|
64
results/dreamerv3/mw-door-lock.csv
Normal file
64
results/dreamerv3/mw-door-lock.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.33,3
|
||||
100000,0.72,3
|
||||
200000,0.6,3
|
||||
300000,0.45,3
|
||||
400000,0.6,3
|
||||
500000,0.77,3
|
||||
600000,0.45,3
|
||||
700000,0.47,3
|
||||
800000,0.9,3
|
||||
900000,0.6,3
|
||||
1000000,0.5,3
|
||||
1100000,0.0,3
|
||||
1200000,0.65,3
|
||||
1300000,0.73,3
|
||||
1400000,1.0,3
|
||||
1500000,0.92,3
|
||||
1600000,0.75,3
|
||||
1700000,0.7,3
|
||||
1800000,0.7,3
|
||||
1900000,0.5,3
|
||||
2000000,0.4,3
|
||||
0,0.0,1
|
||||
100000,0.63,1
|
||||
200000,0.8,1
|
||||
300000,0.2,1
|
||||
400000,0.15,1
|
||||
500000,0.6,1
|
||||
600000,0.45,1
|
||||
700000,0.5,1
|
||||
800000,0.65,1
|
||||
900000,0.3,1
|
||||
1000000,0.8,1
|
||||
1100000,0.97,1
|
||||
1200000,0.6,1
|
||||
1300000,0.8,1
|
||||
1400000,0.6,1
|
||||
1500000,0.7,1
|
||||
1600000,0.73,1
|
||||
1700000,0.7,1
|
||||
1800000,0.0,1
|
||||
1900000,0.25,1
|
||||
2000000,0.5,1
|
||||
0,0.0,2
|
||||
100000,0.65,2
|
||||
200000,0.98,2
|
||||
300000,0.9,2
|
||||
400000,0.62,2
|
||||
500000,0.55,2
|
||||
600000,0.45,2
|
||||
700000,0.65,2
|
||||
800000,0.5,2
|
||||
900000,0.55,2
|
||||
1000000,0.4,2
|
||||
1100000,0.75,2
|
||||
1200000,0.25,2
|
||||
1300000,0.8,2
|
||||
1400000,0.6,2
|
||||
1500000,0.87,2
|
||||
1600000,0.4,2
|
||||
1700000,0.4,2
|
||||
1800000,0.6,2
|
||||
1900000,0.65,2
|
||||
2000000,0.75,2
|
||||
|
64
results/dreamerv3/mw-door-open.csv
Normal file
64
results/dreamerv3/mw-door-open.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.1,3
|
||||
200000,0.23,3
|
||||
300000,0.37,3
|
||||
400000,0.27,3
|
||||
500000,0.2,3
|
||||
600000,0.1,3
|
||||
700000,0.0,3
|
||||
800000,0.15,3
|
||||
900000,0.27,3
|
||||
1000000,0.2,3
|
||||
1100000,0.0,3
|
||||
1200000,0.4,3
|
||||
1300000,0.0,3
|
||||
1400000,0.32,3
|
||||
1500000,0.1,3
|
||||
1600000,0.15,3
|
||||
1700000,0.3,3
|
||||
1800000,0.1,3
|
||||
1900000,0.2,3
|
||||
2000000,0.1,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.33,2
|
||||
300000,0.35,2
|
||||
400000,0.0,2
|
||||
500000,0.35,2
|
||||
600000,0.2,2
|
||||
700000,0.35,2
|
||||
800000,0.0,2
|
||||
900000,0.3,2
|
||||
1000000,0.17,2
|
||||
1100000,0.1,2
|
||||
1200000,0.5,2
|
||||
1300000,0.5,2
|
||||
1400000,0.47,2
|
||||
1500000,0.05,2
|
||||
1600000,0.25,2
|
||||
1700000,0.2,2
|
||||
1800000,0.3,2
|
||||
1900000,0.2,2
|
||||
2000000,0.2,2
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.3,1
|
||||
300000,0.15,1
|
||||
400000,0.1,1
|
||||
500000,0.15,1
|
||||
600000,0.0,1
|
||||
700000,0.15,1
|
||||
800000,0.1,1
|
||||
900000,0.0,1
|
||||
1000000,0.3,1
|
||||
1100000,0.0,1
|
||||
1200000,0.15,1
|
||||
1300000,0.1,1
|
||||
1400000,0.0,1
|
||||
1500000,0.0,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1800000,0.2,1
|
||||
1900000,0.0,1
|
||||
2000000,0.0,1
|
||||
|
64
results/dreamerv3/mw-door-unlock.csv
Normal file
64
results/dreamerv3/mw-door-unlock.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,1.0,3
|
||||
300000,0.85,3
|
||||
400000,1.0,3
|
||||
500000,0.85,3
|
||||
600000,0.75,3
|
||||
700000,0.7,3
|
||||
800000,0.87,3
|
||||
900000,0.4,3
|
||||
1000000,0.43,3
|
||||
1100000,0.85,3
|
||||
1200000,0.7,3
|
||||
1300000,0.35,3
|
||||
1400000,0.9,3
|
||||
1500000,0.65,3
|
||||
1600000,0.65,3
|
||||
1700000,0.85,3
|
||||
1800000,0.35,3
|
||||
1900000,0.27,3
|
||||
2000000,0.2,3
|
||||
0,0.0,2
|
||||
100000,0.8,2
|
||||
200000,0.65,2
|
||||
300000,0.9,2
|
||||
400000,0.8,2
|
||||
500000,0.6,2
|
||||
600000,0.75,2
|
||||
700000,0.35,2
|
||||
800000,0.7,2
|
||||
900000,0.2,2
|
||||
1000000,0.38,2
|
||||
1100000,0.45,2
|
||||
1200000,0.65,2
|
||||
1300000,0.5,2
|
||||
1400000,0.67,2
|
||||
1500000,0.0,2
|
||||
1600000,0.35,2
|
||||
1700000,0.6,2
|
||||
1800000,0.6,2
|
||||
1900000,0.7,2
|
||||
2000000,0.43,2
|
||||
0,0.0,1
|
||||
100000,0.63,1
|
||||
200000,0.4,1
|
||||
300000,0.93,1
|
||||
400000,0.45,1
|
||||
500000,0.7,1
|
||||
600000,0.6,1
|
||||
700000,0.15,1
|
||||
800000,0.38,1
|
||||
900000,0.7,1
|
||||
1000000,0.87,1
|
||||
1100000,0.42,1
|
||||
1200000,0.53,1
|
||||
1300000,0.43,1
|
||||
1400000,0.7,1
|
||||
1500000,0.5,1
|
||||
1600000,0.5,1
|
||||
1700000,0.7,1
|
||||
1800000,0.65,1
|
||||
1900000,0.5,1
|
||||
2000000,0.63,1
|
||||
|
64
results/dreamerv3/mw-drawer-close.csv
Normal file
64
results/dreamerv3/mw-drawer-close.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,1.0,3
|
||||
100000,0.65,3
|
||||
200000,0.9,3
|
||||
300000,0.9,3
|
||||
400000,0.9,3
|
||||
500000,1.0,3
|
||||
600000,0.9,3
|
||||
700000,0.9,3
|
||||
800000,1.0,3
|
||||
900000,0.9,3
|
||||
1000000,0.85,3
|
||||
1100000,0.75,3
|
||||
1200000,0.85,3
|
||||
1300000,0.9,3
|
||||
1400000,1.0,3
|
||||
1500000,1.0,3
|
||||
1600000,0.7,3
|
||||
1700000,0.9,3
|
||||
1800000,0.8,3
|
||||
1900000,1.0,3
|
||||
2000000,1.0,3
|
||||
0,1.0,1
|
||||
100000,1.0,1
|
||||
200000,1.0,1
|
||||
300000,0.7,1
|
||||
400000,0.83,1
|
||||
500000,0.8,1
|
||||
600000,0.83,1
|
||||
700000,1.0,1
|
||||
800000,1.0,1
|
||||
900000,0.8,1
|
||||
1000000,1.0,1
|
||||
1100000,1.0,1
|
||||
1200000,1.0,1
|
||||
1300000,0.8,1
|
||||
1400000,1.0,1
|
||||
1500000,0.9,1
|
||||
1600000,0.9,1
|
||||
1700000,0.9,1
|
||||
1800000,1.0,1
|
||||
1900000,0.8,1
|
||||
2000000,0.95,1
|
||||
0,0.0,2
|
||||
100000,1.0,2
|
||||
200000,0.9,2
|
||||
300000,0.45,2
|
||||
400000,0.9,2
|
||||
500000,1.0,2
|
||||
600000,1.0,2
|
||||
700000,0.7,2
|
||||
800000,1.0,2
|
||||
900000,0.7,2
|
||||
1000000,0.9,2
|
||||
1100000,1.0,2
|
||||
1200000,1.0,2
|
||||
1300000,1.0,2
|
||||
1400000,1.0,2
|
||||
1500000,0.7,2
|
||||
1600000,1.0,2
|
||||
1700000,1.0,2
|
||||
1800000,1.0,2
|
||||
1900000,1.0,2
|
||||
2000000,0.9,2
|
||||
|
64
results/dreamerv3/mw-drawer-open.csv
Normal file
64
results/dreamerv3/mw-drawer-open.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.33,3
|
||||
400000,0.05,3
|
||||
500000,0.0,3
|
||||
600000,0.4,3
|
||||
700000,0.2,3
|
||||
800000,0.37,3
|
||||
900000,0.3,3
|
||||
1000000,0.2,3
|
||||
1100000,0.4,3
|
||||
1200000,0.2,3
|
||||
1300000,0.05,3
|
||||
1400000,0.1,3
|
||||
1500000,0.2,3
|
||||
1600000,0.1,3
|
||||
1700000,0.27,3
|
||||
1800000,0.27,3
|
||||
1900000,0.0,3
|
||||
2000000,0.05,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.82,2
|
||||
600000,0.73,2
|
||||
700000,0.07,2
|
||||
800000,0.2,2
|
||||
900000,0.15,2
|
||||
1000000,0.3,2
|
||||
1100000,0.2,2
|
||||
1200000,0.25,2
|
||||
1300000,0.35,2
|
||||
1400000,0.35,2
|
||||
1500000,0.25,2
|
||||
1600000,0.57,2
|
||||
1700000,0.2,2
|
||||
1800000,0.1,2
|
||||
1900000,0.55,2
|
||||
2000000,0.3,2
|
||||
0,0.0,1
|
||||
100000,0.05,1
|
||||
200000,0.37,1
|
||||
300000,0.5,1
|
||||
400000,0.35,1
|
||||
500000,0.45,1
|
||||
600000,0.1,1
|
||||
700000,0.17,1
|
||||
800000,0.05,1
|
||||
900000,0.35,1
|
||||
1000000,0.27,1
|
||||
1100000,0.35,1
|
||||
1200000,0.2,1
|
||||
1300000,0.35,1
|
||||
1400000,0.4,1
|
||||
1500000,0.57,1
|
||||
1600000,0.75,1
|
||||
1700000,0.6,1
|
||||
1800000,0.8,1
|
||||
1900000,0.35,1
|
||||
2000000,0.6,1
|
||||
|
64
results/dreamerv3/mw-faucet-close.csv
Normal file
64
results/dreamerv3/mw-faucet-close.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.45,3
|
||||
300000,0.0,3
|
||||
400000,0.1,3
|
||||
500000,0.1,3
|
||||
600000,0.37,3
|
||||
700000,0.15,3
|
||||
800000,0.03,3
|
||||
900000,0.2,3
|
||||
1000000,0.3,3
|
||||
1100000,0.5,3
|
||||
1200000,0.2,3
|
||||
1300000,0.1,3
|
||||
1400000,0.1,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.1,3
|
||||
1900000,0.1,3
|
||||
2000000,0.0,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.85,2
|
||||
1300000,0.78,2
|
||||
1400000,0.95,2
|
||||
1500000,0.43,2
|
||||
1600000,0.9,2
|
||||
1700000,0.2,2
|
||||
1800000,0.1,2
|
||||
1900000,0.0,2
|
||||
2000000,0.2,2
|
||||
0,0.33,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.3,1
|
||||
400000,0.3,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.07,1
|
||||
800000,0.25,1
|
||||
900000,0.08,1
|
||||
1000000,0.1,1
|
||||
1100000,0.07,1
|
||||
1200000,0.2,1
|
||||
1300000,0.17,1
|
||||
1400000,0.0,1
|
||||
1500000,0.2,1
|
||||
1600000,0.2,1
|
||||
1700000,0.0,1
|
||||
1800000,0.0,1
|
||||
1900000,0.25,1
|
||||
2000000,0.0,1
|
||||
|
64
results/dreamerv3/mw-faucet-open.csv
Normal file
64
results/dreamerv3/mw-faucet-open.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.35,3
|
||||
200000,0.8,3
|
||||
300000,0.2,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.05,3
|
||||
700000,0.2,3
|
||||
800000,0.0,3
|
||||
900000,0.18,3
|
||||
1000000,0.0,3
|
||||
1100000,0.0,3
|
||||
1200000,0.4,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,2
|
||||
100000,0.03,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.02,2
|
||||
500000,0.0,2
|
||||
600000,0.46,2
|
||||
700000,0.05,2
|
||||
800000,0.05,2
|
||||
900000,0.0,2
|
||||
1000000,0.15,2
|
||||
1100000,0.6,2
|
||||
1200000,0.0,2
|
||||
1300000,0.27,2
|
||||
1400000,0.35,2
|
||||
1500000,0.0,2
|
||||
1600000,0.4,2
|
||||
1700000,0.3,2
|
||||
1800000,0.3,2
|
||||
1900000,0.0,2
|
||||
2000000,0.23,2
|
||||
0,0.0,1
|
||||
100000,0.57,1
|
||||
200000,0.25,1
|
||||
300000,0.45,1
|
||||
400000,0.3,1
|
||||
500000,0.45,1
|
||||
600000,0.0,1
|
||||
700000,0.37,1
|
||||
800000,0.2,1
|
||||
900000,0.4,1
|
||||
1000000,0.0,1
|
||||
1100000,0.1,1
|
||||
1200000,0.1,1
|
||||
1300000,0.3,1
|
||||
1400000,0.1,1
|
||||
1500000,0.2,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1800000,0.6,1
|
||||
1900000,0.0,1
|
||||
2000000,0.05,1
|
||||
|
64
results/dreamerv3/mw-hammer.csv
Normal file
64
results/dreamerv3/mw-hammer.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.3,3
|
||||
1100000,0.3,3
|
||||
1200000,0.6,3
|
||||
1300000,0.23,3
|
||||
1400000,0.8,3
|
||||
1500000,0.15,3
|
||||
1600000,1.0,3
|
||||
1700000,0.4,3
|
||||
1800000,0.0,3
|
||||
1900000,0.3,3
|
||||
2000000,0.55,3
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.0,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1800000,0.0,1
|
||||
1900000,0.0,1
|
||||
2000000,0.0,1
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.1,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.0,2
|
||||
1300000,0.1,2
|
||||
1400000,0.0,2
|
||||
1500000,0.0,2
|
||||
1600000,0.0,2
|
||||
1700000,0.0,2
|
||||
1800000,0.0,2
|
||||
1900000,0.0,2
|
||||
2000000,0.0,2
|
||||
|
64
results/dreamerv3/mw-hand-insert.csv
Normal file
64
results/dreamerv3/mw-hand-insert.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.1,3
|
||||
200000,0.1,3
|
||||
300000,0.0,3
|
||||
400000,0.16,3
|
||||
500000,0.4,3
|
||||
600000,0.15,3
|
||||
700000,0.0,3
|
||||
800000,0.1,3
|
||||
900000,0.6,3
|
||||
1000000,0.55,3
|
||||
1100000,0.35,3
|
||||
1200000,0.83,3
|
||||
1300000,0.77,3
|
||||
1400000,0.3,3
|
||||
1500000,0.47,3
|
||||
1600000,0.27,3
|
||||
1700000,0.4,3
|
||||
1800000,0.35,3
|
||||
1900000,0.05,3
|
||||
2000000,0.4,3
|
||||
0,0.0,1
|
||||
100000,0.3,1
|
||||
200000,0.32,1
|
||||
300000,0.1,1
|
||||
400000,0.0,1
|
||||
500000,0.2,1
|
||||
600000,0.8,1
|
||||
700000,0.25,1
|
||||
800000,0.33,1
|
||||
900000,0.2,1
|
||||
1000000,0.55,1
|
||||
1100000,0.6,1
|
||||
1200000,0.57,1
|
||||
1300000,0.45,1
|
||||
1400000,0.15,1
|
||||
1500000,0.3,1
|
||||
1600000,0.27,1
|
||||
1700000,0.4,1
|
||||
1800000,0.8,1
|
||||
1900000,0.3,1
|
||||
2000000,0.1,1
|
||||
0,0.0,2
|
||||
100000,0.1,2
|
||||
200000,0.25,2
|
||||
300000,0.0,2
|
||||
400000,0.27,2
|
||||
500000,0.13,2
|
||||
600000,0.2,2
|
||||
700000,0.2,2
|
||||
800000,0.2,2
|
||||
900000,0.4,2
|
||||
1000000,0.25,2
|
||||
1100000,0.65,2
|
||||
1200000,0.45,2
|
||||
1300000,0.2,2
|
||||
1400000,0.0,2
|
||||
1500000,0.4,2
|
||||
1600000,0.05,2
|
||||
1700000,0.1,2
|
||||
1800000,0.2,2
|
||||
1900000,0.12,2
|
||||
2000000,0.5,2
|
||||
|
62
results/dreamerv3/mw-handle-press-side.csv
Normal file
62
results/dreamerv3/mw-handle-press-side.csv
Normal file
@@ -0,0 +1,62 @@
|
||||
step,success,seed
|
||||
100000,0.95,3
|
||||
200000,0.9,3
|
||||
300000,0.95,3
|
||||
400000,0.8,3
|
||||
500000,0.75,3
|
||||
600000,0.7,3
|
||||
700000,0.7,3
|
||||
800000,0.65,3
|
||||
900000,0.9,3
|
||||
1000000,0.57,3
|
||||
1100000,0.9,3
|
||||
1200000,0.9,3
|
||||
1300000,0.8,3
|
||||
1400000,0.75,3
|
||||
1500000,0.3,3
|
||||
1600000,0.65,3
|
||||
1700000,1.0,3
|
||||
1800000,0.77,3
|
||||
1900000,0.65,3
|
||||
2000000,0.7,3
|
||||
100000,0.7,2
|
||||
200000,0.9,2
|
||||
300000,0.5,2
|
||||
400000,0.8,2
|
||||
500000,0.6,2
|
||||
600000,0.97,2
|
||||
700000,0.6,2
|
||||
800000,0.75,2
|
||||
900000,0.9,2
|
||||
1000000,0.9,2
|
||||
1100000,0.45,2
|
||||
1200000,0.5,2
|
||||
1300000,0.75,2
|
||||
1400000,0.6,2
|
||||
1500000,0.8,2
|
||||
1600000,0.28,2
|
||||
1700000,0.8,2
|
||||
1800000,0.7,2
|
||||
1900000,0.85,2
|
||||
2000000,0.73,2
|
||||
0,0.0,1
|
||||
100000,0.5,1
|
||||
200000,0.55,1
|
||||
300000,0.8,1
|
||||
400000,0.8,1
|
||||
500000,0.6,1
|
||||
600000,1.0,1
|
||||
700000,0.85,1
|
||||
800000,0.7,1
|
||||
900000,0.82,1
|
||||
1000000,0.83,1
|
||||
1100000,0.85,1
|
||||
1200000,0.4,1
|
||||
1300000,0.45,1
|
||||
1400000,0.75,1
|
||||
1500000,0.63,1
|
||||
1600000,0.93,1
|
||||
1700000,1.0,1
|
||||
1800000,0.52,1
|
||||
1900000,0.75,1
|
||||
2000000,0.87,1
|
||||
|
62
results/dreamerv3/mw-handle-press.csv
Normal file
62
results/dreamerv3/mw-handle-press.csv
Normal file
@@ -0,0 +1,62 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.9,3
|
||||
200000,0.47,3
|
||||
300000,0.5,3
|
||||
400000,0.62,3
|
||||
500000,0.3,3
|
||||
600000,0.45,3
|
||||
700000,0.65,3
|
||||
800000,0.45,3
|
||||
900000,0.8,3
|
||||
1000000,0.35,3
|
||||
1100000,0.6,3
|
||||
1200000,0.9,3
|
||||
1300000,0.7,3
|
||||
1400000,0.33,3
|
||||
1500000,0.17,3
|
||||
1600000,0.65,3
|
||||
1700000,0.3,3
|
||||
1800000,0.45,3
|
||||
1900000,0.0,3
|
||||
2000000,0.2,3
|
||||
100000,0.9,2
|
||||
200000,1.0,2
|
||||
300000,0.9,2
|
||||
400000,1.0,2
|
||||
500000,1.0,2
|
||||
600000,0.95,2
|
||||
700000,0.73,2
|
||||
800000,1.0,2
|
||||
900000,1.0,2
|
||||
1000000,1.0,2
|
||||
1100000,0.8,2
|
||||
1200000,0.7,2
|
||||
1300000,0.97,2
|
||||
1400000,1.0,2
|
||||
1500000,0.9,2
|
||||
1600000,0.9,2
|
||||
1700000,1.0,2
|
||||
1800000,1.0,2
|
||||
1900000,1.0,2
|
||||
2000000,1.0,2
|
||||
100000,0.9,1
|
||||
200000,0.9,1
|
||||
300000,0.85,1
|
||||
400000,1.0,1
|
||||
500000,1.0,1
|
||||
600000,0.93,1
|
||||
700000,0.75,1
|
||||
800000,1.0,1
|
||||
900000,0.83,1
|
||||
1000000,0.05,1
|
||||
1100000,0.15,1
|
||||
1200000,0.23,1
|
||||
1300000,0.8,1
|
||||
1400000,0.43,1
|
||||
1500000,0.7,1
|
||||
1600000,0.2,1
|
||||
1700000,1.0,1
|
||||
1800000,0.65,1
|
||||
1900000,0.6,1
|
||||
2000000,1.0,1
|
||||
|
64
results/dreamerv3/mw-handle-pull-side.csv
Normal file
64
results/dreamerv3/mw-handle-pull-side.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.5,3
|
||||
200000,0.5,3
|
||||
300000,0.4,3
|
||||
400000,0.6,3
|
||||
500000,0.45,3
|
||||
600000,0.7,3
|
||||
700000,0.63,3
|
||||
800000,0.23,3
|
||||
900000,0.95,3
|
||||
1000000,1.0,3
|
||||
1100000,0.9,3
|
||||
1200000,0.53,3
|
||||
1300000,0.53,3
|
||||
1400000,0.6,3
|
||||
1500000,0.65,3
|
||||
1600000,0.9,3
|
||||
1700000,0.2,3
|
||||
1800000,0.85,3
|
||||
1900000,0.65,3
|
||||
2000000,0.4,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.5,2
|
||||
300000,0.8,2
|
||||
400000,0.7,2
|
||||
500000,0.52,2
|
||||
600000,0.9,2
|
||||
700000,0.6,2
|
||||
800000,0.9,2
|
||||
900000,0.23,2
|
||||
1000000,0.8,2
|
||||
1100000,1.0,2
|
||||
1200000,0.75,2
|
||||
1300000,0.6,2
|
||||
1400000,0.7,2
|
||||
1500000,0.6,2
|
||||
1600000,1.0,2
|
||||
1700000,0.97,2
|
||||
1800000,0.8,2
|
||||
1900000,0.92,2
|
||||
2000000,0.32,2
|
||||
0,0.0,1
|
||||
100000,0.3,1
|
||||
200000,0.78,1
|
||||
300000,0.57,1
|
||||
400000,0.45,1
|
||||
500000,0.77,1
|
||||
600000,0.7,1
|
||||
700000,0.55,1
|
||||
800000,0.8,1
|
||||
900000,0.55,1
|
||||
1000000,0.9,1
|
||||
1100000,0.75,1
|
||||
1200000,1.0,1
|
||||
1300000,0.53,1
|
||||
1400000,0.9,1
|
||||
1500000,0.7,1
|
||||
1600000,0.9,1
|
||||
1700000,0.6,1
|
||||
1800000,0.8,1
|
||||
1900000,0.6,1
|
||||
2000000,0.63,1
|
||||
|
64
results/dreamerv3/mw-handle-pull.csv
Normal file
64
results/dreamerv3/mw-handle-pull.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.25,3
|
||||
100000,0.1,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.7,3
|
||||
800000,1.0,3
|
||||
900000,0.9,3
|
||||
1000000,0.42,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.1,3
|
||||
1400000,0.65,3
|
||||
1500000,0.35,3
|
||||
1600000,0.48,3
|
||||
1700000,0.6,3
|
||||
1800000,0.0,3
|
||||
1900000,0.4,3
|
||||
2000000,0.1,3
|
||||
0,0.0,1
|
||||
100000,0.87,1
|
||||
200000,0.3,1
|
||||
300000,0.25,1
|
||||
400000,0.2,1
|
||||
500000,0.77,1
|
||||
600000,0.5,1
|
||||
700000,0.6,1
|
||||
800000,0.1,1
|
||||
900000,0.5,1
|
||||
1000000,0.25,1
|
||||
1100000,0.2,1
|
||||
1200000,0.05,1
|
||||
1300000,0.3,1
|
||||
1400000,0.1,1
|
||||
1500000,0.2,1
|
||||
1600000,0.7,1
|
||||
1700000,0.55,1
|
||||
1800000,0.4,1
|
||||
1900000,0.58,1
|
||||
2000000,0.6,1
|
||||
0,0.0,2
|
||||
100000,0.4,2
|
||||
200000,0.8,2
|
||||
300000,0.45,2
|
||||
400000,0.37,2
|
||||
500000,0.7,2
|
||||
600000,0.47,2
|
||||
700000,0.7,2
|
||||
800000,0.3,2
|
||||
900000,0.45,2
|
||||
1000000,0.6,2
|
||||
1100000,0.05,2
|
||||
1200000,0.63,2
|
||||
1300000,0.3,2
|
||||
1400000,0.0,2
|
||||
1500000,0.9,2
|
||||
1600000,0.5,2
|
||||
1700000,0.65,2
|
||||
1800000,0.9,2
|
||||
1900000,0.67,2
|
||||
2000000,0.6,2
|
||||
|
63
results/dreamerv3/mw-lever-pull.csv
Normal file
63
results/dreamerv3/mw-lever-pull.csv
Normal file
@@ -0,0 +1,63 @@
|
||||
step,success,seed
|
||||
100000,0.13,3
|
||||
200000,0.18,3
|
||||
300000,0.3,3
|
||||
400000,0.2,3
|
||||
500000,0.2,3
|
||||
600000,0.27,3
|
||||
700000,0.3,3
|
||||
800000,0.27,3
|
||||
900000,0.02,3
|
||||
1000000,0.47,3
|
||||
1100000,0.1,3
|
||||
1200000,0.3,3
|
||||
1300000,0.2,3
|
||||
1400000,0.2,3
|
||||
1500000,0.6,3
|
||||
1600000,0.3,3
|
||||
1700000,0.3,3
|
||||
1800000,0.3,3
|
||||
1900000,0.53,3
|
||||
2000000,0.3,3
|
||||
0,0.0,1
|
||||
100000,0.25,1
|
||||
200000,0.25,1
|
||||
300000,0.15,1
|
||||
400000,0.2,1
|
||||
500000,0.2,1
|
||||
600000,0.2,1
|
||||
700000,0.45,1
|
||||
800000,0.2,1
|
||||
900000,0.1,1
|
||||
1000000,0.47,1
|
||||
1100000,0.3,1
|
||||
1200000,0.05,1
|
||||
1300000,0.35,1
|
||||
1400000,0.3,1
|
||||
1500000,0.3,1
|
||||
1600000,0.0,1
|
||||
1700000,0.15,1
|
||||
1800000,0.33,1
|
||||
1900000,0.38,1
|
||||
2000000,0.2,1
|
||||
0,0.0,2
|
||||
100000,0.17,2
|
||||
200000,0.53,2
|
||||
300000,0.1,2
|
||||
400000,0.38,2
|
||||
500000,0.0,2
|
||||
600000,0.3,2
|
||||
700000,0.27,2
|
||||
800000,0.5,2
|
||||
900000,0.25,2
|
||||
1000000,0.5,2
|
||||
1100000,0.13,2
|
||||
1200000,0.3,2
|
||||
1300000,0.5,2
|
||||
1400000,0.53,2
|
||||
1500000,0.5,2
|
||||
1600000,0.25,2
|
||||
1700000,0.35,2
|
||||
1800000,0.6,2
|
||||
1900000,0.28,2
|
||||
2000000,0.17,2
|
||||
|
64
results/dreamerv3/mw-peg-insert-side.csv
Normal file
64
results/dreamerv3/mw-peg-insert-side.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.1,3
|
||||
300000,0.6,3
|
||||
400000,0.57,3
|
||||
500000,0.65,3
|
||||
600000,0.75,3
|
||||
700000,0.8,3
|
||||
800000,1.0,3
|
||||
900000,0.77,3
|
||||
1000000,0.6,3
|
||||
1100000,0.8,3
|
||||
1200000,0.55,3
|
||||
1300000,0.7,3
|
||||
1400000,0.8,3
|
||||
1500000,0.8,3
|
||||
1600000,0.48,3
|
||||
1700000,0.77,3
|
||||
1800000,0.65,3
|
||||
1900000,0.9,3
|
||||
2000000,0.4,3
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.45,1
|
||||
400000,0.65,1
|
||||
500000,0.77,1
|
||||
600000,0.5,1
|
||||
700000,0.8,1
|
||||
800000,0.57,1
|
||||
900000,0.8,1
|
||||
1000000,0.6,1
|
||||
1100000,0.4,1
|
||||
1200000,0.7,1
|
||||
1300000,0.7,1
|
||||
1400000,0.77,1
|
||||
1500000,0.57,1
|
||||
1600000,0.75,1
|
||||
1700000,0.65,1
|
||||
1800000,0.32,1
|
||||
1900000,0.62,1
|
||||
2000000,0.7,1
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.52,2
|
||||
400000,0.75,2
|
||||
500000,0.5,2
|
||||
600000,0.57,2
|
||||
700000,0.5,2
|
||||
800000,0.77,2
|
||||
900000,0.6,2
|
||||
1000000,0.5,2
|
||||
1100000,0.85,2
|
||||
1200000,0.53,2
|
||||
1300000,0.3,2
|
||||
1400000,0.55,2
|
||||
1500000,0.53,2
|
||||
1600000,0.52,2
|
||||
1700000,0.57,2
|
||||
1800000,0.6,2
|
||||
1900000,0.57,2
|
||||
2000000,0.25,2
|
||||
|
64
results/dreamerv3/mw-peg-unplug-side.csv
Normal file
64
results/dreamerv3/mw-peg-unplug-side.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.6,3
|
||||
200000,0.75,3
|
||||
300000,0.65,3
|
||||
400000,0.7,3
|
||||
500000,0.53,3
|
||||
600000,0.9,3
|
||||
700000,0.5,3
|
||||
800000,0.45,3
|
||||
900000,0.75,3
|
||||
1000000,0.6,3
|
||||
1100000,0.7,3
|
||||
1200000,0.75,3
|
||||
1300000,0.73,3
|
||||
1400000,0.8,3
|
||||
1500000,0.95,3
|
||||
1600000,0.8,3
|
||||
1700000,0.7,3
|
||||
1800000,0.7,3
|
||||
1900000,0.7,3
|
||||
2000000,0.75,3
|
||||
0,0.0,2
|
||||
100000,0.9,2
|
||||
200000,0.7,2
|
||||
300000,0.6,2
|
||||
400000,0.75,2
|
||||
500000,0.6,2
|
||||
600000,0.9,2
|
||||
700000,0.03,2
|
||||
800000,0.33,2
|
||||
900000,0.55,2
|
||||
1000000,0.72,2
|
||||
1100000,0.5,2
|
||||
1200000,0.53,2
|
||||
1300000,0.2,2
|
||||
1400000,0.9,2
|
||||
1500000,0.6,2
|
||||
1600000,0.43,2
|
||||
1700000,0.55,2
|
||||
1800000,0.33,2
|
||||
1900000,0.9,2
|
||||
2000000,0.92,2
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.17,1
|
||||
800000,0.7,1
|
||||
900000,0.73,1
|
||||
1000000,0.98,1
|
||||
1100000,0.65,1
|
||||
1200000,0.93,1
|
||||
1300000,0.35,1
|
||||
1400000,0.9,1
|
||||
1500000,1.0,1
|
||||
1600000,0.57,1
|
||||
1700000,0.75,1
|
||||
1800000,0.8,1
|
||||
1900000,0.67,1
|
||||
2000000,0.17,1
|
||||
|
64
results/dreamerv3/mw-pick-out-of-hole.csv
Normal file
64
results/dreamerv3/mw-pick-out-of-hole.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.13,3
|
||||
600000,0.1,3
|
||||
700000,0.15,3
|
||||
800000,0.6,3
|
||||
900000,0.6,3
|
||||
1000000,0.3,3
|
||||
1100000,0.53,3
|
||||
1200000,0.7,3
|
||||
1300000,0.3,3
|
||||
1400000,0.4,3
|
||||
1500000,0.77,3
|
||||
1600000,0.3,3
|
||||
1700000,0.57,3
|
||||
1800000,0.54,3
|
||||
1900000,0.5,3
|
||||
2000000,0.85,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.5,2
|
||||
300000,0.52,2
|
||||
400000,0.6,2
|
||||
500000,0.43,2
|
||||
600000,0.57,2
|
||||
700000,0.5,2
|
||||
800000,0.6,2
|
||||
900000,0.7,2
|
||||
1000000,0.5,2
|
||||
1100000,0.5,2
|
||||
1200000,0.53,2
|
||||
1300000,0.3,2
|
||||
1400000,0.35,2
|
||||
1500000,0.65,2
|
||||
1600000,0.22,2
|
||||
1700000,0.55,2
|
||||
1800000,0.55,2
|
||||
1900000,0.7,2
|
||||
2000000,0.55,2
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.0,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1800000,0.0,1
|
||||
1900000,0.0,1
|
||||
2000000,0.0,1
|
||||
|
64
results/dreamerv3/mw-pick-place-wall.csv
Normal file
64
results/dreamerv3/mw-pick-place-wall.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.07,1
|
||||
1600000,0.2,1
|
||||
1700000,0.0,1
|
||||
1800000,0.05,1
|
||||
1900000,0.6,1
|
||||
2000000,0.1,1
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.0,2
|
||||
1300000,0.0,2
|
||||
1400000,0.0,2
|
||||
1500000,0.0,2
|
||||
1600000,0.0,2
|
||||
1700000,0.0,2
|
||||
1800000,0.0,2
|
||||
1900000,0.0,2
|
||||
2000000,0.0,2
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.0,3
|
||||
1100000,0.1,3
|
||||
1200000,0.0,3
|
||||
1300000,0.1,3
|
||||
1400000,0.0,3
|
||||
1500000,0.1,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
|
63
results/dreamerv3/mw-pick-place.csv
Normal file
63
results/dreamerv3/mw-pick-place.csv
Normal file
@@ -0,0 +1,63 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.14,3
|
||||
200000,0.43,3
|
||||
300000,0.3,3
|
||||
400000,0.03,3
|
||||
500000,0.75,3
|
||||
600000,0.23,3
|
||||
700000,0.45,3
|
||||
800000,0.35,3
|
||||
900000,0.5,3
|
||||
1000000,0.47,3
|
||||
1100000,0.25,3
|
||||
1200000,0.9,3
|
||||
1300000,0.8,3
|
||||
1400000,0.5,3
|
||||
1500000,0.55,3
|
||||
1600000,0.75,3
|
||||
1700000,0.45,3
|
||||
1800000,0.53,3
|
||||
1900000,0.8,3
|
||||
2000000,0.75,3
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.4,1
|
||||
300000,0.2,1
|
||||
400000,0.1,1
|
||||
500000,0.07,1
|
||||
600000,0.05,1
|
||||
700000,0.47,1
|
||||
800000,0.85,1
|
||||
900000,0.35,1
|
||||
1000000,0.6,1
|
||||
1100000,0.8,1
|
||||
1200000,0.6,1
|
||||
1300000,0.5,1
|
||||
1400000,0.67,1
|
||||
1500000,0.85,1
|
||||
1600000,0.9,1
|
||||
1700000,0.97,1
|
||||
1800000,0.6,1
|
||||
1900000,0.5,1
|
||||
2000000,0.3,1
|
||||
100000,0.05,2
|
||||
200000,0.15,2
|
||||
300000,0.1,2
|
||||
400000,0.5,2
|
||||
500000,0.47,2
|
||||
600000,0.2,2
|
||||
700000,0.45,2
|
||||
800000,0.5,2
|
||||
900000,0.14,2
|
||||
1000000,0.4,2
|
||||
1100000,0.1,2
|
||||
1200000,0.2,2
|
||||
1300000,0.15,2
|
||||
1400000,0.85,2
|
||||
1500000,0.3,2
|
||||
1600000,0.35,2
|
||||
1700000,0.45,2
|
||||
1800000,0.6,2
|
||||
1900000,0.5,2
|
||||
2000000,0.0,2
|
||||
|
64
results/dreamerv3/mw-plate-slide-back-side.csv
Normal file
64
results/dreamerv3/mw-plate-slide-back-side.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.8,3
|
||||
200000,0.2,3
|
||||
300000,0.2,3
|
||||
400000,0.62,3
|
||||
500000,0.7,3
|
||||
600000,0.6,3
|
||||
700000,0.6,3
|
||||
800000,0.33,3
|
||||
900000,0.9,3
|
||||
1000000,0.5,3
|
||||
1100000,0.7,3
|
||||
1200000,0.25,3
|
||||
1300000,0.6,3
|
||||
1400000,0.6,3
|
||||
1500000,0.65,3
|
||||
1600000,0.43,3
|
||||
1700000,0.7,3
|
||||
1800000,0.57,3
|
||||
1900000,0.3,3
|
||||
2000000,0.45,3
|
||||
0,0.0,1
|
||||
100000,0.57,1
|
||||
200000,0.28,1
|
||||
300000,0.1,1
|
||||
400000,0.5,1
|
||||
500000,0.7,1
|
||||
600000,0.53,1
|
||||
700000,0.85,1
|
||||
800000,0.85,1
|
||||
900000,0.8,1
|
||||
1000000,0.85,1
|
||||
1100000,0.93,1
|
||||
1200000,0.57,1
|
||||
1300000,0.7,1
|
||||
1400000,0.55,1
|
||||
1500000,0.55,1
|
||||
1600000,0.8,1
|
||||
1700000,0.8,1
|
||||
1800000,0.5,1
|
||||
1900000,0.6,1
|
||||
2000000,1.0,1
|
||||
0,0.0,2
|
||||
100000,0.8,2
|
||||
200000,0.43,2
|
||||
300000,0.37,2
|
||||
400000,0.45,2
|
||||
500000,0.9,2
|
||||
600000,0.5,2
|
||||
700000,0.5,2
|
||||
800000,0.33,2
|
||||
900000,0.65,2
|
||||
1000000,0.67,2
|
||||
1100000,0.8,2
|
||||
1200000,0.4,2
|
||||
1300000,0.7,2
|
||||
1400000,0.5,2
|
||||
1500000,0.9,2
|
||||
1600000,0.87,2
|
||||
1700000,0.83,2
|
||||
1800000,0.7,2
|
||||
1900000,0.6,2
|
||||
2000000,0.6,2
|
||||
|
64
results/dreamerv3/mw-plate-slide-back.csv
Normal file
64
results/dreamerv3/mw-plate-slide-back.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.72,3
|
||||
200000,0.55,3
|
||||
300000,0.45,3
|
||||
400000,0.6,3
|
||||
500000,0.65,3
|
||||
600000,0.75,3
|
||||
700000,0.7,3
|
||||
800000,0.65,3
|
||||
900000,0.4,3
|
||||
1000000,0.7,3
|
||||
1100000,0.8,3
|
||||
1200000,0.7,3
|
||||
1300000,0.93,3
|
||||
1400000,0.6,3
|
||||
1500000,0.65,3
|
||||
1600000,0.6,3
|
||||
1700000,0.87,3
|
||||
1800000,0.45,3
|
||||
1900000,0.75,3
|
||||
2000000,0.5,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.45,2
|
||||
500000,0.57,2
|
||||
600000,0.75,2
|
||||
700000,0.5,2
|
||||
800000,0.3,2
|
||||
900000,0.55,2
|
||||
1000000,0.5,2
|
||||
1100000,0.37,2
|
||||
1200000,0.35,2
|
||||
1300000,0.55,2
|
||||
1400000,0.25,2
|
||||
1500000,0.5,2
|
||||
1600000,1.0,2
|
||||
1700000,0.87,2
|
||||
1800000,0.5,2
|
||||
1900000,0.85,2
|
||||
2000000,0.5,2
|
||||
0,0.0,1
|
||||
100000,0.7,1
|
||||
200000,0.9,1
|
||||
300000,0.37,1
|
||||
400000,0.5,1
|
||||
500000,0.55,1
|
||||
600000,0.9,1
|
||||
700000,0.5,1
|
||||
800000,0.7,1
|
||||
900000,1.0,1
|
||||
1000000,0.77,1
|
||||
1100000,0.3,1
|
||||
1200000,0.53,1
|
||||
1300000,0.7,1
|
||||
1400000,0.65,1
|
||||
1500000,0.77,1
|
||||
1600000,0.5,1
|
||||
1700000,0.45,1
|
||||
1800000,0.56,1
|
||||
1900000,0.45,1
|
||||
2000000,0.87,1
|
||||
|
64
results/dreamerv3/mw-plate-slide-side.csv
Normal file
64
results/dreamerv3/mw-plate-slide-side.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.07,3
|
||||
200000,0.1,3
|
||||
300000,0.17,3
|
||||
400000,0.1,3
|
||||
500000,0.1,3
|
||||
600000,0.4,3
|
||||
700000,0.37,3
|
||||
800000,0.2,3
|
||||
900000,0.75,3
|
||||
1000000,0.5,3
|
||||
1100000,0.73,3
|
||||
1200000,0.65,3
|
||||
1300000,0.6,3
|
||||
1400000,1.0,3
|
||||
1500000,0.9,3
|
||||
1600000,0.4,3
|
||||
1700000,0.55,3
|
||||
1800000,0.72,3
|
||||
1900000,0.6,3
|
||||
2000000,0.5,3
|
||||
0,0.0,2
|
||||
100000,0.4,2
|
||||
200000,0.3,2
|
||||
300000,0.75,2
|
||||
400000,0.6,2
|
||||
500000,0.3,2
|
||||
600000,0.27,2
|
||||
700000,0.85,2
|
||||
800000,0.5,2
|
||||
900000,0.38,2
|
||||
1000000,0.73,2
|
||||
1100000,0.4,2
|
||||
1200000,0.52,2
|
||||
1300000,0.48,2
|
||||
1400000,0.5,2
|
||||
1500000,0.6,2
|
||||
1600000,0.7,2
|
||||
1700000,0.4,2
|
||||
1800000,0.45,2
|
||||
1900000,0.45,2
|
||||
2000000,0.55,2
|
||||
0,0.0,1
|
||||
100000,0.47,1
|
||||
200000,0.3,1
|
||||
300000,0.42,1
|
||||
400000,0.23,1
|
||||
500000,0.33,1
|
||||
600000,0.3,1
|
||||
700000,0.5,1
|
||||
800000,0.4,1
|
||||
900000,0.2,1
|
||||
1000000,0.23,1
|
||||
1100000,0.6,1
|
||||
1200000,0.15,1
|
||||
1300000,0.3,1
|
||||
1400000,0.35,1
|
||||
1500000,0.65,1
|
||||
1600000,0.6,1
|
||||
1700000,0.5,1
|
||||
1800000,0.4,1
|
||||
1900000,0.7,1
|
||||
2000000,0.85,1
|
||||
|
63
results/dreamerv3/mw-plate-slide.csv
Normal file
63
results/dreamerv3/mw-plate-slide.csv
Normal file
@@ -0,0 +1,63 @@
|
||||
step,success,seed
|
||||
100000,0.7,3
|
||||
200000,0.18,3
|
||||
300000,0.5,3
|
||||
400000,0.75,3
|
||||
500000,0.5,3
|
||||
600000,0.7,3
|
||||
700000,0.6,3
|
||||
800000,0.95,3
|
||||
900000,0.3,3
|
||||
1000000,0.75,3
|
||||
1100000,0.88,3
|
||||
1200000,1.0,3
|
||||
1300000,0.57,3
|
||||
1400000,0.4,3
|
||||
1500000,0.7,3
|
||||
1600000,0.9,3
|
||||
1700000,0.37,3
|
||||
1800000,0.4,3
|
||||
1900000,0.22,3
|
||||
2000000,0.3,3
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.83,1
|
||||
300000,0.5,1
|
||||
400000,0.38,1
|
||||
500000,0.77,1
|
||||
600000,0.7,1
|
||||
700000,0.3,1
|
||||
800000,0.55,1
|
||||
900000,0.4,1
|
||||
1000000,0.7,1
|
||||
1100000,0.6,1
|
||||
1200000,0.35,1
|
||||
1300000,0.6,1
|
||||
1400000,1.0,1
|
||||
1500000,0.4,1
|
||||
1600000,0.9,1
|
||||
1700000,0.85,1
|
||||
1800000,0.7,1
|
||||
1900000,0.57,1
|
||||
2000000,0.6,1
|
||||
0,0.0,2
|
||||
100000,0.1,2
|
||||
200000,0.08,2
|
||||
300000,0.4,2
|
||||
400000,0.1,2
|
||||
500000,0.0,2
|
||||
600000,0.06,2
|
||||
700000,1.0,2
|
||||
800000,0.83,2
|
||||
900000,0.15,2
|
||||
1000000,0.2,2
|
||||
1100000,0.65,2
|
||||
1200000,0.5,2
|
||||
1300000,0.37,2
|
||||
1400000,0.6,2
|
||||
1500000,0.4,2
|
||||
1600000,0.3,2
|
||||
1700000,0.6,2
|
||||
1800000,0.57,2
|
||||
1900000,0.45,2
|
||||
2000000,0.6,2
|
||||
|
64
results/dreamerv3/mw-push-back.csv
Normal file
64
results/dreamerv3/mw-push-back.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.1,3
|
||||
200000,0.9,3
|
||||
300000,0.25,3
|
||||
400000,0.65,3
|
||||
500000,1.0,3
|
||||
600000,0.25,3
|
||||
700000,0.47,3
|
||||
800000,0.8,3
|
||||
900000,1.0,3
|
||||
1000000,0.75,3
|
||||
1100000,0.7,3
|
||||
1200000,0.9,3
|
||||
1300000,0.8,3
|
||||
1400000,0.8,3
|
||||
1500000,0.5,3
|
||||
1600000,0.6,3
|
||||
1700000,0.4,3
|
||||
1800000,0.7,3
|
||||
1900000,0.7,3
|
||||
2000000,0.5,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.0,2
|
||||
1300000,0.0,2
|
||||
1400000,0.0,2
|
||||
1500000,0.0,2
|
||||
1600000,0.0,2
|
||||
1700000,0.0,2
|
||||
1800000,0.0,2
|
||||
1900000,0.0,2
|
||||
2000000,0.0,2
|
||||
0,0.0,1
|
||||
100000,0.6,1
|
||||
200000,0.45,1
|
||||
300000,0.55,1
|
||||
400000,0.5,1
|
||||
500000,0.9,1
|
||||
600000,0.52,1
|
||||
700000,0.3,1
|
||||
800000,0.5,1
|
||||
900000,0.75,1
|
||||
1000000,0.35,1
|
||||
1100000,0.63,1
|
||||
1200000,0.43,1
|
||||
1300000,0.85,1
|
||||
1400000,0.55,1
|
||||
1500000,0.5,1
|
||||
1600000,0.7,1
|
||||
1700000,0.55,1
|
||||
1800000,0.9,1
|
||||
1900000,0.5,1
|
||||
2000000,0.9,1
|
||||
|
63
results/dreamerv3/mw-push-wall.csv
Normal file
63
results/dreamerv3/mw-push-wall.csv
Normal file
@@ -0,0 +1,63 @@
|
||||
step,success,seed
|
||||
100000,0.0,3
|
||||
200000,0.05,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.1,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.3,3
|
||||
1000000,0.0,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,1
|
||||
100000,0.15,1
|
||||
200000,0.0,1
|
||||
300000,0.35,1
|
||||
400000,0.0,1
|
||||
500000,0.25,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.0,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1800000,0.0,1
|
||||
1900000,0.0,1
|
||||
2000000,0.15,1
|
||||
0,0.0,2
|
||||
100000,0.57,2
|
||||
200000,0.1,2
|
||||
300000,0.1,2
|
||||
400000,0.2,2
|
||||
500000,0.0,2
|
||||
600000,0.18,2
|
||||
700000,0.2,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.5,2
|
||||
1300000,0.3,2
|
||||
1400000,0.07,2
|
||||
1500000,0.0,2
|
||||
1600000,0.0,2
|
||||
1700000,0.0,2
|
||||
1800000,0.0,2
|
||||
1900000,0.0,2
|
||||
2000000,0.1,2
|
||||
|
63
results/dreamerv3/mw-push.csv
Normal file
63
results/dreamerv3/mw-push.csv
Normal file
@@ -0,0 +1,63 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.1,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.2,3
|
||||
600000,0.1,3
|
||||
700000,0.1,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.0,3
|
||||
1100000,0.1,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.2,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
100000,0.3,2
|
||||
200000,0.1,2
|
||||
300000,0.1,2
|
||||
400000,0.3,2
|
||||
500000,0.0,2
|
||||
600000,0.47,2
|
||||
700000,0.0,2
|
||||
800000,0.2,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.2,2
|
||||
1300000,0.1,2
|
||||
1400000,0.17,2
|
||||
1500000,0.0,2
|
||||
1600000,0.45,2
|
||||
1700000,0.05,2
|
||||
1800000,0.1,2
|
||||
1900000,0.0,2
|
||||
2000000,0.1,2
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.1,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.15,1
|
||||
1500000,0.0,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1800000,0.1,1
|
||||
1900000,0.0,1
|
||||
2000000,0.3,1
|
||||
|
64
results/dreamerv3/mw-reach-wall.csv
Normal file
64
results/dreamerv3/mw-reach-wall.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.05,3
|
||||
200000,0.15,3
|
||||
300000,0.13,3
|
||||
400000,0.18,3
|
||||
500000,0.0,3
|
||||
600000,0.1,3
|
||||
700000,0.2,3
|
||||
800000,0.2,3
|
||||
900000,0.27,3
|
||||
1000000,0.0,3
|
||||
1100000,0.1,3
|
||||
1200000,0.0,3
|
||||
1300000,0.5,3
|
||||
1400000,0.0,3
|
||||
1500000,0.27,3
|
||||
1600000,0.1,3
|
||||
1700000,0.1,3
|
||||
1800000,0.0,3
|
||||
1900000,0.03,3
|
||||
2000000,0.0,3
|
||||
0,0.0,1
|
||||
100000,0.27,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.35,1
|
||||
600000,0.3,1
|
||||
700000,0.17,1
|
||||
800000,0.05,1
|
||||
900000,0.2,1
|
||||
1000000,0.33,1
|
||||
1100000,0.0,1
|
||||
1200000,0.1,1
|
||||
1300000,0.02,1
|
||||
1400000,0.2,1
|
||||
1500000,0.05,1
|
||||
1600000,0.2,1
|
||||
1700000,0.17,1
|
||||
1800000,0.38,1
|
||||
1900000,0.07,1
|
||||
2000000,0.0,1
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.15,2
|
||||
300000,0.1,2
|
||||
400000,0.3,2
|
||||
500000,0.65,2
|
||||
600000,0.2,2
|
||||
700000,0.0,2
|
||||
800000,0.15,2
|
||||
900000,0.35,2
|
||||
1000000,0.1,2
|
||||
1100000,0.25,2
|
||||
1200000,0.1,2
|
||||
1300000,0.35,2
|
||||
1400000,0.4,2
|
||||
1500000,0.1,2
|
||||
1600000,0.03,2
|
||||
1700000,0.0,2
|
||||
1800000,0.1,2
|
||||
1900000,0.0,2
|
||||
2000000,0.0,2
|
||||
|
47
results/dreamerv3/mw-reach.csv
Normal file
47
results/dreamerv3/mw-reach.csv
Normal file
@@ -0,0 +1,47 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.06,3
|
||||
200000,0.0,3
|
||||
400000,0.0,3
|
||||
0,0.0,1
|
||||
100000,0.1,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.1,1
|
||||
600000,0.1,1
|
||||
700000,0.1,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.2,1
|
||||
1500000,0.2,1
|
||||
1600000,0.03,1
|
||||
1700000,0.02,1
|
||||
1800000,0.13,1
|
||||
1900000,0.1,1
|
||||
2000000,0.05,1
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.2,2
|
||||
300000,0.17,2
|
||||
400000,0.1,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.15,2
|
||||
800000,0.1,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.0,2
|
||||
1300000,0.1,2
|
||||
1400000,0.2,2
|
||||
1500000,0.0,2
|
||||
1600000,0.0,2
|
||||
1700000,0.1,2
|
||||
1800000,0.0,2
|
||||
1900000,0.1,2
|
||||
2000000,0.0,2
|
||||
|
47
results/dreamerv3/mw-shelf-place.csv
Normal file
47
results/dreamerv3/mw-shelf-place.csv
Normal file
@@ -0,0 +1,47 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
400000,0.0,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.0,2
|
||||
1300000,0.0,2
|
||||
1400000,0.0,2
|
||||
1500000,0.0,2
|
||||
1600000,0.0,2
|
||||
1700000,0.0,2
|
||||
1800000,0.0,2
|
||||
1900000,0.0,2
|
||||
2000000,0.0,2
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.4,1
|
||||
1200000,0.5,1
|
||||
1300000,0.5,1
|
||||
1400000,0.75,1
|
||||
1500000,0.6,1
|
||||
1600000,0.7,1
|
||||
1700000,0.65,1
|
||||
1800000,0.4,1
|
||||
1900000,0.57,1
|
||||
2000000,0.75,1
|
||||
|
64
results/dreamerv3/mw-soccer.csv
Normal file
64
results/dreamerv3/mw-soccer.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.3,3
|
||||
200000,0.63,3
|
||||
300000,0.75,3
|
||||
400000,0.2,3
|
||||
500000,0.0,3
|
||||
600000,0.8,3
|
||||
700000,1.0,3
|
||||
800000,0.25,3
|
||||
900000,0.65,3
|
||||
1000000,0.07,3
|
||||
1100000,0.02,3
|
||||
1200000,0.15,3
|
||||
1300000,0.13,3
|
||||
1400000,0.27,3
|
||||
1500000,0.23,3
|
||||
1600000,0.2,3
|
||||
1700000,0.1,3
|
||||
1800000,0.22,3
|
||||
1900000,0.2,3
|
||||
2000000,0.1,3
|
||||
0,0.0,2
|
||||
100000,0.65,2
|
||||
200000,0.9,2
|
||||
300000,0.52,2
|
||||
400000,0.0,2
|
||||
500000,0.6,2
|
||||
600000,0.3,2
|
||||
700000,0.1,2
|
||||
800000,0.65,2
|
||||
900000,0.8,2
|
||||
1000000,0.73,2
|
||||
1100000,0.1,2
|
||||
1200000,0.0,2
|
||||
1300000,0.2,2
|
||||
1400000,0.55,2
|
||||
1500000,0.5,2
|
||||
1600000,0.0,2
|
||||
1700000,0.3,2
|
||||
1800000,0.5,2
|
||||
1900000,0.1,2
|
||||
2000000,0.0,2
|
||||
0,0.0,1
|
||||
100000,0.8,1
|
||||
200000,0.8,1
|
||||
300000,0.87,1
|
||||
400000,0.55,1
|
||||
500000,0.38,1
|
||||
600000,0.2,1
|
||||
700000,0.0,1
|
||||
800000,0.37,1
|
||||
900000,0.3,1
|
||||
1000000,0.7,1
|
||||
1100000,0.45,1
|
||||
1200000,0.0,1
|
||||
1300000,0.5,1
|
||||
1400000,0.28,1
|
||||
1500000,0.5,1
|
||||
1600000,0.57,1
|
||||
1700000,0.9,1
|
||||
1800000,0.3,1
|
||||
1900000,0.55,1
|
||||
2000000,0.0,1
|
||||
|
64
results/dreamerv3/mw-stick-pull.csv
Normal file
64
results/dreamerv3/mw-stick-pull.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.1,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.0,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.05,2
|
||||
1200000,0.15,2
|
||||
1300000,0.1,2
|
||||
1400000,0.05,2
|
||||
1500000,0.0,2
|
||||
1600000,0.1,2
|
||||
1700000,0.0,2
|
||||
1800000,0.0,2
|
||||
1900000,0.0,2
|
||||
2000000,0.1,2
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.3,1
|
||||
1600000,0.1,1
|
||||
1700000,0.2,1
|
||||
1800000,0.07,1
|
||||
1900000,0.15,1
|
||||
2000000,0.2,1
|
||||
|
64
results/dreamerv3/mw-stick-push.csv
Normal file
64
results/dreamerv3/mw-stick-push.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.0,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.63,1
|
||||
1300000,0.4,1
|
||||
1400000,0.27,1
|
||||
1500000,0.7,1
|
||||
1600000,1.0,1
|
||||
1700000,0.65,1
|
||||
1800000,0.5,1
|
||||
1900000,0.1,1
|
||||
2000000,0.0,1
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.17,2
|
||||
300000,0.7,2
|
||||
400000,0.45,2
|
||||
500000,0.35,2
|
||||
600000,0.4,2
|
||||
700000,0.4,2
|
||||
800000,0.45,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.75,2
|
||||
1200000,0.2,2
|
||||
1300000,0.28,2
|
||||
1400000,0.5,2
|
||||
1500000,0.55,2
|
||||
1600000,0.7,2
|
||||
1700000,0.23,2
|
||||
1800000,0.67,2
|
||||
1900000,0.25,2
|
||||
2000000,0.05,2
|
||||
|
63
results/dreamerv3/mw-sweep-into.csv
Normal file
63
results/dreamerv3/mw-sweep-into.csv
Normal file
@@ -0,0 +1,63 @@
|
||||
step,success,seed
|
||||
100000,0.7,3
|
||||
200000,0.55,3
|
||||
300000,0.55,3
|
||||
400000,0.9,3
|
||||
500000,0.77,3
|
||||
600000,0.63,3
|
||||
700000,0.97,3
|
||||
800000,0.8,3
|
||||
900000,0.6,3
|
||||
1000000,0.45,3
|
||||
1100000,0.5,3
|
||||
1200000,0.57,3
|
||||
1300000,0.45,3
|
||||
1400000,1.0,3
|
||||
1500000,0.82,3
|
||||
1600000,0.5,3
|
||||
1700000,0.7,3
|
||||
1800000,0.8,3
|
||||
1900000,0.85,3
|
||||
2000000,0.85,3
|
||||
0,0.0,2
|
||||
100000,0.7,2
|
||||
200000,0.55,2
|
||||
300000,0.55,2
|
||||
400000,0.9,2
|
||||
500000,0.4,2
|
||||
600000,0.65,2
|
||||
700000,0.7,2
|
||||
800000,0.43,2
|
||||
900000,0.75,2
|
||||
1000000,0.75,2
|
||||
1100000,0.45,2
|
||||
1200000,0.25,2
|
||||
1300000,0.12,2
|
||||
1400000,0.3,2
|
||||
1500000,0.3,2
|
||||
1600000,0.1,2
|
||||
1700000,0.1,2
|
||||
1800000,0.57,2
|
||||
1900000,0.1,2
|
||||
2000000,0.35,2
|
||||
0,0.0,1
|
||||
100000,0.6,1
|
||||
200000,0.55,1
|
||||
300000,0.97,1
|
||||
400000,1.0,1
|
||||
500000,0.75,1
|
||||
600000,0.6,1
|
||||
700000,0.6,1
|
||||
800000,0.95,1
|
||||
900000,0.57,1
|
||||
1000000,0.77,1
|
||||
1100000,0.35,1
|
||||
1200000,1.0,1
|
||||
1300000,0.46,1
|
||||
1400000,0.8,1
|
||||
1500000,0.7,1
|
||||
1600000,0.75,1
|
||||
1700000,0.9,1
|
||||
1800000,0.23,1
|
||||
1900000,0.85,1
|
||||
2000000,0.78,1
|
||||
|
64
results/dreamerv3/mw-sweep.csv
Normal file
64
results/dreamerv3/mw-sweep.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.55,3
|
||||
500000,0.05,3
|
||||
600000,0.2,3
|
||||
700000,0.33,3
|
||||
800000,0.17,3
|
||||
900000,0.3,3
|
||||
1000000,0.15,3
|
||||
1100000,0.15,3
|
||||
1200000,0.2,3
|
||||
1300000,0.23,3
|
||||
1400000,0.5,3
|
||||
1500000,0.45,3
|
||||
1600000,0.2,3
|
||||
1700000,0.1,3
|
||||
1800000,0.27,3
|
||||
1900000,0.6,3
|
||||
2000000,0.8,3
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.1,2
|
||||
300000,0.28,2
|
||||
400000,0.5,2
|
||||
500000,0.18,2
|
||||
600000,0.0,2
|
||||
700000,0.1,2
|
||||
800000,0.2,2
|
||||
900000,0.3,2
|
||||
1000000,0.45,2
|
||||
1100000,0.0,2
|
||||
1200000,0.0,2
|
||||
1300000,0.23,2
|
||||
1400000,0.3,2
|
||||
1500000,0.2,2
|
||||
1600000,0.0,2
|
||||
1700000,0.3,2
|
||||
1800000,0.2,2
|
||||
1900000,0.1,2
|
||||
2000000,0.3,2
|
||||
0,0.0,1
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.4,1
|
||||
600000,0.3,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.1,1
|
||||
1000000,0.2,1
|
||||
1100000,0.1,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.1,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1800000,0.1,1
|
||||
1900000,0.05,1
|
||||
2000000,0.1,1
|
||||
|
64
results/dreamerv3/mw-window-close.csv
Normal file
64
results/dreamerv3/mw-window-close.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.11,3
|
||||
100000,0.9,3
|
||||
200000,0.5,3
|
||||
300000,0.65,3
|
||||
400000,0.5,3
|
||||
500000,0.5,3
|
||||
600000,0.85,3
|
||||
700000,0.6,3
|
||||
800000,0.6,3
|
||||
900000,0.57,3
|
||||
1000000,0.45,3
|
||||
1100000,0.8,3
|
||||
1200000,0.67,3
|
||||
1300000,0.5,3
|
||||
1400000,0.5,3
|
||||
1500000,0.57,3
|
||||
1600000,0.5,3
|
||||
1700000,0.13,3
|
||||
1800000,0.5,3
|
||||
1900000,0.5,3
|
||||
2000000,0.6,3
|
||||
0,0.0,2
|
||||
100000,0.67,2
|
||||
200000,0.73,2
|
||||
300000,1.0,2
|
||||
400000,0.55,2
|
||||
500000,0.73,2
|
||||
600000,0.53,2
|
||||
700000,0.7,2
|
||||
800000,0.8,2
|
||||
900000,0.9,2
|
||||
1000000,0.6,2
|
||||
1100000,1.0,2
|
||||
1200000,0.9,2
|
||||
1300000,1.0,2
|
||||
1400000,0.6,2
|
||||
1500000,0.7,2
|
||||
1600000,0.83,2
|
||||
1700000,0.9,2
|
||||
1800000,1.0,2
|
||||
1900000,0.8,2
|
||||
2000000,0.82,2
|
||||
0,0.0,1
|
||||
100000,0.7,1
|
||||
200000,0.65,1
|
||||
300000,0.35,1
|
||||
400000,0.63,1
|
||||
500000,0.8,1
|
||||
600000,0.8,1
|
||||
700000,0.48,1
|
||||
800000,0.8,1
|
||||
900000,0.58,1
|
||||
1000000,0.77,1
|
||||
1100000,0.4,1
|
||||
1200000,0.8,1
|
||||
1300000,0.7,1
|
||||
1400000,0.75,1
|
||||
1500000,0.9,1
|
||||
1600000,0.7,1
|
||||
1700000,0.35,1
|
||||
1800000,0.5,1
|
||||
1900000,0.75,1
|
||||
2000000,0.92,1
|
||||
|
64
results/dreamerv3/mw-window-open.csv
Normal file
64
results/dreamerv3/mw-window-open.csv
Normal file
@@ -0,0 +1,64 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
100000,0.67,3
|
||||
200000,0.5,3
|
||||
300000,0.63,3
|
||||
400000,0.45,3
|
||||
500000,0.7,3
|
||||
600000,0.34,3
|
||||
700000,0.85,3
|
||||
800000,0.7,3
|
||||
900000,0.43,3
|
||||
1000000,0.8,3
|
||||
1100000,0.7,3
|
||||
1200000,0.55,3
|
||||
1300000,0.75,3
|
||||
1400000,0.6,3
|
||||
1500000,0.8,3
|
||||
1600000,0.8,3
|
||||
1700000,0.45,3
|
||||
1800000,0.9,3
|
||||
1900000,0.25,3
|
||||
2000000,0.95,3
|
||||
0,0.5,1
|
||||
100000,0.43,1
|
||||
200000,0.85,1
|
||||
300000,0.8,1
|
||||
400000,0.7,1
|
||||
500000,0.7,1
|
||||
600000,0.83,1
|
||||
700000,0.65,1
|
||||
800000,0.85,1
|
||||
900000,0.73,1
|
||||
1000000,0.65,1
|
||||
1100000,0.7,1
|
||||
1200000,0.63,1
|
||||
1300000,0.65,1
|
||||
1400000,0.7,1
|
||||
1500000,0.2,1
|
||||
1600000,0.95,1
|
||||
1700000,0.13,1
|
||||
1800000,0.8,1
|
||||
1900000,0.45,1
|
||||
2000000,0.47,1
|
||||
0,0.0,2
|
||||
100000,0.17,2
|
||||
200000,0.4,2
|
||||
300000,0.3,2
|
||||
400000,0.43,2
|
||||
500000,0.5,2
|
||||
600000,0.6,2
|
||||
700000,0.65,2
|
||||
800000,0.55,2
|
||||
900000,0.6,2
|
||||
1000000,0.6,2
|
||||
1100000,0.45,2
|
||||
1200000,0.55,2
|
||||
1300000,0.55,2
|
||||
1400000,0.55,2
|
||||
1500000,0.4,2
|
||||
1600000,0.77,2
|
||||
1700000,0.57,2
|
||||
1800000,0.4,2
|
||||
1900000,0.6,2
|
||||
2000000,0.2,2
|
||||
|
121
results/dreamerv3/myo-hand-key-turn-hard.csv
Normal file
121
results/dreamerv3/myo-hand-key-turn-hard.csv
Normal file
@@ -0,0 +1,121 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
50000,0.0,3
|
||||
100000,0.0,3
|
||||
150000,0.0,3
|
||||
200000,0.0,3
|
||||
250000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
450000,0.0,3
|
||||
500000,0.0,3
|
||||
550000,0.0,3
|
||||
600000,0.0,3
|
||||
650000,0.0,3
|
||||
700000,0.0,3
|
||||
750000,0.0,3
|
||||
800000,0.0,3
|
||||
850000,0.0,3
|
||||
900000,0.0,3
|
||||
950000,0.0,3
|
||||
1000000,0.0,3
|
||||
1050000,0.0,3
|
||||
1100000,0.0,3
|
||||
1150000,0.0,3
|
||||
1200000,0.0,3
|
||||
1250000,0.0,3
|
||||
1300000,0.0,3
|
||||
1350000,0.0,3
|
||||
1400000,0.0,3
|
||||
1450000,0.0,3
|
||||
1500000,0.0,3
|
||||
1550000,0.0,3
|
||||
1600000,0.0,3
|
||||
1650000,0.0,3
|
||||
1700000,0.0,3
|
||||
1750000,0.0,3
|
||||
1800000,0.0,3
|
||||
1850000,0.0,3
|
||||
1900000,0.0,3
|
||||
1950000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,2
|
||||
50000,0.0,2
|
||||
100000,0.0,2
|
||||
150000,0.0,2
|
||||
200000,0.0,2
|
||||
250000,0.0,2
|
||||
300000,0.0,2
|
||||
350000,0.0,2
|
||||
400000,0.0,2
|
||||
450000,0.0,2
|
||||
500000,0.0,2
|
||||
550000,0.0,2
|
||||
600000,0.0,2
|
||||
650000,0.0,2
|
||||
700000,0.0,2
|
||||
750000,0.0,2
|
||||
800000,0.0,2
|
||||
850000,0.0,2
|
||||
900000,0.0,2
|
||||
950000,0.0,2
|
||||
1000000,0.0,2
|
||||
1050000,0.0,2
|
||||
1100000,0.0,2
|
||||
1150000,0.0,2
|
||||
1200000,0.0,2
|
||||
1250000,0.0,2
|
||||
1300000,0.0,2
|
||||
1350000,0.0,2
|
||||
1400000,0.0,2
|
||||
1450000,0.0,2
|
||||
1500000,0.0,2
|
||||
1550000,0.0,2
|
||||
1600000,0.0,2
|
||||
1650000,0.0,2
|
||||
1700000,0.0,2
|
||||
1750000,0.0,2
|
||||
1800000,0.0,2
|
||||
1850000,0.0,2
|
||||
1900000,0.0,2
|
||||
1950000,0.0,2
|
||||
2000000,0.0,2
|
||||
0,0.0,1
|
||||
50000,0.0,1
|
||||
100000,0.0,1
|
||||
150000,0.0,1
|
||||
200000,0.0,1
|
||||
250000,0.0,1
|
||||
300000,0.0,1
|
||||
350000,0.0,1
|
||||
400000,0.0,1
|
||||
450000,0.0,1
|
||||
500000,0.0,1
|
||||
550000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
750000,0.0,1
|
||||
800000,0.0,1
|
||||
850000,0.0,1
|
||||
900000,0.0,1
|
||||
950000,0.0,1
|
||||
1000000,0.0,1
|
||||
1050000,0.0,1
|
||||
1100000,0.0,1
|
||||
1150000,0.0,1
|
||||
1200000,0.0,1
|
||||
1250000,0.0,1
|
||||
1300000,0.0,1
|
||||
1350000,0.0,1
|
||||
1400000,0.0,1
|
||||
1450000,0.0,1
|
||||
1500000,0.0,1
|
||||
1550000,0.0,1
|
||||
1600000,0.0,1
|
||||
1650000,0.0,1
|
||||
1700000,0.0,1
|
||||
1750000,0.0,1
|
||||
1800000,0.0,1
|
||||
1850000,0.0,1
|
||||
1900000,0.0,1
|
||||
1950000,0.0,1
|
||||
|
118
results/dreamerv3/myo-hand-key-turn.csv
Normal file
118
results/dreamerv3/myo-hand-key-turn.csv
Normal file
@@ -0,0 +1,118 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
50000,0.0,3
|
||||
100000,0.0,3
|
||||
150000,0.0,3
|
||||
250000,0.0,3
|
||||
300000,0.0,3
|
||||
350000,0.0,3
|
||||
400000,0.0,3
|
||||
450000,0.0,3
|
||||
500000,0.0,3
|
||||
550000,0.0,3
|
||||
600000,0.0,3
|
||||
650000,0.0,3
|
||||
700000,0.0,3
|
||||
750000,0.0,3
|
||||
800000,0.0,3
|
||||
850000,0.0,3
|
||||
900000,0.0,3
|
||||
950000,0.0,3
|
||||
1000000,0.2,3
|
||||
1050000,0.1,3
|
||||
1100000,0.0,3
|
||||
1150000,0.0,3
|
||||
1200000,0.0,3
|
||||
1250000,0.0,3
|
||||
1300000,0.0,3
|
||||
1350000,0.0,3
|
||||
1400000,0.0,3
|
||||
1450000,0.0,3
|
||||
1500000,0.0,3
|
||||
1550000,0.0,3
|
||||
1600000,0.0,3
|
||||
1650000,0.0,3
|
||||
1700000,0.0,3
|
||||
1750000,0.0,3
|
||||
1800000,0.0,3
|
||||
1850000,0.0,3
|
||||
1900000,0.0,3
|
||||
1950000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,2
|
||||
50000,0.0,2
|
||||
100000,0.0,2
|
||||
150000,0.0,2
|
||||
200000,0.1,2
|
||||
250000,0.0,2
|
||||
300000,0.0,2
|
||||
350000,0.0,2
|
||||
400000,0.0,2
|
||||
450000,0.0,2
|
||||
500000,0.0,2
|
||||
550000,0.0,2
|
||||
600000,0.0,2
|
||||
650000,0.0,2
|
||||
700000,0.0,2
|
||||
850000,0.0,2
|
||||
900000,0.0,2
|
||||
950000,0.0,2
|
||||
1000000,0.0,2
|
||||
1050000,0.0,2
|
||||
1100000,0.0,2
|
||||
1150000,0.0,2
|
||||
1200000,0.0,2
|
||||
1250000,0.0,2
|
||||
1300000,0.0,2
|
||||
1350000,0.0,2
|
||||
1400000,0.0,2
|
||||
1450000,0.0,2
|
||||
1500000,0.0,2
|
||||
1550000,0.0,2
|
||||
1600000,0.0,2
|
||||
1650000,0.1,2
|
||||
1700000,0.0,2
|
||||
1750000,0.0,2
|
||||
1850000,0.0,2
|
||||
1900000,0.0,2
|
||||
1950000,0.0,2
|
||||
0,0.0,1
|
||||
50000,0.0,1
|
||||
100000,0.0,1
|
||||
150000,0.1,1
|
||||
200000,0.0,1
|
||||
250000,0.0,1
|
||||
300000,0.0,1
|
||||
350000,0.0,1
|
||||
400000,0.0,1
|
||||
450000,0.0,1
|
||||
500000,0.0,1
|
||||
550000,0.0,1
|
||||
600000,0.1,1
|
||||
650000,0.0,1
|
||||
700000,0.0,1
|
||||
750000,0.1,1
|
||||
800000,0.0,1
|
||||
850000,0.0,1
|
||||
900000,0.0,1
|
||||
950000,0.0,1
|
||||
1000000,0.0,1
|
||||
1050000,0.0,1
|
||||
1100000,0.0,1
|
||||
1150000,0.0,1
|
||||
1200000,0.0,1
|
||||
1250000,0.0,1
|
||||
1300000,0.0,1
|
||||
1350000,0.0,1
|
||||
1400000,0.0,1
|
||||
1450000,0.0,1
|
||||
1500000,0.0,1
|
||||
1550000,0.0,1
|
||||
1600000,0.0,1
|
||||
1650000,0.0,1
|
||||
1700000,0.0,1
|
||||
1750000,0.0,1
|
||||
1800000,0.0,1
|
||||
1850000,0.0,1
|
||||
1950000,0.0,1
|
||||
2000000,0.0,1
|
||||
|
116
results/dreamerv3/myo-hand-obj-hold-hard.csv
Normal file
116
results/dreamerv3/myo-hand-obj-hold-hard.csv
Normal file
@@ -0,0 +1,116 @@
|
||||
step,success,seed
|
||||
50000,0.0,3
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
250000,0.15,3
|
||||
300000,0.0,3
|
||||
350000,0.0,3
|
||||
400000,0.0,3
|
||||
450000,0.0,3
|
||||
500000,0.0,3
|
||||
550000,0.1,3
|
||||
600000,0.0,3
|
||||
650000,0.1,3
|
||||
700000,0.0,3
|
||||
750000,0.0,3
|
||||
800000,0.0,3
|
||||
850000,0.0,3
|
||||
900000,0.0,3
|
||||
950000,0.0,3
|
||||
1000000,0.1,3
|
||||
1050000,0.2,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1250000,0.0,3
|
||||
1300000,0.1,3
|
||||
1350000,0.0,3
|
||||
1400000,0.2,3
|
||||
1450000,0.0,3
|
||||
1500000,0.1,3
|
||||
1550000,0.1,3
|
||||
1600000,0.0,3
|
||||
1700000,0.1,3
|
||||
1750000,0.0,3
|
||||
1800000,0.1,3
|
||||
1850000,0.0,3
|
||||
1900000,0.05,3
|
||||
1950000,0.25,3
|
||||
0,0.0,1
|
||||
50000,0.0,1
|
||||
100000,0.1,1
|
||||
150000,0.0,1
|
||||
200000,0.1,1
|
||||
250000,0.0,1
|
||||
300000,0.0,1
|
||||
350000,0.1,1
|
||||
400000,0.0,1
|
||||
450000,0.0,1
|
||||
500000,0.0,1
|
||||
550000,0.0,1
|
||||
600000,0.1,1
|
||||
650000,0.1,1
|
||||
700000,0.0,1
|
||||
750000,0.1,1
|
||||
800000,0.0,1
|
||||
850000,0.0,1
|
||||
900000,0.1,1
|
||||
950000,0.15,1
|
||||
1000000,0.0,1
|
||||
1100000,0.1,1
|
||||
1150000,0.1,1
|
||||
1200000,0.1,1
|
||||
1250000,0.0,1
|
||||
1300000,0.0,1
|
||||
1350000,0.0,1
|
||||
1400000,0.1,1
|
||||
1450000,0.1,1
|
||||
1500000,0.1,1
|
||||
1550000,0.0,1
|
||||
1600000,0.2,1
|
||||
1650000,0.1,1
|
||||
1700000,0.1,1
|
||||
1750000,0.0,1
|
||||
1850000,0.3,1
|
||||
1900000,0.2,1
|
||||
1950000,0.0,1
|
||||
2000000,0.2,1
|
||||
0,0.0,2
|
||||
50000,0.0,2
|
||||
100000,0.0,2
|
||||
150000,0.0,2
|
||||
200000,0.0,2
|
||||
250000,0.0,2
|
||||
300000,0.0,2
|
||||
350000,0.0,2
|
||||
400000,0.0,2
|
||||
450000,0.0,2
|
||||
500000,0.0,2
|
||||
550000,0.0,2
|
||||
600000,0.0,2
|
||||
650000,0.0,2
|
||||
700000,0.0,2
|
||||
750000,0.0,2
|
||||
800000,0.0,2
|
||||
850000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1050000,0.0,2
|
||||
1100000,0.1,2
|
||||
1150000,0.0,2
|
||||
1200000,0.1,2
|
||||
1250000,0.0,2
|
||||
1300000,0.1,2
|
||||
1350000,0.1,2
|
||||
1400000,0.0,2
|
||||
1450000,0.0,2
|
||||
1500000,0.0,2
|
||||
1550000,0.1,2
|
||||
1600000,0.0,2
|
||||
1650000,0.0,2
|
||||
1700000,0.0,2
|
||||
1750000,0.1,2
|
||||
1800000,0.2,2
|
||||
1850000,0.0,2
|
||||
1900000,0.0,2
|
||||
1950000,0.0,2
|
||||
2000000,0.0,2
|
||||
|
115
results/dreamerv3/myo-hand-obj-hold.csv
Normal file
115
results/dreamerv3/myo-hand-obj-hold.csv
Normal file
@@ -0,0 +1,115 @@
|
||||
step,success,seed
|
||||
50000,0.0,3
|
||||
150000,0.0,3
|
||||
200000,0.0,3
|
||||
250000,0.0,3
|
||||
300000,0.0,3
|
||||
350000,0.0,3
|
||||
400000,0.0,3
|
||||
450000,0.0,3
|
||||
500000,0.1,3
|
||||
550000,0.0,3
|
||||
600000,0.4,3
|
||||
650000,0.05,3
|
||||
700000,0.0,3
|
||||
750000,0.1,3
|
||||
800000,0.4,3
|
||||
850000,0.4,3
|
||||
900000,0.1,3
|
||||
950000,0.2,3
|
||||
1000000,0.3,3
|
||||
1050000,0.55,3
|
||||
1100000,0.5,3
|
||||
1150000,0.05,3
|
||||
1200000,0.4,3
|
||||
1250000,0.4,3
|
||||
1350000,0.45,3
|
||||
1400000,0.4,3
|
||||
1450000,0.8,3
|
||||
1550000,0.5,3
|
||||
1600000,0.4,3
|
||||
1650000,0.5,3
|
||||
1700000,0.6,3
|
||||
1750000,0.5,3
|
||||
1800000,0.6,3
|
||||
1850000,0.7,3
|
||||
1900000,0.7,3
|
||||
1950000,0.8,3
|
||||
2000000,0.55,3
|
||||
0,0.0,2
|
||||
50000,0.0,2
|
||||
100000,0.0,2
|
||||
150000,0.0,2
|
||||
200000,0.0,2
|
||||
250000,0.1,2
|
||||
300000,0.0,2
|
||||
350000,0.1,2
|
||||
400000,0.4,2
|
||||
450000,0.5,2
|
||||
500000,0.5,2
|
||||
550000,0.25,2
|
||||
600000,0.5,2
|
||||
650000,0.1,2
|
||||
700000,0.1,2
|
||||
750000,0.6,2
|
||||
800000,0.2,2
|
||||
900000,0.5,2
|
||||
950000,0.3,2
|
||||
1000000,0.7,2
|
||||
1050000,0.3,2
|
||||
1100000,0.65,2
|
||||
1150000,0.5,2
|
||||
1200000,0.75,2
|
||||
1250000,0.7,2
|
||||
1300000,0.25,2
|
||||
1350000,0.6,2
|
||||
1450000,0.8,2
|
||||
1500000,0.6,2
|
||||
1550000,0.5,2
|
||||
1600000,0.5,2
|
||||
1650000,0.5,2
|
||||
1700000,0.5,2
|
||||
1750000,0.5,2
|
||||
1800000,0.3,2
|
||||
1850000,0.8,2
|
||||
1900000,0.9,2
|
||||
1950000,0.7,2
|
||||
0,0.0,1
|
||||
150000,0.0,1
|
||||
200000,0.0,1
|
||||
250000,0.0,1
|
||||
300000,0.0,1
|
||||
350000,0.0,1
|
||||
400000,0.0,1
|
||||
450000,0.0,1
|
||||
500000,0.0,1
|
||||
550000,0.3,1
|
||||
600000,0.4,1
|
||||
650000,0.35,1
|
||||
700000,0.3,1
|
||||
750000,0.3,1
|
||||
800000,0.5,1
|
||||
850000,0.2,1
|
||||
900000,0.4,1
|
||||
950000,0.55,1
|
||||
1000000,0.4,1
|
||||
1050000,0.5,1
|
||||
1100000,0.7,1
|
||||
1150000,0.4,1
|
||||
1200000,0.4,1
|
||||
1250000,0.3,1
|
||||
1300000,0.7,1
|
||||
1350000,0.3,1
|
||||
1400000,0.8,1
|
||||
1450000,0.6,1
|
||||
1500000,0.43,1
|
||||
1550000,0.8,1
|
||||
1600000,0.6,1
|
||||
1650000,0.9,1
|
||||
1700000,0.9,1
|
||||
1750000,0.9,1
|
||||
1800000,0.5,1
|
||||
1850000,0.6,1
|
||||
1900000,0.7,1
|
||||
1950000,0.5,1
|
||||
2000000,0.8,1
|
||||
|
116
results/dreamerv3/myo-hand-pen-twirl-hard.csv
Normal file
116
results/dreamerv3/myo-hand-pen-twirl-hard.csv
Normal file
@@ -0,0 +1,116 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
50000,0.0,3
|
||||
100000,0.0,3
|
||||
150000,0.0,3
|
||||
200000,0.0,3
|
||||
250000,0.0,3
|
||||
350000,0.0,3
|
||||
400000,0.0,3
|
||||
450000,0.0,3
|
||||
500000,0.0,3
|
||||
550000,0.0,3
|
||||
600000,0.0,3
|
||||
650000,0.0,3
|
||||
700000,0.0,3
|
||||
750000,0.0,3
|
||||
800000,0.0,3
|
||||
850000,0.0,3
|
||||
900000,0.0,3
|
||||
950000,0.0,3
|
||||
1000000,0.0,3
|
||||
1050000,0.0,3
|
||||
1150000,0.0,3
|
||||
1200000,0.0,3
|
||||
1250000,0.0,3
|
||||
1300000,0.0,3
|
||||
1350000,0.1,3
|
||||
1400000,0.0,3
|
||||
1450000,0.0,3
|
||||
1500000,0.0,3
|
||||
1550000,0.0,3
|
||||
1600000,0.0,3
|
||||
1650000,0.0,3
|
||||
1700000,0.0,3
|
||||
1750000,0.0,3
|
||||
1800000,0.0,3
|
||||
1850000,0.0,3
|
||||
1950000,0.0,3
|
||||
2000000,0.0,3
|
||||
50000,0.0,2
|
||||
100000,0.0,2
|
||||
150000,0.0,2
|
||||
200000,0.0,2
|
||||
250000,0.0,2
|
||||
300000,0.0,2
|
||||
350000,0.0,2
|
||||
400000,0.0,2
|
||||
450000,0.0,2
|
||||
500000,0.0,2
|
||||
550000,0.0,2
|
||||
600000,0.0,2
|
||||
650000,0.0,2
|
||||
700000,0.0,2
|
||||
750000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
950000,0.1,2
|
||||
1000000,0.0,2
|
||||
1050000,0.0,2
|
||||
1100000,0.0,2
|
||||
1150000,0.0,2
|
||||
1200000,0.0,2
|
||||
1250000,0.0,2
|
||||
1300000,0.0,2
|
||||
1350000,0.0,2
|
||||
1400000,0.0,2
|
||||
1450000,0.0,2
|
||||
1500000,0.0,2
|
||||
1550000,0.0,2
|
||||
1600000,0.0,2
|
||||
1650000,0.0,2
|
||||
1700000,0.0,2
|
||||
1750000,0.0,2
|
||||
1800000,0.0,2
|
||||
1850000,0.0,2
|
||||
1900000,0.0,2
|
||||
1950000,0.0,2
|
||||
2000000,0.0,2
|
||||
50000,0.0,1
|
||||
100000,0.0,1
|
||||
150000,0.0,1
|
||||
200000,0.0,1
|
||||
250000,0.0,1
|
||||
300000,0.0,1
|
||||
350000,0.0,1
|
||||
400000,0.0,1
|
||||
450000,0.0,1
|
||||
500000,0.0,1
|
||||
550000,0.0,1
|
||||
600000,0.1,1
|
||||
650000,0.0,1
|
||||
700000,0.0,1
|
||||
750000,0.0,1
|
||||
800000,0.0,1
|
||||
850000,0.0,1
|
||||
900000,0.0,1
|
||||
950000,0.0,1
|
||||
1000000,0.0,1
|
||||
1050000,0.0,1
|
||||
1100000,0.1,1
|
||||
1150000,0.1,1
|
||||
1200000,0.0,1
|
||||
1250000,0.0,1
|
||||
1350000,0.0,1
|
||||
1400000,0.0,1
|
||||
1450000,0.0,1
|
||||
1500000,0.0,1
|
||||
1550000,0.1,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1750000,0.0,1
|
||||
1800000,0.0,1
|
||||
1850000,0.0,1
|
||||
1900000,0.0,1
|
||||
1950000,0.0,1
|
||||
2000000,0.0,1
|
||||
|
118
results/dreamerv3/myo-hand-pen-twirl.csv
Normal file
118
results/dreamerv3/myo-hand-pen-twirl.csv
Normal file
@@ -0,0 +1,118 @@
|
||||
step,success,seed
|
||||
50000,0.0,3
|
||||
100000,0.0,3
|
||||
150000,0.0,3
|
||||
200000,0.0,3
|
||||
250000,0.0,3
|
||||
300000,0.0,3
|
||||
350000,0.0,3
|
||||
400000,0.0,3
|
||||
450000,0.0,3
|
||||
500000,0.0,3
|
||||
550000,0.0,3
|
||||
600000,0.0,3
|
||||
650000,0.0,3
|
||||
700000,0.0,3
|
||||
750000,0.0,3
|
||||
800000,0.0,3
|
||||
850000,0.0,3
|
||||
900000,0.0,3
|
||||
950000,0.0,3
|
||||
1000000,0.0,3
|
||||
1050000,0.0,3
|
||||
1100000,0.0,3
|
||||
1150000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1350000,0.0,3
|
||||
1400000,0.0,3
|
||||
1450000,0.0,3
|
||||
1500000,0.0,3
|
||||
1550000,0.0,3
|
||||
1600000,0.0,3
|
||||
1650000,0.0,3
|
||||
1700000,0.0,3
|
||||
1750000,0.0,3
|
||||
1800000,0.0,3
|
||||
1850000,0.0,3
|
||||
1900000,0.0,3
|
||||
1950000,0.0,3
|
||||
2000000,0.0,3
|
||||
50000,0.0,1
|
||||
100000,0.0,1
|
||||
150000,0.0,1
|
||||
200000,0.0,1
|
||||
250000,0.0,1
|
||||
300000,0.0,1
|
||||
350000,0.0,1
|
||||
400000,0.0,1
|
||||
450000,0.0,1
|
||||
500000,0.0,1
|
||||
550000,0.0,1
|
||||
600000,0.0,1
|
||||
650000,0.0,1
|
||||
700000,0.0,1
|
||||
750000,0.0,1
|
||||
800000,0.0,1
|
||||
850000,0.0,1
|
||||
900000,0.0,1
|
||||
950000,0.0,1
|
||||
1000000,0.0,1
|
||||
1050000,0.0,1
|
||||
1100000,0.0,1
|
||||
1150000,0.0,1
|
||||
1200000,0.0,1
|
||||
1250000,0.0,1
|
||||
1300000,0.0,1
|
||||
1350000,0.0,1
|
||||
1450000,0.0,1
|
||||
1500000,0.0,1
|
||||
1550000,0.0,1
|
||||
1600000,0.0,1
|
||||
1650000,0.0,1
|
||||
1700000,0.0,1
|
||||
1750000,0.0,1
|
||||
1800000,0.0,1
|
||||
1850000,0.0,1
|
||||
1900000,0.0,1
|
||||
1950000,0.0,1
|
||||
2000000,0.0,1
|
||||
0,0.0,2
|
||||
50000,0.0,2
|
||||
100000,0.0,2
|
||||
150000,0.0,2
|
||||
200000,0.0,2
|
||||
250000,0.0,2
|
||||
300000,0.0,2
|
||||
350000,0.0,2
|
||||
400000,0.0,2
|
||||
450000,0.0,2
|
||||
500000,0.0,2
|
||||
550000,0.0,2
|
||||
600000,0.0,2
|
||||
650000,0.0,2
|
||||
700000,0.0,2
|
||||
750000,0.0,2
|
||||
800000,0.0,2
|
||||
850000,0.0,2
|
||||
900000,0.0,2
|
||||
950000,0.0,2
|
||||
1000000,0.0,2
|
||||
1050000,0.0,2
|
||||
1100000,0.0,2
|
||||
1150000,0.0,2
|
||||
1200000,0.0,2
|
||||
1250000,0.0,2
|
||||
1300000,0.0,2
|
||||
1350000,0.0,2
|
||||
1400000,0.0,2
|
||||
1450000,0.0,2
|
||||
1500000,0.0,2
|
||||
1600000,0.0,2
|
||||
1650000,0.0,2
|
||||
1700000,0.0,2
|
||||
1750000,0.0,2
|
||||
1800000,0.0,2
|
||||
1850000,0.0,2
|
||||
1950000,0.0,2
|
||||
2000000,0.0,2
|
||||
|
118
results/dreamerv3/myo-hand-pose-hard.csv
Normal file
118
results/dreamerv3/myo-hand-pose-hard.csv
Normal file
@@ -0,0 +1,118 @@
|
||||
step,success,seed
|
||||
100000,0.0,3
|
||||
150000,0.0,3
|
||||
200000,0.0,3
|
||||
250000,0.0,3
|
||||
300000,0.0,3
|
||||
350000,0.0,3
|
||||
400000,0.0,3
|
||||
450000,0.0,3
|
||||
500000,0.0,3
|
||||
550000,0.0,3
|
||||
600000,0.0,3
|
||||
650000,0.0,3
|
||||
700000,0.0,3
|
||||
750000,0.0,3
|
||||
800000,0.0,3
|
||||
850000,0.0,3
|
||||
900000,0.0,3
|
||||
950000,0.0,3
|
||||
1000000,0.0,3
|
||||
1050000,0.0,3
|
||||
1100000,0.0,3
|
||||
1150000,0.0,3
|
||||
1200000,0.0,3
|
||||
1250000,0.0,3
|
||||
1300000,0.0,3
|
||||
1350000,0.0,3
|
||||
1400000,0.0,3
|
||||
1450000,0.0,3
|
||||
1500000,0.0,3
|
||||
1550000,0.0,3
|
||||
1600000,0.0,3
|
||||
1650000,0.0,3
|
||||
1700000,0.0,3
|
||||
1750000,0.0,3
|
||||
1800000,0.0,3
|
||||
1850000,0.0,3
|
||||
1900000,0.0,3
|
||||
1950000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,2
|
||||
50000,0.0,2
|
||||
100000,0.0,2
|
||||
150000,0.0,2
|
||||
200000,0.0,2
|
||||
250000,0.0,2
|
||||
300000,0.0,2
|
||||
350000,0.0,2
|
||||
400000,0.0,2
|
||||
450000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
650000,0.0,2
|
||||
700000,0.0,2
|
||||
750000,0.0,2
|
||||
800000,0.0,2
|
||||
850000,0.0,2
|
||||
900000,0.0,2
|
||||
950000,0.0,2
|
||||
1000000,0.0,2
|
||||
1050000,0.0,2
|
||||
1100000,0.0,2
|
||||
1150000,0.0,2
|
||||
1200000,0.0,2
|
||||
1250000,0.0,2
|
||||
1300000,0.0,2
|
||||
1350000,0.0,2
|
||||
1400000,0.0,2
|
||||
1450000,0.0,2
|
||||
1500000,0.0,2
|
||||
1550000,0.0,2
|
||||
1600000,0.0,2
|
||||
1650000,0.0,2
|
||||
1700000,0.0,2
|
||||
1750000,0.0,2
|
||||
1800000,0.0,2
|
||||
1900000,0.0,2
|
||||
1950000,0.0,2
|
||||
2000000,0.0,2
|
||||
0,0.0,1
|
||||
50000,0.0,1
|
||||
100000,0.0,1
|
||||
150000,0.0,1
|
||||
200000,0.0,1
|
||||
250000,0.0,1
|
||||
300000,0.0,1
|
||||
350000,0.0,1
|
||||
400000,0.0,1
|
||||
450000,0.0,1
|
||||
500000,0.0,1
|
||||
550000,0.0,1
|
||||
600000,0.0,1
|
||||
650000,0.0,1
|
||||
700000,0.0,1
|
||||
750000,0.0,1
|
||||
800000,0.0,1
|
||||
850000,0.0,1
|
||||
900000,0.0,1
|
||||
950000,0.0,1
|
||||
1000000,0.0,1
|
||||
1050000,0.0,1
|
||||
1100000,0.0,1
|
||||
1150000,0.0,1
|
||||
1200000,0.0,1
|
||||
1250000,0.0,1
|
||||
1300000,0.0,1
|
||||
1350000,0.0,1
|
||||
1400000,0.0,1
|
||||
1450000,0.0,1
|
||||
1500000,0.0,1
|
||||
1600000,0.0,1
|
||||
1650000,0.0,1
|
||||
1700000,0.0,1
|
||||
1750000,0.0,1
|
||||
1800000,0.0,1
|
||||
1850000,0.0,1
|
||||
1900000,0.0,1
|
||||
1950000,0.0,1
|
||||
|
117
results/dreamerv3/myo-hand-pose.csv
Normal file
117
results/dreamerv3/myo-hand-pose.csv
Normal file
@@ -0,0 +1,117 @@
|
||||
step,success,seed
|
||||
50000,0.0,3
|
||||
100000,0.0,3
|
||||
150000,0.0,3
|
||||
200000,0.0,3
|
||||
250000,0.0,3
|
||||
300000,0.0,3
|
||||
350000,0.0,3
|
||||
400000,0.0,3
|
||||
450000,0.0,3
|
||||
550000,0.0,3
|
||||
600000,0.0,3
|
||||
650000,0.0,3
|
||||
700000,0.0,3
|
||||
750000,0.0,3
|
||||
800000,0.0,3
|
||||
850000,0.0,3
|
||||
900000,0.0,3
|
||||
950000,0.0,3
|
||||
1000000,0.0,3
|
||||
1050000,0.0,3
|
||||
1100000,0.0,3
|
||||
1150000,0.0,3
|
||||
1250000,0.0,3
|
||||
1300000,0.0,3
|
||||
1350000,0.0,3
|
||||
1450000,0.0,3
|
||||
1500000,0.0,3
|
||||
1550000,0.0,3
|
||||
1600000,0.0,3
|
||||
1650000,0.0,3
|
||||
1700000,0.0,3
|
||||
1750000,0.0,3
|
||||
1800000,0.0,3
|
||||
1850000,0.0,3
|
||||
1900000,0.0,3
|
||||
1950000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,2
|
||||
50000,0.0,2
|
||||
100000,0.0,2
|
||||
150000,0.0,2
|
||||
200000,0.0,2
|
||||
250000,0.0,2
|
||||
300000,0.0,2
|
||||
350000,0.0,2
|
||||
400000,0.0,2
|
||||
450000,0.0,2
|
||||
500000,0.0,2
|
||||
550000,0.0,2
|
||||
600000,0.0,2
|
||||
650000,0.0,2
|
||||
700000,0.0,2
|
||||
750000,0.0,2
|
||||
800000,0.0,2
|
||||
850000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1050000,0.0,2
|
||||
1100000,0.0,2
|
||||
1150000,0.0,2
|
||||
1200000,0.0,2
|
||||
1250000,0.0,2
|
||||
1300000,0.0,2
|
||||
1350000,0.0,2
|
||||
1400000,0.0,2
|
||||
1450000,0.0,2
|
||||
1500000,0.0,2
|
||||
1550000,0.0,2
|
||||
1600000,0.0,2
|
||||
1650000,0.0,2
|
||||
1700000,0.0,2
|
||||
1750000,0.0,2
|
||||
1800000,0.0,2
|
||||
1850000,0.0,2
|
||||
1950000,0.0,2
|
||||
2000000,0.0,2
|
||||
50000,0.0,1
|
||||
100000,0.0,1
|
||||
150000,0.0,1
|
||||
200000,0.0,1
|
||||
250000,0.0,1
|
||||
300000,0.0,1
|
||||
350000,0.0,1
|
||||
400000,0.0,1
|
||||
450000,0.0,1
|
||||
500000,0.0,1
|
||||
550000,0.0,1
|
||||
600000,0.0,1
|
||||
650000,0.0,1
|
||||
700000,0.0,1
|
||||
750000,0.0,1
|
||||
800000,0.0,1
|
||||
850000,0.0,1
|
||||
900000,0.0,1
|
||||
950000,0.0,1
|
||||
1000000,0.0,1
|
||||
1050000,0.0,1
|
||||
1100000,0.0,1
|
||||
1150000,0.0,1
|
||||
1200000,0.0,1
|
||||
1250000,0.0,1
|
||||
1300000,0.0,1
|
||||
1350000,0.0,1
|
||||
1400000,0.0,1
|
||||
1450000,0.0,1
|
||||
1500000,0.0,1
|
||||
1550000,0.0,1
|
||||
1600000,0.0,1
|
||||
1650000,0.0,1
|
||||
1700000,0.0,1
|
||||
1750000,0.0,1
|
||||
1800000,0.0,1
|
||||
1850000,0.0,1
|
||||
1900000,0.0,1
|
||||
1950000,0.0,1
|
||||
2000000,0.0,1
|
||||
|
118
results/dreamerv3/myo-hand-reach-hard.csv
Normal file
118
results/dreamerv3/myo-hand-reach-hard.csv
Normal file
@@ -0,0 +1,118 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
50000,0.0,3
|
||||
100000,0.0,3
|
||||
150000,0.0,3
|
||||
200000,0.0,3
|
||||
250000,0.0,3
|
||||
300000,0.0,3
|
||||
350000,0.0,3
|
||||
400000,0.0,3
|
||||
450000,0.0,3
|
||||
500000,0.0,3
|
||||
550000,0.0,3
|
||||
600000,0.0,3
|
||||
650000,0.0,3
|
||||
700000,0.0,3
|
||||
750000,0.0,3
|
||||
800000,0.0,3
|
||||
850000,0.0,3
|
||||
900000,0.0,3
|
||||
950000,0.0,3
|
||||
1000000,0.0,3
|
||||
1050000,0.0,3
|
||||
1100000,0.0,3
|
||||
1150000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1350000,0.0,3
|
||||
1400000,0.0,3
|
||||
1450000,0.0,3
|
||||
1500000,0.0,3
|
||||
1550000,0.0,3
|
||||
1600000,0.0,3
|
||||
1650000,0.0,3
|
||||
1700000,0.0,3
|
||||
1750000,0.0,3
|
||||
1800000,0.0,3
|
||||
1850000,0.0,3
|
||||
1900000,0.0,3
|
||||
1950000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,1
|
||||
50000,0.0,1
|
||||
100000,0.0,1
|
||||
150000,0.0,1
|
||||
200000,0.0,1
|
||||
250000,0.0,1
|
||||
300000,0.0,1
|
||||
350000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
550000,0.0,1
|
||||
600000,0.0,1
|
||||
650000,0.0,1
|
||||
700000,0.0,1
|
||||
750000,0.0,1
|
||||
800000,0.0,1
|
||||
850000,0.0,1
|
||||
900000,0.0,1
|
||||
950000,0.0,1
|
||||
1000000,0.0,1
|
||||
1050000,0.0,1
|
||||
1100000,0.0,1
|
||||
1150000,0.0,1
|
||||
1200000,0.0,1
|
||||
1250000,0.0,1
|
||||
1300000,0.0,1
|
||||
1350000,0.0,1
|
||||
1400000,0.0,1
|
||||
1450000,0.0,1
|
||||
1500000,0.0,1
|
||||
1550000,0.0,1
|
||||
1600000,0.0,1
|
||||
1650000,0.0,1
|
||||
1700000,0.0,1
|
||||
1750000,0.0,1
|
||||
1800000,0.0,1
|
||||
1850000,0.0,1
|
||||
1900000,0.0,1
|
||||
0,0.0,2
|
||||
50000,0.0,2
|
||||
100000,0.0,2
|
||||
150000,0.0,2
|
||||
200000,0.0,2
|
||||
250000,0.0,2
|
||||
300000,0.0,2
|
||||
350000,0.0,2
|
||||
400000,0.0,2
|
||||
450000,0.0,2
|
||||
500000,0.0,2
|
||||
550000,0.0,2
|
||||
600000,0.0,2
|
||||
650000,0.0,2
|
||||
700000,0.0,2
|
||||
750000,0.0,2
|
||||
800000,0.0,2
|
||||
850000,0.0,2
|
||||
900000,0.0,2
|
||||
950000,0.0,2
|
||||
1000000,0.0,2
|
||||
1050000,0.0,2
|
||||
1100000,0.0,2
|
||||
1150000,0.0,2
|
||||
1200000,0.0,2
|
||||
1250000,0.0,2
|
||||
1300000,0.0,2
|
||||
1450000,0.0,2
|
||||
1500000,0.0,2
|
||||
1550000,0.0,2
|
||||
1600000,0.0,2
|
||||
1650000,0.0,2
|
||||
1700000,0.0,2
|
||||
1750000,0.0,2
|
||||
1800000,0.0,2
|
||||
1850000,0.0,2
|
||||
1900000,0.0,2
|
||||
1950000,0.0,2
|
||||
2000000,0.0,2
|
||||
|
119
results/dreamerv3/myo-hand-reach.csv
Normal file
119
results/dreamerv3/myo-hand-reach.csv
Normal file
@@ -0,0 +1,119 @@
|
||||
step,success,seed
|
||||
0,0.0,3
|
||||
50000,0.0,3
|
||||
100000,0.0,3
|
||||
150000,0.0,3
|
||||
200000,0.0,3
|
||||
250000,0.0,3
|
||||
350000,0.0,3
|
||||
400000,0.0,3
|
||||
450000,0.0,3
|
||||
500000,0.0,3
|
||||
550000,0.0,3
|
||||
600000,0.0,3
|
||||
650000,0.0,3
|
||||
700000,0.0,3
|
||||
750000,0.0,3
|
||||
800000,0.0,3
|
||||
850000,0.0,3
|
||||
900000,0.0,3
|
||||
950000,0.0,3
|
||||
1000000,0.0,3
|
||||
1050000,0.0,3
|
||||
1100000,0.0,3
|
||||
1150000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1350000,0.0,3
|
||||
1400000,0.0,3
|
||||
1450000,0.0,3
|
||||
1500000,0.0,3
|
||||
1550000,0.0,3
|
||||
1600000,0.0,3
|
||||
1650000,0.0,3
|
||||
1700000,0.0,3
|
||||
1750000,0.0,3
|
||||
1800000,0.0,3
|
||||
1850000,0.0,3
|
||||
1900000,0.0,3
|
||||
1950000,0.0,3
|
||||
2000000,0.0,3
|
||||
0,0.0,2
|
||||
50000,0.0,2
|
||||
100000,0.0,2
|
||||
150000,0.0,2
|
||||
200000,0.0,2
|
||||
250000,0.0,2
|
||||
300000,0.0,2
|
||||
350000,0.0,2
|
||||
400000,0.0,2
|
||||
450000,0.0,2
|
||||
500000,0.0,2
|
||||
550000,0.0,2
|
||||
600000,0.0,2
|
||||
650000,0.0,2
|
||||
700000,0.0,2
|
||||
750000,0.0,2
|
||||
800000,0.0,2
|
||||
850000,0.0,2
|
||||
900000,0.0,2
|
||||
950000,0.0,2
|
||||
1000000,0.0,2
|
||||
1050000,0.0,2
|
||||
1100000,0.0,2
|
||||
1150000,0.0,2
|
||||
1200000,0.0,2
|
||||
1250000,0.0,2
|
||||
1300000,0.0,2
|
||||
1350000,0.0,2
|
||||
1400000,0.0,2
|
||||
1450000,0.0,2
|
||||
1550000,0.0,2
|
||||
1600000,0.0,2
|
||||
1650000,0.0,2
|
||||
1700000,0.0,2
|
||||
1750000,0.0,2
|
||||
1800000,0.0,2
|
||||
1850000,0.0,2
|
||||
1900000,0.0,2
|
||||
1950000,0.0,2
|
||||
0,0.0,1
|
||||
50000,0.0,1
|
||||
100000,0.0,1
|
||||
150000,0.0,1
|
||||
200000,0.0,1
|
||||
250000,0.0,1
|
||||
300000,0.0,1
|
||||
350000,0.0,1
|
||||
400000,0.0,1
|
||||
450000,0.0,1
|
||||
500000,0.0,1
|
||||
550000,0.0,1
|
||||
600000,0.0,1
|
||||
650000,0.0,1
|
||||
700000,0.0,1
|
||||
750000,0.0,1
|
||||
800000,0.0,1
|
||||
850000,0.0,1
|
||||
900000,0.0,1
|
||||
950000,0.0,1
|
||||
1000000,0.0,1
|
||||
1050000,0.0,1
|
||||
1100000,0.0,1
|
||||
1150000,0.0,1
|
||||
1200000,0.0,1
|
||||
1250000,0.0,1
|
||||
1300000,0.0,1
|
||||
1350000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.0,1
|
||||
1550000,0.0,1
|
||||
1600000,0.0,1
|
||||
1650000,0.0,1
|
||||
1700000,0.0,1
|
||||
1750000,0.0,1
|
||||
1800000,0.0,1
|
||||
1850000,0.0,1
|
||||
1900000,0.0,1
|
||||
1950000,0.0,1
|
||||
2000000,0.0,1
|
||||
|
116
results/dreamerv3/pendulum-spin.csv
Normal file
116
results/dreamerv3/pendulum-spin.csv
Normal file
@@ -0,0 +1,116 @@
|
||||
step,reward,seed
|
||||
0,142.8,3
|
||||
100000,750.7,3
|
||||
200000,810.0,3
|
||||
300000,794.4,3
|
||||
400000,767.6,3
|
||||
500000,815.3,3
|
||||
600000,817.8,3
|
||||
700000,805.6,3
|
||||
800000,788.5,3
|
||||
900000,789.2,3
|
||||
1000000,834.1,3
|
||||
1100000,846.3,3
|
||||
1200000,797.1,3
|
||||
1300000,791.7,3
|
||||
1400000,839.6,3
|
||||
1500000,787.4,3
|
||||
1600000,815.7,3
|
||||
1700000,804.3,3
|
||||
1800000,850.9,3
|
||||
2000000,831.8,3
|
||||
2100000,800.7,3
|
||||
2200000,806.4,3
|
||||
2300000,804.9,3
|
||||
2400000,835.4,3
|
||||
2500000,818.7,3
|
||||
2600000,822.2,3
|
||||
2700000,811.0,3
|
||||
2800000,835.9,3
|
||||
2900000,804.6,3
|
||||
3000000,816.7,3
|
||||
3100000,801.6,3
|
||||
3200000,799.5,3
|
||||
3300000,788.7,3
|
||||
3400000,862.9,3
|
||||
3500000,821.1,3
|
||||
3700000,800.1,3
|
||||
3800000,785.5,3
|
||||
3900000,779.3,3
|
||||
0,111.6,1
|
||||
100000,789.5,1
|
||||
200000,839.1,1
|
||||
300000,818.3,1
|
||||
400000,811.0,1
|
||||
500000,827.3,1
|
||||
600000,835.0,1
|
||||
700000,812.6,1
|
||||
800000,836.2,1
|
||||
900000,836.2,1
|
||||
1000000,798.2,1
|
||||
1100000,838.1,1
|
||||
1200000,847.5,1
|
||||
1300000,846.8,1
|
||||
1400000,799.4,1
|
||||
1500000,782.6,1
|
||||
1600000,851.6,1
|
||||
1700000,821.1,1
|
||||
1800000,819.6,1
|
||||
1900000,789.3,1
|
||||
2000000,806.1,1
|
||||
2100000,825.5,1
|
||||
2200000,860.4,1
|
||||
2300000,802.8,1
|
||||
2400000,826.7,1
|
||||
2500000,848.5,1
|
||||
2600000,843.9,1
|
||||
2700000,850.2,1
|
||||
2800000,806.8,1
|
||||
2900000,780.6,1
|
||||
3000000,822.7,1
|
||||
3100000,845.1,1
|
||||
3200000,830.9,1
|
||||
3300000,841.4,1
|
||||
3400000,835.2,1
|
||||
3500000,801.3,1
|
||||
3600000,763.1,1
|
||||
3700000,833.6,1
|
||||
3800000,834.4,1
|
||||
3900000,798.1,1
|
||||
100000,785.7,2
|
||||
200000,856.3,2
|
||||
300000,814.9,2
|
||||
400000,834.3,2
|
||||
500000,807.9,2
|
||||
600000,789.1,2
|
||||
700000,800.7,2
|
||||
800000,843.0,2
|
||||
900000,801.4,2
|
||||
1000000,829.7,2
|
||||
1100000,781.6,2
|
||||
1200000,839.1,2
|
||||
1300000,779.2,2
|
||||
1400000,803.2,2
|
||||
1500000,776.5,2
|
||||
1700000,808.8,2
|
||||
1800000,781.8,2
|
||||
1900000,813.2,2
|
||||
2000000,815.3,2
|
||||
2100000,833.8,2
|
||||
2200000,817.6,2
|
||||
2300000,818.7,2
|
||||
2400000,810.4,2
|
||||
2500000,833.6,2
|
||||
2600000,834.9,2
|
||||
2700000,805.8,2
|
||||
2800000,816.7,2
|
||||
2900000,817.1,2
|
||||
3000000,814.6,2
|
||||
3100000,827.6,2
|
||||
3200000,830.3,2
|
||||
3300000,821.6,2
|
||||
3400000,793.0,2
|
||||
3500000,770.9,2
|
||||
3600000,832.7,2
|
||||
3700000,792.1,2
|
||||
3900000,838.0,2
|
||||
|
113
results/dreamerv3/pendulum-swingup.csv
Normal file
113
results/dreamerv3/pendulum-swingup.csv
Normal file
@@ -0,0 +1,113 @@
|
||||
step,reward,seed
|
||||
100000,829.1,3
|
||||
200000,738.4,3
|
||||
300000,822.6,3
|
||||
400000,829.4,3
|
||||
500000,773.2,3
|
||||
600000,776.6,3
|
||||
700000,815.0,3
|
||||
800000,815.2,3
|
||||
900000,787.7,3
|
||||
1000000,786.4,3
|
||||
1100000,865.7,3
|
||||
1200000,819.4,3
|
||||
1300000,810.8,3
|
||||
1400000,823.6,3
|
||||
1500000,763.1,3
|
||||
1700000,824.2,3
|
||||
1800000,860.6,3
|
||||
1900000,896.4,3
|
||||
2000000,801.4,3
|
||||
2100000,807.9,3
|
||||
2200000,838.8,3
|
||||
2300000,810.7,3
|
||||
2400000,754.2,3
|
||||
2500000,717.0,3
|
||||
2600000,827.2,3
|
||||
2700000,811.5,3
|
||||
2800000,827.9,3
|
||||
2900000,767.4,3
|
||||
3000000,721.1,3
|
||||
3100000,809.4,3
|
||||
3200000,842.0,3
|
||||
3400000,821.3,3
|
||||
3500000,811.6,3
|
||||
3600000,819.3,3
|
||||
3700000,801.9,3
|
||||
3800000,813.5,3
|
||||
3900000,789.6,3
|
||||
0,0.0,1
|
||||
100000,457.1,1
|
||||
200000,805.1,1
|
||||
300000,797.0,1
|
||||
400000,649.1,1
|
||||
500000,700.4,1
|
||||
600000,769.0,1
|
||||
700000,744.7,1
|
||||
800000,817.5,1
|
||||
900000,819.6,1
|
||||
1000000,782.4,1
|
||||
1200000,801.0,1
|
||||
1300000,865.7,1
|
||||
1400000,737.1,1
|
||||
1500000,831.8,1
|
||||
1600000,837.1,1
|
||||
1700000,808.6,1
|
||||
1800000,776.6,1
|
||||
1900000,817.0,1
|
||||
2000000,812.8,1
|
||||
2100000,810.2,1
|
||||
2200000,815.3,1
|
||||
2300000,848.6,1
|
||||
2400000,804.8,1
|
||||
2500000,766.9,1
|
||||
2600000,841.2,1
|
||||
2700000,845.9,1
|
||||
2800000,781.7,1
|
||||
2900000,806.2,1
|
||||
3000000,852.6,1
|
||||
3100000,794.9,1
|
||||
3200000,786.3,1
|
||||
3300000,813.4,1
|
||||
3400000,810.8,1
|
||||
3500000,838.5,1
|
||||
3600000,705.9,1
|
||||
3700000,731.8,1
|
||||
3800000,838.5,1
|
||||
3900000,819.8,1
|
||||
0,0.0,2
|
||||
100000,811.7,2
|
||||
200000,655.7,2
|
||||
300000,783.2,2
|
||||
400000,647.4,2
|
||||
500000,746.1,2
|
||||
600000,724.4,2
|
||||
700000,748.7,2
|
||||
800000,827.6,2
|
||||
900000,825.5,2
|
||||
1000000,862.0,2
|
||||
1100000,769.7,2
|
||||
1200000,750.5,2
|
||||
1300000,763.1,2
|
||||
1400000,731.2,2
|
||||
1500000,778.5,2
|
||||
1600000,804.9,2
|
||||
1700000,809.4,2
|
||||
1800000,788.0,2
|
||||
1900000,817.8,2
|
||||
2000000,806.7,2
|
||||
2100000,798.1,2
|
||||
2400000,824.7,2
|
||||
2500000,874.0,2
|
||||
2600000,827.7,2
|
||||
2700000,790.2,2
|
||||
2800000,782.3,2
|
||||
3000000,760.2,2
|
||||
3100000,851.1,2
|
||||
3200000,797.7,2
|
||||
3300000,741.4,2
|
||||
3400000,817.2,2
|
||||
3500000,818.9,2
|
||||
3600000,816.5,2
|
||||
3700000,785.3,2
|
||||
3900000,816.9,2
|
||||
|
115
results/dreamerv3/pick-cube.csv
Normal file
115
results/dreamerv3/pick-cube.csv
Normal file
@@ -0,0 +1,115 @@
|
||||
step,success,seed
|
||||
100000,0.0,3
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
400000,0.0,3
|
||||
500000,0.0,3
|
||||
600000,0.0,3
|
||||
700000,0.0,3
|
||||
800000,0.0,3
|
||||
900000,0.0,3
|
||||
1000000,0.0,3
|
||||
1100000,0.0,3
|
||||
1200000,0.0,3
|
||||
1300000,0.0,3
|
||||
1400000,0.0,3
|
||||
1500000,0.0,3
|
||||
1600000,0.0,3
|
||||
1700000,0.0,3
|
||||
1800000,0.0,3
|
||||
1900000,0.0,3
|
||||
2000000,0.0,3
|
||||
2100000,0.0,3
|
||||
2200000,0.0,3
|
||||
2300000,0.0,3
|
||||
2400000,0.0,3
|
||||
2500000,0.0,3
|
||||
2600000,0.0,3
|
||||
2900000,0.0,3
|
||||
3000000,0.0,3
|
||||
3100000,0.0,3
|
||||
3200000,0.0,3
|
||||
3300000,0.0,3
|
||||
3400000,0.0,3
|
||||
3500000,0.0,3
|
||||
3600000,0.0,3
|
||||
3700000,0.0,3
|
||||
3800000,0.0,3
|
||||
3900000,0.0,3
|
||||
100000,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
800000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1400000,0.0,1
|
||||
1500000,0.0,1
|
||||
1700000,0.0,1
|
||||
1800000,0.0,1
|
||||
1900000,0.0,1
|
||||
2000000,0.0,1
|
||||
2100000,0.0,1
|
||||
2200000,0.0,1
|
||||
2300000,0.0,1
|
||||
2400000,0.0,1
|
||||
2500000,0.0,1
|
||||
2600000,0.0,1
|
||||
2700000,0.0,1
|
||||
2800000,0.0,1
|
||||
2900000,0.0,1
|
||||
3000000,0.0,1
|
||||
3100000,0.0,1
|
||||
3200000,0.0,1
|
||||
3300000,0.0,1
|
||||
3400000,0.0,1
|
||||
3500000,0.0,1
|
||||
3600000,0.0,1
|
||||
3700000,0.0,1
|
||||
3800000,0.0,1
|
||||
3900000,0.0,1
|
||||
0,0.0,2
|
||||
100000,0.0,2
|
||||
200000,0.0,2
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
500000,0.0,2
|
||||
600000,0.0,2
|
||||
700000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1000000,0.0,2
|
||||
1100000,0.0,2
|
||||
1200000,0.0,2
|
||||
1300000,0.0,2
|
||||
1400000,0.0,2
|
||||
1500000,0.0,2
|
||||
1600000,0.0,2
|
||||
1800000,0.0,2
|
||||
1900000,0.0,2
|
||||
2000000,0.0,2
|
||||
2100000,0.0,2
|
||||
2200000,0.0,2
|
||||
2300000,0.1,2
|
||||
2400000,0.0,2
|
||||
2500000,0.0,2
|
||||
2600000,0.0,2
|
||||
2700000,0.0,2
|
||||
2800000,0.0,2
|
||||
2900000,0.0,2
|
||||
3000000,0.0,2
|
||||
3100000,0.0,2
|
||||
3200000,0.0,2
|
||||
3300000,0.0,2
|
||||
3400000,0.0,2
|
||||
3500000,0.0,2
|
||||
3600000,0.0,2
|
||||
3700000,0.0,2
|
||||
3900000,0.0,2
|
||||
4000000,0.0,2
|
||||
|
145
results/dreamerv3/pick-ycb.csv
Normal file
145
results/dreamerv3/pick-ycb.csv
Normal file
@@ -0,0 +1,145 @@
|
||||
step,success,seed
|
||||
0,0.0,1
|
||||
200000,0.0,1
|
||||
300000,0.0,1
|
||||
400000,0.0,1
|
||||
500000,0.0,1
|
||||
600000,0.0,1
|
||||
700000,0.0,1
|
||||
900000,0.0,1
|
||||
1000000,0.0,1
|
||||
1100000,0.0,1
|
||||
1200000,0.0,1
|
||||
1300000,0.0,1
|
||||
1500000,0.0,1
|
||||
1600000,0.0,1
|
||||
1700000,0.0,1
|
||||
1900000,0.0,1
|
||||
2000000,0.0,1
|
||||
2100000,0.0,1
|
||||
2200000,0.0,1
|
||||
2400000,0.0,1
|
||||
2500000,0.0,1
|
||||
2600000,0.0,1
|
||||
2700000,0.0,1
|
||||
2800000,0.0,1
|
||||
2900000,0.0,1
|
||||
3000000,0.0,1
|
||||
3100000,0.0,1
|
||||
3200000,0.0,1
|
||||
3300000,0.0,1
|
||||
3400000,0.0,1
|
||||
3500000,0.0,1
|
||||
3600000,0.0,1
|
||||
3700000,0.0,1
|
||||
3800000,0.0,1
|
||||
3900000,0.0,1
|
||||
4100000,0.0,1
|
||||
4200000,0.0,1
|
||||
4300000,0.0,1
|
||||
4400000,0.0,1
|
||||
4600000,0.0,1
|
||||
4700000,0.0,1
|
||||
4800000,0.0,1
|
||||
5000000,0.0,1
|
||||
10000000,0.0,1
|
||||
200000,0.0,3
|
||||
300000,0.0,3
|
||||
800000,0.0,3
|
||||
1100000,0.0,3
|
||||
1600000,0.0,3
|
||||
1900000,0.0,3
|
||||
2100000,0.0,3
|
||||
3100000,0.0,3
|
||||
3500000,0.0,3
|
||||
3900000,0.0,3
|
||||
4100000,0.0,3
|
||||
4400000,0.0,3
|
||||
4500000,0.0,3
|
||||
4800000,0.0,3
|
||||
5000000,0.0,3
|
||||
5300000,0.0,3
|
||||
5600000,0.0,3
|
||||
6000000,0.0,3
|
||||
6800000,0.0,3
|
||||
6900000,0.0,3
|
||||
7100000,0.0,3
|
||||
7200000,0.0,3
|
||||
7300000,0.0,3
|
||||
7500000,0.0,3
|
||||
7600000,0.0,3
|
||||
7900000,0.0,3
|
||||
8100000,0.0,3
|
||||
8400000,0.0,3
|
||||
8500000,0.0,3
|
||||
9000000,0.0,3
|
||||
9400000,0.0,3
|
||||
9600000,0.0,3
|
||||
9700000,0.0,3
|
||||
9900000,0.0,3
|
||||
10100000,0.0,3
|
||||
10200000,0.0,3
|
||||
10600000,0.0,3
|
||||
10700000,0.0,3
|
||||
10800000,0.0,3
|
||||
11000000,0.0,3
|
||||
11300000,0.0,3
|
||||
11400000,0.0,3
|
||||
11600000,0.0,3
|
||||
11700000,0.0,3
|
||||
13100000,0.0,3
|
||||
13300000,0.0,3
|
||||
13400000,0.0,3
|
||||
13500000,0.0,3
|
||||
13800000,0.0,3
|
||||
300000,0.0,2
|
||||
400000,0.0,2
|
||||
800000,0.0,2
|
||||
900000,0.0,2
|
||||
1300000,0.0,2
|
||||
1900000,0.0,2
|
||||
2000000,0.0,2
|
||||
2100000,0.0,2
|
||||
2200000,0.0,2
|
||||
2400000,0.0,2
|
||||
2600000,0.0,2
|
||||
3300000,0.0,2
|
||||
3400000,0.0,2
|
||||
3600000,0.0,2
|
||||
3800000,0.0,2
|
||||
4000000,0.0,2
|
||||
4300000,0.0,2
|
||||
4400000,0.0,2
|
||||
4500000,0.0,2
|
||||
4600000,0.0,2
|
||||
5300000,0.0,2
|
||||
5400000,0.0,2
|
||||
5500000,0.0,2
|
||||
5700000,0.0,2
|
||||
5900000,0.0,2
|
||||
6200000,0.0,2
|
||||
6300000,0.0,2
|
||||
6400000,0.0,2
|
||||
6600000,0.0,2
|
||||
6800000,0.0,2
|
||||
7000000,0.0,2
|
||||
8200000,0.0,2
|
||||
8300000,0.0,2
|
||||
9000000,0.0,2
|
||||
9300000,0.0,2
|
||||
9400000,0.0,2
|
||||
9500000,0.0,2
|
||||
9600000,0.0,2
|
||||
9700000,0.0,2
|
||||
10600000,0.0,2
|
||||
10800000,0.0,2
|
||||
10900000,0.0,2
|
||||
11700000,0.0,2
|
||||
11900000,0.0,2
|
||||
12600000,0.0,2
|
||||
12700000,0.0,2
|
||||
12800000,0.0,2
|
||||
13000000,0.0,2
|
||||
13300000,0.0,2
|
||||
13500000,0.0,2
|
||||
13600000,0.0,2
|
||||
|
116
results/dreamerv3/quadruped-run.csv
Normal file
116
results/dreamerv3/quadruped-run.csv
Normal file
@@ -0,0 +1,116 @@
|
||||
step,reward,seed
|
||||
100000,75.4,3
|
||||
200000,77.5,3
|
||||
300000,216.6,3
|
||||
400000,158.4,3
|
||||
500000,310.2,3
|
||||
600000,372.5,3
|
||||
700000,460.2,3
|
||||
800000,587.6,3
|
||||
900000,715.6,3
|
||||
1000000,692.0,3
|
||||
1100000,817.8,3
|
||||
1200000,854.2,3
|
||||
1300000,898.3,3
|
||||
1400000,738.7,3
|
||||
1500000,863.4,3
|
||||
1600000,820.1,3
|
||||
1700000,816.7,3
|
||||
1800000,747.0,3
|
||||
1900000,629.8,3
|
||||
2000000,706.4,3
|
||||
2100000,797.7,3
|
||||
2200000,773.9,3
|
||||
2300000,769.5,3
|
||||
2400000,865.8,3
|
||||
2500000,834.3,3
|
||||
2800000,905.6,3
|
||||
2900000,894.1,3
|
||||
3000000,938.2,3
|
||||
3100000,912.4,3
|
||||
3200000,901.9,3
|
||||
3300000,824.4,3
|
||||
3400000,829.3,3
|
||||
3500000,792.2,3
|
||||
3600000,865.3,3
|
||||
3700000,881.6,3
|
||||
3800000,945.3,3
|
||||
3900000,867.1,3
|
||||
0,188.5,2
|
||||
100000,151.9,2
|
||||
200000,48.5,2
|
||||
300000,193.2,2
|
||||
400000,174.2,2
|
||||
500000,185.6,2
|
||||
600000,407.6,2
|
||||
700000,588.3,2
|
||||
800000,706.3,2
|
||||
900000,701.2,2
|
||||
1000000,827.6,2
|
||||
1100000,741.7,2
|
||||
1200000,481.7,2
|
||||
1300000,690.9,2
|
||||
1400000,654.6,2
|
||||
1500000,725.7,2
|
||||
1600000,860.4,2
|
||||
1700000,871.5,2
|
||||
1800000,760.5,2
|
||||
1900000,841.7,2
|
||||
2000000,590.3,2
|
||||
2100000,841.0,2
|
||||
2200000,860.6,2
|
||||
2300000,737.9,2
|
||||
2400000,895.9,2
|
||||
2500000,882.2,2
|
||||
2600000,799.9,2
|
||||
2700000,866.1,2
|
||||
2800000,881.5,2
|
||||
2900000,863.4,2
|
||||
3000000,838.0,2
|
||||
3100000,877.1,2
|
||||
3200000,796.4,2
|
||||
3300000,918.5,2
|
||||
3500000,881.8,2
|
||||
3600000,922.7,2
|
||||
3700000,920.2,2
|
||||
3800000,922.3,2
|
||||
3900000,782.8,2
|
||||
0,41.8,1
|
||||
100000,151.6,1
|
||||
200000,82.4,1
|
||||
300000,79.2,1
|
||||
400000,142.4,1
|
||||
500000,221.4,1
|
||||
600000,382.4,1
|
||||
800000,596.5,1
|
||||
900000,536.6,1
|
||||
1000000,783.9,1
|
||||
1100000,737.4,1
|
||||
1200000,658.2,1
|
||||
1300000,791.4,1
|
||||
1400000,624.2,1
|
||||
1500000,680.2,1
|
||||
1600000,839.3,1
|
||||
1700000,866.2,1
|
||||
1800000,835.0,1
|
||||
1900000,741.0,1
|
||||
2000000,850.9,1
|
||||
2100000,838.6,1
|
||||
2200000,877.3,1
|
||||
2300000,905.6,1
|
||||
2400000,792.9,1
|
||||
2500000,792.5,1
|
||||
2600000,858.0,1
|
||||
2700000,893.8,1
|
||||
2800000,896.1,1
|
||||
2900000,910.1,1
|
||||
3000000,890.2,1
|
||||
3100000,891.4,1
|
||||
3200000,852.5,1
|
||||
3300000,927.5,1
|
||||
3400000,908.0,1
|
||||
3500000,916.5,1
|
||||
3600000,846.2,1
|
||||
3700000,921.2,1
|
||||
3800000,827.7,1
|
||||
3900000,729.6,1
|
||||
|
117
results/dreamerv3/quadruped-walk.csv
Normal file
117
results/dreamerv3/quadruped-walk.csv
Normal file
@@ -0,0 +1,117 @@
|
||||
step,reward,seed
|
||||
100000,37.0,3
|
||||
200000,114.5,3
|
||||
300000,131.4,3
|
||||
500000,303.8,3
|
||||
600000,456.3,3
|
||||
700000,488.9,3
|
||||
800000,663.7,3
|
||||
900000,691.8,3
|
||||
1000000,750.0,3
|
||||
1100000,725.0,3
|
||||
1200000,813.2,3
|
||||
1300000,797.4,3
|
||||
1400000,871.8,3
|
||||
1500000,906.8,3
|
||||
1600000,790.6,3
|
||||
1700000,814.3,3
|
||||
1800000,914.4,3
|
||||
1900000,887.1,3
|
||||
2000000,914.1,3
|
||||
2100000,789.0,3
|
||||
2200000,844.7,3
|
||||
2300000,869.2,3
|
||||
2400000,870.6,3
|
||||
2500000,925.9,3
|
||||
2600000,914.9,3
|
||||
2700000,935.5,3
|
||||
2800000,906.2,3
|
||||
2900000,907.6,3
|
||||
3000000,916.9,3
|
||||
3200000,928.1,3
|
||||
3300000,938.3,3
|
||||
3400000,943.9,3
|
||||
3500000,903.4,3
|
||||
3600000,930.4,3
|
||||
3700000,948.1,3
|
||||
3800000,887.9,3
|
||||
3900000,889.7,3
|
||||
0,5.8,2
|
||||
100000,77.2,2
|
||||
200000,32.0,2
|
||||
300000,89.1,2
|
||||
400000,108.3,2
|
||||
500000,128.3,2
|
||||
600000,77.9,2
|
||||
700000,572.5,2
|
||||
800000,815.4,2
|
||||
900000,655.1,2
|
||||
1000000,784.3,2
|
||||
1100000,829.7,2
|
||||
1200000,814.5,2
|
||||
1300000,837.0,2
|
||||
1400000,857.1,2
|
||||
1500000,877.7,2
|
||||
1600000,848.4,2
|
||||
1700000,912.3,2
|
||||
1800000,894.4,2
|
||||
1900000,885.2,2
|
||||
2000000,915.5,2
|
||||
2100000,803.0,2
|
||||
2200000,752.9,2
|
||||
2300000,780.6,2
|
||||
2400000,926.5,2
|
||||
2500000,904.0,2
|
||||
2600000,832.1,2
|
||||
2700000,915.9,2
|
||||
2800000,923.3,2
|
||||
2900000,930.5,2
|
||||
3000000,888.6,2
|
||||
3100000,852.4,2
|
||||
3200000,954.8,2
|
||||
3300000,914.8,2
|
||||
3400000,917.6,2
|
||||
3500000,944.9,2
|
||||
3600000,936.4,2
|
||||
3700000,930.6,2
|
||||
3800000,901.6,2
|
||||
0,21.3,1
|
||||
100000,23.6,1
|
||||
200000,27.6,1
|
||||
300000,45.6,1
|
||||
400000,261.9,1
|
||||
500000,135.1,1
|
||||
600000,137.3,1
|
||||
700000,380.6,1
|
||||
800000,333.9,1
|
||||
900000,689.4,1
|
||||
1000000,836.5,1
|
||||
1100000,736.3,1
|
||||
1200000,806.9,1
|
||||
1300000,730.8,1
|
||||
1400000,806.6,1
|
||||
1500000,916.2,1
|
||||
1600000,859.7,1
|
||||
1700000,882.4,1
|
||||
1800000,946.3,1
|
||||
1900000,883.1,1
|
||||
2000000,921.7,1
|
||||
2100000,862.3,1
|
||||
2200000,912.6,1
|
||||
2300000,915.4,1
|
||||
2400000,917.2,1
|
||||
2500000,788.9,1
|
||||
2600000,869.2,1
|
||||
2700000,890.8,1
|
||||
2800000,874.8,1
|
||||
2900000,944.6,1
|
||||
3000000,957.5,1
|
||||
3100000,878.8,1
|
||||
3200000,874.7,1
|
||||
3300000,918.6,1
|
||||
3400000,865.4,1
|
||||
3500000,953.7,1
|
||||
3600000,913.3,1
|
||||
3700000,766.9,1
|
||||
3800000,935.8,1
|
||||
3900000,968.0,1
|
||||
|
113
results/dreamerv3/reacher-easy.csv
Normal file
113
results/dreamerv3/reacher-easy.csv
Normal file
@@ -0,0 +1,113 @@
|
||||
step,reward,seed
|
||||
100000,830.4,3
|
||||
200000,873.8,3
|
||||
300000,895.0,3
|
||||
400000,856.3,3
|
||||
600000,930.5,3
|
||||
700000,914.5,3
|
||||
800000,926.8,3
|
||||
900000,945.3,3
|
||||
1000000,863.3,3
|
||||
1100000,927.4,3
|
||||
1200000,961.0,3
|
||||
1300000,967.8,3
|
||||
1400000,967.0,3
|
||||
1500000,962.4,3
|
||||
1600000,941.3,3
|
||||
1700000,937.6,3
|
||||
1800000,959.1,3
|
||||
1900000,955.4,3
|
||||
2000000,964.7,3
|
||||
2100000,944.4,3
|
||||
2200000,962.2,3
|
||||
2300000,955.1,3
|
||||
2500000,937.8,3
|
||||
2600000,952.7,3
|
||||
2700000,928.4,3
|
||||
2800000,961.5,3
|
||||
2900000,919.6,3
|
||||
3000000,961.1,3
|
||||
3100000,950.3,3
|
||||
3200000,964.3,3
|
||||
3300000,962.4,3
|
||||
3400000,957.0,3
|
||||
3500000,947.4,3
|
||||
3600000,965.4,3
|
||||
3700000,940.7,3
|
||||
3800000,913.4,3
|
||||
3900000,960.7,3
|
||||
100000,863.8,1
|
||||
200000,852.5,1
|
||||
300000,949.8,1
|
||||
500000,940.6,1
|
||||
600000,860.9,1
|
||||
700000,940.5,1
|
||||
800000,915.3,1
|
||||
900000,948.4,1
|
||||
1000000,941.2,1
|
||||
1100000,939.4,1
|
||||
1200000,933.6,1
|
||||
1300000,923.2,1
|
||||
1400000,951.5,1
|
||||
1500000,954.8,1
|
||||
1600000,935.2,1
|
||||
1700000,947.2,1
|
||||
1800000,940.0,1
|
||||
1900000,945.2,1
|
||||
2000000,955.2,1
|
||||
2100000,961.9,1
|
||||
2300000,941.2,1
|
||||
2400000,943.9,1
|
||||
2500000,941.4,1
|
||||
2700000,941.9,1
|
||||
2800000,969.8,1
|
||||
2900000,912.1,1
|
||||
3000000,935.2,1
|
||||
3100000,954.2,1
|
||||
3200000,954.2,1
|
||||
3300000,949.9,1
|
||||
3400000,956.0,1
|
||||
3500000,960.6,1
|
||||
3600000,949.9,1
|
||||
3700000,964.5,1
|
||||
3800000,962.3,1
|
||||
3900000,961.0,1
|
||||
0,250.0,2
|
||||
100000,922.1,2
|
||||
200000,807.1,2
|
||||
300000,816.9,2
|
||||
400000,880.9,2
|
||||
500000,939.6,2
|
||||
600000,915.2,2
|
||||
700000,943.4,2
|
||||
800000,931.0,2
|
||||
900000,883.0,2
|
||||
1000000,939.3,2
|
||||
1100000,923.5,2
|
||||
1200000,947.0,2
|
||||
1300000,934.0,2
|
||||
1400000,936.4,2
|
||||
1500000,952.0,2
|
||||
1600000,957.3,2
|
||||
1700000,958.5,2
|
||||
1800000,900.0,2
|
||||
1900000,925.0,2
|
||||
2000000,951.5,2
|
||||
2100000,945.1,2
|
||||
2200000,968.6,2
|
||||
2300000,971.0,2
|
||||
2400000,901.5,2
|
||||
2500000,940.8,2
|
||||
2600000,929.8,2
|
||||
2700000,968.1,2
|
||||
2900000,865.4,2
|
||||
3000000,957.7,2
|
||||
3100000,969.7,2
|
||||
3200000,964.4,2
|
||||
3300000,953.6,2
|
||||
3400000,923.5,2
|
||||
3500000,947.6,2
|
||||
3600000,949.4,2
|
||||
3700000,954.8,2
|
||||
3800000,965.0,2
|
||||
3900000,933.4,2
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user