Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] Score path & Xvfb installation #196

Merged
merged 1 commit into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Please ensure that your computer has sufficient memory, or close unnecessary run



Your score will be stored in a JSON file called `spongeScore.json` for bathing and `dressingScore.json` for dressing under `~/.config/unity3d/RCareWorld/BathingPlayer/` for bathing and `~/.config/unity3d/RCareWorld/DressingPlayer/` for dressing.
Your scores will be stored in two JSON files, called `spongeScore.json` for bathing and `dressingScore.json` for dressing both under `~/.config/unity3d/RCareWorld/DressingPlayer/`.

# Submit to EvalAI
Once you are done with your solutions, submit your code to EvalAI following [this](https://rcareworld.readthedocs.io/en/phy-robo-care/submission.html) tutorial. Remember, you need to sign up as a team on EvalAI before Sep 8 (11:59pm AoE) to participate.
Expand Down
2 changes: 1 addition & 1 deletion template/docker-template/run_python.shell
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e

if ! command -v Xvfb &> /dev/null; then
echo "Xvfb is not installed. Installing..."
sudo apt-get update && sudo apt-get install -y xvfb
apt-get update && sudo apt-get install -y xvfb
fi

if xdpyinfo -display :99 >/dev/null 2>&1; then
Expand Down
Loading