princeton-vl / PackIt_Extra

Code for generating data in ICML 2020 paper "PackIt: A Virtual Environment for Geometric Planning"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PackIt: A Virtual Environment for Geometric Planning
Ankit Goyal, Jia Deng
International Conference on Machine Learning (ICML), 2020

@inproceedings{goyal2020packit,
  title={PackIt: A Virtual Environment for Geometric Planning},
  author={Goyal, Ankit and Deng, Jia},
  booktitle={International Conference on Machine Learning},
  year={2020},
}

For reproducing the results of the paper and using our generated dataset, use the main repository. This repository contains code for generating more data. We recommend using the main repository first and only use this one if more data is required.

Getting Started

First download/clone the repository. We would refer to the directory containing the code as <packit_dir>.

git clone git@github.com:princeton-vl/PackIt_Extra.git

Requirements

The PackIt environment is build using Unity ML-agents version 0.4.0. We provide standlone Unity builds for Linux x86_64 platform. For creating the builds, we use Unity version 2017.4.3.

Download Data

Make sure you are in <packit_dir>. download.sh script downloads all the data, unzips them and, places them at correct locations. Note that symbolic links are created between the <packit_dir>/unity-build/StreamingAssets folder and appropriate locations inside the unity data directory. This is necessary so that the data is accessible from the build unity game.

chmod +x download.sh
./download.sh

Code Organization

  • <packit_dir>/unity-assets: Unity levels and C# scripts used for making unity builds from scratch.

  • <packit_dir>/unity-build: Prebuild unity games and data for generating new packs.

Evolving new packs

  1. Make sure you have downloded everything before this step.
  2. To generate a new pack, use the <packit_dir>/unity-build/generate.sh script. To generate 5 new packs for the training data first cd unity-build and the use the command ./generate.sh --dataset tr --num_packs 5 --run 201. This would generate packs at <packit_dir>/unity-build/StreamingAssets/pack_tr/201_tr. For faster loading of data, we precompute some voxel features which would be generated in <packit_dir>/unity-build/StreamingAssets/pack_tr_precompute_<unity/python>/201_tr_<0/1/2/3/4>.

Code for making you own unity build

We provide standlone unity build. In case you want to create your own unity builds follow the following steps. We strongly recommend familiarizing oneself with Unity first. Follow the steps below before making any unity build.

  1. Download and install Unity 3D. We recommend installing version 2017.4.3. Make sure you select the required Build Support while installing Unity. For example, select Linux Build Support if you want to make builds for Linux.

  2. Place the contents of <packit_dir>/unity-assets inside the Assets folder. The Assets folder should look like the following:

    Assets

  3. To set up ML-Agents inside Unity, go to Edit > Project Settings > Player. In (PC, Mac and Linux Standalone, iOS or Android), go to the Other Settings section. Then, select Scripting Runtime Version to Experimental (.NET 4.6 Equivalent) option.

  4. (Optional) You can place the <packit_dir>/unity-build/StreamingAssets folder inside Assets. This would allow running the environment inside the editor.

  5. Now follow the steps of the particular unity build you want to make:

  • Packing

    This unity build, along with Precompute is used for generating packs. After running download.sh, this build is placed at <packit_dir>/unity-build/packing<_Data/.x86_64>. Following are the steps to make this build:

    1. Go to File > Build Settings.

    2. Select only the Level-Packing in the Scenes In Build option. You might have to first open Level-Packing and then click Add Open Scenes.

    3. Select the Target Platform and press Build. A sample image can be found below.

      Build

    4. In case you didn't place the <packit_dir>/unity-build/StreamingAssets folder inside Assets, you would have to create a symbolic link as done here for a Linux Build.

  • Precompute

    This unity build, along with Packing is used for generating packs. After running download.sh, this build is placed at <packit_dir>/unity-build/precompute<_Data/.x86_64>. Following are the steps to make this build:

    1. Go to File > Build Settings.
    2. Select only the Level-Precompute in the Scenes In Build option. You might have to first open Level-Precompute and then click Add Open Scenes.
    3. Select the Target Platform and press Build.
    4. In case you didn't place the <packit_dir>/unity-build/StreamingAssets folder inside Assets, you would have to create a symbolic link as done here for a Linux Build.
  • PackIt Env

    This unity build is used for the packit environment in the main repository. After running download.sh in the main repository, this build is placed at <packit_dir>/unity/envs/packit_<_Data/.x86_64>. Following are the steps to make this build:

    1. Update all the arguments in Assets/Scripts/PackingEnv/PackingAgent for unity agent.

    2. Open Level-Main and click Academy > Brain.

    3. In the Brain Type option, select External. Save the Level-Main scene.

      Brain-External

    4. Go to File > Build Settings.

    5. Select only the Level-Main in the Scenes In Build option. You might have to first open Level-Main and then click Add Open Scenes.

    6. Select the Target Platform and press Build.

    7. In case you didn't place the <packit_dir>/unity-build/StreamingAssets folder inside Assets, you would have to create a symbolic link as done here for a Linux Build.

  • PackIt Viz Env

    This unity build is used for the packit environment in the main repository. After running download.sh in the main repository, this build is placed at <packit_dir>/unity/envs/packit_viz<_Data/.x86_64/_mac.app>. Following are the steps to make this build:

    1. Update all the arguments in Assets/Scripts/PackingEnv/PackingAgent for visualizer.

    2. Open Level-Main and click Academy > Brain.

    3. In the Brain Type option, select Player. Save the Level-Main scene.

      Brain-Player

    4. (Optional) In case you moved the StreamingAssets folder insider Assets, you can check the visualizer inside the Unity Editor. On clicking Play, the game would look as follows. Press a to execute the next action.

      Play

    5. Go to File > Build Settings.

    6. Select only the Level-Main in the Scenes In Build option. You might have to first open Level-Main and then click Add Open Scenes.

    7. Select the Target Platform and press Build.

    8. In case you didn't place the <packit_dir>/unity-build/StreamingAssets folder inside Assets, you would have to create a symbolic link as done here for a Linux Build.

About

Code for generating data in ICML 2020 paper "PackIt: A Virtual Environment for Geometric Planning"

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C# 99.6%Language:Shell 0.4%