Skip to content

Commit

Permalink
Merge pull request #176 from edbeeching/downfall-env-test
Browse files Browse the repository at this point in the history
Adds downfall env to tests and hub
  • Loading branch information
edbeeching authored Feb 23, 2024
2 parents 332eb6d + 3af1493 commit fe941e8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]:YOUR_USERNAME/godot_rl_agents.git
cd godot_rl_agents
python -m venv venv
Expand All @@ -109,7 +110,6 @@ make quality
```
Then make a PR against main on the original repo.


## FAQ

### Why have we developed Godot RL Agents?
Expand Down
2 changes: 1 addition & 1 deletion scripts/get_all_examples_from_hub.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions tests/test_sb3_onnx_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
("AirHockey", 12014),
("ItemSortingCart", 12015),
("Ships", 12016),
("DownFall", 12017),
],
)
def test_pytorch_vs_onnx(env_name, port):
Expand Down
1 change: 1 addition & 0 deletions tests/test_sb3_training.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
("AirHockey", 12800),
("ItemSortingCart", 13000),
("Ships", 13200),
("DownFall", 13400),
],
)
@pytest.mark.parametrize("n_parallel", [1, 2, 4])
Expand Down

0 comments on commit fe941e8

Please sign in to comment.