Skip to content

Commit

Permalink
Updated version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasSchellenbergNextCentury committed Mar 24, 2021
1 parent bffbc78 commit 1050fec
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CPU_Container.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=America/New_York

# --build-arg mcsversion=0.0.x to override default in docker build command
ARG mcsversion=0.3.8
ARG mcsversion=0.4.0

ENV DEBIAN_FRONTEND=noninteractive
ENV MCS_EXECUTABLE_PATH="/MCS-AI2-THOR-Unity-App-v${mcsversion}.x86_64"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES ${NVIDIA_DRIVER_CAPABILITIES},display
# ENV LANG C.UTF-8

# --build-arg mcsversion=0.0.x to override default in docker build command
ARG mcsversion=0.3.8
ARG mcsversion=0.4.0

WORKDIR /mcs

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

## Installation

The latest release of the MCS Python library is `0.3.8`.
The latest release of the MCS Python library is `0.4.0`.

### Virtual Environments

Expand Down Expand Up @@ -65,26 +65,26 @@ Here are the instructions for downloading and installing our latest Unity releas

### Unity Application

The latest release of the MCS Unity app is `0.3.8`.
The latest release of the MCS Unity app is `0.4.0`.

Please note that our Unity App is built on Linux. If you need a Mac or Windows version, please [contact us](#troubleshooting) directly.

1. [Download the Latest MCS Unity App](https://github.com/NextCenturyCorporation/MCS/releases/download/0.3.8/MCS-AI2-THOR-Unity-App-v0.3.8.x86_64)
1. [Download the Latest MCS Unity App](https://github.com/NextCenturyCorporation/MCS/releases/download/0.4.0/MCS-AI2-THOR-Unity-App-v0.4.0.x86_64)

2. [Download the Latest MCS Unity Data Directory TAR](https://github.com/NextCenturyCorporation/MCS/releases/download/0.3.8/MCS-AI2-THOR-Unity-App-v0.3.8_Data.tar.gz)
2. [Download the Latest MCS Unity Data Directory TAR](https://github.com/NextCenturyCorporation/MCS/releases/download/0.4.0/MCS-AI2-THOR-Unity-App-v0.4.0_Data.tar.gz)

3. Ensure that both the Unity App and the TAR are in the same directory.

4. Untar the Data Directory:

```
tar -xzvf MCS-AI2-THOR-Unity-App-v0.3.8_Data.tar.gz
tar -xzvf MCS-AI2-THOR-Unity-App-v0.4.0_Data.tar.gz
```

5. Mark the Unity App as executable:

```
chmod a+x MCS-AI2-THOR-Unity-App-v0.3.8.x86_64
chmod a+x MCS-AI2-THOR-Unity-App-v0.4.0.x86_64
```

## Training Datasets
Expand Down Expand Up @@ -353,7 +353,7 @@ docker run -it -e PYTHONIOENCODING=utf8 -e XAUTHORITY=/tmp/.docker.xauth -e DISP

You can then run a scene like this:
```shell
python3 /scripts/run_human_input.py /mcs/MCS-AI2-THOR-Unity-App-v0.3.8.x86_64 --config_file_path /scripts/config_oracle.ini /input/hinged_container_example.json
python3 /scripts/run_human_input.py /mcs/MCS-AI2-THOR-Unity-App-v0.4.0.x86_64 --config_file_path /scripts/config_oracle.ini /input/hinged_container_example.json
```

#### Missing X Authorization Error
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
git+https://github.com/NextCenturyCorporation/ai2thor@0.3.8#egg=ai2thor
git+https://github.com/NextCenturyCorporation/ai2thor@0.4.0#egg=ai2thor
alabaster==0.7.12
autopep8==1.5.4
Babel==2.8.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def get_version():
'msgpack>=1.0.0',
('ai2thor @ '
'git+https://github.com/NextCenturyCorporation/ai2thor'
'@0.3.8#egg=ai2thor')
'@0.4.0#egg=ai2thor')
],
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 1050fec

Please sign in to comment.