diff --git a/README.md b/README.md index e38f0219..c475f9fd 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ Start by forking the repo and then cloning it to your machine, creating a venv a ``` # If you want to PR, you should fork the lib or ask to be a contibutor + git clone git@github.com:YOUR_USERNAME/godot_rl_agents.git cd godot_rl_agents python -m venv venv @@ -109,7 +110,6 @@ make quality ``` Then make a PR against main on the original repo. - ## FAQ ### Why have we developed Godot RL Agents? diff --git a/scripts/get_all_examples_from_hub.sh b/scripts/get_all_examples_from_hub.sh index 1d6a733d..5b97ed7d 100644 --- a/scripts/get_all_examples_from_hub.sh +++ b/scripts/get_all_examples_from_hub.sh @@ -1,6 +1,6 @@ #!/bin/bash # HF login (TODO) -EXAMPLE_NAMES=(BallChase FPS FlyBy JumperHard Racer Ships Racer ItemSortingCart AirHockey "3DCarParking") +EXAMPLE_NAMES=(BallChase FPS FlyBy JumperHard Racer Ships Racer ItemSortingCart AirHockey "3DCarParking" DownFall) for EXAMPLE in ${EXAMPLE_NAMES[@]}; do echo "Downloading example: $EXAMPLE" gdrl.env_from_hub -r edbeeching/godot_rl_$EXAMPLE diff --git a/tests/test_sb3_onnx_export.py b/tests/test_sb3_onnx_export.py index d452518d..baeea9b9 100644 --- a/tests/test_sb3_onnx_export.py +++ b/tests/test_sb3_onnx_export.py @@ -18,6 +18,7 @@ ("AirHockey", 12014), ("ItemSortingCart", 12015), ("Ships", 12016), + ("DownFall", 12017), ], ) def test_pytorch_vs_onnx(env_name, port): diff --git a/tests/test_sb3_training.py b/tests/test_sb3_training.py index e0561a54..a2a67ee5 100644 --- a/tests/test_sb3_training.py +++ b/tests/test_sb3_training.py @@ -17,6 +17,7 @@ ("AirHockey", 12800), ("ItemSortingCart", 13000), ("Ships", 13200), + ("DownFall", 13400), ], ) @pytest.mark.parametrize("n_parallel", [1, 2, 4])